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

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}
/* End hide from IE-mac */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin:0px;
	padding:0px;
}　
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}
ul {
	list-style:none;
}
ol li{
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
	font-variant:normal;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
 *font-size:100%;
}
legend {
	color:#000000;
}
img {
	vertical-align:bottom;
}
table caption {
	font-weight: bold;
	margin:0 0 5px;
}
/* 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;
}
/*** ------------------------------------------------------------------------------ 

HTML5

-----------------------------------------------------------------------------  ***/
#header, footer, nav, section, article, figure, aside {
	display:block;
}
* {
	box-sizing:border-box;
}
i{
	margin: 0 5px 0 0;
}
img{
	max-width: 100%;
}

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

common

-----------------------------------------------------------------------------  ***/
html {
	overflow-y:scroll;
	font-size: 62.5%; 
}
body {
	overflow-x: hidden;
	background: #FFF;
	color:#000;
	line-height: 2.26;
	letter-spacing: 0.05em;
	font-size: calc(1.5rem + (1vw - 0.77rem) * 0.5425);/* 18px~15pxで可変*/
	font-family: source-han-sans-japanese, sans-serif;
	font-style:normal;
}
 
@media screen and (max-width: 768px) {
    body{
        font-size:1.5rem;/* 15px */
        line-height: 2;
    }
}
@media (min-width: 1321px) {
    body {
        font-size:1.8rem;/* 18px */
    }
}

.inner_01{
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.inner_02{
	max-width: 1635px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.pc{ display: block;}
.sp{ display: none;}
@media (max-width:768px){
	.inner{
		padding: 0 20px;
		box-sizing: border-box;
	}
	.inner_in{
		padding: 0 20px;
		box-sizing: border-box;
	}
	.inner_01{
		padding: 0 15px;
	}
	.pc{ display: none;}
	.sp{ display: block;}
}


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

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	outline:none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
	text-decoration: none;
}
@media (min-width:769px){
	a:hover {
		color: #000;
		text-decoration: underline;
	}
}
a:active {
	color: #000;
	text-decoration: none;
}
a img {
	transition: 0.3s;
}
a:hover img {
	opacity:0.8;
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
}
#visual a:hover img {
	opacity:1;
	filter: alpha(opacity=100);
	-moz-opacity:1;
}
@media (max-width:768px){
	a:hover img {
		opacity:1;
		filter: alpha(opacity=100);
		-moz-opacity:1;
	}
}




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

header

-----------------------------------------------------------------------------  ***/
header{
	width: 100%;
	height: 80px;
	background: #fff;
	position: relative;
	z-index: 10;
}
#sub-header{
	position: fixed;
	top: -250px;
	z-index: 10;
	width: 100%;
	height: 80px;
	transition: 0.5s;
	background: #fff;
}
#sub-header.fix{
	top: 0;
	transition: 0.3s;
}
#sub-header.fix-pos{
	top: 0 !important;
	transition: 0.3s;
}
header .logo,
#sub-header .logo{
	padding: 75px 0 0 10px;
	transform: translateX(0%);
	transform: translateY(-50%);
	width: calc( 100% - 180px);
}

header .entry-btn,
#sub-header .entry-btn{
	position: absolute;
	right: 60px;
	top: 19px;
	width: 100px;
	text-align: center;
	margin: 0;
}
header .entry-btn a,
#sub-header .entry-btn a{
	display: block;
	padding: 5px 0;
	font-size: 1.4rem;
	color: #fff;
	background: #A19EEE;
	border-radius: 25px;
	text-decoration: none;
	transition: 0.3s;
}
header .h-menu,
#sub-header .h-menu{
	position: absolute;
	right: 10px;
	top: 19px;
}
header .h-menu a,
#sub-header .h-menu a{
	display: block;
	width: 40px;
	height: 40px;
	background: url("../img/icon-menu.svg") no-repeat center center;
	background-size: 40px auto;
	transition: 0.3s;
}
header .h-menu a.current,
#sub-header .h-menu a.current{
	display: block;
	width: 40px;
	height: 40px;
	background: url("../img/icon-close.svg") no-repeat center center;
	background-size: 40px auto;
}
@media (min-width:769px){
	header{
		height: 110px;
	}
	#sub-header{
		position: fixed;
		top: -250px;
		z-index: 10;
		width: 100%;
		height: 110px;
		transition: 0.5s;
		background: #fff;
	}
	header .logo,
	#sub-header .logo{
		padding: 24px 0 0 30px;
		transform: translateX(0%);
		transform: translateY(0%);
	}
	header .entry-btn,
	#sub-header .entry-btn{
		right: 110px;
		top: 25px;
		width: 180px;
	}
	header .entry-btn a,
	#sub-header .entry-btn a{
		display: block;
		padding: 5px 0;
		font-size: 2.0rem;
		color: #fff;
		background: #A19EEE;
		border-radius: 35px;
		text-decoration: none;
		transition: 0.3s;
	}
	header .entry-btn a:hover,
	#sub-header .entry-btn a:hover{
		opacity: 0.6;
	}	
	header .h-menu,
	#sub-header .h-menu{
		position: absolute;
		right: 40px;
		top: 32px;
	}
}


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

cont

-----------------------------------------------------------------------------  ***/
#cont{
	padding:  0;
}
#cont section{
	padding: 40px 0;
}
#cont section p{
	margin: 0 0 1.5em;
}
@media (min-width:769px){
	#cont{
		padding: 0;
	}
	#cont section{
		padding: 80px 0;
	}	
}


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

footer

-----------------------------------------------------------------------------  ***/
footer{
	background: #F7F7F7;
	padding: 35px 0;
}
footer .ft-logo{
	text-align: center;
	margin: 0 0 40px;
}
footer .menu-footer-container #menu-footer{
	font-size: 14px;
}

footer .menu-footer-container #menu-footer > li{
	width: 100%;
}
footer .menu-footer-container #menu-footer > li > a{
	display: block;
	font-size:1.8rem;
	font-weight: 500;
	padding: 10px 0;
	border-bottom: 1px solid #DCDCDC;
	text-decoration: none;
	position: relative;
}

footer .menu-footer-container #menu-footer > li.parent > a::before{
	
}
footer .menu-footer-container #menu-footer > li.parent > a::before{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 00%;
	margin: -1px 0 0 -7px;
	width: 14px;
	height: 2px;
	background-color: #1E2BDE;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	border-right: none;
}
footer .menu-footer-container #menu-footer > li.parent > a:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 0%;
	margin: -1px 0 0 -7px;
	width: 14px;
	height: 2px;
	background-color: #1E2BDE;
	transition: .3s;
}
footer .menu-footer-container #menu-footer > li.parent.current > a:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
footer .menu-footer-container #menu-footer > li.parent.current > a:after{
	background-color: transparent;
}

/*
footer .menu-footer-container #menu-footer > li.parent > a::after{
	position: absolute;
	right: 0;
	top: 50%;
	content: '';
	width: 15px;
	height: 15px;
	margin: -7px 0 0;
	background: url("../img/icon-plus.svg") no-repeat center center;
	background-size: 15px 15px;
	transition: 0.3s;
}
footer .menu-footer-container #menu-footer > li.parent.current > a::after{
	position: absolute;
	right: 0;
	top: 50%;
	content: '';
	width: 15px;
	height: 15px;
	margin: -7px 0 0;
	background: url("../img/icon-minus.svg") no-repeat center center;
	background-size: 15px 15px;
}
*/

footer .menu-footer-container #menu-footer > li:last-child > a{
	border-bottom: none;
}
footer .menu-footer-container #menu-footer > li > .sub-menu{
	display: none;
}
footer .menu-footer-container #menu-footer > li > .sub-menu li a{
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #DCDCDC;
	box-sizing: border-box;
	text-decoration: none;
	font-size:1.6rem;
	position: relative;
}
footer .menu-footer-container #menu-footer  li > .sub-menu li a::before{
	content: '\2015';
	color: #1E2BDE;
	margin: 0 5px 0 0;
}
footer .menu-footer-container #menu-footer  li.blank a::after{
	position: absolute;
	right: 0;
	top: 50%;
	content: '';
	margin: -10px 0 0;
	width: 20px;
	height: 20px;
	background: url("../img/icon-window.svg") no-repeat center center;
	background-size: 20px auto;
}
footer small{
	display: block;
	padding: 15px 0 0;
	font-size: 1.4rem;
	font-size: calc(1.4rem + (1vw - 0.56rem) * -1.0000); /* 34px～24pxで可変 */
	text-align: center;
	border-top: 1px solid #CCC;
}
footer .menu-footer-container #menu-footer > .menu-item-has-children > a {
	cursor:default;
	pointer-events:none;
}

@media (min-width: 1321px) {
	footer small{
        font-size: 1.4rem;	/* 上限値 */
    }
}
@media (max-width: 768px){
	footer{
		padding-bottom:18px;
	}
	footer small{
		font-size:1.4rem;
		line-height:1.4;
	}
	footer .ft-logo{
		max-width:190px;
		margin: 0 auto 30px
	}
}
@media (min-width: 950px) {
	footer{
		padding: 65px 0;
	}
	footer .ft-logo{ 
		margin: 0 0 75px;
	}
	footer .menu-footer-container{
		max-width:900px;
		margin:0 auto;
	}
	footer .menu-footer-container #menu-footer{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		height: 530px;
		font-size: 14px;
		align-items: flex-end;
		margin-bottom:0;
	}
	footer .menu-footer-container #menu-footer > li{
		width: 32%;
		margin: 0 0 5px;
		padding: 0;
		box-sizing: border-box;
	}
	footer .menu-footer-container #menu-footer > li.parent{
		margin-bottom:15px;
	}
	footer .menu-footer-container #menu-footer > li.parent > a{
		pointer-events:none;
	}
	footer .menu-footer-container #menu-footer > li:nth-child(7) {
		margin-bottom: 200px;
	}
	footer .menu-footer-container #menu-footer > li:nth-child(9) {
		margin-bottom: 260px;
	}
	footer .menu-footer-container #menu-footer > li > a{
		border-bottom: none;
		padding: 0;
	}
	footer .menu-footer-container #menu-footer  li  a{
		display: inline-block;
		padding: 0 ;
	}
	footer .menu-footer-container #menu-footer > li.parent > a::before,
	footer .menu-footer-container #menu-footer > li.parent > a::after{
		content: none;
	}
	footer .menu-footer-container #menu-footer > li > .sub-menu{
		display: block;
	}
	footer .menu-footer-container #menu-footer > li > .sub-menu li a{
		display: block;
		padding: 0;
		border-bottom: none;
	}
}
@media (min-width: 769px){
	footer{
		padding: 65px 0;
	}
}

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

sidemenu

-----------------------------------------------------------------------------  ***/
#sidemenu{
	position: fixed;
	right: -100%;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	transition:all 0.5s;
}
#sidemenu.current{
	right: 0%;
}

#sidemenu #sidemenu_cont{
	width: 90%;
	height: 100%;	
	padding: 80px 0 40px;
	box-sizing: border-box;
	margin: 0 0 0 auto;
	background: #F7F7F7;
}

#sidemenu .menu-cont,
#sidemenu .menu-sidemenu-container{
	/*
	width: 90%;
	height: 100%;
	padding: 80px 10% 0 10%;
	box-sizing: border-box;
	margin: 0 0 0 auto;
	background: #F7F7F7;
	*/
	padding: 0 10%;
	height: 100%;
	overflow-y: scroll;
}
#sidemenu .menu-cont > ul,
#sidemenu .menu-sidemenu-container > ul{
	padding: 30px 0 0; 
}
#sidemenu .menu-cont ul li,
#sidemenu .menu-sidemenu-container ul li{
	font-size: 1.6rem;
	font-weight: bold;
}
#sidemenu .menu-cont  ul li a,
#sidemenu .menu-sidemenu-container  ul li a{
	padding: 5px 0;
	display: block;
}
@media (max-width: 768px) {
	#sidemenu .menu-cont  ul li a:hover,
	#sidemenu .menu-sidemenu-container  ul li a:hover{
		text-decoration: none;
	}
}
#sidemenu .menu-cont ul li .sub-menu li,
#sidemenu .menu-sidemenu-container ul li .sub-menu li{
	font-size: 1.6rem;
	font-weight: bold;
}
#sidemenu .menu-cont ul li .sub-menu li a,
#sidemenu .menu-sidemenu-container ul li .sub-menu li a{
	display: block;
	padding: 5px 0;
	box-sizing: border-box;
	text-decoration: none;
	position: relative;
}
#sidemenu .menu-cont ul li .sub-menu li a::before,
#sidemenu .menu-sidemenu-container ul li .sub-menu li a::before{
	content: '\2015';
	color: #1E2BDE;
	margin: 0 5px 0 0;
}
#sidemenu ul li.blank a::after{
	display:inline-table;
	position: relative;
	right: 0;
	top: 50%;
	content: '';
	margin: -10px 0 0 10px;
	width: 20px;
	height: 20px;
	background: url("../img/icon-window.svg") no-repeat center center;
	background-size: 20px auto;
}
@media (min-width: 769px) {
	#sidemenu{
		padding: 0;
	}
	#sidemenu #sidemenu_cont{
		width: 440px;
		padding: 150px 0 0;
	}
	#sidemenu .menu-cont,
	#sidemenu .menu-sidemenu-container{
		/*
		width: 440px;
		padding: 200px 0 0 80px;
		*/
	}
	#sidemenu .menu-cont ul li,
	#sidemenu .menu-sidemenu-container ul li{
		font-size: 2.0rem;
	}
}
#menu-bg{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 4;
	background: url("../img/menu-bg.png") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
#menu-bg.current{
	opacity: 1;
	visibility: visible;
}



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

headline02

-----------------------------------------------------------------------------  ***/
.headline02{
	margin: 0 0 25px;
}
.headline02 h2 .txt-en{
	font-family: 'Lato', sans-serif;
	font-size: 2.4rem;
	font-size: calc(2.4rem + (1vw - 0.77rem) * 2.7125); /* 39px～24pxで可変 */
	font-weight: bold;
	color: #1E2BDE;	
}
.headline02 h2 .txt-ja{
	position: relative;
	top: -5px;
	font-size: 1.4rem;
	font-size: calc(1.4rem + (1vw - 0.77rem) * 0.7233); /* 18px～14pxで可変 */
	margin: 0;
	display: block;
}
.headline02 h2 .txt-ja::before{
	content: '\FF0F';
	margin: 0 10px 0 0;
}
@media (min-width: 1321px) {
	.headline02 h2 .txt-en{
		font-size: 3.9rem;
	}
	.headline02 h2 .txt-ja{
		font-size: 1.8rem;
	}
}
@media (max-width:768px){
	.headline02 h2 .txt-en{
		font-size: 2.4rem;
	}
	.headline02 h2 .txt-ja{
		font-size: 1.4rem;
	}
}
@media (min-width:769px){
	.headline02{
		margin: 0 0 45px;
	}
	.headline02 h2 .txt-ja{
		position: relative;
		top: -5px;
		margin: 0 0 0 15px;
		display: inline;
	}
	.headline02 h2 .txt-ja::before{
		margin: 0 15px 0 0;
	}
}


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

txt-link01

-----------------------------------------------------------------------------  ***/
.txt-link01{}
.txt-link01 a{
	display: inline-block;
	padding: 10px 0 10px 30px;
	border-bottom: 1px solid #1E2BDE;
	color: #1E2BDE;
	line-height: 1.0;
	text-decoration: none;
}
.txt-link01 a span{
	transition: 0.3s;
	position: relative;
}
@media (min-width:769px){
	.txt-link01 a:hover{
		padding: 10px 0 10px 10px;
	}
	.txt-link01 a:hover span{
		padding: 0 20px 0 0;
	}
}


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

txt-link02

-----------------------------------------------------------------------------  ***/
.txt-link02{}
.txt-link02 a,
.txt-link02 b{
	display: inline-block;
	margin: 0 20px 0 0;
	padding: 10px 45px 10px 0;
	border-bottom: 1px solid #1E2BDE;
	color: #1E2BDE;
	line-height: 1.0;
	transition: 0.3s;
	position: relative;
	text-decoration: none;
}
.txt-link02 a::before,
.txt-link02 b::before{
	position: absolute;
	right: -20px;
	top: 50%;
	margin: -24px 0 0 0;
	content: '';
	width: 47px;
	height: 47px;
	background: url("../img/icon-circle03.svg") no-repeat center center;
	background-size: 47px auto;
}
@media (min-width:769px){
	.txt-link02 a,
	.txt-link02 b{
		margin: 0 40px 0 0;
		padding: 10px 75px 10px 0;
	}
	.txt-link02 a:hover{
		padding: 10px 55px 10px 0;
	}
	a:hover .txt-link02 b{
		padding: 10px 55px 10px 20px;
	}
	.txt-link02 a span,
	.txt-link02 b span{
		transition: 0.3s;
	}
	.txt-link02 a:hover span{
		padding: 0 0 0 20px;
	}
	.txt-link02 a::before,
	.txt-link02 b::before{
		position: absolute;
		right: -48px;
		top: 50%;
		margin: -45px 0 0 0;
		content: '';
		width: 95px;
		height: 95px;
		background: url("../img/icon-circle03.svg") no-repeat center center;
		background-size: 95px auto;
	}
}





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

scroll animation

-----------------------------------------------------------------------------  ***/
/* fadeUp */
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, .fadeUp{
		opacity:1;
	}
}


@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(150px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}
@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, .fadeUpTrigger{
		opacity:1;
	}
}



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

流れるテキスト

-----------------------------------------------------------------------------  ***/
/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}




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

googlemap レスポンシブ

-----------------------------------------------------------------------------  ***/
@media (max-width:768px){
	.googlemap {
		height: 0;
		overflow: hidden;
		padding-bottom: 56.25%;
		position: relative;
	}
	.googlemap iframe {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
	}
}


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

ページ内リンクズレ対策

-----------------------------------------------------------------------------  ***/
.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
