@charset "utf-8";
/* 共通 */
html {
	font-size:16px;
}
body{
	color:#231815;
	background:#231815;
	width: 100%;
	min-height: 100vh !important;
	font-family: 'Noto Serif JP', serif;
	font-size: 16px;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
/* custom */
a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}
a,
a:link,
a:visited,
a:hover,
a:active {
	color:#231815;
	text-decoration:none;
	
}
a:hover {
	text-decoration:underline;
}
a:focus {
	outline:none;
}
img {
	width:100%;
	max-width:none;
	vertical-align:bottom;
	-webkit-backface-visibility: hidden;
}
table {
	width:100%;
}
a img,a img:hover{
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
a.button-opacity img {
	opacity:1;
}
a.button-opacity img:hover {
	opacity:0.6;
}
a.button-switch .off {
	display: inline;
}
a.button-switch .on {
	display:none;
}
a.button-switch:hover .off {
	display:none;
}
a.button-switch:hover .on {
	display: inline;
}
@media print, screen and (min-width: 768px) {
	img {
		width:auto;
		max-width: 100%;
	}
}
/* layout */
.header ,
.main ,
.footer {
	width:100%;
	padding:0;
	position:relative;
	background:#fff;
}
.container {
	width:auto;
	margin:0 auto;
	position:relative;
	padding:0 3%;
}
@media print, screen and (min-width: 768px){
	.header ,
	.main ,
	.footer {
		min-width:1040px;
	}
	.container {
		width:1040px;
		padding:0 20px;
	}
}
/* s.header */
.header {
	font-size:0;
	padding-bottom:10px;
}
.header .logo {
	padding:10px 0 0;
	width:200px;
}
.header .box-left ,
.header .box-right {
	display:inline-block;
	vertical-align: top;
}
.header .nav-lang > li,
.header .nav-link > li {
	display:inline-block;
	vertical-align: top;
}
.header .breadcrumb {
	display:none;
}
.header .nav-lang {
	margin-top:10px;
}
.header .nav-lang > li {
	border:1px solid #231815;
	margin-right:4px;
}
.header .nav-lang a {
	display:block;
	padding:4px;
}
.header .nav-lang a img {
	width:auto;
	height:14px;
}
.header .nav-link {
	margin-top:10px;
}
.header .nav-link a {
	display:block;
}
.header .nav-link a:first-child {
	margin-right:4px;
}
.header .nav-link a img {
	width:auto;
	height:24px;
}
.header .nav {
	width: 290px;
	height:100%;
	padding: 70px 10px 0;
	background: rgba(255, 255, 255, 0.9);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	overflow-y:scroll;
	transform: translate(290px);
	transition: all .5s;
}
.header .nav.open {
  transform: translateZ(0);
}
.header .nav a,
.header .nav span {
	display:block;
	position:relative;
}

.header .nav > li .on {
	display:none;
}
.header .nav > li.active .on {
	display:inline;
}
.header .nav > li.active .off {
	display:none;
}

.header .nav li a img,
.header .nav li span img {
	width:auto;
	vertical-align: middle;
	height:18px;
}
.header .nav > li .icon {
	margin-right:6px;
	height:auto;
}
.header .nav li {
	position:relative;
}
.header .nav > li {
	margin-bottom:24px;
}
.header .nav > li > a,
.header .nav > li > span {
	background:#D7D7D8;
	padding:4px 6px;
}
.header .nav > li > a:before,
.header .nav > li > span:before {
	height: 0;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    content: "";
    border-bottom: solid 8px #D7D7D8;
    border-left: solid 8px transparent;
    top:-7px;
}
.header .nav > li > a:after,
.header .nav > li > span:after {
	height: 0;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    content: "";
    border-top: solid 8px #D7D7D8;
    border-right: solid 8px transparent;
    top:25px;
}
.header .nav > li.active > span {
	background:#898989;
}
.header .nav > li.active > span:before {
	 border-bottom-color:#898989;
}
.header .nav > li.active > span:after {
	border-top-color:#898989;
}
.header .nav li ul {
	display:none;
	padding:0;
}
.header .nav li.active ul {
	display:block;
}
.header .nav li ul li a {
	margin-top:16px;
	padding:6px 8px;
	border-bottom:1px solid #231815;
}
.header .menu-trigger {
	display: inline-block;
	width: 36px;
	height: 28px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 14px;
	right: 20px;
	z-index: 100;
	transform: translateX(0);
	transition: transform .5s;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}
.header .menu-trigger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #231815;
	transition: all .5s;
	border-radius:10px;
}
.header .menu-trigger.active span {
 	background-color: #231815;
}
.header .menu-trigger span:nth-of-type(1) {
 	top: 0;
}
.header .menu-trigger.active span:nth-of-type(1) {
 	transform: translateY(12px) rotate(-45deg);
}
.header .menu-trigger span:nth-of-type(2) {
 	top: 12px;
}
.header .menu-trigger.active span:nth-of-type(2) {
 	opacity: 0;
}
.header .menu-trigger span:nth-of-type(3) {
 	bottom: 0;
}
.header .menu-trigger.active span:nth-of-type(3) {
 	transform: translateY(-12px) rotate(45deg);
}
@media print, screen and (min-width: 768px){
	.header {
		height:326px;
		font-size:0;
		z-index:1;
	}
	.header .menu-trigger {
		display:none;
	}
	.header .logo {
		position:absolute;
		text-align:center;
		padding:0;
		width:92px;
		margin:0 auto;
		left:0;
		right:0;
		top:34px;
		z-index:1;
	}
	.header .box-left ,
	.header .box-right {
		width:49.5%;
	}
	.header .breadcrumb > li,
	.header .nav-lang > li,
	.header .nav-link > li,
	.header .nav > li {
		display:inline-block;
		vertical-align: top;
	}
	.header .breadcrumb {
		display:block;
		margin-top:12px;
		border-left:1px solid #231815;
	}
	.header .breadcrumb li {
		border-right:1px solid #231815;
	}
	.header .breadcrumb a {
		display:block;
		padding:6px;
	}
	.header .nav-lang {
		margin:0;
		padding:16px 0 0;
	}
	.header .nav-lang > li {
		border:0;
		margin-right:12px;
	}
	.header .nav-lang a {
		padding:0;
	}
	.header .nav-lang a img {
		height:12px;
	}
	.header .nav-link {
		margin-top:12px;
		text-align:right;
	}
	.header .nav {
		position: relative;
		margin:120px 0 0;
		padding:0;
		overflow-y:visible;
		width:auto;
  		height:auto;
 		background-color:#fff;
 		z-index:0;
  		left:auto;
  		top:atuo;
  		transform:none;
  		transition: all 0s;
	}
	.header .nav > li.active .on,
	.header .nav > li .on {
		display:none;
	}
	.header .nav > li.active .off {
		display:inline;
	}
	.header .nav > li .icon {
		display:none;
	}
	.header .nav li {
		text-align:center;
	}
	.header .nav .nav-1 {
		margin-right:70px;
	}
	.header .nav .nav-2 {
		margin-right:200px;
	}
	.header .nav .nav-3 {
		margin-right:65px;
	}
	.header .nav .nav-4{
		margin-right:65px;
	}
	.header .nav > li > a,
	.header .nav > li > span {
		background:transparent !important;
		padding:0 0 9px;
	}
	.header .nav > li > a:before,
	.header .nav > li > span:before {
		content:'';
		position:absolute;
		width:50px;
		height:1px;
		background:#231815;
		border:0;
		top:auto;
		left:0;
		right:0;
		margin:0 auto;
		bottom:0;
	}
	.header .nav > li > a:after,
	.header .nav > li > span:after {
	    content: none;
	}
	.header .nav li ul {
		position:absolute;
		padding:8px 0 6px;
		background:#fff;
		left:0;
		right:0;
		margin:0 auto;
	}
	.header .nav .nav-4 ul {
		left:-100px;
		right:-100px;
		width:250px;
	}
	.header .nav li.active ul {
		display:none;
	}
	.header .nav li:hover ul {
		display:block;
	}
	.header .nav li ul li a {
		margin-top:12px;
		padding:0 12px 4px;
	}
	.header .nav li ul li a img {
		height:16px;
	}
	
}
.main {
}
.main .section {
	position: relative;
}
@media print, screen and (min-width: 768px){
	.main {
	}
}
/* s.footer */
.footer {
	font-size:0;
}
.footer .nav {
	display:none;
}
.footer .address {
	background:#231815;
	padding:3% 0 0;
	text-align:center;
}
.footer .copyright img,
.footer .address img {
	width:auto;
	max-width:80%;
}
.footer .address img {
	display:block;
	padding:6px 0 0;
	margin:0 auto;
}
.footer .copyright {
	background:#231815;
	text-align: center;
	padding:3% 0;
}
@media print, screen and (min-width: 768px){ 
	.footer .nav {
		display:block;
		padding:2% 0;
	}
	.footer .nav span,
	.footer .nav a {
		display:block;
	}
	.footer .nav > li {
		display:inline-block;
		vertical-align: top;
	}
	.footer .nav .nav-1 {
		margin-right:40px;
	}
	.footer .nav .nav-2 {
		margin-right:40px;
	}
	.footer .nav .nav-3 {
		margin-right:40px;
	}
	.footer .nav .nav-4 {
		margin-right:2px;
	}
	.footer .nav .nav-5 {
		margin-right:20px;
	}
	.footer .nav .nav-6 {
		margin-right:20px;
	}
	.footer .nav li ul {
		padding-top:2px;
	}
	.footer .nav li li {
		padding-top:10px;
	}
	.footer .nav li li a img {
		height:15px;
	}
	.footer .address {
		padding-top:1%;
	}
	.footer .copyright img,
	.footer .address img {
		display:inline-block;
		vertical-align: top;
	}
	.footer .address .address-1,
	.footer .address .address-2 {
		padding-right:1.5rem;
	}
	.footer .copyright {
		padding:1% 0;
	}
	.footer .copyright .copyright-1 {
		padding-right:0.7rem;
	}
}
/* s.home */
.main.home .section {
	margin:4% 0;
}
.main.home .slider {
	display:block;
}
.main.home .slider li{
	outline: none;
}
.main.home .slider img {
	width:100%;
	max-width:none;
}
.main.home .nav-sns {
	font-size:0;
}
.main.home .nav-sns > li {
	display:inline-block;
	vertical-align: bottom;
	margin-right:3%;
	margin-bottom:3%;
	max-width:50%;
}
.main.home .nav-sns > li:last-child {
	margin-right:0;
}
.main.home .nav-sns > li img {
	width:auto;
	max-width:100%;
}
.main.home .twitter .title {
	position:relative;
}
.main.home .twitter .title img {
	position:relative;
	z-index:1;
	width:auto;
	max-width:none;
}
.main.home .twitter .title:before {
	content:'';
	position:absolute;
	width:100%;
	height:1px;
	background:#837d7b;
	top:0;
	bottom:0;
	margin:auto 0;
	z-index:0;
}
.main.home .twitter .scroll-box {
	max-height:340px;
	overflow-y:scroll;
}
.main.home .information .title {
	position:relative;
}
.main.home .information .title img {
	position:relative;
	z-index:1;
	width:auto;
	max-width:none;
}
.main.home .information .title:before {
	content:'';
	position:absolute;
	width:100%;
	height:1px;
	background:#837d7b;
	top:0;
	bottom:0;
	margin:auto 0;
	z-index:0;
}
.main.home .information .scroll-box {
	max-height:340px;
	overflow-y:scroll;
	padding-top:6px;
}
.main.home .information li {
	position: relative;
	margin:10px 0 0;
	padding-left:1em;
}
.main.home .information li:before {
	content:'・';
	position:absolute;
	width:1em;
	left:0;
}
.main.home .information li.v2:before {
	top:-3px;
}
.main.home .information li.none {
	padding-left:0.3em;
	margin-top:0;
}
.main.home .information li.none:before {
	content:none;
}
.main.home .information li span {
	font-size:0.85em;
	display:block;
	line-height:1;
	padding-bottom:2px;
}
.main.home .information .image {
	margin-top:3%;
}
.main.home .nav {
	margin:0 auto;
	padding:0 3% 3%;
	font-size:0;
	text-align:center;
	max-width:1920px;
}
.main.home .nav .col {
	display:inline-block;
	vertical-align: top;
}
.main.home .nav .col a {
	display:block;
}
.main.home .nav .col a img {
	width:100%;
	max-width:none;
}
.main.home .nav .col-2 {
	width:100%;
}
.main.home .nav .col-4 {
	width:50%;
}
@media print, screen and (min-width: 768px){
	.main.home .nav-sns > li {
		margin-right:16px;
		margin-bottom:18px;
		max-width:253px;
	}
	.main.home .nav-sns > li:last-child {
		margin-right:0;
	}
	.main.home .twitter {
		float:left;
		width:48%;
		padding-right:70px;
	}
	.main.home .twitter .scroll-box {
		/* height:248px; */
		max-height:675px;
		padding-right:30px;
	}
	.main.home .twitter .scroll-box.v2 {
		max-height:620px;
	}
	
	.main.home .information > .title {
		position:absolute;
		text-align: center;
		left:-20px;
		width:40px;
	}
	.main.home .information {
		width:51%;
		float:right;
	}
	.main.home .information .title {
		position:absolute;
		left:-20px;
		width:40px;
	}
	.main.home .information .title:before {
		content:none;
	}
	.main.home .information .scroll-box {
		padding:0 30px 0 24px;
		max-height:388px;
		border-left:1px solid #837d7b;
	}
	.main.home .information .scroll-box.v2 {
		max-height:437px;
	}
	.main.home .information .image {
		margin-top:26px;
	}
	.main.home .nav {
		padding:0;
	}
	.main.home .nav .col-2 {
		width:49.8%;
	}
	.main.home .nav .col-4 {
		width:24.9%;
	}
}
/* e.home */
.pc {
	display:none;
}
.sp {
	display:block;
}
@media print, screen and (min-width: 768px){
	.pc {
		display:block;
	}
	br.pc {
		line-height:0;
	}
	.sp {
		display:none;
	}
}