/***************************
 *
 * モジュール
 *
 **************************/


/* 
一般
*/
img{

}
.clear {
	clear: both;
}
.clearfix:after {
	clear: both;
	height: 0px;
	display: block;
	content: ".";
	visibility: hidden;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}
.mlr-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.mt-40 {
	margin-top: 40px !important;
}
.nrw {
	transform: scaleX(0.97);
	transform-origin: 0 0;	
	/*width: 103%;*/
}
.m-no {
	margin: 0 !important;
}

.fx {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.fx-bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;	
}
.fx-center {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.fx-middle {
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;	
}

.box-col-2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
}
.box-col-2 > div {
	width: 50%;
	box-sizing: border-box;
}

/* 
カラー
*/
.blue {
	color: #246ca3 !important;
}
.pink {
	color: #e5004f !important;
}
.red {
	color: #ed2856 !important;
}

/* 
OVER
*/
@keyframes flash {
      0% {
          opacity: 1;
      }

      100% {
          opacity: 0.5;
      }
  }

.over {
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-ms-transition: 1s ease;
	-o-transition: 1s ease;
	transition: 1s ease;		
}

.over:hover {
	-ms-filter: "alpha(opacity=7)";
	opacity: 0.3;
	-webkit-transition: 0s ease;
	-moz-transition: 0s ease;
	-ms-transition: 0s ease;
	-o-transition: 0s ease;
	transition: 0s ease;	
}


.zoom {
	
}
.zoom:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);	
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}


.underbar {
  width: 0;
  height: 1px;
  background: rgba(34,34,34,0);
  top: 20px;
  position: absolute;
  -webkit-transition: 0.5s ease;
}


/* 
フォント
*/
.en-prata {
	font-family: 'Prata', serif;
}
.en {
	font-family: 'Cormorant SC', serif;
}
.en-all * {
	font-family: 'Cormorant SC', serif;
}
.sans {
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.sans-all * {
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}



/* 
ボタン
*/
.btn {
	margin: 30px auto;
	width: 100%;

	position: relative;
	background: #222222;	
	z-index: 5;
}
.btn a, .btn span {
	line-height: 46px;
	display: block;
	text-align: center;
	color: white;
	font-size: 14px;
	border: 1px solid #222;
	text-decoration: none !important;
	position: relative;
}
.btn a:before, .btn span:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	z-index: -1;
	background: white;
	transform-origin: left top;
	transform: scale(0, 1);
	transition: transform .3s;	
}
.btn a:hover:before, .btn span:hover:before {
	transform-origin: right top;
	transform: scale(1, 1);
}
/*
.btn a:after {
	content: "";
	display: inline-block;
	background: url(../img/btn-arrow.png) center center no-repeat;
	background-size: contain;
	width: 42px;
	height: 6px;
	vertical-align: middle;
	margin-left: 10px;
}
.btn a:hover:after {
	background: url(../img/btn-arrow-black-2.png) center center no-repeat;
	background-size: contain;	
}
*/
.btn a:hover, .btn span:hover {
	/*animation: jump .2s ease-in-out forwards;*/
	text-decoration: none !important;
	color: black;
	/*opacity: 0.7;*/
}
.btn.btn-trans, .btn.btn-black {
	background: none;
}
.btn.btn-trans a {
	line-height: 46px;
	display: block;
	text-align: center;
	border: 1px solid white;
	box-sizing: border-box;
	color: white;
	font-size: 14px;
	text-decoration: none !important;
}
.btn.btn-trans a:hover {
	color: #222;
	border: 1px solid #222;
}
.btn.btn-white {
	background: none;
}
.btn.btn-white a {
	background: none;
	color: #222 !important;
}
.btn.btn-white a:after {
	content: none;
}
.btn.btn-white a:hover {
	background: #222;
	color: white !important;
}
.btn.btn-black {

}
.btn.btn-black a {
	line-height: 46px;
	display: block;
	text-align: center;
	border: 1px solid #222222;
	box-sizing: border-box;
	color: #222222 !important;
	font-size: 14px;
	text-decoration: none !important;
}
.btn.btn-black a:after {
	content: "";
	display: inline-block;
	background: url(../img/btn-arrow-black-2.png) center center no-repeat;
	background-size: contain;
	width: 42px;
	height: 6px;
	vertical-align: middle;
	margin-left: 10px;
}
.btn.btn-black a:hover {
	color: white !important;
}
.btn.btn-black a:hover:after {
	background: url(../img/btn-arrow.png) center center no-repeat;
	background-size: contain;
}
.btn.btn-black a:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	z-index: -1;
	background: #222;
	transform-origin: left top;
	transform: scale(0, 1);
	transition: transform .3s;	
}
.btn.btn-black a:hover:before {
	transform-origin: right top;
	transform: scale(1, 1);
}

.btns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
	padding: 0 15px;
}
.btns .btn {
	margin: 10px auto;
}

.btn-no-link a {
	pointer-events: none;

}
.btn-no-link {
	background: rgba(0,0,0,0.5);	
}
.btn-blind {
	opacity: 0.3;
}
.no-link {
	pointer-events: none;
}

.form-item-cata-area .required {
	top: -25px !important;
}
.mw_wp_form_confirm .btn-cata-area {
	display: none !important;
}
/* 
BG
*/

/* 
IMAGE
*/
.pic-frame {
	overflow: hidden;
}
.pic-frame > img {
	width: 100%;
}

/* 
アイコン
*/
.icon-blank {
	display: inline-block;
	background: url(../img/icon-blank.png) center center no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-left: 20px;
	position: relative;
	top: -3px;
}
.icon-blank-2 {
	display: inline-block;
	background: url(../img/icon-blank-2.png) center center no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-left: 20px;
	top: -3px;
	position: relative;	
}
.icon-contact {
	display: inline-block;
	background: url(../img/icon-contact.png) center center no-repeat;
	background-size: contain;
	width: 22px;
	height: 18px;
	vertical-align: middle;
	margin-right: 20px;
	top: -3px;
	position: relative;	
}
.icon-tel {
	display: inline-block;
	background: url(../img/icon-tel.png) center center no-repeat;
	background-size: contain;
	width: 18px;
	height: 19px;
	vertical-align: middle;
	margin-right: 20px;
	top: -3px;
	position: relative;	
}


/*
ANIMATE
*/
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slide-in-1 {
  0% { transform: translateY(0.7vw); }
  100% { transform: translateY(0); }
} 
@-webkit-keyframes shake {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	5%, 15%, 25%, 35%, 45% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	10%, 20%, 30%, 40% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shake {
	from, 12% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	2%, 6%, 10% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	4%, 8% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.anim-fade-1 {
	opacity: 0;
}
.anim-fade-1.anim-start {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.anim-fade-2 {
	opacity: 0;
}
.anim-fade-2.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.anim-fade-3 {
	opacity: 0;
}
.anim-fade-3.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}
.anim-fade-4 {
	opacity: 0;
}
.anim-fade-4.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	-ms-animation-delay: 1.5s;
	-o-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.anim-fade-5 {
	opacity: 0;
}
.anim-fade-5.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-ms-animation-delay: 2s;
	-o-animation-delay: 2s;
	animation-delay: 2s;
}
.anim-blur-1 {
	opacity: 0;
	transition: 2s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-1.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-2 {
	opacity: 0;
	transition: 2s;
	transition-delay: 0.5s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-2.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-3 {
	opacity: 0;
	transition: 2s;
	transition-delay: 1s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-3.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-4 {
	opacity: 0;
	transition: 2s;
	transition-delay: 1.5s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-4.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-5 {
	opacity: 0;
	transition: 2s;
	transition-delay: 2s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-5.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);
}
.anim-concept-pic-1 {
	opacity: 0;
	transform: translateX(100%);
}
.anim-concept-pic-1.anim-start {
	opacity: 1;
	transform: translateX(0%);
	transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.anim-concept-pic-2 {
	opacity: 0;
	transform: translateX(-100%);
}
.anim-concept-pic-2.anim-start {
	opacity: 1;
	transform: translateX(0%);
	transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/* 
ボックス
*/
.box-content {
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
.box-700 {
	width: 700px;
	margin: 0 auto;
	position: relative;
}
.box-720 {
	width: 720px;
	margin: 0 auto;
	position: relative;
}
.box-800 {
	width: 800px;
	margin: 0 auto;
	position: relative;
}
.box-840 {
	width: 840px;
	margin: 0 auto;
	position: relative;
}
.box-900 {

	margin: 0 auto;
	position: relative;
}
.box-960 {
	width: 960px;
	margin: 0 auto;
	position: relative;
}
.box-980 {
	width: 980px;
	margin: 0 auto;
	position: relative;
}
.box-1000 {

	margin: 0 auto;
	position: relative;
}
.box-1024 {
	width: 1024px;
	margin: 0 auto;
	position: relative;
}
.box-1040 {
	width: 1040px;
	margin: 0 auto;
	position: relative;
}
.box-1090 {
	width: 1090px;
	margin: 0 auto;
	position: relative;
}
.box-1100 {
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
}
.box-1200 {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}


/* 
ヘッダー
*/
.header-inner {
	height: 45px;
	box-sizing: border-box;
	padding: 10px;
}
.header-logo {
	width: 110px;
	height: 24px;
}
.header-logo a {
	display: block;
	background: url(../img/logo.png) 0 0 no-repeat;
	background-size: contain;
	text-indent: -9999em;
	width: 100%;
	height: 100%;
}
.header-logo:hover {
	opacity: 0.7;
}
.header-logo span {
	display: block;
	position: absolute;
	left: 160px;
	top: 6px;
	width: 100px;
	background: url(../img/header-logo-sep.png) left center no-repeat;
	height: 13px;
	padding-left: 10px;
	font-size: 9px;
	line-height: 13px;
}
.header-fix {
	position: absolute;
	right: 0;
	top: 0;	
	z-index: 50;
	background: white;
	width: 45px;
	height: 100%;
	height: 100vh;	
}
.header-fix.is-sub {
	display: none;
}
.header-fix .list-header-fix-nav {
	height: 100%;
	height: calc(100% - 100px); 
	box-sizing: border-box;

	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	
	padding-left: 2px;

    margin-bottom: 20px;
    text-align: center;	
}

.header-fix .list-header-fix-nav > li {
	margin-bottom: 15px;
		-webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.header-fix .list-header-fix-nav > li:hover {
	opacity: 0.5;

}
.header-fix .list-header-fix-nav > li > a {
	display: block;
	font-size: 12px;
	width: 100%;
	height: 100%;
}
@media all and (max-height: 568px) {
	.header-fix .list-header-fix-nav {
		display: none;
	}
}
/*
.header-fix .list-header-fix-nav > li:nth-child(1) {
	width: 10px;
	height: 90px;
	margin: -30px auto 30px;
}
.header-fix .list-header-fix-nav > li:nth-child(2) {
	width: 10px;
	height: 82px;
	margin: 0 auto 30px;
}
.header-fix .list-header-fix-nav > li:nth-child(3) {
	width: 10px;
	height: 89px;
	margin: 0 auto;
}
.header-fix .list-header-fix-nav > li:nth-child(1) > a {
	background: url(../img/header-fix-nav-1.png) center center no-repeat;
	background-size: contain;
}
.header-fix .list-header-fix-nav > li:nth-child(2) > a {
	background: url(../img/header-fix-nav-2.png) center center no-repeat;
	background-size: contain;
}
.header-fix .list-header-fix-nav > li:nth-child(3) > a {
	background: url(../img/header-fix-nav-3.png) center center no-repeat;
	background-size: contain;
}
*/
.header-fix .list-header-fix-sns {
	position: absolute;
	left: 0px;
	bottom: 55px;
	width: 100%;
}
.header-fix .list-header-fix-sns > li {
	margin-bottom: 15px;
}
.header-fix .list-header-fix-sns > li > a {
	display: block;
	text-align: center;
}

.btn-nav {
/*	cursor: pointer;
	background: #222222 url(../img/btn-nav.png) center center no-repeat;
	background-size: 23px 20px;
	width: 100px;
	height: 100px;
	z-index: 99;
	position: relative;
*/
}
.menu-trigger {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 100;
  transform: translateX(0);
  transition: all .5s;
  text-align: center;
  background: #222;
 }
 .menu-trigger.is-active {

  top: 0px;
  z-index: 9999;
}
.menu-trigger span {
display: inline-block;
box-sizing: border-box;
position: absolute;
left: 19px;
width: 13px;
height: 1px;
background-color: white;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.menu-trigger.is-active span {
  background-color: white !important;
}

.menu-trigger.is-scroll span {
/*background-color: #163753;	*/
}

.menu-trigger span:nth-of-type(1) {
  top: 20px;
}
.menu-trigger.is-active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 25px;
}
.menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  top: 30px;
}
.menu-trigger.is-active span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

@media all and (max-height: 600px) {
	.header-fix .list-header-fix-sns {
		display: none;
	}
}


/*
GLOBAL NAVI	
*/
.header-nav {
	position: absolute;
	right: 130px;
	top: 0;
}
.header-nav > ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;	
	position: relative;
}
.header-nav > ul > li {
	font-size: 22px;
	color: #222222;
	display: block;
	line-height: 100px;
	padding: 0 15px;
	position: relative;	
}
.header-nav > ul > li:nth-child(6) {
	padding-right: 0;
}
.header-nav > ul > li > a {
	display: block;
	color: #222222;
}

.header-nav > ul > li > a:hover {

	text-decoration: none;
}

.header-nav > ul > li:last-child > a {
	padding-right: 0;
}


.header-nav .underbar {
	top: 65px;
	background: #222;
}
.header-nav > ul > li:nth-of-type(1):hover ~ .underbar {
  left: 15px;
  width: 90px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(2):hover ~ .underbar {
  left: 130px;
  width: 90px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(3):hover ~ .underbar {
  left: 244px;
  width: 114px;

  background: #222;
}
.header-nav > ul > li:nth-of-type(4):hover ~ .underbar {
  left: 387px;
  width: 65px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(5):hover ~ .underbar {
  left: 480px;
  width: 89px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(6):hover ~ .underbar {
  left: 598px;
  width: 58px;
  background: #222;
}




.header-nav .submenu {
	position: absolute;
	left: 15px;
	top: 65px;
	border: 1px solid #efeff0;
	width: 210px;
	opacity: 0;
	visibility: hidden;	
}
.header-nav .submenu > li {
	border-bottom: 1px solid #efeff0;
}
.header-nav .submenu > li:last-child {
	border-bottom: none;
}
.header-nav .submenu > li > a {
	color: #222;
	font-size: 14px;
	display: block;
	background: rgba(255,255,255,0.9);
	line-height: 1.5em;
	padding: 15px;
}
.header-nav .submenu > li > a:hover {
	background: rgba(241,246,251,0.9);
	text-decoration: none;
}

.header-nav .menu > li:hover .submenu {
	opacity: 1;
	visibility: visible;
	-webkit-transition: 0.4s ease-in-out;
	   -moz-transition: 0.4s ease-in-out;
	     -o-transition: 0.4s ease-in-out;
	        transition: 0.4s ease-in-out;
	
}

@media all and (max-width: 1115px) {

	.header-nav > ul > li {
		padding: 0 10px;	
	}
	.header-nav > ul > li > a {
		font-size: 14px;
	}
	
.header-nav > ul > li:nth-of-type(1):hover ~ .underbar {
  left: 10px;
  width: 58px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(2):hover ~ .underbar {
  left: 85px;
  width: 60px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(3):hover ~ .underbar {
  left: 164px;
  width: 77px;

  background: #222;
}
.header-nav > ul > li:nth-of-type(4):hover ~ .underbar {
  left: 255px;
  width: 45px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(5):hover ~ .underbar {
  left: 320px;
  width: 60px;
  background: #222;
}
.header-nav > ul > li:nth-of-type(6):hover ~ .underbar {
  left: 395px;
  width: 35px;
  background: #222;
}	
	
	
	
}
@media all and (max-width: 990px) {
	.header-nav {
		display: none;
	}
}


.pushbar_overlay {

}
html.pushbar_locked .pushbar_overlay {
	background: rgb(34,34,34);
	opacity: 0.34;	
}
.pushbar.from_right {
	width: 300px;
	background: #222;
}
.nav-header {
	height: 100px;
	box-sizing: border-box;
	border-bottom: 1px solid white;
	padding: 40px;
}
.nav-header .title-nav {
	font-size: 18px;
	color: white;
	font-weight: bold;	
}
.nav-header .title-nav:first-letter {
	font-size: 1.3em;
}
.nav-header .btn-nav-close {
	cursor: pointer;
	background: url(../img/btn-nav-close.png) center center no-repeat;
	background-size: 24px 23px;
	width: 100px;
	height: 100px;
	border-left: 1px solid white;
	position: absolute;
	right: 0;
	top: 0;
}
.nav-inner {
	overflow: auto;
	display: block;
}
.nav-inner .menu {
	
}
.nav-inner .menu > li {
	border-bottom: 1px solid white;
}
.nav-inner .menu > li > a {
	display: block;
	font-size: 15px;
	color: white;
	line-height: 1.8em;
	padding: 15px;
}
.nav-inner .menu > li > a:hover {
	text-decoration: none;
}
.nav-inner .menu > li > a:after {
	content: "＋";
	position: absolute;
	right: 20px;
	right: 30px;
}
.nav-inner .menu > li > a.is-active:after {
	content: "−";
}
.nav-inner .menu > li > a:only-child:after {
	content: "＞";
}
.nav-inner .menu .submenu {
	display: none;
}
.nav-inner .submenu {
	border-top: 1px solid white;
	background: rgba(204,204,204,0.1);
}
.nav-inner .submenu > li {
	border-bottom: 1px solid #eee;
	position: relative;
}
.nav-inner .submenu > li:last-child {
	border-bottom: none;
}
.nav-inner .submenu > li > a {
	display: block;
	font-size: 14px;
	color: white;
	line-height: 1.8em;
	padding: 20px 55px 20px 85px;
	background: #f6f8f9;
	position: relative;
}
.nav-inner .submenu > li > a:hover {
	text-decoration: none;
}
.nav-inner .submenu > li > a:after {
	content: "＞";
	position: absolute;
	top: 20px;
	right: 30px;	
}
.nav-inner .submenu > li > a:before {
	color: #cccccc;
	content: "ー";
	font-size: 14px;
	position: absolute;
	left: 60px;
	top: 20px;
}



/* NAV NEW */
.nav-inner {
/*
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
*/

	height: 100%;
	position: relative;	
}
.list-nav {

	margin: 0 auto;
	position: relative;
}
.list-nav > li {
	width: 100%;
	text-align: left;
	padding: 10px 20px;
}
.list-nav > li > a {
	color: white;
	font-size: 14px;
}
.list-nav > li > a:hover {
	text-decoration: none;
}

.list-nav .underbar {
	display: none !important;
	top: 50px;
}



.nav-btns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	margin: 10px 0px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
}
.nav-btns > a {
	display: block;
	color: white;
	border: 1px solid white;
	font-size: 11px;
	margin: 0 0px;
	line-height: 35px;
	width: 33.333%;
	text-align: center;
	box-sizing: border-box;
	position: relative;
	border-right: none;
}
.nav-btns > a:last-child {
	border-right: 1px solid white;
}
.nav-btns > a:hover {
	text-decoration: none;
	background: white;
	color: #222;
}
.nav-tel {
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
}
.nav-tel + .nav-tel {
	margin-top: 10px;
}
.nav-tel > a {
	color: white;
	font-size: 22px;
	display: block;

	text-align: center;
}
.nav-tel > a:before {
	content: "";
	background: url(../img/nav-tel.png) left center no-repeat;
	background-size: 14px 16px;
	width: 14px;
	height: 16px;
	margin-right: 10px;
	display: inline-block;
}
.nav-tel > span {
	display: block;
	font-size: 15px;
	color: white;
	padding-top: 10px;
	text-align: center;
}
.nav-tel > span:first-child {
	margin-bottom: 10px;
}
.nav-live {
	text-align: center;
	margin-top: 20px;
}
.nav-live > a {
	font-size: 13px;
	color: white;
	display: inline-block;
	border-bottom: 1px solid white;
	padding-bottom: 3px;
}
.nav-live > a:hover {
	border-bottom: none;
	text-decoration: none;
}

.nav-sns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;	
	margin: 15px auto;
}
.nav-sns > li {
	margin: 0 10px;
}
.nav-sns > li > a {
	color: white;
	font-size: 22px;
	
}
.nav-sns > li > a i {
	font-size: 22px;
}

.list-nav-bottom {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;	
	margin: 0px auto;	
}
.list-nav-bottom > li {
	margin: 0 10px;
}
.list-nav-bottom > li > a {
	font-size: 11px;
	color: white;
}

@media all and (max-height: 584px) {
	/*.list-nav > li {
		padding: 9px 0;
	}
	.list-nav > li > a {
		font-size: 15px;
	}*/
	.nav-btns {
		margin: 10px auto;
	}
}

/* 
ヘッダー NEW
*/
.l-header-n {
	height: 50px;
}
.l-header-n .header-inner {
	height: 50px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	border-bottom: 1px solid #eeeeee;
	box-sizing: border-box;
	background: white;
}
.l-header-n .header-inner .header-logo {
	position: absolute;
	left: 15px;
	top: 12px;
	margin: 0;
}
.l-header-n .header-nav {
	right: 0;
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.l-header-n .header-nav .menu-top {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
	margin-right: 60px;
	margin-top: 5px;
}
.l-header-n .header-nav .menu-top > li {
	width: 170px;
	margin: 0 5px 0 0;
	padding: 0;
	display: none;
}
.l-header-n .header-nav .menu-top > li > a {
	display: block;
	text-align: center;
	font-size: 14px;
	color: #222222;
	line-height: 36px;
	height: 36px;
	background: #eeeeee;
	padding: 0;
	width: 100%;
}
.l-header-n .header-nav .menu-top > li.w {
	width: 60px;
	height: 40px;
	display: block;
}
.l-header-n .header-nav .menu-top > li.w > a {
	background: white;
	text-indent: -9999em;
	background: url(../img/btn-online-sp-2.png) center center no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
}
.l-header-n .header-nav .menu-top-sns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
	height: 70px;
	margin-right: 19px;
}
.l-header-n .header-nav .menu-top-sns > li {
	margin: 0 5px;
	padding: 0;
	width: auto;
	
}
.l-header-n .header-nav .menu-top-sns > li > a {
	display: block;
	text-align: center;
	font-size: 20px;
	color: #222222;
	line-height: 70px;
	line-height: 70px;
	padding: 0;
}
.l-header-n .header-nav .menu-top-sns > li > a i {
	font-size: 20px;
}
.l-header-n .btn-nav.menu-trigger.sp {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0;
	top: 0;
	left 0;
	
}
.l-header-n .btn-nav.menu-trigger.sp > span {
	width: 23px;
	height: 2px;
	background: white;
	left: 24px;
	transition-property: all;
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(.36,.04,.23,1);		
}
.l-header-n .btn-nav.sp.menu-trigger > span:nth-child(1) {
	top: 30px;
}
.l-header-n .btn-nav.sp.menu-trigger > span:nth-child(2) {
	top: 39px;
}
.l-header-n .btn-nav.sp.menu-trigger > span:nth-child(3) {
	top: 48px;
}
/*
.menu-trigger.is-active span:nth-of-type(1) {
	transform: translateY(6px) rotate(-45deg);
}
*/

.l-header-n .header-nav-bottom {
	background: rgba(51,51,51,0.95);
	height: 100%;
	height: calc(100% - 40px - 50px);
	position: fixed;
	left: 0;
	width: 100%;
	top: 50px;
	transition-property: all;
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(.36,.04,.23,1);	
	display: none;
	opacity: 0;
	overflow: scroll;
}
.l-header-n .header-nav-bottom.is-active-sp {
	display: block;
	opacity: 1;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;	
}
.l-header-n .header-nav-bottom .menu-bottom {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
.l-header-n .header-nav-bottom .menu-bottom > li {
	width: 100%;
	position: relative;
}
.l-header-n .header-nav-bottom .menu-bottom > li > a {
	display: block;
	width: 100%;
	text-align: left;	
	line-height: 50px;
	height: 50px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(136,136,136,0.9);
	font-size: 14px;
	color: white;
	padding-left: 10px;

}
.l-header-n .header-nav-bottom .menu-bottom > li > a br {
	display: none;
}
.l-header-n .header-nav-bottom .menu-bottom > li.has-mega .mega-btn {
	background: url(../img/mega-plus.png) 95% center no-repeat;
	background-size: 11px 11px;
	width: 100%;
	height: 50px;
	position: absolute;
	right: 0;
	top: 0;
}
.l-header-n .header-nav-bottom .menu-bottom > li.has-mega.is-active .mega-btn {
	background: url(../img/mega-minus.png) 95% center no-repeat;
	background-size: 11px 11px;	
	width: 100%;
	height: 50px;
}
.l-header-n .header-nav-bottom .menu-bottom > li:hover > a {
/*
	text-decoration: none;
	background: #222222;
	color: white;	
*/
}
.l-header-n .header-nav-bottom .menu-bottom > li > a:hover {
	text-decoration: none;
}
.l-header-n .header-nav-bottom .menu-bottom > li.has-mega.is-active .mega {
	display: block;
	opacity: 1;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;
}
.l-header-n .header-nav-bottom .menu-bottom > li:first-child {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: none;
}
.l-header-n .header-nav-bottom .menu-bottom > li:first-child > a {
	width: 100%;
	height: 100%;
	display: block;
	text-indent: -9999em;
	background: url(../img/home.png) center center no-repeat;
	background-size: 17px 18px;
	border: none;
}
.l-header-n .header-nav-bottom .menu-bottom > li:first-child:hover > a {
	background: #222 url(../img/home-active.png) center center no-repeat;
	background-size: 17px 18px;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega {
	display: none;
	opacity: 0;
	background: rgba(136,136,136,0.2);
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega .mega-menu {
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega .mega-menu > li {
	width: 100%;
/* 	height: 40px; */
	line-height: 1.2em;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega .mega-menu > li > a {
	display: block;
	font-size: 14px;
	color: white;
	text-align: left;
	line-height: 1.5em;
	border-bottom: 1px solid rgba(136,136,136,0.9);
/* 	border-right: 1px solid rgba(136,136,136,0.9);	 */
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega .mega-menu > li > a br {
	display: none;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega .mega-menu > li > a:hover {
	text-decoration: none;
	opacity: 0.5;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega .mega-menu > li > a img {
	display: none;
}

.nav-bottom-btn {
	width: 90%;
	margin: 20px auto;
}
.nav-bottom-btn > a {
	display: block;
	text-align: center;
	color: white;
	width: 100%;
	line-height: 40px;
	border: 1px solid white;
}
.nav-bottom-btn > a:hover {
	text-decoration: none;
}
.nav-bottom-submenu {
	margin: 40px auto;
}
.nav-bottom-submenu > li {
	text-align: center;
	margin: 15px auto;
}
.nav-bottom-submenu > li > a {
	color: white;
}
.header-nav-bottom-submenu .menu-top-sns {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	flex-wrap: wrap;	
	padding-bottom: 40px;
}
.header-nav-bottom-submenu .menu-top-sns > li {
	margin: 0 10px;
}
.header-nav-bottom-submenu .menu-top-sns > li i {
	color: white;
	font-size: 30px;
}
/*.l-header-n .header-nav-bottom .menu-bottom > li .mega.mega-3 .mega-menu > li {
	width: 33.3333333%;
	height: auto;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega.mega-3 .mega-menu > li > a {
	text-align: center;
	padding: 0 0 18px;
	display: block;
	background: white;
	height: 100%;
	background: url(../img/mega-sep.png) right 92% no-repeat;
	background-size: 1px 30px;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega.mega-3 .mega-menu > li > a img {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	margin: 0 auto 18px;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega.mega-4 .mega-menu > li {
	width: 25%;
	height: auto;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega.mega-4 .mega-menu > li > a {
	text-align: center;
	padding: 0 0 18px;
	display: block;
	background: white;
	height: 100%;
	background: url(../img/mega-sep.png) right 92% no-repeat;
	background-size: 1px 30px;
}
.l-header-n .header-nav-bottom .menu-bottom > li .mega.mega-4 .mega-menu > li > a img {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	margin: 0 auto 18px;
}*/

.menu-top-fixed {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 55px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	z-index: 999;
	background: rgba(34,34,34,1);
}
.menu-top-fixed > li {
	width: 33.333333%;
}
.menu-top-fixed > li > a {
	display: block;
	color: white;
	text-align: center;
	font-size: 12px;
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
	height: 55px;
	box-sizing: border-box;
	border-right: 1px solid #888888;
}
.menu-top-fixed > li:nth-child(3) > a {
	border-right: none;
}
.menu-top-fixed > li > a > i {
	font-size: 12px;
	color: white;
	display: block;
	text-align: center;
	margin-bottom: 5px;
	
}
.menu-top-fixed > li > a:hover {
	text-decoration: none;
}


/*
パンくず
*/
.bread {
	padding: 0;
	margin: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: none;
}



.bread ul {
	line-height: 50px;
	margin: 0 auto;
	padding-left: 15px;
}
.bread li {
	display: inline;
	font-size: 13px;
	color: white;
}
.bread li * {
	font-size: 13px;
	color: white;
}
.bread li a {
	color: white !important;
	text-decoration: none;
}
.bread i {
	padding: 0 5px;
}
.bread li:first-child i {
	
}
.bread .bullet {

}
.bread .bullet:before {
	color: white;
	content: "/";
}
.bread li:after {
	content: ">";
	display: inline-block;
	padding: 0 5px;
}
.bread li:last-child:after {
	content: none;
}


/*
サイドバー
*/


/*
カテゴリ
*/

/*
フッター
*/
.page-top {
	position: fixed;
	right: 10px;
	bottom: 50px;
	z-index: 55;
	width: 6px;

}
.footer-logo {
	width: 200px;
	margin: 0 auto 50px;
}
.footer-addr {
	font-size: 12px;
	color: white;
	text-align: center;
	margin-bottom: 25px;
}
.footer-addr .big {
	font-size: 1.3em;
	display: block;
	margin-bottom: 20px;
}
.footer-tel {
	font-size: 13px;
	color: white;
	text-align: center;
	margin-bottom: 20px;
}
.footer-tel-2 {
	margin-top: 30px;
}
.footer-tel .footer-tel-title {
	display: block;
	margin-bottom: 20px;	
}
.footer-tel span {
	display: inline-block;
	margin: 0 20px;
}
.footer-tel span small {
	font-size: 0.8em;
	display: block;
	padding-top: 5px;
}
.footer-tel a.tel {
	color: white;
	font-size: 30px;
	display: inline-block;
	background: url(../img/footer-tel.png) 0 center no-repeat;
	background-size: 25px 28px;
	padding-left: 30px;
	margin-bottom: 20px;
}
.footer-tel a.live {
	font-size: 13px;
	color: white;
	display: inline-block;
	border-bottom: 1px solid white;
	padding-bottom: 3px;
	margin-top: 20px;
}
.footer-tel a.live:hover {
	border-bottom: 1px solid rgba(255,255,255,0);
	text-decoration: none;
}
.list-footer-btns {
	margin-top: 45px;
	display: block;
}
.list-footer-btns > li {
	width: 230px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}
.list-footer-btns > li:nth-child(2) {

}
.list-footer-btns > li > a {
	display: block;
	color: white;
	text-align: center;
	font-size: 16px;
	line-height: 44px;
	border: 1px solid white;
}
.list-footer-btns > li > a:hover > .out {
	display: none;
}
.list-footer-btns > li > a > .hover {
	display: none;	
}
.list-footer-btns > li > a:hover > .hover {
	display: block;
	opacity: 1;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;
}
.list-footer-btns > li > a:hover {
	text-decoration: none;
	color: #222;
	background: white;
}
.footer-owner {
	margin-top: 40px;
	margin-bottom: 20px;
}
.footer-owner > a {
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	border-bottom: 1px solid white;
	padding-bottom: 3px;
}
.footer-owner > a:hover {
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0);
}
.list-footer-nav {
	margin-top: 30px;
}
.list-footer-nav > li {
	margin: 0 10px;
}
.list-footer-nav > li > a {
	color: white;
	font-size: 11px;
}
.copyright {
	margin-top: 35px;
	text-align: center;
	font-size: 11px;
	color: white;
	border-top: 1px solid #444;
	line-height: 69px;
}

@media all and (max-width: 1100px) {
	.br-1100 {
		display: block;
	}
}

/*
FOOTER FIX
*/
.footer-fix {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80px;
	z-index: 99;
	background: rgba(9,44,74,0.9);
}
.footer-fix * {
	color: white;
}

.footer-fix .footer-fix-inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	height: 80px;
}
.footer-fix .footer-fix-tel {
	font-size: 15px;
}
.footer-fix .footer-fix-tel a {
	font-size: 28px;
	font-weight: bold;
	padding-left: 35px;
	display: inline-block;
	background: url(../img/footer-fix-tel.png) 0 0 no-repeat;
	background-size: 23px 26px;
}
.footer-fix .footer-fix-tel span {
	vertical-align: middle;
	display: block;
	font-size: 13px;
	padding-left: 35px;
}

.footer-fix .footer-fix-btns {
	margin-left: 20px;
}
.footer-fix .footer-fix-btns a {
	width: 160px;
	font-size: 16px;
	display: block;
	border: 1px solid white;
	text-align: center;
	line-height: 35px;
	margin: 0 5px;
}
.footer-fix .footer-fix-btns a:hover {
	text-decoration: none;
	background: white;
	color: #222;
}
.footer-fix .footer-fix-live {
	margin-left: 20px;
}
.footer-fix .footer-fix-live a {
	color: white;
	font-size: 13px;
	text-decoration: none;
	display: inline-block;
	border-bottom: 1px solid white;
	padding-bottom: 3px;
}
.footer-fix .footer-fix-live a:hover {
	text-decoration: none;	
	border-bottom: none;
}
.br-1070 {
	display: none;
}
@media all and (max-width: 1070px) {
	.br-1070 {
		display: block;
	}
	.footer-fix .footer-fix-tel a {
		font-size: 20px;
		background: url(../img/footer-fix-tel.png) 0 0 no-repeat;
		background-size: 15px 19px;
		padding-left: 22px;
	}
	.footer-fix .footer-fix-tel span {
		padding-left: 22px;
	}
	.footer-fix .footer-fix-btns a {
		width: auto;
		font-size: 14px;
		padding: 0 10px;	
	}
	.footer-fix .footer-fix-live a {
		text-decoration: underline;
		border-bottom: none;
	}
	.footer-fix .footer-fix-live a:hover {
		text-decoration: none;
	}
}

/*
SHARE SNS
*/

.share {
	
}
.share ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}

.share ul > li {
	display: block;
	letter-spacing: normal;
	width: 30px;
	height: 30px;
	letter-spacing: normal;
	box-sizing: border-box;
	text-align: center;
	line-height: 30px;
	border-radius: 0;
	margin: 0 0px;
}

.share ul > li:hover {
	opacity: 0.7;	
}
.share ul > li a {
	display: block;
	width: 100%;
	height: 100%;
}
.share ul > li a:hover {
	text-decoration: none;

}
.share ul li i, .share ul li span {
	color: black !important;
	font-size: 22px !important;
}

.share.share-single {
	border-top: 1px solid #f5f5f5;
	margin: 0 -40px -40px;
	padding: 40px 40px 40px;
}

.share.share-single ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;	
}
.share.share-single ul li {
	margin-right: 10px;
	height: 30px;
	border-radius: 0;


}


/*
FEATURE
*/
.list-feature {
	margin: 60px auto;
}
.list-feature > li {
	
}
.list-feature .feature {
	display: -webkit-flex !important;
	display: flex !important;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.list-feature .feature .feature-text {
	width: 50%;
	height: 300px;
	background: white;
	box-sizing: border-box;
	padding: 50px;
	position: relative;
}
.list-feature .feature .feature-text:after {
	content: "";
	display: block;
	background: url(../img/feature-text.png) 0 0 no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	right: -15px;
	top: 50%;
	margin-top: -15px;
}
.list-feature .feature .feature-text .feature-title {
	font-size: 22px;
	color: #0a66a8;
	font-weight: 500;
	line-height: 1.363em;
	margin-bottom: 20px;
}
.list-feature .feature .feature-text .feature-title .num {
	font-size: 40px;
	color: #0a66a8;
}
.list-feature .feature .feature-text p {
	font-size: 15px;
	line-height: 2em;
	margin-bottom: 20px;
}
.list-feature .feature .feature-text .feature-link {
	
}
.list-feature .feature .feature-text .feature-link a {
	color: #0a66a8;
}
.list-feature .feature .feature-text .feature-link a:before {
	content: "＞";
	padding-right: 5px;
}
.list-feature .feature .feature-pic {
	width: 50%;
	height: 300px;	
}
.list-feature .feature .feature-pic img {
	
}

.list-feature > li:nth-child(even) .feature-text {
	order: 2;
}
.list-feature > li:nth-child(even) .feature-pic {
	order: 1;
}
.list-feature > li:nth-child(even) .feature .feature-text:after {
	content: "";
	display: block;
	background: url(../img/feature-text.png) 0 0 no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	right: auto;
	left: -15px;
	top: 50%;
	margin-top: -15px;
}

.list-feature.list-feature-slider {
	position: relative;
}
.list-feature.list-feature-slider .feature {
	width: 920px;
	box-sizing: border-box;
	padding: 0 40px;
	position: relative;
}
.list-feature.list-feature-slider .feature-text {
	padding: 40px;
}
.list-feature.list-feature-slider .slick-prev {
	width: 920px;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
	z-index: 6;
}
.list-feature.list-feature-slider .slick-prev:before {
	content: "";
	background: url(../img/slider-prev-blue.png) 0 0 no-repeat;
	background-size: contain;
	width: 12px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: 14%;
	margin-left: 0px;
}
.list-feature.list-feature-slider .slick-next {
	width: 920px;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
}
.list-feature.list-feature-slider .slick-next:before {
	content: "";
	background: url(../img/slider-next-blue.png) 0 0 no-repeat;
	background-size: contain;
	width: 12px;
	height: 20px;
	z-index: 5;	
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: 14%;
	margin-right: 0px;
}

/*
BANNER
*/
.list-banner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.list-banner > li {

	box-sizing: border-box;
	position: relative;
	margin-bottom: 20px;
}


/*
LIST ROLLUP
*/
.list-rollup {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
}
.list-rollup > li {
	width: 17%;
	height: 340px;
	position: relative;
	overflow: hidden;	

}
.list-rollup .rollup {
	position: relative;
	width: 100%;
	height: 340px;
}
.list-rollup .rollup .rollup-pic {
	width: 100%;
	height: 340px;

}
.list-rollup .rollup .rollup-text {
	background: rgba(21,85,150,0.85);
	padding: 0 15px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 280px;
	box-sizing: border-box;
}
.list-rollup .rollup:hover .rollup-text {
	top: 0;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.list-rollup .rollup .rollup-title {
	text-align: center;
	color: white;
	font-size: 17px;
	font-weight: 500;
	padding: 20px 0;
}
.list-rollup .rollup:hover .rollup-title {
	padding: 35px 0;
}
.list-rollup .rollup .rollup-text p {
	color: white;
	font-size: 13px;
	line-height: 2em;
}
.list-rollup .rollup .rollup-btn {
	border: 1px solid white;
	margin: 15px auto;
}
.list-rollup .rollup .rollup-btn > a {
	color: white;
	font-size: 13px;
	text-align: center;
	padding: 10px;
	display: block;
	text-decoration: none;
}
.list-rollup .rollup .rollup-btn > a:hover {
	text-decoration: none;
	background: white;
	color: #111;
}

/*
LIST FLOW
*/
.list-flow {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
}
.list-flow > li {
	background: url(../img/flow.png) center center no-repeat;
	background-size: cover;
	width: 190px;
	padding-right: 10px;
	box-sizing: border-box;
	height: 160px;
	margin: 0 6px;
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
}
.list-flow .flow-pic {
	width: 64px;
	margin: 0 auto 10px;
}
.list-flow > li span {
	font-size: 17px;
	color: #0a66a8;
	font-weight: bold;
	text-align: center;
	font-weight: 500;
}

/*
LIST QNA
*/
.list-qna {
	
}
.list-qna > li {
	margin-bottom: 30px;
}
.list-qna .title-q {
	font-size: 18px;
	color: #0a66a8;
	font-weight: 500;
	background: url(../img/icon-q.png) 10px center no-repeat, url(../img/q.png) 98% center no-repeat #f1f6fb;
	background-size: 36px 36px, 16px 9px;
	line-height: 1.8em;
	padding: 15px 60px 15px 60px;
}
.list-qna .title-q:hover {
	cursor: pointer;
}
.list-qna .a {
	display: none;
	padding: 20px;
}
.list-qna .a p {
	line-height: 2em;
	font-size: 15px;
	margin-bottom: 25px;
}
.list-qna .a p:last-child {
	margin-bottom: 0;
}
.list-qna .title-q.is-active {
	background: url(../img/icon-q.png) 10px center no-repeat, url(../img/q-active.png) 98% center no-repeat #f1f6fb;
	background-size: 36px 36px, 16px 9px;
}
.list-qna .a.is-active {
	display: block;
	opacity: 1;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;	
}
@keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

    @-moz-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

    @-webkit-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }
    
/*
LIST INFO
*/
.list-info {
	
}
.list-info > li {
	border-bottom: 1px solid #dddddd;
}
.list-info .info {
	position: relative;
	padding: 15px 0 15px 0;
}
.list-info .info .info-time {
	font-size: 12px;
	color: #222222;
	display: block;
}
.list-info .info .info-cat {
	
	width: 170px;
}
.list-info .info .info-cat a {
	background: #666666;
	color: white;
	text-align: center;
	display: block;
	font-size: 12px;
	padding: 5px 10px;
	margin: 5px 0;
}
.list-info .info .info-cat-2 {
	background: #666666;
	color: white;
	text-align: center;
	display: block;
	font-size: 12px;
	padding: 5px 10px;
	margin: 5px 0;
}
.list-info .info .info-cat a:hover {
	background: #eee;
	color: #222;
	text-decoration: none;
}
.list-info .info .info-title {
	line-height: 1.5em;
}
.list-info .info .info-title a {
	font-size: 14px;
	color: #222222;
	text-decoration: none;
}
.list-info .info .info-title a:hover {
	text-decoration: underline;

}

/*
LIST ENTRY
*/
.list-entry {
/*
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
*/
}
.list-entry > li {

	margin-bottom: 15px;
}
.list-entry .entry {
	position: relative;
}
.list-entry .entry .entry-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.list-entry .entry .entry-pic {
	position: relative;
	height: 140px;
	overflow: hidden;
}
.list-entry .entry .entry-pic img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.list-entry .entry .entry-link:hover +.entry-pic img {
/*
	opacity: 0.7;
	transform: scale(1.2), translate(-50%, -50%);
        transition: all .6s cubic-bezier(.19, 1, .22, 1) ;
        transition: all .6s cubic-bezier(.19, 1, .22, 1);
        transition: all .6s cubic-bezier(.19, 1, .22, 1);
*/
}
.list-entry .entry .entry-cat {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}
.list-entry .entry .entry-cat a {
	color: white;
	line-height: 30px;
	background: rgba(20,88,136,0.9);
	display: block;
	text-align: center;
	padding: 0px 15px;
	font-size: 12px;
}
.list-entry .entry .entry-cat a:hover {
	text-decoration: none;
	color: #111;
	background: #eee;
}
.list-entry .entry .entry-text {
	padding: 15px 0 0;
}
.list-entry .entry .entry-title {
	font-size: 15px;
	line-height: 2em;	
}

.list-entry .entry .entry-link:hover + .entry-pic + .entry-text .entry-title {
	color: #0a66a8;
}
.event-cat-tag {
	display: inline-block;
	border: 2px solid #222;
	font-weight: bold;
	text-align: center;
	padding: 2px 0px;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 130px;
}
.list-entry .entry-content .new {
position: absolute;
right: 20px;
margin-top: -10px;
background: url(../img/new.png) center center no-repeat;
background-size: contain;
width: 50px;
height: 50px;	
}
.list-entry .entry-content .new-2 {
	position: absolute;
	right: 20px;
	background: #e44c5b;
	width: 50px;
	color: #fff;
	height: 25px;
	text-align: center;
	line-height: 25px;
	font-size: 14px;
}
.list-entry .entry-content .new-3 {
	position: absolute;
	right: 20px;
	background: #e44c5b;
	width: 50px;
	color: #fff;
	height: 25px;
	text-align: center;
	line-height: 25px;
	font-size: 14px;
}
/*
LIST ENTRY ROW
*/
/*
.list-entry-row {
	display: block;
}
.list-entry-row > li {
	width: 100%;	
	margin-bottom: 0;
	border-bottom: 1px solid #dddddd;
	padding: 70px 0 70px;
}
.list-entry-row > li:first-child {
	padding-top: 0;
}
.list-entry-row > li:last-child {
	border-bottom: none;
}
.list-entry-row .entry {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: 100%;
}
.list-entry-row .entry .entry-pic {
	width: 500px;
}
.list-entry-row .entry .entry-content {
	width: 450px;
	margin: 0;
	padding: 0;
	border: none;
}
.list-entry-row .entry .entry-content .entry-time {
	display: block;
	margin-bottom: 15px;
}
.list-entry-row .entry .entry-content .entry-title {
	font-size: 24px;
	color: #222222;
	line-height: 1.5em;
	margin-bottom: 30px;
	min-height: auto;
}
.list-entry-row .entry .entry-content .entry-text {
	line-height: 2.4em;
}
.list-entry-row .entry .entry-content .entry-text p {

}
.list-entry-row .entry .entry-content .btn {
	margin-left: 0;
	margin-right: 0;
	position: absolute;
	transform: none;
	left: 0;
	bottom: 0;
}
*/
.list-entry-row .entry .entry-content .entry-time {
	padding-top: 10px;
	display: block
}
.list-entry-row .entry-text {
	display: none;
}


.list-entry-event-sp .entry .entry-pic {
	height: auto !important;
	overflow: inherit !important;
}
.list-entry-event-sp .entry .entry-pic img {
	transform: none !important;
	position: static !important;
}
.list-entry .entry.entry-no-link a,
.list-entry .entry.entry-no-link-2 a {
	pointer-events: none;
}

.list-entry .entry.entry-no-link .entry-pic:after {
	content: "終了しました";
	font-size: 20px;
	color: white;
	display: block;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	text-align: center;
	line-height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;	
}
.list-entry .entry.entry-no-link-2 .entry-pic:after {
	content: "おかげさまで定員となりました";
	font-size: 20px;
	color: white;
	display: block;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	text-align: center;
	line-height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;	
}

/*
SLIDER_1
*/
.slider-1 {
	margin: 0px auto;
}
.slider-1 .slider-item {
	text-align: center;
}
.slider-1 .slider-item img {
	margin: 0 auto;
}
.slider-1 .slick-prev {
	z-index: 5;
	left: 0;
}

/*
SLIDER_1
*/
.slider-2 {
	margin: 60px auto;
}

.slider-2 .slider-item img {
	margin: 0 auto;
}
.slider-2 .slick-prev {

	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
}
.slider-2 .slick-prev:before {
	content: "";
	background: url(../img/slider-prev-blue.png) 0 0 no-repeat;
	background-size: contain;
	width: 12px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: 10%;
	margin-left: 0px;
}
.slider-2 .slick-next {

	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
}
.slider-2 .slick-next:before {
	content: "";
	background: url(../img/slider-next-blue.png) 0 0 no-repeat;
	background-size: contain;
	width: 12px;
	height: 20px;
	z-index: 5;	
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: 10%;
	margin-right: 0px;
}

.slider-2 .slider-item {

	margin: 0 auto;
}
.slider-2 .slider-item .inner {
	background: #fafafa;
	position: relative;
	padding: 30px;
	padding-left: 215px;
	box-sizing: border-box;
	text-align: left;

	margin: 0 auto;	
}
.slider-2 .slider-item .slider-item-pic {
	position: absolute;
	left: 30px;
	top: 30px;
}
.slider-2 .slider-item .slider-item-pic img {
	
}
.slider-2 .slider-item .slider-item-title {
	font-weight: 500;
	font-size: 22px;
	color: #0a66a8;
	margin-bottom: 25px;	
}
.slider-2 .slider-item p {
	font-size: 15px;
	line-height: 2em;
	margin-bottom: 20px;
}
.slider-2 .slider-item p a {
	font-size: 15px;
	color: #0a66a8;
}
.slider-2 .slider-item p a:hover {
	text-decoration: underline;
}




@keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

    @-moz-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

    @-webkit-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }
    
/*
BOX COL
*/
.box-col {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
	margin-bottom: 15px;
}
.box-col-slider .box-col {
	margin-bottom: 0;
}
.box-col > div {
	width: 100%;
	background-color: #363636;
}
.box-col .box-col-pic {
	order: 1;
	height: 150px;
	overflow: hidden;
	position: relative;
}
.box-col .box-col-pic img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
.box-col .box-col-content {
	order: 2;
}
.box-col .box-col-pic {
	line-height: 0;
}
.box-col .box-col-content {
	box-sizing: border-box;
	padding: 10px 15px 10px;
/*
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;	
*/
}
.box-col .box-col-title {
	color: #fff;
	font-size: 30px;
	margin-bottom: 0;
}
.box-col .box-col-content p {
	color: #fff;
	font-size: 15px;
	line-height: 2em;
	text-align: left;
	margin-bottom: 10px;
}
.box-col .box-col-title-caption {
	color: #fff;
	font-size: 14px;
	margin-bottom: 20px;
}
.box-col .box-col-title-caption + p {
	text-align: left !important;
}
.box-col .box-col-content .btn {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-top: 10px;
}

.box-col-slider {
	
}
.box-col-slider .box-col {
	display: flex !important;
}
.box-col-slider-btns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 15px;
	color: #222222;
	margin: 20px 0 40px;
}
.box-col-slider-btns .box-col-btn-prev {
	text-indent: -9999em;
	width: 7px;
	height: 12px;
	background: url(../img/box-col-slider-prev.png) center center no-repeat;
	background-size: contain;
	margin-top: 3px;
}
.box-col-slider-btns .box-col-btn-next {
	text-indent: -9999em;
	width: 7px;
	height: 12px;
	background: url(../img/box-col-slider-next.png) center center no-repeat;
	background-size: contain;
	margin-top: 3px;	
}
.box-col-slider-btns .box-col-btn-prev:hover,
.box-col-slider-btns .box-col-btn-next:hover {
	cursor: pointer;
}
.box-col-slider-btns .slick-counter {
	margin: 0px 45px;
}
.box-col .center {
	text-align: center !important;
}
.box-col .btn.center {
	margin-left: auto; 
	margin-right: auto;
}
.box-cols .box-col {
	margin-bottom: 20px;
}
.box-col.box-col-r .box-col-pic {
	order: 1;
}
.box-col.box-col-r .box-col-content {
	order: 2;
}

/*
BOX COL 2
*/
.box-col-2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 20px 0 20px;	
}
.box-col-2 > div {
	width: 100%;
}
.box-col-2 > div:last-child {

	box-sizing: border-box;
}
.box-col-2 .box-col-2-title {
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 18px;
}
.box-col-2 .box-col-2-title .big {
	font-size: 22px;
	color: #222222;
}
.box-col-2 .box-col-2-title small {
	font-size: 15px;
	color: #222222;
}
.box-col-2 p {

}
.box-col-2 > div:nth-child(2) .btn {
	margin-left: 0;
	margin-right: 0;
}
.box-col-2 .notice {
	font-size: 13px;
	color: #888888;
}
.slider-single-btns {
	text-align: left;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	margin: 20px auto 0;
}
.box-col-slider-btns.slider-single-btns .box-col-btn-prev {
	margin-top: 8px;
}
.box-col-slider-btns.slider-single-btns .box-col-btn-next {
	margin-top: 8px;
}
.slider-single-item a.image {
	position: relative;
}
.slider-single-item a.image:after {
	content: "";
	display: block;
	background: url(../img/zoom.png) center center no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	z-index: 3;
	position: absolute;
	right: 15px;
	bottom: 15px;
}

/*
CARD
*/
.cards {
	margin: 25px auto;
	text-align: left;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;	
}
.cards.cards-2 {

}
.cards.cards-2 .card {
	width: 50%;
}
.cards.cards-3 .card {
	width: 33.333333%;
}
.cards.cards-sp .card {
	width: 100%;
}
.link-mov {
	margin: -10px 0px 10px !important;
	padding: 0;
	min-height: 0 !important;	
}
.link-mov a {
	color: #222 !important;
	text-decoration: none !important;
}
.link-mov a:hover {
	text-decoration: underline !important;
}

.ilnk-mov-2 {
	position: relative;
}
.ilnk-mov-2 span {
	color: #222 !important;
	text-decoration: none !important;	
}
.link-mov-2 span:hover {
	text-decoration: underline !important;
	cursor: pointer;
}
.link-mov-list {
	display: none;
}
.link-mov-list {

	text-align: center;
	margin-bottom: 15px;
}
.link-mov-list a {
	display: inline-block;
	padding: 0 10px;
	margin: 0 3px;
	text-align: center;
	color: white;

	line-height: 30px;
	background: #222;
	color: white !important;
}

.card {
	
}
.is-hide {
	display: none;
}
.card .card-pic {

}
.card .card-content {
	margin: 15px 0 15px;
	border-right: 1px solid #dddddd;
}
.cards.cards-3 .card .card-content {
	padding-left: 30px;
	padding-right: 30px;
	position: relative;
}
.cards.cards-2 .card:nth-child(even) .card-content {
	border-right: none;
}
.cards.cards-3 .card:nth-child(3n) .card-content {
	border-right: none;
}
.cards.cards-sp .card .card-content {
	border-right: none;
}
.card .card-title {
	text-align: center;
	font-size: 15px;
	font-weight: normal;
	margin-bottom: 15px;
	min-height: 44px;
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;	
	margin-top: 0;
}
.card .card-title.card-title-small {
	font-size: 12px;
}
.card .card-title .en {
	display: block;
	text-align: center;
	font-size: 20px;
	color: #222222;
}
.card .card-content p {
	font-size: 16px;
}
.card .card-content .card-title + p {
	margin-top: 10px;
}
.cards.cards-3 .card-content p {
	min-height: 60px;
}
.card .card-title-img {
	width: 190px;
	margin: 0 auto 20px;
}
.card .card-content .btn {
	margin-top: 0;
	margin-bottom: 0;
}
.card .card-content .btn a {
	font-size: 9px;
}

.cards-after .card:nth-child(1) .card-content {
	border-right: none;
	position: relative;
}
.cards-after .card:nth-child(1) .card-content:after {
	content: "";
	display: block;
	background: url(../img/cards-after-2.png) 0 0 no-repeat;
	background-size: contain;
	width: 6px;
	height: 42px;
	margin: 0 auto;
}

/*
BOX SEARCH
*/
.box-search {

}
.search-item {
	position: relative;
	margin-bottom: 20px;
}
.search-header {
	font-size: 16px;
	width: 100%;
}
.search-header.search-header-s {
	width: 100%;
	margin-bottom: 20px;
}
.search-header.search-header-s + .search-content {

}
.search-content {

}
.list-tag {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.list-tag > li {
	margin-right: 30px;
	margin-bottom: 20px;
}
.list-tag > li > a {
	font-size: 15px;
	color: #222222;
	text-decoration: none;
	border-bottom: 1px solid #222;
	display: inline-block;
}
.list-tag > li > a:hover {
	text-decoration: none;
	border-bottom: none;
}
.search-more {
	display: block;
	margin-top: 20px;
}
.search-more:hover {
	cursor: pointer;
	text-decoration: underline;
}
.list-tag.list-tag-hash > li > a:before {
	content: "#";
	padding-right: 3px;
}
.mwform-checkbox-field {
	display: inline-block;
}
.mwform-checkbox-field > label input[type="checkbox"]{
  display: none;
}
.mwform-checkbox-field > label {
  cursor: pointer;

  font-weight: normal;
  display: block;
  padding: 0px 10px 2px 0;
}
.mwform-checkbox-field > label .mwform-checkbox-field-text:before{
  content:"";
  background: url(../img/checkbox.png) center center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  font-size: 18px;
  position: relative;
  top: 4px;
  display: inline-block;
  margin-right: 10px;
}
.mwform-checkbox-field > label input[type="checkbox"]:checked + .mwform-checkbox-field-text{

}
.mwform-checkbox-field > label input[type="checkbox"]:checked + .mwform-checkbox-field-text:before{
  background: url(../img/checkbox-checked.png) center center no-repeat;
  background-size: contain;
}

/*
TAB
*/
.page .list-tab,
.page .list-tab-bottom {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
	margin-top: 20px;
	margin-bottom: 20px;
}
.page .list-tab > li,
.page .list-tab-bottom > li {
	width: 50%;
	box-sizing: border-box;
	border: 1px solid #222222;
	border-right: none;
}
.page .list-tab > li:nth-child(2n),
.page .list-tab-bottom > li:nth-child(2n) {
	border-right: 1px solid #222222;
}
.page .list-tab > li > span, .page .list-tab > li > a,
.page .list-tab-bottom > li > span, .page .list-tab-bottom > li > a {
	color: #222222;
	font-size: 11px;
	display: block;
	text-align: center;
	line-height: 40px;
	text-decoration: none;
}
.page .list-tab > li.is-active {
	background: #222;
}
.page .list-tab > li > span:hover, .page .list-tab > li > a:hover,
.page .list-tab-bottom > li > span:hover, .page .list-tab-bottom > li > a:hover {
	cursor: pointer;
}
.page .list-tab > li.is-active > span, .page .list-tab > li.is-active > a,
.page .list-tab-bottom > li.is-active > span, .page .list-tab-bottom > li.is-active > a {
	color: white;
	background: #222222;
}
.page .list-tab.list-tab-3,
.page .list-tab-bottom.list-tab-3 {
	border-left: 1px solid #222;	
}
.page .list-tab.list-tab-3 > li,
.page .list-tab-bottom.list-tab-3 > li {
	width: 33.333333%;
	border-left: none;
	border-right: 1px solid #222;
}
.page .list-tab.list-tab-3 > li > span,
.page .list-tab-bottom.list-tab-3 > li > span {
	font-size: 12px;
}
.list-tab.list-tab-4,
.list-tab-bottom.list-tab-4 {
	border-left: 1px solid #222;	
}
.list-tab.list-tab-4 > li,
.list-tab-bottom.list-tab-4 > li {
	width: 25%;
	border-right: 1px solid #222;
	border-left: none;
}

.tabs {
	min-height: 1000px;
}

.page .tab {
	display: none;
	padding: 0px;	
	opacity: 0;
}
.tab.is-active {
	display: block;
	opacity: 1;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;	
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*
	POPUP
*/
.c-popup {
	width: 90%;

	padding: 15px;
}
.c-popup.is-show {

}
.popup-inner {

}
.popup-inner img {
  width: 100%;
}

.c-popup .popup-title {
	text-align: center;
	font-size: 18px;
	line-height: 1.538em;
	margin-bottom: 25px;
}
.c-popup p {
	font-size: 14px;
	line-height: 1.875em;
	margin-bottom: 20px;
}
.c-popup .popup-content-btn {
	width: 100%;
	margin: 0 auto 15px;
}
.c-popup .popup-content-btn a {
	display: block;
	color: white;
	text-align: center;
	font-size: 13px;
	line-height: 1.5em;
	padding: 15px;
	background: #222;
}
.c-popup .popup-content-btn a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.c-popup .popup-content-btn .ic-cpopup-btn-1 {
	display: inline-block;
	background: url(../img/c-popup-btn-1.png) center center no-repeat;
	background-size: contain;
	width: 22px;
	height: 22px;
	vertical-align: middle;
	margin-right: 15px;
}
.c-popup .popup-content-btn .ic-cpopup-btn-2 {
	display: inline-block;
	background: url(../img/c-popup-btn-2.png) center center no-repeat;
	background-size: contain;
	width: 22px;
	height: 22px;
	vertical-align: middle;
	margin-right: 15px;
}
#fancybox-close {
	/* background: url(../img/c-popup-close.png) center center no-repeat;
	background-size: 18px 18px; */
	width: 18px;
	height: 18px;
	top: -10px;
	right: 20px;
}