@charset "utf-8";
/*----------------------------------------------------------
　全体
-----------------------------------------------------------*/
html {
	width: 100%;
	height: 100%;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 62.5%;/*10px相当*/
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	background: #fff;
	color: #333;
	text-align: center;
}
@media only screen and ( max-width: 599px ) {
	body {
		font-size: 1.4rem;
		line-height: 1.4;
	}
}
.left {
	float: left;
}
.right {
	float: right;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.textC {
	text-align: center;
}
.textL {
	text-align: left;
}
.textR {
	text-align: right;
}
.text_fff {
	color: #fff;
}
.red {
	color: #c3002f;
}
.text_b {
  font-weight: 700;
}
a:link, a:visited {
	color: #005ECF;
	text-decoration: none;
}

a:hover {
	color: #005ECF;
	text-decoration: none;
}
/*イメージマップ用
IE対応：<area onFocus="this.blur();">
------------------------------------*/
area {
	border: none;
	outline: none;
}
/*******************************************************************
　ページ共通パーツ
*******************************************************************/

@media print, screen and (min-width:750px){
	.display_sp {display: none}
}
@media screen and (max-width:749px){
	.display_pc {display: none}
}
@media print, screen and (min-width:1201px){
	.display_sp2 {display: none}
}
@media screen and (max-width:1200px){
	.display_pc2 {display: none}
}


/*******************************************************************
　各セクション
*******************************************************************/
/*共通 ------------------------------*/
.contents {
	width: 100%;
	text-align: center;
	margin: 0 auto;
  position: relative;
}
.wide_wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
	width: 90%;
	max-width: 1080px;
	margin: 0 auto;
}
.box {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
.inner_box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

@media only screen and ( max-width: 599px ) {
	.container {
	}
}
/*----------------------------------------------------------
　ヘッダー 
-----------------------------------------------------------*/
/*header {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}
*/
header {
	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}

.header_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	max-width: 1080px;
	margin: 0 auto;
}
.header_logo {
	width: 15%;
	text-align: left;
  align-items: center;
}
.header_logo img {
  width: 100%;
	max-width: 100px;
}
.header_name {
  width: 85%;
	text-align: right;
  align-items: center;
}
@media only screen and ( max-width: 749px ) {
	header {

	}
	.header_logo {
		width: 50%;
	}
	.header_logo img {
    width: 100%;
    max-width: 230px;
    vertical-align: middle;
	}
	.header_name {
    width: 50%;
    padding: 2% 0;
	}
	.header_name img {
    max-width: 100px;
    
  }
}
/*----------------------------------------------------------
　メインビジュアル
-----------------------------------------------------------*/
.contents_wrap {
  overflow: hidden;
}
.mv_wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and ( max-width: 1200px ) {
}
h1 {
}
.target_element {
}

.usp_title {
  margin-top: 3%;
}
.lineup_box {
  display: flex;
  justify-content: center;
}
@media only screen and ( max-width: 750px ) {
  .lineup_box {
    display: block;
  }
  .lineup_box > div {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
}



.e4Area {
  background: #000;
}

.btn_box {
  padding: 3% 0;
}



/*ふわふわ*/
.floating_img {
  animation: floating 1.8s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  5% {
    transform: translateY(-15px); /* さらに早い動きにするため、25%の位置で20px上に移動 */
  }
  10% {
    transform: translateY(0px);
  }
  15% {
    transform: translateY(-15px); /* さらに早い動きにするため、75%の位置で20px下に移動 */
  }
  20% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*スライドイン*/
.slidein_box {
  position: relative;
  overflow: hidden;
}
.slidein{
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 1.0s;

}
/*.slide_left{
	transform: translateX(calc(-50vw - 50%));
}
.slide_right{
	transform: translateX(calc(50vw + 50%));
}*/
.slide_top{
	transform: translateY(100%);
  opacity: 0;
}
.show {
  transform: translateY(0);
  opacity: 1;
  /*transform: translateX(0);*/
}

/* フェードイン（下から） */
.fadein_box {
  position: relative;
  overflow: hidden;
}
.fadein {
  opacity: 0;
  transform: translateY(10px); /* 初期位置を下に */
  /*transition: opacity 1.0s ease-out, transform 1.0s ease-out;*/
  /*transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);*/
  transition: opacity 2.5s ease-out, transform 2.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.fadein.show {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
}

/*注意事項ドロップダウン
---------------------------------------*/
.drop_wrap {
  padding-bottom: 8%; 
}
.drop_btn {
  width: 90%;
  max-width: 1080px;
  margin: 3% auto 1em;
  border-bottom: 1px solid #ccc;
  /*border-top: 1px solid #333;*/
  text-align: left;
  font-size: 1.2rem;
}
.drop_btn:hover {
  cursor: pointer;
}
.drop_box {
  display: none;
}
.drop_inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 1em;
  overflow: hidden;
	text-align: left;
	font-size: 1.2rem;
	line-height: 1.4;

}
@media only screen and ( max-width: 749px) {
.drop_inner {
	font-size: 1.0rem;
	line-height: 1.2;
}
}

/*----------------------------------------------------------
　ページの先頭に戻る
-----------------------------------------------------------*/
#pageTop {
	position: fixed;
	/*bottom: 60px;*/
	bottom: 10px;
	right: 1rem;
	display: block;
	z-index: 1001;
}
#pageTop a {
	display: block;
	width: 50px;
	height: 50px;
	padding: 5px 0;
	line-height: 1.2;
	border-radius: 50%;
	background: #000;
	text-align: center;
	color: #ffffff;
	transition: .3s;
	box-shadow: 0 0 6px 2px rgba(0,0,0,0.4);
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
@media only screen and ( max-width: 599px ) {
	#pageTop {
	/*bottom: 70px;*/
		bottom: 10px;
		right: 1em;
	}
}

/*----------------------------------------------------------
　フッター 
-----------------------------------------------------------*/
footer {
	width: 100%;
	margin: 0 auto;
	background: #f2f2f2;
  padding-bottom: 100px;
}
@media only screen and ( max-width: 749px) {
  footer {
    /*padding-bottom: 100px;*/
  }
}

/*フッターバナー
-------------------------------------*/
.footer_bn_wrap {
	width: 100%;
	margin: 0 auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 6;
}

.footer_btn_wrap {
  background: rgba(0,0,0,0.3);
}
.footer_btn {
  margin: 0 auto;
}
.footer_btn a {
}
/*.footer_btn a div:hover {
  opacity: 0.8;
  transition: 0.4s;
}
*/
@media only screen and ( max-width: 749px ) {
}
/* -----------------------------------------------------
　注意事項
-----------------------------------------------------------*/
.notice_inner {
	width: 90%;
	margin: 0 auto;
	font-size: 1.4rem;
	padding: 3% 0 2em;
	text-align: left;
}
.copyright {
	text-align: center;
	padding: 0 0 25%;
}
.copyright a {
  color: #333;
}

@media only screen and ( max-width: 599px ) {
	.notice_inner {
		font-size: 1.2rem;
	}
}

/*----------------------------------------------------------
　左メニュー
-----------------------------------------------------------*/

.rightMenu {
	position: fixed;
	top: max(100px, 10%);
	right: 0;
	z-index: 1001;
}

.right_menu_box {
}
.right_menu_item {
  text-align: right;
  margin-bottom: 12px;
}

@media only screen and ( max-width: 749px) {
  .right_menu_item img {
    width: 50%;
    height: auto;
  }
}
.rightMenu a {
	transition: .3s;
}
.rightMenu a:hover {
	text-decoration: none;
	opacity: 0.9;
}


/*非表示 ------------------------------*/
