@charset "UTF-8";

/*------------------------------------------------

 common.css
 
 Copyright (C) Ichizu

------------------------------------------------*/

/* root
================================================================================*/
:root {
	--color-blue: #0082cd;
	--color-blue-dark: #165f98;
	--color-red: #e50012;
	--color-red-dark: #a80e20;
	--color-green: #009c45;
	--color-green-dark: #006934;
	--color-hover: #fff100;
	--color-hover-light: #fffdda;
	--color-warning: #f00;
}

/* general layout
================================================================================*/
/* common
------------------------------------------------*/
.sp {
	display: none;
}
.sp360 {
	display: none;
}
.tb {
	display: none;
}
.pc.tb {
	display: block;
}

/* body
================================================================================*/
/* a
------------------------------------------------*/
a[href^="tel:"]:link {
	color: inherit;
	text-decoration: none;
	cursor: text;
}
a[href^="tel:"]:hover,
a[href^="tel:"]:focus {
	color: inherit;
	opacity: 1;
}
a.line:link,
a.line:visited {
	text-decoration: underline;
}
a.line:hover,
aline:active {
	text-decoration: none;
}
a.line:focus {
	outline: none;
}

/* mask
------------------------------------------------*/
[class*="mask"] {
	height: 100%;
}
.maskLight {
	background: rgba(255, 255, 255, 0.7);
}
.maskDark {
	background: rgba(0, 0, 0, 0.7);
}

/* background
------------------------------------------------*/
.bgGray {
    background: #f7f7f7;
}
.bgGrad {
	background: linear-gradient(135deg, #E9FFFD 0%, #FEF1E1 100%) no-repeat 50% 50% / 100% 100%;
}

/* text
------------------------------------------------*/
.f-xl { font-size: 2.4rem; }
.f-l { font-size: 1.8rem; }
.f-base { font-size: 1.6rem; }
.f-s { font-size: 1.4rem; }
.f-xs { font-size: 1.2rem; }

/* text decoretion
------------------------------------------------*/
.textShadow {
	text-shadow: 0 0 4px rgba( 0, 0, 0, 0.6 );
}
.textFukuro {
	text-shadow:
		#000 1px 1px 0, #000 -1px -1px 0,
		#000 -1px 1px 0, #000 1px -1px 0,
		#000 0px 1px 0, #000  0-1px 0,
		#000 -1px 0 0, #000 1px 0 0;
}

/* col
------------------------------------------------*/
.col2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: -2% 0 0;
}
.col2 li {
	width: 49%;
	margin: 2% 0 0;
}
.col3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: -2% 0 0;
}
.col3 li {
	width: 32%;
	margin: 2% 0 0;
}
.col4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: -2% 0 0;
}
.col4 li {
	width: 24%;
	margin: 2% 0 0;
}

/* list
------------------------------------------------*/
.asteriskList,
.squareList,
.circleList,
.triangleList,
.checkList,
.doubleCircleList {
	list-style: none;
	margin: -10px 0 30px;
	padding: 0;
}
.asteriskList > li,
.squareList > li,
.circleList > li,
.triangleList > li,
.checkList > li,
.doubleCircleList > li {
	position: relative;
	margin: 10px 0 0;
	padding: 0 0 0 24px;
}
.checkList > li {
	padding: 0 0 0 34px;
}
.asteriskList > li:before,
.squareList > li:before,
.circleList > li:before,
.triangleList > li:before,
.doubleCircleList > li:before {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}
.asteriskList > li:before {
	content: "※";
}
.squareList > li:before {
	top: 0.4rem;;
	left: 0;
	font-size: 1.0rem;
	content: "■";
}
.circleList > li:before {
	content: "●";
}
.triangleList > li:before {
	content: "△";
}
.doubleCircleList > li:before {
	content: "◎";
}
.checkList > li:before {
	display: block;
	position: absolute;
	top: .2rem;
	left: 0;
	margin: 0;
	font-family: 'Material Icons';
	font-size: 2.4rem;
	line-height: 1;
	white-space: nowrap;
	content: "\E834";
}

/* button
------------------------------------------------*/
.btn a {
	display: inline-block;
	position: relative;
	padding: 15px 50px;
	border: 1px solid #e50012;
	border: 1px solid var(--color-red);
	background: #fff;
	color: #e50012;
	color: var(--color-red);
	text-align: center;
	text-decoration: none;
	line-height: 1;
	letter-spacing: 0;
	border-radius: 30px;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}
.btn a:after {
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #e50012;
	color: var(--color-red);
	font-family: 'Material Icons';
	font-size: 2.4rem;
	line-height: 1;
	white-space: nowrap;
	content: "keyboard_arrow_right";
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.btn a .pc,
.btn a .pc.tb {
	display: inline;
}
.btn.btnBlue a {
	border: 1px solid #0082cd;
	border: 1px solid var(--color-blue);
	color: #0082cd;
	color: var(--color-blue);
}
.btn.btnBlue a:after {
	color: #0082cd;
	color: var(--color-blue);
}
.btn.btnGreen a {
	border: 1px solid #009c45;
	border: 1px solid var(--color-green);
	color: #009c45;
	color: var(--color-green);
}
.btn.btnGreen a:after {
	color: #009c45;
	color: var(--color-green);
}
.btn a:hover {
	background: #fff100;
	background: var(--color-hover);
}
.btn a:hover:after {
	right: 4px;
}

/* .btn a:hover:after,
.btn a:active:after {
	color: #fff;
} */

.btnBlock a {
	display: block;
	padding: 15px 20px;
	line-height: 1;
}

/* submit */
[type="submit"] {
	display: inline-block;
	position: relative;
	padding: 0 100px;
	border: 1px solid #0082cd;
	border: 1px solid var(--color-blue);
	background: #0082cd;
	background: var(--color-blue);
	color: #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-size: 2.4rem;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	border-radius: 50px;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
[type="submit"]:hover,
[type="submit"]:active {
	background: #fff100;
	background: var(--color-hover);
	color: #0082cd;
	color: var(--color-blue);
	opacity: 1;
}
[type="submit"].fix {
	background: #fff;
	color: #0082cd;
	color: var(--color-blue);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
[type="submit"].fix:hover,
[type="submit"].fix:active {
	background: #ddd;
	opacity: 1;
}

/* induce
------------------------------------------------*/
.induce a {
	display: inline-block;
	position: relative;
	padding: 5px 0 5px 16px;
}
.induce a:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: 0;
	font-family: 'Material Icons';
	font-size: 1.4rem;
	line-height: 1;
	white-space: nowrap;
	content: "arrow_right";
	-webkit-transition: 0.6s linear;
	transition: 0.6s linear;
}
.induce a:hover:before {
	left: 4px;
}

/* indent
------------------------------------------------*/
.indent1080 {
	max-width: 1080px;
	margin-right: auto;
	margin-left: auto;
}
.indent960 {
	max-width: 960px;
	margin-right: auto;
	margin-left: auto;
}
.indent840 {
	max-width: 840px;
	margin-right: auto;
	margin-left: auto;
}
.indent720 {
	max-width: 720px;
	margin-right: auto;
	margin-left: auto;
}
.indent600 {
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
}
.indent1em {
	margin-left: 1.2em;
	text-indent: -1.2em;
}

/* strong
------------------------------------------------*/
.strong {
	padding: 2px 4px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff100));
	background: linear-gradient(transparent 60%, #fff100 60%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color-hover)));
	background: linear-gradient(transparent 60%, var(--color-hover) 60%);
	font-style: normal;
}
.strongFull {
	padding: 2px 4px;
	background: #fff100;
	background: var(--color-hover);
}

/* sns
------------------------------------------------*/
a.snsIcon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 30px;
	height: 30px;
	margin: 0 auto;
	background: #999;
	border-radius: 15px;
}
a.snsIcon img {
	display: block;
}
a:hover.snsIcon.bgRed {
	background: #e50012;
	background: var(--color-red);
}
a:hover.snsIcon.bgGreen {
	background: #009c45;
	background: var(--color-green);
}
a:hover.snsIcon.bgBlue {
	background: #0082cd;
	background: var(--color-blue);
}
a:hover.snsIcon.bgPink {
	background: #d93177;
}

/* header
================================================================================*/
.header {
	z-index: 1000;
	width: 100%;
	margin: 0;
	padding: 28px 0 0;
	background: #fff url(/common_img/bg_square.svg) repeat-x left top;
	background-size: 30px 5px;
	text-align: left;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.headerInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 94%;
	margin: 0 auto 30px;
	padding: 0;
}
.header .logo {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 400px;
	margin: 0;
}
.header .copy {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
	width: calc( ( 100% - 400px ) / 2 );
	margin: 0;
	line-height: 1.6;
}
.header .copy span {
    display: block;
}
.header .headerInnerR {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
	width: calc( ( 100% - 400px ) / 2 );
	margin: 0;
	text-align: right;
}
.header .sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 10px;
}
.header .sns li {
	margin: 0 0 0 5px;
}
.header .subNav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header .subNav li {
	margin: 0 0 0 20px;
	font-size: 1.4rem;
}

/* globalNav
------------------------------------------------*/
.header .nav {
	width: 100%;
}
.header .nav > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0;
}
.header .nav > ul > li {
	position: relative;
	width: 170px;
	margin: 0;
	padding: 0;
}
.header .nav > ul > li:last-of-type {
	width: 230px;
}
.header .nav > ul > li > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px 10px 24px;
	border-right: 1px solid #ccc;
	font-weight: bold;
	font-size: 1.4rem;
	line-height: 1.4;
	text-align: center;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.header .nav > ul > li:last-of-type > a {
	width: calc( 100% - 28px );
	height: calc( 100% - 24px );
	margin: 10px auto 14px;
	padding: 4px 0;
	background: #009c45;
	background: var(--color-green);
	border-right: none;
	color: #fff;
	border-radius: 5px;
}
.header .nav > ul > li:last-of-type > a:hover {
	color: #fff100;
	color: var(--color-hover);
}
.message .header .nav > ul > li.navMessage > a,
.about .header .nav > ul > li.navAbout > a,
.don .header .nav > ul > li.navDon > a,
.radio .header .nav > ul > li.navRadio > a,
.performance .header .nav > ul > li.navPerformance > a {
	/* text-shadow: 1px 0 0 #fff100, 0 1px 0 #fff100, -1px 0 0 #fff100, 0 -1px 0 #fff100, 0 0 5px #fff100, 0 0 10px #fff100; */
	text-shadow: #fff100 2px 0px 2px, #fff100 -2px 0px 2px,
    #fff100 0px -2px 2px, #fff100 -2px 0px 2px,
    #fff100 2px 2px 2px, #fff100 -2px 2px 2px,
    #fff100 2px -2px 2px, #fff100 -2px -2px 2px,
    #fff100 1px 2px 2px, #fff100 -1px 2px 2px,
    #fff100 1px -2px 2px, #fff100 -1px -2px 2px,
    #fff100 2px 1px 2px, #fff100 -2px 1px 2px,
    #fff100 2px -1px 2px, #fff100 -2px -1px 2px,
    #fff100 1px 1px 2px, #fff100 -1px 1px 2px,
    #fff100 1px -1px 2px, #fff100 -1px -1px 2px;
}
.header .nav > ul > li:not(:last-of-type) > a:before,
.header .nav > ul > li:not(:last-of-type) > a:after {
  border-bottom: 4px solid #0082cd;
  border-bottom: 4px solid var(--color-blue);
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 50%;
}
.header .nav > ul > li:nth-of-type(3n):not(:last-of-type) > a:before,
.header .nav > ul > li:nth-of-type(3n):not(:last-of-type) > a:after {
  border-color: #009c45;
  border-color: var(--color-green);
}
.header .nav > ul > li:nth-of-type(3n+2):not(:last-of-type) > a:before,
.header .nav > ul > li:nth-of-type(3n+2):not(:last-of-type) > a:after {
  border-color: #e50012;
  border-color: var(--color-red);
}
.header .nav > ul > li > a:before {
  left: 50%;
}
.header .nav > ul > li > a:after {
  right: 50%;
}
.header .nav > ul > li > a:hover:before,
.header .nav > ul > li > a:hover:after,
.home .header .nav > ul > li.navHome > a:before,
.home .nav > ul > li.navHome > a:after {
	width: 50%;
	border-width: 8px;
}

/* ドロップダウンメニュー2階層目
------------------------------------------------*/
.header .nav ul li ul {
	list-style: none;
	position: absolute;
	z-index: 100;
	visibility: hidden;
	top: 100%;
	left: 0;
	right: 0;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.header .nav ul li ul li {
	margin: 0;
	color: #fff;
	text-align: center;
}
.header .nav ul li ul li a {
	display: block;
	height: auto;
	padding: 14px 20px;
	background: rgba(0, 130, 205, 0.8);
	border-bottom: 1px solid #0082cd;
	border-bottom: 1px solid var(--color-blue);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.4;
}
.header .nav ul li ul li:last-of-type a {
	border-bottom: none;
}
.header .nav ul li:nth-of-type(3n) ul li a {
	background: rgba(0, 156, 69, 0.8);
	border-bottom: 1px solid #009c45;
	border-bottom: 1px solid var(--color-green);
}
.header .nav ul li:nth-of-type(3n+2) ul li a {
	background: rgba(229, 0, 18, 0.8);
	border-bottom: 1px solid #e50012;
	border-bottom: 1px solid var(--color-red);
}
.header .nav ul li:hover ul {
	visibility: visible;
	top: 100%;
	opacity: 1;
}
.header .nav ul li:hover ul li a:hover {
	background: rgba(22, 95 ,152, 0.8);
	color: #fff;
}
.header .nav ul li:nth-of-type(3n):hover ul li a:hover {
	background: rgba(0, 105 ,52, 0.8);
	color: #fff;
}
.header .nav ul li:nth-of-type(3n+2):hover ul li a:hover {
	background: rgba(168, 14 ,32, 0.8);
	color: #fff;
}

/* main
================================================================================*/
#main {
	width: 100%;
	margin: 0;
	padding: 0 0 0px;
	min-height: 1px; /* footer固定 IE11対応 */
}

/* wrap
------------------------------------------------*/
.wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 100px;
}
.inner {
	position: relative;
	width: 90%;
	max-width: 1080px;
	margin: 0 auto;	
}

/* infoWrap
------------------------------------------------*/
.infoWrap .inner {
	max-width: 840px;
	padding: 80px 80px 60px;
	border: 1px solid #ccc;
}
.infoWrap .inner h2 {
	margin: -100px 0 60px;
	font-family: "丸フォーク M",	"Maru Folk Medium", "Yu Gothic",Meiryo, sans-serif;
    font-size: 3.0rem;
    text-align: center;
}
.infoWrap .inner h2 span {
	display: inline-block;
    padding: 0 20px;
    background: #fff;
}

/* breadcrumbs
------------------------------------------------*/
.breadcrumbs {
	width: 90%;
	max-width: 1080px;
	margin: 40px auto 10px;
}
.breadcrumbs ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
	margin: 0 auto;
	font-size: 1.2rem;
}
.breadcrumbs li {
	display: inline-block;
	margin: 0 .2em 0 .4em;
}
.breadcrumbs li:first-of-type {
	margin-left: 0;
}
.breadcrumbs li a {
	position: relative;
}
.breadcrumbs li a:hover {
	text-decoration: underline;
}
.breadcrumbs li:not(:first-of-type) a {
	padding-left: 20px;
}
.breadcrumbs li:first-of-type a {
	padding-left: 30px;
}
.breadcrumbs li:not(:first-of-type) a:before {
	content: "›";
	position: absolute;
	top: -3px;
	left: 2px;
}
.breadcrumbs li:first-of-type a:before {
    content: "home";
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Material Icons';
    font-size: 1.4rem;
    line-height: 1;
    white-space: nowrap;
}

/* title
------------------------------------------------*/
.title {
	position: relative;
	width: 100%;
	margin: 0 0 80px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.title .titleTxt {
	position: relative;
	margin: 0;
	padding-top: calc( 160px * 538 / 600 + 50px );
	color: #111;
	font-weight: bold;
	font-family: "丸フォーク M",	"Maru Folk Medium", "Yu Gothic",Meiryo, sans-serif;
	font-size: 4.0rem;
	text-align: center;
	line-height: 1;
}
.title .titleTxt span {
	display: inline-block;
	margin: 20px 0 0;
	padding: 30px 0 0;
	background: url(/common_img/bg_square.svg) repeat-x left top;
    background-size: 30px 5px;
	font-size: 2.0rem;
}
.title .titleTxt:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 160px;
	height: calc( 160px * 538 / 600 );
	margin: 0 auto;
	background: url(/common_img/logo_s.png) no-repeat top center;
	background-size: 160px auto;
}

/* simple title
------------------------------------------------*/
.title.simple {
	padding: 30px 0;
	background: linear-gradient(135deg, #E9FFFD 0%, #FEF1E1 100%) no-repeat 50% 50% / 100% 100%;	
}
.title.simple .titleTxt {
	position: relative;
	margin: 0;
	padding-top: 0;
	color: #333;
	font-weight: bold;
}
.title.simple .titleTxt:before {
	display: none;
}


/* pageLink
------------------------------------------------*/
.pageLink {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none;
	max-width: 1080px;
	margin: -20px auto 60px;
	padding: 0;
}
.title + .pageLink {
	margin: -40px auto 80px;
}
.pageLink li {
	display: block;
	position: relative;
	margin: 0;
}
.pageLink li a {
	display: block;
	height: 100%;
	padding: 2px 20px;
	border-left: 1px solid #ccc;
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
}
.pageLink li:last-of-type a {
	border-right: 1px solid #ccc;
}
.pageLink li a:before,
.pageLink li a:after {
  border-bottom: 3px solid #e50012;
  border-bottom: 3px solid var(--color-red);
  bottom: -6px;
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 0;
}
.pageLink li a:before {
  left: 48%;
}
.pageLink li a:after {
  right: 48%;
}
.pageLink li a:hover:before,
.pageLink li a:hover:after {
  width: 48%;
}


/* h
------------------------------------------------*/
.underLine {
	position: relative;
	padding: 0 0 20px;
	font-weight: bold;
}
.underLine:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
	right: 0;
    width: 40px;
    height: 3px;
	margin: auto;
    background: #0082cd;
    background: var(--color-blue);
}
.centerLine {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0;
}
.centerLine:after {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	content: " ";
	width: auto;
	height: 5px;
	margin-left: 1em;
	/* margin-right: 10%; */
	background: #fff url(/common_img/bg_square.svg) repeat-x left top;
	background-size: 30px 5px;
}
.centerLine.doubleLine {
	max-width: 840px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.centerLine.doubleLine:before {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	content: " ";
	width: auto;
	height: 5px;
	margin-right: 1em;
	/* margin-left: 10%; */
	background: #fff url(/common_img/bg_square.svg) repeat-x left top;
	background-size: 30px 5px;
}


/* footer
================================================================================*/
.footer {
	width: 100%;
	padding: 60px 0 0;
	margin: auto auto 0;
}
.footer p {
	line-height: 1;
}

/* footerInner
------------------------------------------------*/
.footerInner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 94%;
	max-width: 1080px;
	margin: 0 auto;
}

/* footerTop
------------------------------------------------*/
.footerTop {
	width: 100%;
	background: #e5e5e5;
} 
.footerTopInner {
	padding: 80px 0 60px;
} 
.footerTopInner .facebook {
	width: 500px;
} 
.footerTopInner #footerSchedule {
	width: 500px;
	padding: 30px 0 0;
	background: url(/common_img/bg_square.svg) repeat-x left top;
	background-size: 30px 5px;
}
.footerTopInner #footerSchedule .scheduleTitle {
	color: #111;
	font-family: "丸フォーク M",	"Maru Folk Medium", "Yu Gothic",Meiryo, sans-serif;
	font-size: 2.4rem;
	text-align: center;
}
.footerTopInner #footerSchedule iframe {
	margin: 0 0 30px;
}

/* footerBottom
------------------------------------------------*/
.footerBottom {
	background: #f7f7f7;
}
.footerBottomInner {
	padding: 0 0 20px;
}
.footerInner .logo {
	width: 24%;
	margin: 0 auto 0 0;
	padding: 30px 0 0;
}
.footerInner .logo dt {
	margin: -60px 0 20px;
}
.footerInner .logo dt img {
	width: 200px;
}
.footerInner .logo dd {
	width: 200px;
	color: #111;
	text-align: center;
}
.footerInner .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
    margin: 0 0 30px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 0%;
	flex: 1 1 0%;
}
.footer .nav a:hover {
	text-decoration: underline;
}
.footerInner .nav > div {
	width: 31%;
    margin: 0;
	padding: 30px 30px 0;
	border-top: 3px solid #0082cd;
	border-top: 3px solid var(--color-blue);
}
.footerInner .nav > div:nth-of-type(2) {
	border-color: #e50012;
	border-color: var(--color-red);
}
.footerInner .nav > div:last-of-type {
	border-color: #009c45;
	border-color: var(--color-green);
}
.footerInner .nav li {
    margin: 0;
	border-bottom: 1px dashed #ccc;
}
.footerInner .nav li a {
	font-size: 1.4rem;
}
.footerInner .nav .subNav li {
	position: relative;
	padding: 0;
	font-size: 1.4rem;
}
.footerInner .nav .subNav li:before {
	content: "└";
	position: absoluteactive;
	top: 0;
	left: 0;
	padding: 0 10px 0 0;
}
.footerInner .nav li a:link,
.footerInner .nav li a:visited {
	color: #0082cd;
	color: var(--color-blue);
}
.footerInner .nav li a:hover,
.footerInner .nav li a:active {
	color: #0082cd;
	color: var(--color-blue);
	text-decoration: underline;
}
.footerInner .nav > div:nth-of-type(2) li a:link,
.footerInner .nav > div:nth-of-type(2) li a:visited {
	color: #e50012;
	color: var(--color-red);
}
.footerInner .nav > div:nth-of-type(2) li a:hover,
.footerInner .nav > div:nth-of-type(2) li a:active {
	color: #e50012;
	color: var(--color-red);
	text-decoration: underline;
}
.footerInner .nav > div:last-of-type li a:link,
.footerInner .nav > div:last-of-type li a:visited {
	color: #009c45;
	color: var(--color-green);
}
.footerInner .nav > div:last-of-type li a:hover,
.footerInner .nav > div:last-of-type li a:active {
	color: #009c45;
	color: var(--color-green);
	text-decoration: underline;
}
.footerInner nav li .btn a {
	display: block;
	background: transparent;
	font-size: 1.4rem;
}

/* footerCopyright
------------------------------------------------*/
.footerCopyright {
	padding: 0 0 10px;
	background: #fff url(/common_img/bg_square.svg) repeat-x left bottom;
	background-size: 30px 5px;
}
.footerCopyrightInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 94%;
	/* max-width: 1128px; */
	margin: 0 auto;
	padding: 10px 0;
}
.footerCopyright small.copyright {
    display: block;
	width: 20%;
    margin: 0 auto 0 0;
    font-size: 1.2rem;
}
.footerCopyright .footerPrivacy a {
	font-size: 1.2rem;
}
.footerCopyright .footerPrivacy a:hover,
.footerCopyright .footerPrivacy a:active {
	text-decoration: underline;
}

/* pagetop
------------------------------------------------*/
.pagetop {
	z-index: 100;
	display: none;
	position: fixed;
	bottom: 42px;
	right: 32px;
	margin: 0;
	font-size: 1.2rem;
}
.pagetop a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid #e50012;
	border: 1px solid var(--color-red);
	background: #fff;
	color: #e50012;
	color: var(--color-red);
	opacity: 0.7;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
.pagetop a:hover, .pagetop a:active {
	-webkit-transform: translateY(-6px);
	transform: translateY(-6px);
}