@charset "UTF-8";



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{margin:0;padding:0;text-decoration:none}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}
html{font-size: 62.5%;}
body{font-size: 1.5rem;}


/* 文字装飾 */
strong {
	font-weight: bold;
}


ul li {
	list-style:none;	
}


/* box-sizing */ 
* {
	box-sizing: border-box;
}


/* float解除 */
.cbox { 
}
* html .cbox {
	zoom: 100%;
}
*:first-child+html .cbox {
	display: inline-block;
}
.cbox:after {
	content: "."; 
	clear: both; 
	height: 0; 
	display: block; 
	visibility: hidden;
}


/* img */ 
img {
	width: 100%;
	height: auto;
}


/* sp */ 
.sp {
	display: none;
}



/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #000;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}


/* テキスト装飾 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.red {
	color: #DE0000;
}
.white {
	color: #fff;
}



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	color: #000;
	padding: 0;
	margin: 0;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
}



/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
	font-family: "Roboto", serif;
	font-weight: 400;
	letter-spacing: 0.06em;
}




/* flex */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.flex {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-start {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.flex-end {
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	 -ms-flex-direction: row-reverse;
		 flex-direction: row-reverse;
}
.flex-center {
	display: flex;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background: #fff;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	padding: 0 0 0 30px;
	z-index: 12;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
    #header .logo {
        width: 220px;
		margin-top: 15px;
    }
		#header .logo a {
			display: block;
			line-height: 1;
		}
		#header .logo a:hover {
			opacity: 0.7;
		}
			#header .logo a .jp {
				font-size: 1.0rem;
				line-height: 1;
				font-weight: 400;
				margin-top: 5px;
			}


    #header .nav {
		width: -webkit-calc(100% - 210px);
		width: calc(100% - 210px);
		padding-right: 100px;
    }
        #header .nav .globalnav {
            width: -webkit-calc(100% - 200px);
            width: calc(100% - 200px);
        }
			#header .nav ul.globalnav li {
				margin-right: 25px;
				position: relative;
			}
				#header .nav ul.globalnav li a.head {
					display: flex;
					justify-content: center;
					align-items: center;
					height: 80px;
					font-size: 1.6rem;
					font-weight: 400;
					letter-spacing: 0;
					position: relative;
				}
				#header .nav ul.globalnav li a.head:hover {
					color: #DE0000;
				}
				#header .nav ul.globalnav li.has-child a.head:before {
                    content: "";
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 0 8px 8px 8px;
                    border-color: transparent transparent #DE0000 transparent;
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    margin-left: -8px;
					opacity: 0;
					transition: 0.3s;
					-webkit-transition: 0.3s;
                }
				#header .nav ul.globalnav li.has-child.active a.head:before {
                    bottom: 10px;
					opacity: 1;
                }

				#header .nav ul.globalnav li.has-child .sub_list {
					width: 230px;
					position: absolute;
					left: 50%;
					top: 90px;
                    padding: 5px 15px;
					border-radius: 10px;
                    margin-left: -115px;
					background: #DE0000;
					visibility: hidden;
					opacity: 0;
					transition: 0.3s;
					-webkit-transition: 0.3s;
				}
				#header .nav ul.globalnav li.has-child:hover > .sub_list {
					top: 70px;
					visibility: visible;
					opacity: 1;
				}
                    #header .nav ul.globalnav li.has-child .sub_list li {
                        width: 100%;
                        border-left: none;
                        border-bottom: solid 1px rgba(255,255,255,0.3);
                    }
                    #header .nav ul.globalnav li.has-child .sub_list li:nth-last-child(1) {
                        border-bottom: none;
                    }
                        #header .nav ul.globalnav li.has-child .sub_list li a {
                            display: block;
							height: auto;
					        padding: 15px 0 15px 20px;
                            font-size: 1.3rem;
							line-height: 1.4em;
							letter-spacing: 0;
                            font-weight: 600;
                            background: url(../img/icon_arrow_white.svg) no-repeat left center / 14px;
                            color: #fff;
                        }
                        #header .nav ul.globalnav li.has-child .sub_list li a:hover {
                            opacity: 0.8;
                            background: url(../img/icon_arrow_white.svg) no-repeat left center / 14px;
                        }

						#header .nav ul.globalnav li.has-child .sub_list li.off a {
                            background: none;
							pointer-events: none;
							padding-left: 0;
							color: rgba(255,255,255,0.6);
						}


    #header .btn-list {
		width: 200px;
		margin-top: 20px;
    }
		#header .btn-list li {
			width: 48%;
		}
			#header .btn-list li a {
				display: block;
				background: #000;
				border: solid 1px #000;
				border-radius: 20px;
				height: 38px;
				text-align: center;
				color: #fff;
				line-height: 1;
				overflow: hidden;
			}
			#header .btn-list li:nth-child(1) a {
				background: #fff;
				border: solid 1px #000;
				color: #000;
			}
			#header .btn-list li a:hover {
				background: #E60012;
				border: solid 1px #E60012;
				color: #fff;
			}
				#header .btn-list li a span {
					display: block;
					line-height: 37px;
					transform: translateY(0);
					transition: transform 0.6s cubic-bezier(.7, 0, 0, 1);
				}
				#header .btn-list li a:hover span {
					transform: translateY(-100%);
				}
				#header .btn-list li a span:nth-child(1) {
					font-size: 1.5rem;
				}
				#header .btn-list li a span:nth-child(2) {
					font-size: 1.3rem;
					font-weight: 500;
				}


	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 60px;
	height: 60px;
	background: #DE0000;
	position: fixed;
	border-radius: 50%;
	top: 10px;
	right: 20px;
	z-index: 15;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
	#menubtn .menu {
		display: block;
		position: relative;
		cursor: pointer;
		width: 60px;
		height: 60px;
	}
		#menubtn .menu .openbtn-area {
			transition: all .4s;
		}
			#menubtn .menu span {
				width: 22px;
				display: inline-block;
				transition: all .4s;
				border-radius: 1px;
				position: absolute;
				top: 50%;
				left: 50%;
				margin-left: -11px;
				height: 1px;
				background: #fff;
			}
			#menubtn .menu span:nth-of-type(1) {
				margin-top: -7px;
			}
			#menubtn .menu span:nth-of-type(2) {
				margin-top: -1px;
			}
			#menubtn .menu span:nth-of-type(3) {
				margin-top: 5px;
			}

		#menubtn .menu.active .openbtn-area {
			transform: rotateY(-360deg);
		}
			#menubtn .menu.active span  {
				background: #fff;
			}
			#menubtn .menu.active span:nth-of-type(1) {
				transform: translateY(6px) rotate(-155deg);
				margin-top: -7px;
			}
			#menubtn .menu.active span:nth-of-type(2) {
				opacity: 0;
			}
			#menubtn .menu.active span:nth-of-type(3) {
				width: 22px;
				transform: translateY(-6px) rotate(155deg);
				margin-top: 5px;
			}

/* menubox */
#menubox {
	display: none;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
	#menubox .menunav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 1300px;
		padding: 0 5%;
		height: 100vh;
		margin: 0 auto;
	}
		#menubox .menunav .list .box {
			width: 30%;
			margin-right: 5%;
			margin-bottom: 60px;
		}
		#menubox .menunav .list .box:nth-child(3n) {
			margin-right: 0;
		}
		#menubox .menunav .list .box:nth-child(4),
		#menubox .menunav .list .box:nth-child(5),
		#menubox .menunav .list .box:nth-child(6) {
			margin-bottom: 0;
		}
			#menubox .menunav .list .box .head {
				font-size: 3.0rem;
				line-height: 0.7;
				border-bottom: solid 1px #DE0000;
				margin-bottom: 20px;
			}

			#menubox .menunav .list .box ul.link li {
				margin-top: 10px;
			}
				#menubox .menunav .list .box ul.link li a {
					display: block;
					background: url("../img/icon_arrow_red.svg") no-repeat left top 2px  / 16px;
					padding-left: 23px;
					font-size: 1.5rem;
					font-weight: 500;
					line-height: 1.3em;
				}
				#menubox .menunav .list .box ul.link li a:hover {
					padding-left: 20px;
					color: #DE0000;
				}
				#menubox .menunav .list .box ul.link li.off a {
					pointer-events: none;
					background: none;
					padding-left: 0;
					opacity: 0.5;
				}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* パンクズ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#breadcrumbs {
	padding-top: 100px;
	font-size: 1.2rem;
	color: #7E7E7E;
	line-height: 1;
	margin-bottom: 15px;
}
	#breadcrumbs a {
		text-decoration: underline;
		color: #7E7E7E;
	}
	#breadcrumbs a:hover {
		text-decoration: none;
	}
	#breadcrumbs span {
		color: #000000;
	}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページタイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
#pagetitle {
	padding-bottom: 120px;
	overflow: hidden;
	position: relative;
}
	#pagetitle .text {
		width: 50%;
		padding-top: 30px;
	}
		#pagetitle .text .en {
			font-size: 1.6rem;
			line-height: 1;
			padding-left: 15px;
			margin-bottom: 18px;
			position: relative;
		}
		#pagetitle .text .en:before {
			content: "";
			width: 8px;
			height: 8px;
			background: #DE0000;
			border-radius: 50%;
			position: absolute;
			top: 50%;
			left: 0;
			margin-top: -4px;
		}

		#pagetitle .text h1 {
			font-size: 5.0rem;
			font-weight: 700;
			line-height: 1.3em;
			margin-bottom: 30px;
		}
			#pagetitle .text h1 span {
				display: block;
				font-size: 2.1rem;
				line-height: 1;
				margin-top: 5px;
			}

	#pagetitle .pht {
		width: 47%;
		min-height: 320px;
		overflow: hidden;
		border-radius: 20px;
	}
		#pagetitle .pht img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	#pagetitle .marquee {
		display: flex;
		width: 100%;
		overflow: hidden;
		color: #F5F5F5;
		position: absolute;
		bottom: 65px;
		left: 0;
		z-index: -1;
	}
		#pagetitle .marquee .marquee__item {
			flex: 0 0 auto;
			font-size: 12.0rem;
			font-weight: 400;
			letter-spacing: 0;
			white-space: nowrap;
			line-height: 1;
			padding-right: 20px;
		}
		#pagetitle .marquee .marquee__item:nth-child(odd) {
			animation: loop 80s -40s linear infinite;
		}
		#pagetitle .marquee .marquee__item:nth-child(even) {
			animation: loop2 80s linear infinite;
		}
		@keyframes loop {
			0% {
				transform: translateX(100%);
			}
			to {
				transform: translateX(-100%);
			}
		}
		@keyframes loop2 {
			0% {
				transform: translateX(0);
			}
			to {
				transform: translateX(-200%);
			}
		}

/* title */
.title {
	margin-bottom: 30px;
}
	.title .en {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0;
		margin-bottom: 5px;
	}

	.title h2 {
		font-size: 2.8rem;
		font-weight: 700;
		line-height: 1.3em;
		border-top: solid 1px #ddd;
		padding-top: 15px;
		position: relative;
	}
	.title h2:before {
		content: "";
		width: 30px;
		height: 1px;
		background: #DE0000;
		position: absolute;
		top: -1px;
		left: 0;
	}


	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* main */
#main {
	display: block;
}
.inner {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
.inner_full {
	width: 100%;
	position: relative;
}

/* img-over */
a .img-over {
	overflow: hidden;
}
	a .img-over img {
		-moz-transition: -moz-transform 0.2s linear;
		-webkit-transition: -webkit-transform 0.2s linear;
		-o-transition: -o-transform 0.2s linear;
		-ms-transition: -ms-transform 0.2s linear;
		transition: transform 0.2s linear;
	}
	a:hover .img-over img {
		-webkit-transform: scale(1.05);
		-moz-transform: scale(1.05);
		-o-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}

/* wrap */
.wrap-top {
	padding-top: 120px;
}
.wrap-bottom {
	padding-bottom: 120px;
}

/* txt */
.txt {
	font-size: 1.6rem;
	line-height: 2em;
}
.sub-txt {
	font-size: 1.3rem;
	line-height: 1.4em;
}

/* more */
a .more {
	display: inline-block;
	height: 30px;
	background: url("../img/icon_arrow_red.svg") no-repeat right center / 30px;
	padding-right: 35px;
	font-size: 1.2rem;
	line-height: 30px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover .more {
	background: url("../img/icon_arrow_red.svg") no-repeat right 4px center / 22px;
}

/* table-layout */
.table-layout {
	width: 100%;
	border-collapse: collapse;
}
	.table-layout th {
		width: 180px;
		background: #f7f7f7;
		border-top: solid 1px #ddd;
		border-bottom: solid 1px #ddd;
		padding: 15px 0;
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 1.3em;
		text-align: center;
	}
	.table-layout td {
		width: -webkit-calc(100% - 180px);
		width: calc(100% - 180px);
		border-top: solid 1px #ddd;
		border-bottom: solid 1px #ddd;
		padding: 15px;
		font-size: 1.5rem;
		line-height: 1.7em;
	}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	border-top: solid 1px #ddd;
	background: #F8F8F8;
	padding: 50px 0;
}
	#footer .inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
		#footer .other {
			order: 2;
		}
			#footer .other ul.logo-list {
				display: flex;
				justify-content: flex-end;
				align-items: center;
			}
				#footer .other ul.logo-list li:nth-child(1) {
					margin-right: 28px;
				}

			#footer .other .link {
				margin-top: 20px;
				font-size: 1.3rem;
				text-align: right;
			}
				#footer .other .link a:hover {
					text-decoration: underline;
				}

		#footer .info {
			order: 1;
		}
			#footer .info .copyright {
				font-size: 1.1rem;
				line-height: 1;
				margin-top: 20px;
			}







/* max 1200px */
@media screen and (max-width: 1200px) {




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header .nav {
	width: auto;
	padding-right: 100px;
}
	#header .nav .globalnav {
		display: none;
	}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
	
/* main */
.inner {
	width: 100%;
	padding: 0 7%;
}
.inner_full {
	width: 100%;
}

	

}





/* 1024px */
@media screen and (max-width: 1024px) {




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	height: 70px;
	padding: 0 0 0 20px;
}
    #header .logo {
		margin-top: 12px;
    }


    #header .nav {
		padding-right: 90px;
    }

    #header .btn-list {
		margin-top: 15px;
    }


	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 50px;
	height: 50px;
	top: 10px;
	right: 20px;
}
	#menubtn .menu {
		width: 50px;
		height: 50px;
	}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* パンクズ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#breadcrumbs {
	padding-top: 90px;
	font-size: 1.1rem;
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページタイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
#pagetitle {
	padding-bottom: 90px;
}
	#pagetitle .breadcrumbs {
		font-size: 1.1rem;
	}

	#pagetitle .text {
		width: 47%;
		padding-top: 30px;
	}
		#pagetitle .text .en {
			font-size: 1.4rem;
			margin-bottom: 15px;
		}

		#pagetitle .text h1 {
			font-size: 4.0rem;
			margin-bottom: 25px;
		}
			#pagetitle .text h1 span {
				font-size: 1.7rem;
			}

	#pagetitle .pht {
		width: 47%;
		min-height: 280px;
		border-radius: 15px;
	}

	#pagetitle .marquee {
		bottom: 55px;
	}
		#pagetitle .marquee .marquee__item {
			font-size: 10.0rem;
		}

/* title */
.title {
	margin-bottom: 25px;
}
	.title .en {
		font-size: 1.4rem;
	}

	.title h2 {
		font-size: 2.6rem;
	}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* wrap */
.wrap-top {
	padding-top: 90px;
}
.wrap-bottom {
	padding-bottom: 90px;
}

/* txt */
.txt {
	font-size: 1.5rem;
	line-height: 1.8em;
}
.sub-txt {
	font-size: 1.2rem;
}

/* table-layout */
.table-layout th {
	width: 160px;
	font-size: 1.5rem;
}
.table-layout td {
	width: -webkit-calc(100% - 160px);
	width: calc(100% - 160px);
	font-size: 1.4rem;
	line-height: 1.6em;
}



}

	







/* max 767px */
@media screen and (max-width: 767px) {


.sp {
	display: block;
}
.pc {
	display: none !important;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	height: 60px;
	padding: 0 0 0 15px;
}
    #header .logo {
        width: auto;
		margin-top: 8px;
    }
		#header .logo img {
			width: 210px;
		}


    #header .nav {
		padding-right: 0;
    }

    #header .btn-list {
		width: 100%;
		margin-top: 0;
		position: fixed;
		bottom: 0;
		left: 0;
    }
		#header .btn-list li {
			width: 50%;
		}
			#header .btn-list li a {
				border: none;
				border-radius: 0;
				height: 50px;
			}
			#header .btn-list li:nth-child(1) a {
				background: #E60012;
				border: none;
				color: #fff;
			}
			#header .btn-list li:nth-child(1) a:hover {
				background: #E60012;
				border: none;
				color: #fff;
			}
			#header .btn-list li:nth-child(2) a:hover {
				background: #000;
				border: none;
				color: #fff;
			}
				#header .btn-list li a span {
					line-height: 52px;
				}
				#header .btn-list li a:hover span {
					transform: translateY(0);
				}
				#header .btn-list li a span:nth-child(1) {
					font-size: 1.6rem;
				}


	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 50px;
	height: 50px;
	border-radius: 6px;
	top: 5px;
	right: 5px;
}
	#menubtn .menu {
		width: 50px;
		height: 50px;
	}
	
/* menubox */
#menubox .menunav {
	display: block;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	padding: 0;
	padding-top: 50px;
	padding-bottom: 60px;
	overflow: hidden;
	overflow-y: scroll;
}
	#menubox .menunav .list {
		width: 100%;
		padding: 50px 8% 30px 8%;
	}
		#menubox .menunav .list .box {
			width: 100%;
			margin-right: 0;
			margin-bottom: 40px;
		}
		#menubox .menunav .list .box:nth-child(3n) {
			margin-right: 0;
		}
		#menubox .menunav .list .box:nth-child(4),
		#menubox .menunav .list .box:nth-child(5) {
			margin-bottom: 40px;
		}
			#menubox .menunav .list .box .head {
				font-size: 2.4rem;
			}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* パンクズ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#breadcrumbs {
	padding-top: 80px;
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページタイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
#pagetitle {
	padding-bottom: 60px;
}
	#pagetitle .text-pht {
		display: block;
	}
		#pagetitle .text {
			width: 100%;
			padding-top: 30px;
			margin-bottom: 25px;
		}
			#pagetitle .text .en {
				font-size: 1.3rem;
				margin-bottom: 25px;
			}

			#pagetitle .text h1 {
				font-size: 3.2rem;
				margin-bottom: 15px;
			}
				#pagetitle .text h1 span {
					font-size: 1.6rem;
					margin-bottom: 20px;
				}

		#pagetitle .pht {
			width: 100%;
			min-height: auto;
		}

	#pagetitle .marquee {
		bottom: auto;
		top: -5px;
	}
		#pagetitle .marquee .marquee__item {
			font-size: 7.0rem;
		}

/* title */
.title {
	margin-bottom: 25px;
}
	.title .en {
		font-size: 1.3rem;
	}

	.title h2 {
		font-size: 2.3rem;
	}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* wrap */
.wrap-top {
	padding-top: 60px;
}
.wrap-bottom {
	padding-bottom: 60px;
}

/* txt */
.txt {
	font-size: 1.4rem;
	line-height: 1.7em;
}
.sub-txt {
	font-size: 1.1rem;
}

/* table-layout */
.table-layout {
	border-bottom: solid 1px #ddd;
}
	.table-layout th {
		display: block;
		width: 100%;
		background: none;
		border-bottom: none;
		font-size: 1.5rem;
		text-align: left;
		padding: 20px 15px 8px 15px;
	}
	.table-layout td {
		display: block;
		width: 100%;
		font-size: 1.3rem;
		padding: 0 15px 20px 15px;
		border-top: none;
		border-bottom: none;
	}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	padding: 40px 0 90px 0;
}
	#footer .inner {
		display: block;
	}
		#footer .other ul.logo-list {
			justify-content: center;
		}

		#footer .other .link {
			margin-top: 20px;
			text-align: center;
		}

		#footer .info {
			margin-top: 25px;
			text-align: center;
		}
			#footer .info .txt {
				margin-bottom: 5px;
			}
	
			#footer .info .copyright {
				font-size: 1.0rem;
				margin-top: 40px;
			}



}






/* blur */
.blur {
	animation-name: blurAnime;
	animation-duration: 3s;
	animation-fill-mode: forwards;
}
@keyframes blurAnime{
	0% {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
	}
	50% {
		opacity: 0;
		filter: blur(10px);
		transform: scale(1.02);
	}
	100% {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}

.blurTrigger{
    opacity: 0;
}


/* ani */
.ani {
	animation-name: anime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes anime{
	from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
	}
	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}
.aniTrigger{
    opacity: 0;
}

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}


/* img-wrap */
.img-wrap {
	opacity: 0;
}
.img-wrap.img-animation {
	animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1);
	overflow: hidden;
	position: relative;
	opacity: 1;
}

.img-wrap.img-animation:before {
  animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@keyframes img-opacity {
  0% {
	opacity: 0;
  }
	
}
@keyframes img-animation {
  100% {
	transform: translateX(101%);
	opacity: 1;
  }
}