@charset "utf-8";

/* margin,padding
--------------------------------------------------------------------*/

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
pre,
address,
blockquote,
ul,
ol,
dl,
dt,
dd,
form,
fieldset,
header,
nav,
footer,
figure,
section,
article {
	display: block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
}

/* font 
--------------------------------------------------------------------*/

html {
	overflow-y	: scroll;
	height		: 100%;
	font-size	: 62.5%;
}

body{
  word-wrap : break-all;
  overflow-wrap : break-word;
}

address,
em {
	font-style: normal;
}

/* list 
--------------------------------------------------------------------*/

ul {
	list-style-type: none;
}

/* img 
--------------------------------------------------------------------*/

img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
}

/* form
--------------------------------------------------------------------*/

input,
select,
textarea,
button {
	font-size: inherit;
	line-height: inherit;
}

button {
	cursor: pointer;
}

/* table
--------------------------------------------------------------------*/

table,
thead,
tbody,
tfoot,
tr,
th,
td,
caption,
col,
colgroup {
	text-align: inherit;
	line-height: inherit;
	font-size: 100%;
}

table {
	display: table;
}

thead {
	display: table-header-group;
}

tbody {
	display: table-row-group;
}

tfoot {
	display: table-footer-group;
}

tr {
	display: table-row;
}

th,
td {
	display: table-cell;
}

caption {
	display: table-caption;
}

col {
	display: table-column;
}

colgroup {
	display: table-column-group;
}

/* clearfix
--------------------------------------------------------------------*/

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}/*IE7用*/

/* Hides from IE-mac \*/
* html .clearfix { height:1%;}
.clearfix { display:block;}
/* End hide from IE-mac */

/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 1em;
	font-weight:400;
}


/** a **/

/** table **/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/** margin-top **/
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

/** margin-left **/
.ml10{margin-left: 10px;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.ml40{margin-left: 40px;}
.ml50{margin-left: 50px;}
.ml60{margin-left: 60px;}
.ml70{margin-left: 70px;}
.ml80{margin-left: 80px;}
.ml90{margin-left: 90px;}
.ml100{margin-left: 100px;}

/** margin-bottom **/
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb50{margin-bottom: 50px !important;}
.mb60{margin-bottom: 60px !important;}
.mb70{margin-bottom: 70px !important;}
.mb80{margin-bottom: 80px !important;}
.mb90{margin-bottom: 90px !important;}
.mb100{margin-bottom: 100px !important;}

/** margin-right **/
.mr10{margin-right: 10px;}
.mr20{margin-right: 20px;}
.mr30{margin-right: 30px;}
.mr40{margin-right: 40px;}
.mr50{margin-right: 50px;}
.mr60{margin-right: 60px;}
.mr70{margin-right: 70px;}
.mr80{margin-right: 80px;}
.mr90{margin-right: 90px;}
.mr100{margin-right: 100px;}



/* メイン
--------------------------------------------------------------------*/

*{
	box-sizing: border-box;
}

body {
	font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #231815;
	font-weight: 400;
}

.opaImg {
	transition: all,.3s;
}
.opaImg:hover img {
	opacity: 0.7;
}


/*-------------------------------------------------------------------
	wrap
-------------------------------------------------------------------*/

#wrap {
	padding-top: 145px;
}


@media screen and (max-width: 767px){
	
	#wrap {
		padding-top: 90px;
	}
	
}


/*-------------------------------------------------------------------
	header
-------------------------------------------------------------------*/

#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	background: rgba(255,255,255,.9);
	box-sizing: border-box;
}

.headWrap {
	width: 94%;
	margin: 0 auto;
	padding: 40px 0 5px;
	position: relative;
}

.hdLogo {
	display: flex;
	justify-content: center;
	line-height: 1.0;
	font-size: 2.2rem;
	letter-spacing: .1em;
	font-weight: 600;
}

.hdLogo a {
	color: #888888;
	text-decoration: none;
}

.hdLogo a:hover {
	text-decoration: underline;
}


.hdLogo span:nth-child(n + 2) {
	border-left: 1px solid #888888;
	padding-left: 30px;
	margin-left: 30px;
}

.hdNav {
	display: flex;
	justify-content: center;
	line-height: 1.0;
	margin-top: 30px;
}

.hdNav li:nth-child(n + 2) {
	margin-left: 30px;
}

.hdNav li a {
	display: block;
	position: relative;
	padding-bottom: 15px;
	color: #231815;
	text-decoration: none;
	transition: all,.3s;
	letter-spacing: .05em;
}

.hdNav li a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 3px;
	height: 3px;
	background: #231815;
	border-radius: 50%;
	transform: translateX(-50%);
	content: '';
	transition: all,.3s;
}

.hdNav li.current a::after,
.hdNav li a:hover::after {
	width: 6px;
	height: 6px;
}

.hdNav li a span {
	display: block;
	text-align: center;
}

.hdNav li a span.jp {
	font-size: 1.6rem;
	margin-bottom: 5px;
}
.hdNav li a span.en {
	font-size: 1.1rem;
}

@media screen and (max-width: 767px){
	
	
	.headWrap {
		padding: 20px 0;
	}
	
	.hdLogo {
		display: flex;
		flex-wrap: wrap;
		font-size: 2.0rem;
		padding-right: 50px;
	}

	.hdLogo span:nth-child(1) {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	
	.hdLogo span:nth-child(n + 2) {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}
	
	.hdLogo span:nth-child(3) {
		border-left: 1px solid #888888;
		padding-left: 20px;
		margin-left: 20px;
	}
	
	
}


/*-------------------------------------------------------------------
	container
-------------------------------------------------------------------*/

#container {
	
}

.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.alignRight {
	text-align: right;
}


#contFlex {
	width: 100%;
	display: flex;
}

#contLeft {
	width: 26%;
	background: #ede8db;
	box-sizing: border-box;
	padding: 80px 0;
}

.stcBox {
	position: sticky;
	top: 180px;
	display: flex;
	justify-content: flex-end;
}

.conLefWrap {
	width: 300px;
	max-width: 90%;
	
}

.sideList {
	border-top: 2px solid #231815;
}

.sideList li {
	border-bottom: 2px solid #231815;
}
.sideList li a {
	display: block;
	line-height: 1.0;
	/*font-size: 2.0rem;*/
	font-size: 1.8rem;
	padding: 20px 30px;
	color: #231815;
	text-decoration: none;
	transition: all,.3s;
	letter-spacing: .01em;
}

.sideList li a.sub {
	padding: 20px 30px 20px 50px;
}

.sideList li a:hover {
	background: #e5d8bd;
}

.conLefTitle {
	font-size: 1.8rem;
	padding: 0 30px;
	line-height: 1.0;
	margin-bottom: 20px;
}

#contRight {
	width: 74%;
	padding: 80px 0;
}

.conRgtWrap {
	width: 900px;
	max-width: 90%;
	margin: 0 auto;
}

.fstTitle {
	text-align: center;
	font-weight: 500;
	line-height: 1.4;
	font-size: 2.4rem;
	letter-spacing: .05em;
	margin-bottom: 50px;
}



.relaWrap {
	position: relative;
}

.absLink {
	position: absolute;
	top: -150px;
	left: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.youTube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youTube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.pageTitle img {
	width: 100%;
}


@media screen and (max-width: 767px){
	
	
	#contFlex {
		display: block;
	}

	#contLeft {
		display: none;
	}

	#contRight {
		width: auto;
		padding: 30px 0 30px;
	}

	.conRgtWrap {
		width: auto;
		max-width: 90%;
		margin: 0 auto;
	}
	
	.absLink {
		top: -100px;
	}
	
	
}


/* footer
--------------------------------------------------------------------*/

#footer {
	background: #dbdcdc;
	padding: 20px 0;
}


#footer address {
	width: 90%;
	margin: 0 auto;
	line-height: 1.0;
	font-size: 1.2rem;
	text-align: center;
}

#pageTop {
	position: fixed;
	bottom: 70px;
	right: 5%;
}

@media screen and (max-width: 1400px){
	
	#pageTop {
		right: 3%;
	}
	
	#pageTop img {
		max-width: 80%;
	}
}

/* format */

.sp {
	display:none;
}

.pc {
	display:inline;
}


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"],
input[type="button"] {
	border-radius: 0;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="reset"]::-focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

*:focus {
	outline: none;
}

html {
 -webkit-text-size-adjust: 100%;
}

#global-nav {
	display:none;
}

#header .navbtn {
	display:none;
}

.spIn,
.spBl {
	display: none;
}

.pcIn {
	display: inline;
}
.pcBl {
	display: block;
}




@media screen and (max-width: 767px){
	
	img {
		max-width:100%;
	}
	
	#header .hdNav {
		display: none;
	}
	
	#header .navbtn {
		display:block;
		position:absolute;
		top:20px;
		right:0;
		width:50px;
		height: 50px;
		cursor: pointer;
		background: #ede8db;
	}
	
	#header .navbtn span {
		display: block;
		position: absolute;
		height: 2px;
		width: 70%;
		background: #000;
		left: 15%;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	
	#header .navbtn span:nth-child(1) {
		top: 10px;
	}
	
	#header .navbtn span:nth-child(2) {
		top: 25px;
	}
	
	#header .navbtn span:nth-child(3) {
		top: 40px;
	}
	
	/* global-nav */
	
	#global-nav.open {
		display:block;
	}
	
	#global-nav ul {
		line-height:1.0;
	}
	
	#global-nav ul li {
		margin: 0 0 1px;
	}
	
	
	#global-nav ul li a {
		display:block;
		color: #000;
		text-align:left;
		padding:20px 5%;
		text-decoration:none;
		
		letter-spacing: .05em;
		background: rgb(237,232,219,0.9);
		position: relative;
	}
	
	#global-nav ul li a .jp {
		font-size:1.6rem;
		font-weight: 500;
	}
	
	#global-nav ul li a .en {
		font-size: 1.2rem;
		padding-left: 10px;
	}
	
	
	#global-nav ul li a:after {
		width: 7px;
		height: 7px;
		border: 2px solid;
		border-color: #000 #000 transparent transparent;
		transform: rotate(45deg) translateY(-50%);
		position: absolute;
		top: 50%;
		right: 5%;
		content: '';
	}
	
	
	#global-nav ul li a:hover {
		text-decoration:none;
	}
	
	/* 切り替えアニメーション */
	#header .navbtn.move span:nth-child(1) {
		top: 25px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	#header .navbtn.move span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	#header .navbtn.move span:nth-child(3) {
		top: 25px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	
	.spIn {
		display: inline;
	}
	.spBl {
		display: block;
	}

	.pcIn,
	.pcBl {
		display: none;
	}
	
}
