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

html {
	font-size:10px;
}
body {
	background:#fff;
	color:#000;
	width: 100%;
	min-height: 100vh;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.6;
	letter-spacing:0;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}
/* custom */
a {
	color:#f08300;
	display:inline-block;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-decoration: none;
}
a:focus {
	outline:none;
}
a:link{
	color:#f08300;
	text-decoration: none;
}
a:visited{
	color: #f08300;
	text-decoration: none;
}
a:hover{
	color:#f08300;
	text-decoration: underline;
}
a:active{
	color:#f08300;
	text-decoration: underline;
}
img {
	line-height: 0;
	border: 0;
	width:100%;
	max-width:none;
	vertical-align:bottom;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
img::selection {
	background-color: transparent;
}
table {
	width:100%;
	table-layout: fixed;
}
a.button {
	text-decoration: none;
}
.button {
	transition: opacity 0.3s;
}
.button:hover,
.button:active  {
	opacity:0.8;
}
.button-image {
	display: inline-block;
	position: relative;
	width:300px;
	height:39px;
	margin:20px 10px 0;
	padding:8px 6px 0 30px;
	background-color:#fff;
	border:3px solid #f08300;
	border-radius: 23px;
	color:#f08300 !important;
	font-family: 'Folk Medium', 'Noto Sans JP', sans-serif;
	font-size:1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	text-decoration: none !important;
	cursor: pointer;
	transition:color 0.3s, background-color 0.3s;
}
.button-image:before {
	content: '';
	position: absolute;
	background:url(../img/icon-button.png) no-repeat;
	background-size: cover;
	background-position:0 0;
	left:3px;
	top:0;
	bottom:0;
	margin: auto 0;
	width:27px;
	height:27px;
}
.button-image:hover,
.button-image:active {
	background-color: #f08300;
	color:#fff !important;
}
.button-image:hover:before,
.button-image:active:before {
	background-position:0 -27px;
}
.shadow {
	filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.5));
}
.wff {
	font-family: 'Folk Medium', 'Noto Sans JP', sans-serif;
}
.wfmg {
	font-family: "M PLUS Rounded 1c", sans-serif;
}
.wfg {
	font-family: 'Noto Sans JP', sans-serif;
}
.wfm {
	font-family: 'Noto Serif JP', serif;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 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: 728px) {
	img {
		width:auto;
		max-width: 100%;
	}
	.button-image {
		width:410px;
		height:45px;
		margin:20px 15px 0;
		padding:8px 20px 0 40px;
		font-size:2.1rem;
	}
	.button-image:before {
		left:4px;
		width:33px;
		height:33px;
	}
	.button-image:hover:before,
	.button-image:active:before {
		background-position:0 -33px;
	}
}
/* layout */
.wrapper ,
header ,
main ,
footer {
	width:100%;
	padding:0;
	margin:0;
	position:relative;
}
.wrapper {
	position:relative;
	background:url(../img/background.jpg) repeat-y top center;
}
.wrapper:before,
.wrapper:after {
	content: '';
	position: absolute;
	top:0;
	width:50%;
	height:100%;
}
.wrapper:before {
	background:url(../img/background-left.jpg) repeat top;
	right:50%;
	z-index: -1;
}
.wrapper:after {
	background:url(../img/background-right.jpg) repeat top;
	left:50%;
	z-index: -2;
}
.container {
	width:auto;
	margin:0 auto;
	position:relative;
	padding:0 10px;
	overflow: hidden;
}
@media print, screen and (min-width: 728px){
	.container {
		padding:0 20px;
	}
}
@media print, screen and (min-width: 1025px){
	.wrapper ,
	header ,
	main ,
	footer {
		min-width:1200px;
	}
	.container {
		width:1200px;
	}
}
/* s.header */
header {
	height:85px;
}
header .logo {
	padding:0;
	margin:10px 0;
	width:245px;
}
header nav {
	opacity:0;
	text-align:center;
	width: 290px;
	height:100%;
	padding: 70px 10px 0;
	background:url(../img/background.jpg) repeat-y center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	overflow-y:scroll;
	transform: translate(290px);
	transition:transform 0.5s;
}
header nav.open {
	opacity:0.9;
	transform: translateZ(0);
}
header nav ul {
	border-top:2px solid #f08300;
	font-size:0;
	text-align:center;
}
header nav li {
	display:inline-block;
	vertical-align: top;
	width:100%;
	padding:0;
	margin:0;
	border-bottom:2px solid #f08300;
}
header nav li a {
	display:block;
	position:relative;
	padding:1em 0;
	background:rgba(249, 240, 233, 0.6);
	font-size:1.6rem;
	line-height:1.4;
	color:#000 !important;
	font-family: 'Folk Medium', 'Noto Sans JP', sans-serif;
	font-weight:500;
	text-decoration:none;
	transition:border 0.3s,color 0.3s;
}
header nav li a:hover,
header nav li a:active {
	color:#f08300 !important;
	text-decoration: none;
}
header nav li a br {
	display: none;
}
header .contact {
	background:#f08300;
	padding:10px 10px 20px;
	font-size:0;
	text-align: center;
}
header .contact > * {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width:auto;
	margin:10px 0 0;
	padding:0;
}
header .contact img {
	width:auto;
	height:28px;
}
header .contact > .index img {
	height:42px;
}
header .contact > .tel {
	padding:0 0 0 34px;
	background: url(../img/header-contact-icon-tel.png) no-repeat left;
	background-size: contain;
}
header .contact > .mail {
	padding:0 6px 0 34px;
	background: url(../img/header-contact-icon-mail.png) no-repeat left;
	background-size: contain;
}
header .contact > .mail > a {
	filter: brightness(2);
}
header .contact > .mail > a:hover,
header .contact > .mail > a:active {
	filter: brightness(1);
}
header .menu-trigger {
	display: inline-block;
	width: 36px;
	height: 29px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 28px;
	right: 24px;
	z-index: 100;
	transform: translateX(0);
	-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 0.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: 728px) {
	header {
		background:url(../img/header.jpg) no-repeat top center;
		height:520px;
	}
	header .logo {
		margin:50px 8px 0;
		width:auto;
		text-align: right;
	}
	header .logo > img {
		width:392px;
	}
	header nav {
		position: relative;
		display:block;
		margin:60px 0 0;
		padding:0;
		background:transparent;
		overflow-y:visible;
		width:auto;
  		height:auto;
 		z-index:0;
  		left:auto;
  		right:auto;
  		left:0;
  		top:0 !important;
  		transform:none;
  		opacity:1;
  		transition: all 0s;
		font-size:0;
		text-align: right;
	}
	header nav ul {
		display:inline-block;
		width:590px;
		border:0;
		font-size:0;
		text-align: center;
	}
	header nav li {
		display:inline-block;
		vertical-align: top;
		width:33.3333%;
		margin:0;
		padding:12px 8px 0;
		border:0;
	}
	header nav li a {
		height:37px;
		margin:0;
		padding:8px 0 0;
		border-bottom:3px solid #f8c170;
		color:#000 !important;
		font-size:1.8rem;
		line-height:1;
	}
	header nav li a br {
		display: inherit;
	}
	header .menu-trigger {
		display:none;
	}
	header nav li a:hover,
	header nav li a:active {
		color:#000 !important;
		border-bottom:3px solid #f08300;
	}
	header .contact {
		display: inline-block;
		width:574px;
		margin:30px 4px 0;
		padding:8px 4px;
		font-size:0;
		text-align: center;
	}
	header .contact > * {
		margin:0;
	}
	header .contact > .index {
		margin-right:14px;
	}
	header .contact > .index img {
		height:28px;
	}
	header .contact > .tel {
		margin-right:20px;
	}
}
@media print, screen and (min-width: 1025px){
	header .logo {
		margin:50px 58px 0;
	}
	header nav {
		margin:60px 50px 0;
	}
	header nav li a {
		background: transparent;
	}
	header nav li a br {
		display: none;
	}
}
.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 .logo {
	position: absolute;
	margin:0 auto;
	padding:0;
}
.main-image .title {
	position: absolute;
	margin:0 auto;
	padding:0;
}
@media print, screen and (min-width: 1025px){
	.main-image {
		width:1200px;
		height:482px;
	}
	.main .container {
		padding:0;
	}
}
.section {
	position: relative;
	margin:0 auto;
	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:700;
	line-height:1.3;
	text-align:center;
}
.section > .title-box {
	position: relative;
	margin:0 -10px;
	padding:10px 10px 12px;
	background:linear-gradient(90deg, rgba(239,130,0,0) 0%, rgba(239,130,0,0.5) 10%, rgba(239,130,0,0.5) 90%, rgba(239,130,0,0) 100%);
	color:#fff;
	font-size:2rem;
	font-weight:700;
	line-height:1.3;
	text-align:center;
}
.section > .text {
	position: relative;
	margin:20px 0 0;
	padding:0;
	font-size:1.6rem;
	font-weight:500;
}
.section > .box {
	position: relative;
	margin:30px 0 0;
}
.section > .group-button {
	margin:0 -10px;
	padding:10px 0 0;
	font-size:0;
	text-align:center;
}
.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: 728px) {
	.section {
		padding-top:60px;
	}
	.section:first-child {
		padding-top:60px;
	}
	.section:last-child {
		padding-bottom:50px;
	}
	.section > .title {
		font-size:3.6rem;
	}
	.section > .title-box {
		margin:0 -20px;
		padding:8px 10px 12px;
		font-size:3.6rem;
	}
	.section > .text {
		margin:30px 0 0;
	}
	.section > .box {
		margin:30px 0 0;
	}
	.section > .group-button {
		margin:0 -15px;
	}
}
@media print, screen and (min-width: 1025px){
	.section {
		width:850px;
	}
	.section > .title-box {
		margin:0 -60px;
		background:linear-gradient(90deg, rgba(239,130,0,0) 0%, rgba(239,130,0,0.5) 20%, rgba(239,130,0,0.5) 80%, rgba(239,130,0,0) 100%);
	}
}
footer nav {
	padding:0;
}
footer nav ul {
	padding:0;
	margin:0;
	font-size:0;
	text-align:center;
	border-top:2px solid #f08300;
}
footer nav li {
	display:inline-block;
	vertical-align: top;
	margin:0;
	padding:0;
	width:100%;
	border-bottom:2px solid #f08300;
}
footer nav a {
	display:block;
	padding:1em 0;
	background:rgba(249, 240, 233, 0.6);
	font-size:1.6rem;
	font-family: 'Folk Medium', 'Noto Sans JP', sans-serif;
	font-weight:500;
	line-height:1.4;
	color:#000 !important;
	text-decoration:none;
	transition:border 0.3s,color 0.3s;
}
footer nav li a:hover,
footer nav li a:active {
	color:#f08300 !important;
	text-decoration: none;
}
footer nav li a br {
	display: none;
}
footer .logo {
	width:240px;
	margin:40px auto 0;
}
footer .introduction {
	margin:20px auto 0;
	padding:0;
	font-size:0;
	text-align: center;
}
footer .introduction li {
	display: inline-block;
	vertical-align: middle;
	width:100%;
	margin:0;
	padding:0;
	color:#000;
	font-size:1.5rem;
	font-weight:500;
	line-height:1.4;
}
footer .introduction .name {
	width:149px;
	padding-bottom:10px;
}
footer .introduction .tel,
footer .introduction .fax {
	width:auto;
	padding-left:1em;
}
footer .copyright {
	margin:0;
	padding:12px 0 30px;
	color:#000;
	font-size:1.2rem;
	
	font-weight: 500;
	text-align: center;
}
footer .copyright span {
	display: none;
}
@media print, screen and (min-width: 728px){
	footer nav {
		padding:0;
	}
	footer nav ul {
		margin:0;
		padding:0;
		border:0;
	}
	footer nav li {
		width:20%;
		margin:0;
		padding:12px 6px 0;
		border:0;
	}
	footer nav li:last-child {
		border-right:0;
	}
	footer nav li a {
		margin:0;
		padding:8px 0;
		border-bottom:3px solid #f8c170;
		font-size:1.5rem;
		color:#000 !important;
	}
	footer nav li a:hover,
	footer nav li a:active {
		color:#000 !important;
		border-bottom:3px solid #f08300;
	}
	footer nav li a br {
		display: inherit;
	}
	footer .logo {
		width:334px;
		margin-top:60px;
	}
	footer .copyright span {
		display: inline;
	}
}
@media print, screen and (min-width: 1025px){
	footer nav li {
		width:10%;
		padding:0 6px;
	}
	footer nav li a {
		padding:2px 0;
		background:transparent;
		font-size:1.2rem;
	}
	footer nav li a br {
		display: none;
	}
	footer .introduction li br {
		display: none;
	}
	footer .introduction .name {
		padding:0;
	}
	footer .introduction .address {
		padding-left:1em;
		width:auto;
	}
}
.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: 728px){
	.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;
}
