@charset "utf-8";
/*
 *  共通
 */

html {
	font-size:10px;
}
body {
	background:#fff;
	color:#595757;
	width: 100%;
	min-height: 100vh;
	font-family: 'Noto Serif JP', serif;
	/* font-family: 'Noto Sans JP', sans-serif; */
	line-height: 1.6;
	letter-spacing:0;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}
/* custom */
a {
	color:#00a0e9;
	display:inline-block;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	font-weight: inherit;
}
a:focus {
    outline:none;
}
a:link{
    color:#00a0e9;
    text-decoration: none;
}
a:visited{
    color: #00a0e9;
    text-decoration: none;
}
a:hover{
    color:#00a0e9;
    text-decoration:underline;
}
a:active{
    color:#00a0e9;
    text-decoration:underline;
}
a img, img {
    border: 0;
    vertical-align:bottom;
    line-height:0;
}
span {
	font-size: inherit;
	font-weight: inherit;
}
img {
	width:100%;
	max-width:none;
	vertical-align:bottom;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
table {
	width:100%;
}
.button {
	width:100%;
}
.button ,
.button:hover,
.button:active {
	transition: opacity 0.3s;
}
.button:hover,
.button:active  {
	opacity:0.6;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
.cleartxt {
    text-indent: -99999%;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
}
.clr{
    clear:both;
}
.text-center {
	text-align: center;
}
@media print, screen and (min-width: 700px) {
	img {
		width:auto;
		max-width: 100%;
	}
}
/* layout */
.header ,
.main ,
.footer {
	width:100%;
	padding:0;
	margin:0;
	position:relative
}
.container {
	width:auto;
	margin:0 auto;
	position:relative;
	padding:0 10px;
	overflow: hidden;
}
@media print, screen and (min-width: 700px){
	.container {
		padding:0 20px;
	}
}
@media print, screen and (min-width: 1025px){
	.header ,
	.main ,
	.footer {
		min-width:1200px;
	}
	.container {
		width:1200px;
	}
}
/* s.header */
.header {
	z-index: 2;
	background:#cce6f3 url(../img/background.jpg) repeat top left;
	box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3);
}
.header .logo {
	display: flex;
	align-items: center;
	padding:20px 0;
	height:80px;
}
.header .logo .mark {
	width:120px;
}
.header .logo .text {
	margin-left:20px;
	font-weight:500;
	font-size:1.4rem;
	letter-spacing: 0.1em;
	text-align: center;
	color:#000;
}
.header .nav {
	opacity:0;
	text-align:center;
	width: 290px;
	height:100%;
	padding: 70px 10px 0;
	/*background:#1d2087;*/
	background:#cce6f3 url(../img/background.jpg) repeat top left;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	overflow-y:scroll;
	transform: translate(290px);
	transition:all 0.5s;
}
.header .nav.open {
	opacity:0.9;
	transform: translateZ(0);
}
.header .nav ul {
	border-top:1px solid #000;
	font-size:0;
	text-align:center;
}
.header .nav li {
	display:inline-block;
	vertical-align: top;
	width:100%;
	padding:0;
	margin:0;
	border-bottom:1px solid #000;
}
.header .nav li a {
	display:block;
	position:relative;
	padding:1em 0;
	font-size:1.6rem;
	line-height:1.4;
	color:#000;
	font-weight:500;
	text-decoration:none;
}
.header .nav li a:hover,
.header .nav li a:active {
	text-decoration:underline;
}
.header .nav li a br {
	display: none;
}
.header .menu-trigger {
	display: inline-block;
	width: 36px;
	height: 29px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 100;
	transform: translateX(0);
	transition: transform 0.5s;
	-webkit-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: #333;
	transition: all .5s;
	border-radius:10px;
}
.header .menu-trigger.active span {
 	background-color: #333;
}
.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: 700px) {
	.header .logo {
		padding:30px 0 20px;
		height:auto;
	}
	.header .logo .mark {
		width:240px;
	}
	.header .logo .text {
		font-size:2rem;
		letter-spacing: 0.45em;
	}
	.header .logo .text br {
		display: none;
	}
	.header .nav {
		position: relative;
		display:block;
		margin:0;
		padding:0 0 30px;
		background:transparent;
		overflow-y:visible;
		width:100%;
  		height:auto;
 		z-index:0;
  		left:auto;
  		right:auto;
  		left:0;
  		top:0 !important;
  		transform:none;
  		opacity:1;
  		transition: all 0s;
	}
	.header .nav ul {
		border:0;
		font-size:0;
		text-align: center;
	}
	.header .nav li {
		display:inline-block;
		vertical-align: top;
		width:auto;
		margin:10px 0 0;
		padding:0 2%;
		border:0;
		border-right:1px solid #000;
	}
	.header .nav li:last-child {
		border-right:0;
	}
	.header .nav li a {
		margin:0;
		padding:0;
	}
	.header .nav li a br {
		display: inherit;
	}
	.header .menu-trigger {
		display:none;
	}
}
@media print, screen and (min-width: 1025px){
	.header .logo {
		padding:50px 30px 40px;
	}
	.header .logo .text {
		margin-left:40px;
		font-size:2.4rem;
	}
	.header .nav li {
		padding:0;
	}
	.header .nav li a {
		padding:0 20px;
		line-height:1;
	}
	.header .nav li a br {
		display: none;
	}
}
.main {
	z-index: 0;
	background:#eeeef0 url(../img/background-main.jpg) repeat top left;
}
.main .container {
	overflow: visible;
}
.main-image {
	position:relative;
	margin:0 auto;
	width:100%;
	max-width:1200px;
	overflow:hidden;
}
.main-image > .main-slider {
	position:relative;
	width:100%;
}
.main-image > .main-slider li {
	position: relative;
}
.main-image > .main-slider .title {
	position: absolute;
	top:0;
	bottom:0;
	width:100%;
	margin:auto;
	padding:0;
	font-size:2.6rem;
	font-weight:600;
	line-height:1;
	height:1em;
	text-align:center;
	color:#fff;
	letter-spacing: 0.1em;
	padding-left:0.1em;
}
.main-image > .main-slider .text {
	position: absolute;
	top:0;
	bottom:0;
	width:100%;
	margin:auto;
	padding:0;
	font-size:1.6rem;
	font-weight:500;
	line-height:1.4;
	height:1.4em;
	text-align:center;
	color:#fff;
	letter-spacing: 0;
}
.section {
	position: relative;
	padding:40px 0 0;
}
.section:first-child {
	padding-top:40px;
}
.section:last-child {
	padding-bottom:50px;
}
.section > .title {
	position: relative;
	margin:0;
	padding:0;
	font-size:2.4rem;
	font-weight:600;
	line-height:1.3;
	color:#595757;
	text-align:center;
	letter-spacing: 0.1em;
	padding-left:0.1em;
}
.section > .text {
	position: relative;
	margin:16px 0 0;
	padding:0;
	font-size:1.6rem;
	font-weight:500;
	color:#595757;
}
.section > .box {
	position: relative;
	margin:30px 0 0;
}
.list-box {
	font-size:0;
	text-align:center;
}
.list-box > li {
	position:relative;
	display:inline-block;
	vertical-align: top;
}
.list-bullet > li,
.list-double > li,
.list-square > li,
.list-notice > li {
	padding-left:1em;
}
.list-bullet > li:before,
.list-double > li:before,
.list-square > li:before,
.list-notice > li:before {
	content:'';
	position:absolute;
	left:0;
}
.list-bullet > li:before {
	content:'●';
}
.list-double > li:before {
	content:'◎';
}
.list-square > li:before {
	content:'■';
}
.list-notice  > li:before{
	content:'※';
}
.section > *:first-child {
	margin-top:0 !important;
}
.popup-hidden {
	display: none;
}
@media print, screen and (min-width: 700px) {
	.main-image > .main-slider .title {
		font-size:4.8rem;
		letter-spacing: 0.3em;
		padding-left:0.3em;
	}
	.main-image > .main-slider .text {
		font-size:1.8rem;
	}
	.section {
		position: relative;
		padding-top:60px;
		margin:0;
	}
	.section:first-child {
		padding-top:60px;
	}
	.section:last-child {
		padding-bottom:60px;
	}
	.section > .title {
		font-size:3.6rem;
		letter-spacing: 0.3em;
		padding-left:0.3em;
	}
	.section > .text {
		margin:30px 0 0;
	}
	.section > .box {
		margin:30px 0 0;
	}
}
@media print, screen and (min-width: 1025px){
	.main-image {
		width:1200px;
		height:600px;
	}
	.main .container {
		width:910px;
		padding:0;
	}
}
.footer {
	z-index: 1;
	background:#cce6f3 url(../img/background.jpg) repeat top left;
	box-shadow: 0px -6px 6px 0px rgba(0, 0, 0, 0.3);
}
.footer .nav {
	padding:50px 0 20px;
}
.footer .nav ul {
	padding:0;
	margin:0;
	font-size:0;
	text-align:center;
	border-top:1px solid #000;
}
.footer .nav li {
	display:inline-block;
	vertical-align: top;
	margin:0;
	padding:0;
	width:100%;
	border-bottom:1px solid #000;
}
.footer .nav a {
	display:block;
	padding:1em 0;
	font-size:1.6rem;
	line-height:1.4;
	font-weight:500;
	color:#000;
	text-decoration:none;
}
.footer .nav li a:hover,
.footer .nav li a:active {
	text-decoration: underline;
}
.footer .nav li a br {
	display: none;
}
.footer .logo {
	width:50%;
	min-width:160px;
	max-width:240px;
	margin:0 auto;
	padding:20px 0 10px;
}
.footer .introduction {
	margin:0 auto;
	padding:10px 0;
	font-size:0;
	text-align: center;
	max-width:520px;
}
.footer .introduction li {
	display: inline-block;
	vertical-align: middle;
	font-size:1.6rem;
	padding:0;
	margin:0;
	color:#595757;
	font-weight:400;
	width:100%;
	line-height:1.4;
	letter-spacing: 0.1em;
}
.footer .introduction .name {
	padding-bottom:18px;
	font-weight: 500;
}
.footer .copyright {
	margin:0;
	padding:12px 0 30px;
	text-align: center;
	font-size:1.5rem;
	color:#595757;
	font-weight:400;
}
.footer .copyright span {
	display: none;
}
@media print, screen and (min-width: 700px){
	.footer .nav {
		padding:40px 0 20px;
	}
	.footer .nav ul {
		margin:0;
		padding:0;
		border:0;
	}
	.footer .nav li {
		width:auto;
		margin:10px 0 0;
		padding:0 2%;
		border:0;
		border-right:1px solid #000;
	}
	.footer .nav li:last-child {
		border-right:0;
	}
	.footer .nav li a {
		padding:0;
		margin:0;
	}
	.footer .nav li a br {
		display: inherit;
	}
	.footer .introduction li {
		padding:2px 0;
		width:auto;
	}
	.footer .introduction li br {
		display: none;
	}
	.footer .introduction .name {
		width:100%;
	}
	.footer .introduction .address,
	.footer .introduction .fax {
		padding-left:1em;
	}
	.footer .copyright span {
		display: inline;
	}
}
@media print, screen and (min-width: 1025px){
	.footer .nav li {
		padding:0;
	}
	.footer .nav li a {
		padding:0 20px;
		line-height:1;
	}
	.footer .nav li a br {
		display: none;
	}
}
.vd,.vt,.hm {
	display:none !important;
}
.hd,.ht,.vm {
	display:inherit !important;
}
br.vd,br.hd,br.vt,br.htbr.vm,br.vm {
	line-height:0 !important;
}
@media print, screen and (min-width: 700px){
	.vd,.ht,.vm {
		display:none !important;
	}
	.hd,.vt,.hm {
		display:inherit !important;
	}
}
@media print, screen and (min-width: 1025px){
	.hd,.vt,.vm {
		display:none !important;
	}
	.vd,.ht,.hm {
		display:inherit !important;
	}
}
/* print */
@media print {
	body{
		-webkit-print-color-adjust: exact;
	}
	#ToolBar {
		display:none !important;
	}
	.section > div {
		page-break-inside:avoid;
	}
}
@page {
	size: A4 portrait;
	margin-left:   0;
 	margin-right:  0;
 	margin-top:    10mm;
 	margin-bottom: 10mm;
}
