@charset "utf-8";

.pconly {
	display: block;
}
.sponly {
	display: none;
}



/* splash
------------------------------------------------------------*/

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background:#000;
	text-align:center;
	color:#000;
}
.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration: 1.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
.fadeUp2{
	animation-name: fadeUpAnime;
	animation-duration: 2.0s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
  0% {
	opacity: 0;
	transform: translateY(100px);
  }
  40% {
	opacity: 0;
	transform: translateY(100px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}


/*************
ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ã‚¢ãƒ‹ãƒ¡
*************/

.inview {
	opacity: 0;
	transition: transform 1.6s, opacity 3.0s;
}
.inview_n {
	opacity: 0;
	transition: opacity 2.2s;
}
.inview_l {
	transform: translateX(-100px);
}
.inview_r {
	transform: translateX(100px);
}
.inview_b {
	transform: translateY(60px);
}
.inview_n.inview.show {
	opacity: 1;
}
.inview_l.inview.show,
.inview_r.inview.show {
	transform: translateX(0);
	opacity: 1;
}
.inview_b.inview.show {
	transform: translateY(0);
	opacity: 1;
}

.dly2 {
	transition-delay: .2s;
	animation-delay: .2s;
}
.dly4 {
	transition-delay: .4s;
	animation-delay: .4s;
}
.dly6 {
	transition-delay: .6s;
	animation-delay: .6s;
}
.dly8 {
	transition-delay: .8s;
	animation-delay: .8s;
}
.dly10 {
	transition-delay: 1.0s;
	animation-delay: 1.0s;
}
.dly12 {
	transition-delay: 1.2s;
	animation-delay: 1.2s;
}
.dly14 {
	transition-delay: 1.4s;
	animation-delay: 1.4s;
}
.dly16 {
	transition-delay: 1.6s;
	animation-delay: 1.6s;
}
.dly20 {
	transition-delay: 2.0s;
	animation-delay: 2.0s;
}
.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration: 1.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
  0% {
	opacity: 0;
	transform: translateY(100px);
  }
  40% {
	opacity: 0;
	transform: translateY(100px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

.ctgsubUp {
	animation-name: ctgsubUpAnime;
	animation-duration: 3.0s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes ctgsubUpAnime{
  0% {
	opacity: 0;
	transform: translateY(30px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

/* imgWrap
---------------------------------------------------- */

.imgWrap {
	overflow: hidden;
}
.imgWrap img {
	display: block;
	transition-duration: 0.6s;
}
.imgWrap img:hover {
	transform: scale(1.06);
	transition-duration: 0.6s;
	opacity: 0.6;
}

/* HEADER
------------------------------------------------------------*/
.header,
.lowdir .header {
	position: fixed;
	width: 100%;
	height: 110px;
	z-index: 9999;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
	overflow: hidden;
	background: url(../images/black.png);
	background: linear-gradient(rgba(0,0,0,1),rgba(0,0,0,0));
}
.strt .header,
.lowdir.strt .header {
	background: url(../images/black.png);
}

.header .inbox {
	width: 93.4%;
	margin: 0 auto;
}
.logo {
	position: relative;
	float: left;
	width: 25%;
	margin: 0 0 0 4%;
	padding: 23px 0 0;
	z-index: 99;
}
.logo img {
	width: 216px;
	height: auto;
}
.header .topnv {
	float: right;
	width: 46%;
	max-width: 248px;
	margin: 0;
	padding: 18px 0 0;
}
.topnv ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
	height: 40px;
}
.topnv ul li {
	height: 40px;
}
.topnv ul li.gnv a {
	display: block;
	position: relative;
	white-space: nowrap;
	padding: 14px 0 6px;
	font-family: GothamBook;
	font-weight: 400;
	font-size: 11px;
	color: #fff;
	line-height: 1.3em;
	text-align: left;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
	letter-spacing: 0.04em;
	text-decoration: none;
}
.topnv ul li.gnv a::after {
	position: absolute;
	bottom: 0px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.topnv ul li.gnv a:hover::after {
	transform: scale(1, 1);
}
.topnv ul li.nv04 {
	padding: 14px 0 0;
}
.topnv ul li.nv04 a {
	padding: 5px 0 2px;
}
.topnv ul li.nv04 a img {
	width: 14px;
	height: auto;
}

div.topcont {
	display: block;
}


.menubtnbox,
.menu {
	display: none;
}

/* smp nav-circle
------------------------------------------------------------*/

#nav-circle-bg {
	position: fixed;
	background: rgba(0,0,0,0.8);
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	-webkit-transform: translateY(100%);
	  transform: translateY(100%);
	-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
	-webkit-transition-delay: .95s;
	  transition-delay: .95s;
	z-index: 3;
}
.open #nav-circle-bg {
	-webkit-transform: translateY(0);
	  transform: translateY(0);
	-webkit-transition-delay: 0.1s;
	  transition-delay: 0.1s;
}
#smpnvsub {
	display: none;
	opacity: 0;
	position: fixed;
	top: 10px;
	left: 5%;
	width: 90%;
	height: auto;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	z-index: 9;
	-webkit-transform: translateY(-500px);
	  transform: translateY(-500px);
}
.open #smpnvsub {
	position: fixed;
	opacity: 1;
	-webkit-transition-delay: 0.3s;
	  transition-delay: 0.3s;
	-webkit-transform: translateY(0);
	  transform: translateY(0);
}
.smpnvlogo {
	width: 100%;
	height: 80px;
	border-right: none;
	border-bottom: solid 1px #fff;
	display: block;
}
.smpnvlogo:after{
	position: absolute;
	content: '';
	bottom: -1px;
	left: 0;
	width: 14%;
	height: 3px;
	background: #fff;
}
.smpnvlogo img {
	width: 200px;
	height: auto;
}
#nav {
	position: fixed;
	font-size: 32px;
	height: 100%;
	width: 20%;
	right: -20%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	  align-items: center;
	z-index: 9;
}


#nav > ul {
	width: 100%;
	margin-top: 0;
	list-style: none;
	z-index: 999;
}
#nav li {
	width: auto;
	display: block;
	padding: 0 0 30px;
	-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease,-webkit-transform .5s ease;
}
#nav li:nth-child(1) {
	-webkit-transition-delay: 0;
	  transition-delay: 0;
}
#nav li:nth-child(2) {
	-webkit-transition-delay: .1s;
	  transition-delay: .1s;
}
#nav li:nth-child(3) {
	-webkit-transition-delay: .2s;
	  transition-delay: .2s;
}
#nav li:nth-child(4) {
	-webkit-transition-delay: .3s;
	  transition-delay: .3s;
}
#nav li:nth-child(5) {
	-webkit-transition-delay: .4s;
	  transition-delay: .4s;
}
#nav li:nth-child(6) {
	-webkit-transition-delay: .5s;
	  transition-delay: .5s;
}
#nav li:nth-child(7) {
	-webkit-transition-delay: .6s;
	  transition-delay: .6s;
}
#nav li:nth-child(8) {
	-webkit-transition-delay: .7s;
	  transition-delay: .7s;
}
#nav li:nth-child(9) {
	-webkit-transition-delay: .8s;
	  transition-delay: .8s;
}
#nav a {
	padding: 8px 0;
	font-size: 18px;
	color: #fff;
	line-height: 1.3em;
	text-align: left;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
	letter-spacing: 0.1em;
	text-decoration: none;
}
#nav li.nv05 a {
	font-size: 13px;
}

#nav a:hover {
	color: #fff;
}
#nav a:hover:after {
	width: 100%;
}
.open #nav li {
	-webkit-transform: translateX(-200%);
	  transform: translateX(-200%);
}
.open #nav li:nth-child(1) {
	-webkit-transition-delay: .2s;
	  transition-delay: .2s;
}
.open #nav li:nth-child(2) {
	-webkit-transition-delay: .3s;
	  transition-delay: .3s;
}
.open #nav li:nth-child(3) {
	-webkit-transition-delay: .4s;
	  transition-delay: .4s;
}
.open #nav li:nth-child(4) {
	-webkit-transition-delay: .5s;
	  transition-delay: .5s;
}
.open #nav li:nth-child(5) {
	-webkit-transition-delay: .6s;
	  transition-delay: .6s;
}
.open #nav li:nth-child(6) {
	-webkit-transition-delay: .7s;
	  transition-delay: .7s;
}
.open #nav li:nth-child(7) {
	-webkit-transition-delay: .8s;
	  transition-delay: .8s;
}
.open #nav li:nth-child(8) {
	-webkit-transition-delay: .9s;
	  transition-delay: .9s;
}
.open #nav li:nth-child(9) {
	-webkit-transition-delay: 1.0s;
	  transition-delay: 1.0s;
}
#nav li {
	line-height: 0.7em;
}
#nav li span {
	display: inline-block;
	font-family: GothamBook;
	font-weight: 400;
	line-height: 2.0em;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
#nav li span:after {
	content: "";
	display: block;
	height: 1px;
	background-color: #fff;
	width: 100%;
	-webkit-transition: width 0.3s ease;
	transition: width 0.3s ease;
	transform: scale(0, 1);
}
#nav li span:hover::after {
	transform: scale(1, 1);
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}

#nav {
	position: fixed;
	font-size: 32px;
	height: auto;
	width: 80%;
	top: 160px;
	left: 8%;
	right: initial;
	display: block;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-transform: translateX(30%);
	transform: translateX(30%);
	opacity: 0.0;
	pointer-events: none;
}
.open #nav {
	transition: transform 2s ease-out, opacity 1s ease-in-out;
	opacity: 1.0;
	pointer-events: auto;
}
.open #nav li {
	-webkit-transform: translateX(-30%);
	  transform: translateX(-30%);
}


/* ========================
* nav-toggle
* ======================== */
#nav-toggle {
	display: none;
	position: fixed;
	top: 15px;
	right: 12px;
	width: 54px;
	height: 54px;
	padding: 0px 11px 0;
	cursor: pointer;
	z-index: 100;
}
#nav-toggle > div {
	position: relative;
}
#nav-toggle span {
	width: 100%;
	height: 2px;
	left: 0;
	display: block;
	background: var(--color-theme);
	position: absolute;
	-webkit-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.scron #nav-toggle span {
	background: #fff;
}
#nav-toggle span:nth-child(1) {
	top: 10px;
	opacity: 0;
}
#nav-toggle span:nth-child(2) {
	top: 10px;
	left: -5px;
	font-family: GothamBook;
	font-size: 15px;
	color: #fff;
	opacity: 1;
	background: none;
	letter-spacing: 0.3px;
	white-space:nowrap;
}
#nav-toggle span:nth-child(3) {
	top: 34px;
	opacity: 0;
}
.open #nav-toggle span:nth-child(1) {
	opacity: 1;
	top: 23px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	opacity: 0;
}
.open #nav-toggle span:nth-child(3) {
	opacity: 1;
	top: 23px;
	background: #fff;
	-webkit-transform: rotate(-45deg);
	  transform: rotate(-45deg);
}

/* å…¨ä½“
------------------------------------------------------------*/
.wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 30px 0 0;
}
.pgform .wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 212px 0 0;
}
.pgancbox {
	padding: 50px 0 0 0;
	margin: -50px 0 0 0;
}
.box {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.widebox {
	width:100%;
	margin: 0;
}
.imgbox {
	overflow: hidden;
	width: 100%;
	clear: both;
	text-align: center;
}
.imgbox img {
	border: 0;
}
.wideimg {
	position: relative;
	width: 100%;
	height: 350px;
	text-align: center;
	overflow: hidden;
}
.wideimg img {
	width: 100%;
	height: auto;
	text-align: center;
}
.textbox {
	font-size: 16px;
	color: #444;
	text-align: left;
	line-height: 1.8em;
}
ul.listtxt {
	padding: 0 0 0 16px;
	text-align: left;
	line-height: 1.4em;
	text-indent: -16px;
}
ul.listtxt li {
	padding: 0 0 14px;
	font-size: 1.0em;
	color: #444;
}

.widecolumn {
	float: left;
	width: 750px;
	padding: 0;
}
.sidecolumn {
	float: right;
	width: 210px;
	padding: 0;
}

/**************************
/* pagetitle
**************************/

.subtitle {
	width: 100%;
	margin: 0 auto 50px;
}
.subtitle h1 {
	font-size: 2.2em;
	color: #111;
	font-weight: 500;
	line-height: 1.2em;
	letter-spacing: 0.3em;
	text-align: left;
}
#pagetitle {
	position: relative;
	width: 100%;
	height: 220px;
	margin-top: -60px;
	overflow: hidden;
}
#pagetitle img {
	width: 100%;
	height: auto;
		-webkit-filter: brightness(0.6);
		-moz-filter: brightness(0.6);
		-o-filter: brightness(0.6);
		-ms-filter: brightness(0.6);
	filter: brightness(0.6);
}
#pagetitle .breadbox {
	position: absolute;
	top: 90px;
	left: 50%;
	margin-left: -550px;
	color: #fff;
}
#pagetitle h1 {
	position: absolute;
	top: 138px;
	left: 50%;
	margin-left: -540px;
	font-size: 1.6em;
	color: #fff;
	letter-spacing: 0.3em;
}


#pgformtop .box {
	padding: 0 0 50px;
	border-top: solid 5px #d0131b;
}
#pgformtop .box .pagett {
	padding: 90px 0 50px;
	width: 100%;
	text-align: center;
}
#pgformtop .box .pagett h1 {
	padding: 0 0 20px;
	font-size: 30pt;
	color: #666;
	letter-spacing: 0.1em;
}
#pgformtop .box .pagett h6 {
	font-weight: 400;
	font-size: 13pt;
	color: #444;
	letter-spacing: 0.1em;
}
#pgformtop .box .textbox {
	font-size: 11pt;
	color: #444;
	line-height: 1.8em;
	letter-spacing: 0.1em;
	text-align: center;
}
#pgformtop .box .textatt {
	padding: 20px 0 0;
	font-size: 10pt;
	color: #444;
	line-height: 1.8em;
	text-align: center;
}
.textatt2 {
	padding: 0 0 50px;
	font-size: 13pt;
	color: #444;
	line-height: 1.8em;
	text-align: center;
}


/**************************
/* ãƒ‘ãƒ³ããšãƒªã‚¹ãƒˆ
**************************/


#breadcrumb li {
	display: inline;
	list-style-type: none;
}
#breadcrumb li::after {
	padding: 0 6px;
	content:" > ";
}
#breadcrumb li:last-child::after {
	padding: 0 0 0 6px;
	content:"";
}
#breadcrumb li a {
	color: #fff;
	text-decoration: underline;
}
#breadcrumb li a:hover {
	color: #eee;
	text-decoration: none;
}

/**************************
/* flexbox
**************************/

.flexbox {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}



/**************************
/* ã‚°ãƒªãƒƒãƒ‰
**************************/


.gridWrapper {
	display: block;
	width: 100%;
}
* html .gridWrapper{height:1%;}

.grid {
	float:left;
}
.rgrid {
	margin-left: 5%;
}
.recBox {
	margin: 0;
	background:url(../images/bg_recbox.jpg);
}
.recBox a {
	display: block;
	width: 100%;
	height: 100%;
}

.columnwrap {
	position: relative;
	width: 100%;
	margin: 0;
	z-index: 111;
}
.columnwrap .mgrid {
	width: 70%;
}
.columnwrap .sgrid {
	width: 25%;
	margin: -100px 0 0 5%;
}

/*************
/* ã‚¿ã‚¤ãƒˆãƒ«
*************/

.fs01 {
	font-size: 24pt;
}
.fs02 {
	font-size: 18pt;
}
.fs03 {
	font-size: 13pt;
}

.subtt {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 0 0 60px;
	padding: 10px 0 15px;
	color: #444;
	line-height: 1.0em;
	text-align: center;
}
.subtt:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	display: inline-block;
	width: 60px;
	height: 2px;
		-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	transform: translate(-50%);
	background: #111;
}
.subtt h1 {
	font-family: 'Crimson Text', serif !important;
	padding: 0 0 22px;
	font-size: 30pt;
	letter-spacing: 0.1em;
}
.subtt h1.fsjp {
	padding: 0;
	font-size: 20pt;
	letter-spacing: 0.1em;
	line-height: 1.3em;
}
.subtt h3 {
	font-weight: 400;
	font-size: 13pt;
	letter-spacing: 0.1em;
}

.subtt_s {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 0 0 60px;
	color: #444;
	line-height: 1.2em;
	text-align: left;
}
.subtt_s:before {
	content: '';
	position: absolute;
	left: 0%;
	bottom: -20px;
	display: inline-block;
	width: 60px;
	height: 5px;
	background: rgb(243,88,132);
	background: linear-gradient(90deg, rgba(243,88,132,1) 0%, rgba(201,104,161,1) 33%, rgba(148,118,215,1) 66%, rgba(123,133,249,1) 100%);
}
.subtt_s h3 {
	font-size: 18pt;
	font-weight: 700;
}
.subtt_s .nbtnbox {
	position: absolute;
	right: 0;
}
.subtt_s .nbtnbox a {
	color: #444;
	text-decoration: none;
}
.subtt_s .nbtnbox a:hover {
	color: #ccc;
	text-decoration: underline;
}


h1.csub .csubtt {
	color: #344e73;
	font-weight: bold;
}
h1.csub .csubmore {
	position: absolute;
	top: 0;
	right: 10px;
}

h1.csub .csubmore a {
	padding: 0 0 0 26px;
	font-size: 14pt;
	text-decoration: underline;
	background: url(../images/icon_ggmap.png) no-repeat 0 center;
}
h1.csub .csubmore a:hover {
	text-decoration: none;
}



h1.csub2 {
	width: 300px;
	margin: 0 0 30px -100px;
	padding: 50px 0 32px;
	font-size: 1.7em;
	color: #2c489d;
	font-weight: bold;
	text-align: right;
	border-bottom: solid 2px #2c489d;
}
h1.csub2b {
	width: 250px;
}

h1.csub2 img {
	margin: 0 10px 6px 0;
	vertical-align: middle;
}
h1.csub3 img {
	height: 40px;
	width: auto;
	padding: 0 0 0 40px;
}
h1.csub4 {
	width: 100%;
	padding: 4px 0 20px;
	font-size: 1.7em;
	color: #444;
	text-align: center;
}
h1.csub4 img {
	height: 40px;
	width: auto;
}
h1.csub5 {
	margin: 0 0 20px;
	padding: 4px 0 20px;
	font-size: 1.8em;
	color: #444;
	line-height: 1.0em;
	border-bottom: 1px dotted #ccc;
	text-align: center;
}
h1.csub5 img {
	height: 40px;
	width: auto;
}
h1.csub6 {
	margin: 0 0 10px;
	padding: 5px 50px 5px 78px;
	font-size: 1.8em;
	color: #444;
	line-height: 1.0em;
	text-align: left;
	text-indent: -30px;
}
h1.csub6 span {
	font-size: 0.8em;
	color: #444;
	line-height: 1.0em;
}
h1.csub7 {
	margin: 0 0 10px;
	padding: 5px 50px 5px 48px;
	font-size: 1.8em;
	color: #444;
	line-height: 1.2em;
	text-align: left;
}
.icsub01 {
	width: 100%;
	padding: 0 0 0 30px;
	font-family: "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ Pro W3", "HiraKakuPro-W3", "ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, Osaka, sans-serif;
	font-size: 1.8em;
	color: #444;
	text-align: left;
	text-indent: -30px;
}
.icsub01 img {
	margin: 0 10px 8px 0;
	vertical-align: middle;
}
.bodersub {
	width: 40%;
	margin: 0 0 20px;
	padding: 10px;
	font-size: 1.1em;
	color: #444;
	text-align: center;
	border: 1px solid #ccc;
}
.bodersub img {
	margin: 0 10px 8px 0;
	vertical-align: middle;
}

.penline01 {
	background:linear-gradient(transparent 70%, #ffd0d8 70%);
}

/*************
ãƒœã‚¿ãƒ³
*************/



.blkbtn {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 6px 72px 9px 16px;
	font-size: 1.1em;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	background-color: #111 !important;
	transition: all .6s;
}
.blkbtn::after {
	content: '';
	position: absolute;
	top:46%;
	right: 20px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	transition: all .3s;
}
.blkbtn:hover {
	color: #fff;
	background-color: #666 !important;
}

.blkbtn:hover::after {
	right: 15px;
}


.morebtn {
	position: relative !important;
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 50px;
	font-size: 1.1em;
	color: #fff !important;
	line-height: 46px;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	transition: 0.4s;
	z-index: 1;
	background-color: #84721b !important;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
	border-radius: 6px;
}
.morebtn:before,
.morebtn_w:before {
	content: "";
	position: absolute !important;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	background-color: #84721b;
	transition: 0.2s;
}
.morebtn:hover {
	color: #fff !important;
}
.morebtn:hover:before {
	z-index: -1;
	left: 0;
	background-color: #000;
}
.morebtn span {
	padding: 0 30px 0 10px;
	font-weight: 500;
	background: url(../images/icon_arrow_w.png) no-repeat right 0px center;
	background-size: 10px 12px;
	letter-spacing: 0.1em;
}
#ixcont04 .morebtn span {
	padding: 0 50px 0 10px;
	font-weight: 500;
	background: url(../images/icon_blank_white.png) no-repeat right 0px center;
	background-size: 20px 20px;
	letter-spacing: 0.1em;
}

.morebtn2 {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 60px;
	font-size: 1.1em;
	color: #fff !important;
	line-height: 59px;
	background: linear-gradient(90deg, rgba(243,88,132,1) 0%, rgba(201,104,161,1) 33%, rgba(148,118,215,1) 66%, rgba(123,133,249,1) 100%);
	text-decoration: none;
	text-align: center;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
	border-radius: 6px;
}
.morebtn2:hover {
	background: #111;
}


.btnbox {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.btn01 {
	display: block;
	width: 100%;
	padding: 5px 0;
	background: #eee0cc;
	text-align: center;
}
.btn01 a {
	display: block;
	width: 100%;
	height: auto;
}

.btn01:hover {
	background: #eee;
}
.btn02 {
	display: block;
	width: 100%;
	padding: 5px 0;
	background: #c68992;
	border: 1px solid #ab4a64;
	text-align: center;
}
.btn02 a {
	display: block;
	width: 100%;
	height: auto;
}
.btn02:hover {
	background: #ab4a64;
}
.btn03 {
	display: block;
	width: 100%;
	padding: 5px 0;
	background: #fff;
	border: 1px solid #ab4a64;
	text-align: center;
}
.btn03 a {
	display: block;
	width: 100%;
	height: auto;
}
.btn03:hover {
	background: #c68992;
}


/*************
ãƒ¡ã‚¤ãƒ³ ã‚³ãƒ³ãƒ†ãƒ³ãƒ„
*************/
section.content{
	margin-bottom:20px;
	font-size:14px;
	overflow:hidden;
}
* html section.content{height:1%;}




/* contactbox
------------------------------------------------------------*/


.contactbox .inbox {
	position: relative;
	padding: 50px 0;
	text-align: left;
}
.contactbox .ct_tel {
	width: 80%;
	max-width: 1100px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-content: flex-start;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	padding-right: 5%;
	padding-top: 0;
}
.contactbox div.ctitem_logo {
	width: 40%;
	margin: 0 3%;
}
.contactbox div.ctitem_logo img {
	width: 100%;
	height: auto;
}
.contactbox div.ctitem_tel {
	width: 54%;
	margin: 0;
	font-weight: 400;
	text-align: center;
	line-height: 1.0em;
}
.contactbox div.ctitem_tel .teltime {
	padding: 28px 0 30px;
	line-height: 1;
	font-size: 27px;
	letter-spacing: -0.06em;
	color: #001950;
	font-weight: 500;
	text-align: center;
}
.contactbox div.ctitem_tel .telbody {
	position:relative;
	display: inline-block;
	padding-left: 60px;
	font-size: 58px;
	letter-spacing: -0.04em;
	color: #001950;
	font-weight: 500;
	text-align: left;
}
@media only screen and (max-width: 1300px){
.contactbox div.ctitem_tel .teltime {
	font-size: 1.8vw;
}
}
.contactbox div.ctitem_tel .telbody {
	font-size: 54px;
}
@media only screen and (max-width: 1100px){

.contactbox div.ctitem_tel .teltime {
	font-size: 1.68vw;
}
.contactbox div.ctitem_tel .telbody {
	font-size: 4.0vw;
}
}
.contactbox div.ctitem_tel .telbody:before{
	content: '';
	display: block;
	position:absolute;
	top: 0px;
	left: 0;
	width: 43px;
	height: 28px;
	background-image: url(../images/icon_freedial.png);
	background-size: contain;
	background-repeat:no-repeat;
}
.contactbox div.ctitem_tel .telbody a {
	margin: 0;
	color: #001950;
	text-decoration: none;
	line-height: 0em;
}
@media only screen and (max-width: 1064px){
.contactbox .ct_tel {
	width: 90%;
}
.contactbox div.ctitem_tel .teltime {
	font-size: 1.84vw;
}
}

/* pagetop
------------------------------------------------------------*/

#pageTop {
	position: fixed;
	right: 6px;
	bottom: 100px;
	z-index: 13;
}
#pageTop a {
	width: 56px;
	height: 53px;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background-image: url(../images/pagetop.png);
	background-size: 112px 53px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
	border-radius: 6px;
}
a.pageTopBtn {
	background-position: 0px 0px;
}
a.pageTopBtn:hover{ background-position:-56px 0;}



/* FOOTER
------------------------------------------------------------*/

.footer {
	width: 100%;
	margin: 0;
	background: #000;
	padding: 20px 0;
}
.footer .ftinbox {
	position: relative;
	width: 94%;
	margin: 0 auto;
}
.footer .copyright {
	font-family: GothamBook;
	font-weight: 400;
	font-size: 10px;
	color: #fff;
	letter-spacing: 0.04em;
	text-align: center;
}


/* ------------------------------------------------------------------------------------------------------------------------ */

@media only screen and (max-width: 1100px){
/* ------------------------------------------------------------------------------------------------------------------------ */



.box {
	width: 100%;
	margin: 0 auto;
}

.wideimg {
	height: auto;
}

.header .topnv {
	width: 50%;
	max-width: 248px;
}



}


@media only screen and (max-width: 896px) {
/* ------------------------------------------------------------------------------------------------------------------------ */



}

@media only screen and (max-width: 768px){

/* ------------------------------------------------------------------------------------------------------------------------ */

.pconly {
	display: none;
}
.sponly {
	display: block;
}


.header h1.logo,
.header.fixed h1.logo {
}
.header h1.logo img {
}

.header .topnvbox .topcontact .toptel,
.header .topnvbox .topcontact .topmail {
	display: none;
}



.topnv {
	display: none;
}
.header .mailbtn,
.header.fixed .mailbtn {
	display: none;
}
#nav-toggle {
	display: block;
}
#nav-toggle {
	right: 13px;
}



.toptel {
	display: none !important;
}
.header .topmail a {
	color: #444;
	border: solid 1px #111;
}



.smpbtn {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 62px;
	height: 62px;
	text-align: center;
	z-index: 102;
}
.header.fixed .smpbtn {
	height: 62px;
}
.smpbtn img {
	padding: 5px 0 0;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.smpbtn .drawer-hamburger {
	top: 0 !important;
	margin: 0 auto !important;
}


#pagetitle .breadbox {
	display: none;
}
#pagetitle h1 {
	position: absolute;
	top: 58%;
	left: 5%;
	margin-left: 0;
	font-size: 1.4em;
}

.box {
	width: 94%;
	margin: 0 3%;
	padding: 0;
}

.subtt h1 {
	padding: 0 0 15px;
	font-size: 22pt;
	letter-spacing: 0.1em;
}
.subtt h3 {
	font-weight: 400;
	font-size: 12pt;
	letter-spacing: 0.1em;
}
h1.csub {
	padding: 5px 0 5px;
}
h1.csub img {
	height: 24px;
	width: auto;
	padding: 0 30px;
}

h1.csub2 {
	width: 100%;
	margin: 0 auto 20px;
	padding: 50px 0 32px;
	font-size: 1.7em;
	color: #2c489d;
	font-weight: bold;
	text-align: center;
	border-bottom: none;
}
h1.csub2b {
	width: 250px;
}
h1.csub2 span {
	padding: 0 0 16px;
	border-bottom: solid 2px #2c489d;
}
h1.csub7 {
	margin: 0 5% 10px;
	padding: 5px 0;
	font-size: 1.6em;
	color: #444;
	line-height: 1.2em;
	text-align: left;
}
.icsub01 {
	font-size: 1.5em;
}

.bodersub {
	width: 70%;
}

.btn01,
.btn02,
.btn03  {
	width: 100%;
	padding: 2px 0;
}
.btn01 img,
.btn02 img,
.btn02 img {
	width: 80%;
	max-width: 280px;
	height: auto;
}

.wrapper {
	width: 100%;
	overflow: hidden;
}
.lowdir .wrapper {
	width: 100%;
	margin: 0;
	padding: 30px 0 0;
}
.lowdir .wrapper .inbox {
	width: 90%;
	margin: 0px auto;
}
.pgproduct .wrapper {
	width: 100% !important;
	margin: 0;
}
.grid {
	float: none !important;
	margin: 0;
}

.columnwrap {
	position: relative;
	width: 100%;
	margin: 0;
	z-index: 111;
}
.columnwrap .mgrid {
	float: none;
	width: 100%;
}
.columnwrap .sgrid {
	float: none;
	width: 100%;
	margin: 15% 0 0;
}



/* contactbox
------------------------------------------------------------*/


.contactbox .inbox {
	position: relative;
	padding: 50px 0;
	text-align: left;
}
.contactbox .ct_tel {
	display: block;
	width: 90%;
}
.contactbox div.ctitem_logo {
	width: 60%;
	margin: 0 auto;
}
.contactbox div.ctitem_logo img {
	width: 100%;
	height: auto;
}
.contactbox div.ctitem_tel {
	width: 90%;
	margin: 0 2% 0 8%;
	font-weight: 400;
	text-align: center;
	line-height: 1.0em;
}
.contactbox div.ctitem_tel .teltime {
	padding: 28px 0 20px;
	line-height: 1;
	font-size: 3.4vw;
	letter-spacing: -0.04em;
	color: #001950;
	font-weight: 500;
	text-align: center;
}
.contactbox div.ctitem_tel .telbody {
	position:relative;
	display: inline-block;
	padding-left: 48px;
	font-size: 7.0vw;
	letter-spacing: -0.03em;
	color: #001950;
	font-weight: 500;
	text-align: left;
}
.contactbox div.ctitem_tel .telbody:before{
	content: '';
	display: block;
	position:absolute;
	top: 0px;
	left: 0;
	width: 32px;
	height: 21px;
	background-image: url(../images/icon_freedial.png);
	background-size: contain;
	background-repeat:no-repeat;
}
.contactbox div.ctitem_tel .telbody a {
	margin: 0;
	color: #001950;
	text-decoration: none;
	line-height: 0em;
}


/* pagetop
------------------------------------------------------------*/

#pageTop {
}


/* FOOTER
------------------------------------------------------------*/


.footer .ftinbox {
	width: 94%;
	margin: 0 auto;
	padding: 20px 0;
}
.footer .ftinbox .ftitem {
	display: inline-block;
	width: 80%;
	margin: 0 0 0 2%;
	vertical-align: top;
}
.footer .ftinbox .ftitem:first-child {
	width: 16%;
	margin: 0;
}
.footer .ftinbox .ftitem ul li br {
	display: block;
}

.foottag .foottag_inbox {
	padding: 0 6px;
}
.foottag .nav_list {
	margin: 0;
}
.foottag .nav_list li a {
	display: block;
	width: 240px;
	padding: 5px 0 7px 44px;
	font-size: 20px;
	color: #fff;
}
.foottag .nav_list.listthree li a {
	display: block;
	width: 140px;
	padding: 5px 0 7px 26px;
}
.foottag .nav_list li a span.fs1 {
	display: none;
}

}

/* --------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 600px){

.wrapper {
}
.lowdir .wrapper {
}
.box {
	width: 92%;
	margin: 0 4%;
	padding: 0;
}

.header h1.logo,
.header.fixed h1.logo {
}
.header h1.logo img {
}

.header .topnvbox .topcontact .toptel,
.header .topnvbox .topcontact .topmail {
	display: none;
}



.drawer-nav {
	width: 364px !important;
	color: #FFF !important;
	background: #001846 !important;
	background-size: cover;
	z-index: 1000 !important;
}
.drawer--right .drawer-nav {
	right: -24.20rem !important;
		-webkit-transition: right .6s cubic-bezier(.19,1,.22,1);
	transition: right .6s cubic-bezier(.19,1,.22,1);
}
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-nav,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
	right: 0 !important;
}
.drawer--right.drawer-open .drawer-hamburger {
	right: 24.20rem !important;
}



#pgbtmabout .map {
	position: relative;
	width: 100%;
	padding: 400px 0 0;
}
.nav input[type="checkbox"],
.nav label {
	font-size: 1.0em;
}

.subtt h1 {
	padding: 0 0 15px;
	font-size: 20pt;
	letter-spacing: 0.1em;
}
.subtt h1.fsjp {
	font-size: 18pt;
}



/* pageTop
------------------------------------------------------------*/

#pageTop {
	position: fixed;
	right: 6px;
	bottom: 120px;
	z-index: 13;
}
#pageTop a {
	width: 38px;
	height: 36px;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background-image: url(../images/pagetop.png);
	background-size: 76px 36px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
	border-radius: 6px;
}
a.pageTopBtn:hover{ background-position:-38px 0;}


/* FOOTER
------------------------------------------------------------*/

.footer #footitem {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 20px;
	color: #444;
	text-align: center;
	overflow: hidden;
}

#footitem .fitem {
	width: 100%;
	display: block;
}
.fitem .fitemsub {
	width: 100%;
	padding: 0 0 26px;
	font-size: 1.0em;
	color: #fff;
	font-weight: 500;
	line-height: 1.0em;
	text-align: center;
}
.fitem .fitemlist {
	text-align: left;
}
.fitem .fitemlist .fitemnav {
	display: flex;
	flex-wrap: wrap;
	width: 94%;
	margin: 0 3%;
	padding: 0;
}
.fitem .fitemlist .fitemnav li {
	position: relative;
	width: 50%;
	margin: 0;
	padding: 0 0 16px;
	line-height: 1.0em;
	text-align: left;
}


}


/* --------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 480px){


/* å…¨ä½“
------------------------------------------------------------*/
.wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 60px 0 0;
}
.lowdir .wrapper {
	width: 100%;
	margin: 0;
	padding: 30px 0 0;
}





.drawer-nav {
	width: 244px !important;
	color: #FFF !important;
	background: #001846 !important;
	background-size: cover;
	z-index: 1000 !important;
}
.drawer--right .drawer-nav {
	right: -16.25rem;
		-webkit-transition: right .6s cubic-bezier(.19,1,.22,1);
	transition: right .6s cubic-bezier(.19,1,.22,1);
}
.drawer--right.drawer-open .drawer-hamburger {
	right: 16.25rem !important;
}
.drawer-hamburger {
	position: fixed;
		-webkit-transition: right .6s cubic-bezier(.19,1,.22,1) !important;
	transition: right .6s cubic-bezier(.19,1,.22,1) !important;
}



.subtitle {
	width: 100%;
	margin: 0 auto 40px;
}
.subtitle h1 {
	font-size: 2.0em;
	letter-spacing: 0.1em;
}

#pagetitle {
	position: relative;
	width: 100%;
	height: 220px;
	margin-top: -30px;
	overflow: hidden;
}
#pagetitle h1 {
	top: 40%;
}




/* pageTop
------------------------------------------------------------*/

#pageTop {
	position: fixed;
	right: 6px;
	bottom: 240px;
	z-index: 13;
}


/* FOOTER
------------------------------------------------------------*/


.fitem .fitemlist .fitemnav {
	display: block;
	width: 94%;
	margin: 0 3%;
	padding: 0;
}
.fitem .fitemlist .fitemnav li {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0 0 6px;
	line-height: 1.0em;
	text-align: left;
}

.foottag .nav_list li {
	width: 32%;
	margin: 0 0.5%;
	text-align: center;
}
.foottag .nav_list li a {
	padding: 6px 0 8px 7px;
	width: 100% !important;
	font-size: 16px;
	margin: 0 auto;
}
.foottag .nav_list.listthree li.ftel a {
	background: #577be5 url(../images/fticon_tel.png) no-repeat 4px center;
	background-size: 18px 18px;
}
.foottag .nav_list.listthree li.fmail a {
	background: #e55757 url(../images/fticon_mail.png) no-repeat 4px center;
	background-size: 18px 18px;
}
.foottag .nav_list.listthree li.line a {
	background: #00b301 url(../images/fticon_line.png) no-repeat 4px center;
	background-size: 18px 18px;
}



/* --------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 420px){


/* HEADER
------------------------------------------------------------*/
.header,
.lowdir .header {
	position: fixed;
	width: 100%;
	height: 52px;
}
.header.fixed {
	height: 52px;
}
.header .inbox,
.header.fixed .inbox {
	position:relative;
	height: 52px;
}


.header .inbox {
	position:relative;
}
.header .logo {
	padding: 25px 0 0;
}
.header h1.logo img,
.header.fixed h1.logo img {
	width: 180px;
	height: auto;
}


.linebtn {
	display: block !important;
	position: absolute;
	top: 0px;
	right: 104px;
	width: 52px;
	height: 52px;
	text-align: center;
	z-index: 99;
}
.linebtn a {
	display: block !important;
	width: 52px;
	height: 52px;
	background-color: #006b6b !important;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.linebtn a img {
	padding: 7px 0 0;
	width: 40px;
	height: auto;
}
.telbtn {
	display: block !important;
	position: absolute;
	top: 0px;
	right: 52px;
	width: 52px;
	height: 52px;
	text-align: center;
	z-index: 99;
}
.telbtn a {
	display: block !important;
	width: 52px;
	height: 52px;
	background-color: #3d65c2 !important;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}
.telbtn a img {
	padding: 7px 0 0;
	width: 40px;
	height: auto;
}
.drawer-open .linebtn {
	display: none !important;
}
.smpbtn {
	display: block !important;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 52px;
	height: 52px;
	text-align: center;
	z-index: 9999;
}
.smpbtn img {
	padding: 3px 0 0;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
	transition: all 0.2s;
}

.smpbtn .drawer-hamburger {
	top: 0 !important;
	margin: 0 auto !important;
	width: 24px !important;
	padding: 26px 14px 24px!important;
	background-color: #001846 !important;
	z-index: 101 !important;
}
.drawer-hamburger-icon {
	background: #fff !important;
	height: 2px !important;
}
.drawer-hamburger-icon::after,
.drawer-hamburger-icon::before {
	height: 2px !important;
	background: #fff !important;
}
.drawer-open .drawer-hamburger-icon::after,
.drawer-open .drawer-hamburger-icon::before {
	height: 2px !important;
	background: #fff !important;
}
.drawer-open .drawer-hamburger-icon {
	background-color:transparent !important;
	height: 2px !important;
}
.drawer-hamburger-icon {
	margin-top: 0px !important;
}



}
