@charset "utf-8";
/* VISUAL STYLE
-----------------------------------------------*/
section#Catch {
	background-color: #FFF;
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: center;
	top: 0;
	width: 100%;
}
section#Catch > img {
	display: none;
	height: auto;
	vertical-align: bottom;
	width: 100%;
}

section#Catch > p {
	margin: 2% 0;
	text-align: center;
	font-size: 2vw;
}

section#Catch .phot {
	display: block;
	margin: 0;
	overflow: hidden;
	position: relative;
	padding: 0;
	text-align: center;
	vertical-align: bottom;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
section#Catch .phot > img {/*画像を重ね、透過とアニメーションでフェード効果*/
	position: absolute;
	min-width: 100%;
	width: 100%;
	height: auto;
	background: #000;
	backface-visibility: hidden;
	opacity: 0;
	animation: CrossFade 10s infinite;
	transform: scale(1) rotate(0);
}
section#Catch .phot > img:nth-child(3) {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 0;
	opacity:0;
}
section#Catch .phot > img:nth-child(2) {/*遅延させてギャラリー化*/
	animation-delay: 5s;
}
section#Catch .phot > img:nth-child(1) {
	animation-delay: 5s;
}
@keyframes CrossFade {/*エフェクト*/
0% {
	opacity: 0;
	opacity: 1;
	transform: scale(1) rotate(0);
}
50% {
	opacity: 1;
	transform: scale(1) rotate(0);
}
100% {
	opacity: 0;
	opacity: 1;
	transform: scale(1) rotate(0);
}
}
/*バナーない時　top: 70%;*/
/*バナーある時　top: 83%;*/
section#Catch > p.copy {
	background-color: rgba(255,161,31,.9);
	color: #FFF;
	display: block;
	font-family: serif;
	font-size: 2.5em;
	float: left;
	line-height: normal;
	height: auto;
	margin: 0;
	padding: 30px 60px;
	position: absolute;
	vertical-align: bottom;
	text-align: justify;
	top: 84%;
	word-wrap: normal;
	white-space: nowrap;
	z-index: 0.5;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
section#Catch > p.copy span {
}
.animate span:nth-of-type(1) {
	animation-delay: 2.0s;
}
.animate span:nth-of-type(2) {
	animation-delay: 2.05s;
	margin-right: .2em;
}
.animate span:nth-of-type(3) {
	animation-delay: 2.1s;
}
.animate span:nth-of-type(4) {
	animation-delay: 2.15s;
}
.animate span:nth-of-type(5) {
	animation-delay: 2.2s;
}
.animate span:nth-of-type(6) {
	animation-delay: 2.25s;
}
.animate span:nth-of-type(7) {
	animation-delay: 2.3s;
}
.animate span:nth-of-type(8) {
	animation-delay: 2.35s;
	margin-right: .2em;
}
.animate span:nth-of-type(9) {
	animation-delay: 2.4s;
	color: #C00;
}
.animate span:nth-of-type(10) {
	animation-delay: 2.45s;
	color: #C00;
}
.animate span:nth-of-type(11) {
	animation-delay: 2.5s;
	color: #C00;
}
.animate span:nth-of-type(12) {
	animation-delay: 2.55s;
	color: #C00;
}
.animate span:nth-of-type(13) {
	animation-delay: 2.6s;
	color: #C00;
}
.animate span:nth-of-type(14) {
	animation-delay: 2.65s;
	color: #C00;
}
.animate span:nth-of-type(15) {
	animation-delay: 2.7s;
}
.animate span:nth-of-type(16) {
	animation-delay: 2.75s;
}
.animate span:nth-of-type(17) {
	animation-delay: 2.8s;
}
.animate span:nth-of-type(18) {
	animation-delay: 2.85s;
}
.animate span:nth-of-type(19) {
	animation-delay: 2.9s;
}
.animate span:nth-of-type(20) {
	animation-delay: 2.95s;
}
.seven span {
	color: #FFF;
	opacity: 0;
	transform: translate(-150px, 0) scale(.3);
	animation: leftRight .5s forwards;
}
@keyframes leftRight {
40% {
	transform: translate(50px, 0) scale(.7);
	opacity: 1;
/*	color: #348c04;*/
}
60% {
	color: #0f40ba;
	color: #C00;
}
80% {
	transform: translate(0) scale(2);
	opacity: 0;
}
100% {
	transform: translate(0) scale(1);
	opacity: 1;
}
}
section#Catch .text > p.msg {
	align-items: center;
	clear: both;
	color: #FFF;
	display: flex;
	font-family: serif;
	font-weight: bold;
	font-weight: normal;
	font-size: 2em;
	justify-content: center;
	opacity: 0;
	animation-duration: 1s;/* アニメーション時間 */
	animation-delay: 4s;/* 変化開始の時間 */
	animation-name: SlideIn;/* アニメーション名 */
	animation-iteration-count: 1;/* アニメーションの繰り返し（無限）*/
	animation-fill-mode: forwards; /*これで値を保持*/
}
section#Catch .text > p.msg:before,
section#Catch .text > p.msg:after {
	border-top: #e5e5e5 1px solid;
	content: "";
	width: 1em;
}
section#Catch .text > p.msg:before {
	margin-right: .5em;
}
section#Catch .text > p.msg:after {
	margin-left: .5em;
}
/* CSSアニメーションの設定 */
@keyframes SlideIn {
0% {
	opacity: 0;/*初期状態では透明に*/
	transform: translateY(40px);
}
100% {
	opacity: 1;
	transform: translateY(0);
  }
}
/* TOP STYLE
-----------------------------------------------*/
#Concept {
	background-color: #FFF;
	background-image: url(/img/home/hom_bg_001.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 30% auto;
	clear: both;
	display: block;
	margin: 0;
	overflow: visible;
	padding: 120px 0 120px 120px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Concept > img {
	bottom: -40px;
	height: auto;
	left: 30px;
	position: absolute;
	vertical-align: bottom;
	width: 16.6666%;
	z-index: 1;
}
#Concept > div {
	background: linear-gradient(180deg,transparent 0%,transparent 66.6666%,#FFF 66.6666%,#FFF 100%), #ffae26 url("/img/home/hom_bg_002.svg");
	background: linear-gradient(180deg,transparent 0%,transparent 90%,#FFF 90%,#FFF 100%), #ffae26 url("/img/home/hom_bg_002.svg");
	background: linear-gradient(180deg,transparent 0%,transparent 96%,#FFF 96%,#FFF 100%), #ffd030 url("/img/home/hom_bg_002.svg");
	background: linear-gradient(180deg,transparent 0%,transparent 96%,#FFF 96%,#FFF 100%), #ffae26 url("/img/home/hom_bg_002.svg");
	background-repeat: repeat;
	background-position: 0 0;
	background-size: 60px auto;
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 100px 100px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Concept > div > .phot {
	display: block;
	float: right;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: calc(60% - 30px);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Concept > div > .phot > ul {
	display: block;
	overflow: hidden;
	list-style: none;
}
#Concept > div > .phot > ul > li img {
	display: block;
	height: auto;
	vertical-align: bottom;
	width: 100%;
}
#Concept > div > .phot > ul > li {
	display: block;
	list-style: none;
	margin: 0 0 10px;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#Concept > div > .phot > ul > li:nth-of-type(1) {
	clear: both;
	float: left;
	width: calc(60% - 5px);
}
#Concept > div > .phot > ul > li:nth-of-type(2) {
	float: right;
	width: calc(40% - 5px);
}
#Concept > div > .phot > ul > li:nth-of-type(3) {
	clear: both;
	float: left;
	width: calc(40% - 5px);
}
#Concept > div > .phot > ul > li:nth-of-type(4) {
	float: right;
	width: calc(60% - 5px);
}
#Concept > div > .phot > ul > li:nth-of-type(5) {
	clear: both;
	float: left;
	margin: 0;
	width: calc(60% - 5px);
}
#Concept > div > .phot > ul > li:nth-of-type(6) {
	float: right;
	margin: 0;
	width: calc(40% - 5px);
}
#Concept > div > .text {
	display: block;
	float: left;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: calc(40% - 30px);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Concept > div > .text > h2 {
	border-left: #4d4d4d solid 2px;
	color: #333;
	font-weight: bold;
	line-height: normal;
	margin: 0 0 2em;
	padding-left: 30px;
	text-align: justify;
}
#Concept > div > .text > h2 small {
	display: block;
	font-size: .9em;
	margin: 0 0 .3333em;
}
#Concept > div > .text > h2 span {
	display: block;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
	font-size: 1.75em;
	font-size: 1.6666em;
	font-weight: bold;
}
#Concept > div > .text > p {
	color: #333;
	margin: 0 0 2em;
}
#Concept > div > .text > ul {
	display: block;
	overflow: hidden;
	vertical-align: bottom;
}
#Concept > div > .text > ul > li {
	display: block;
	font-weight: bold;
	list-style: none;
	margin: 0 0 10px;
	margin: 0 0 15px;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: justify;
	width: calc(50% - 5px);
	width: calc(50% - 7.5px);
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
#Concept > div > .text > ul > li:nth-of-type(2) {
	letter-spacing: -1px;
}
#Concept > div > .text > ul > li:nth-last-of-type(1) {
	margin: 0;
}
#Concept > div > .text > ul > li:nth-last-of-type(2) {
	margin: 0;
}
#Concept > div > .text > ul > li a {
	background-color: #233945;
	color: #FFF;
	display: block;
	position: relative;
	padding: .5em 20px;
	text-align: justify;
}
#Concept > div > .text > ul > li a:before {
	background: #FFF;
	border-radius: 50%;
	content: "";
	height: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 14px;
	width: 20px;
}
#Concept > div > .text > ul > li a:after {
	background: none;
	border-top: #233945 solid 3px;
	border-right: #233945 solid 3px;
	height: 5px;
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 21px;
	width: 5px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
#Concept > div > .text > ul > li a:hover {
	background-color: #ff3700;
}
#Concept > div > .text > ul > li a:hover:after {
	border-top: #ff3700 solid 3px;
	border-right: #ff3700 solid 3px;
}
#Concept > div > .text > ul > li:nth-child(odd) {
	clear: both;
	float: left;
}
#Concept > div > .text > ul > li:nth-child(even) {
	float: right;
}
#Eptj {
	background-color: #db1029;
	background-image: url(/img/home/hom_bg_006.svg), url(/img/home/hom_bg_007.svg);
	background-position: left 66.6666% top -20px, right -80px bottom -20px;
	background-size: 16.6666% auto, 20% auto;
	background-repeat: no-repeat, no-repeat;
	clear: both;
	display: block;
	margin: 0;
	margin: 0 0 120px;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Eptj > img {
	display: block;
	height: auto;
	float: left;
	margin: 0;
	vertical-align: bottom;
	width: 60%;
}
#Eptj > div {
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 0 100px;
	position: absolute;
	right: 0;
	width: 40%;
	top: 50%;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Eptj > div > h2 {
	color: #FFF;
	line-height: normal;
	text-align: center;
	margin: 0 0 .6666em;
}
#Eptj > div > h2 small {
	display: block;
	font-family: YuGothic,'Yu Gothic','Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;	font-size: 17px;
	font-weight: bold;
}
#Eptj > div > h2 small:before {
	content: "\025c7\025c7\025c7";
	font-weight: normal;
	margin-right: 1em;
}
#Eptj > div > h2 small:after {
	content: "\025c7\025c7\025c7";
	font-weight: normal;
	margin-left: 1em;
}
#Eptj > div > h2 span {
	display: block;
	font-family: serif;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
	font-size: 2em;
	font-size: 1.875em;
	font-weight: bold;
}
#Eptj > div > p {
	color: #FFF;
/*	font-size: .9em;
	font-size: 1em;*/
}
#Eptj > div > p.btn {
	display: inline-block;
	font-family: YuGothic,'Yu Gothic','Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;	font-size: 17px;
	font-weight: bold;
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: center;
	vertical-align: bottom;
	width: 66.6666%;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
#Eptj > div > p.btn a {
	background-color: #233945;
	color: #FFF;
	display: block;
	position: relative;
	padding: .5em 20px;
	text-align: center;
}
#Eptj > div > p.btn a:before {
	background: #FFF;
	border-radius: 50%;
	content: "";
	height: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 14px;
	width: 20px;
}
#Eptj > div > p.btn a:after {
	background: none;
	border-top: #233945 solid 3px;
	border-right: #233945 solid 3px;
	height: 5px;
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 21px;
	width: 5px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
#Eptj > div > p.btn a:hover {
	background-color: #ff3700;
}
#Eptj > div > p.btn a:hover:after {
	border-top: #ff3700 solid 3px;
	border-right: #ff3700 solid 3px;
}
#Eptj > div > p:nth-of-type(1) {
	margin: 0 0 2em;
}
#Eptj > div > p:nth-of-type(2) {
	margin: 0 0 2em;
}
#Tour {
	background-color: #ffd947;
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Tour > img {
	display: block;
	height: auto;
	float: right;
	margin: 0;
	vertical-align: bottom;
	width: 60%;
}
#Tour > div {
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 0 120px;
	padding: 0 100px;
	position: absolute;
	width: 40%;
	top: 50%;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Tour > div > h2 {
	line-height: normal;
	text-align: center;
	margin: 0 0 .6666em;
}
#Tour > div > h2 small {
	display: block;
	font-family: YuGothic,'Yu Gothic','Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;	font-size: 17px;
	font-weight: bold;
}
#Tour > div > h2 small:before {
	content: "\025c7\025c7\025c7";
	font-weight: normal;
	margin-right: 1em;
}
#Tour > div > h2 small:after {
	content: "\025c7\025c7\025c7";
	font-weight: normal;
	margin-left: 1em;
}
#Tour > div > h2 span {
	color: #1f3482;
	display: block;
	font-family: serif;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
	font-size: 2em;
	font-size: 1.875em;
	font-weight: bold;
}
#Tour > div > p {
/*	margin: 0;*/
}
#Tour > div > p:nth-of-type(1) {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
	font-size: 1.0625em;
	font-weight: bold;
	text-align: center;
}
#Tour > div > p:last-of-type {
	margin: 0 0 2em;
}
#Tour > div > ul {
	display: block;
	overflow: hidden;
	vertical-align: bottom;
}
#Tour > div > ul > li {
	display: block;
	font-weight: bold;
	list-style: none;
	margin: 0 0 10px;
	margin: 0 0 15px;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: justify;
	width: calc(50% - 5px);
	width: calc(50% - 7.5px);
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
#Tour > div > ul > li:nth-last-of-type(1) {
	margin: 0;
}
#Tour > div > ul > li:nth-last-of-type(2) {
	margin: 0;
}
#Tour > div > ul > li a {
	background-color: #233945;
	color: #FFF;
	display: block;
	position: relative;
	padding: .5em 20px;
	text-align: justify;
}
#Tour > div > ul > li a[href$=".pdf"] {
	background: none;
	background-color: #233945;
	line-height: inherit;
	padding: .5em 20px;
}
* html #Tour > div > ul > li a.pdf {
	background: none;
	background-color: #233945;
	line-height: inherit;
	padding: .5em 20px;
}
#Tour > div > ul > li a:before {
	background: #FFF;
	border-radius: 50%;
	content: "";
	height: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 14px;
	width: 20px;
}
#Tour > div > ul > li a:after {
	background: none;
	border-top: #233945 solid 3px;
	border-right: #233945 solid 3px;
	height: 5px;
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 21px;
	width: 5px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
#Tour > div > ul > li a:hover {
	background-color: #ff3700;
}
#Tour > div > ul > li a:hover:after {
	border-top: #ff3700 solid 3px;
	border-right: #ff3700 solid 3px;
}
#Tour > div > ul > li:nth-child(odd) {
	clear: both;
	float: left;
}
#Tour > div > ul > li:nth-child(even) {
	float: right;
}
#Extra {
	background-color: #FFF;
	background-image: url(/img/home/hom_bg_004.svg);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 25% auto;
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 120px 120px 150px 0;
	padding: 120px 120px 150px 0;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Extra > img {
	bottom: 40px;
	height: auto;
	right: 30px;
	position: absolute;
	vertical-align: bottom;
	width: 16.6666%;
	z-index: 1;
}
#Extra > div {
	background-color: #c5dce8;
	background-image: url(/img/home/hom_bg_003.svg);
	background-repeat: repeat;
	background-position: 0 0;
	background-size: 300px auto;
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 100px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Extra > div > .phot {
	display: block;
	float: left;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: calc(60% - 30px);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Extra > div > .phot > ul {
	display: block;
	overflow: hidden;
	list-style: none;
}
#Extra > div > .phot > ul > li img {
	display: block;
	height: auto;
	vertical-align: bottom;
	width: 100%;
}
#Extra > div > .phot > ul > li {
	display: block;
	list-style: none;
	margin: 0 0 10px;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#Extra > div > .phot > ul > li:nth-of-type(1) {
	clear: both;
	float: left;
	width: calc(60% - 5px);
}
#Extra > div > .phot > ul > li:nth-of-type(2) {
	float: right;
	width: calc(40% - 5px);
}
#Extra > div > .phot > ul > li:nth-of-type(3) {
	clear: both;
	float: left;
	margin: 0;
	width: calc(40% - 5px);
}
#Extra > div > .phot > ul > li:nth-of-type(4) {
	float: right;
	margin: 0;
	width: calc(60% - 5px);
}
#Extra > div > .text {
	display: block;
	float: right;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: calc(40% - 30px);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Extra > div > .text > h2 {
	border-left: #476084 solid 2px;
	font-weight: bold;
	line-height: normal;
	margin: 0 0 2em;
	padding-left: 30px;
	text-align: justify;
}
#Extra > div > .text > h2 small {
	display: block;
	font-size: .9em;
	margin: 0 0 .3333em;
}
#Extra > div > .text > h2 span {
	display: block;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
	font-size: 1.75em;
	font-size: 1.6666em;
}
#Extra > div > .text > p {
	margin: 0 0 2em;
}
#Extra > div > .text > ul {
	display: block;
	overflow: hidden;
	vertical-align: bottom;
}
#Extra > div > .text > ul > li {
	display: block;
	font-weight: bold;
	list-style: none;
	margin: 0 0 10px;
	margin: 0 0 15px;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: justify;
	width: calc(50% - 5px);
	width: calc(50% - 7.5px);
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
#Extra > div > .text > ul > li:nth-of-type(3) {
	letter-spacing: -.3333px;
}
#Extra > div > .text > ul > li:nth-last-of-type(1) {
	margin: 0;
}
#Extra > div > .text > ul > li:nth-last-of-type(2) {
	margin: 0;
}
#Extra > div > .text > ul > li a {
	background-color: #233945;
	color: #FFF;
	display: block;
	position: relative;
	padding: .5em 20px;
	text-align: justify;
	text-align: center;
}
#Extra > div > .text > ul > li a:before {
	display: none;
	background: #FFF;
	border-radius: 50%;
	content: "";
	height: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 14px;
	width: 20px;
}
#Extra > div > .text > ul > li a:after {
	display: none;
	background: none;
	border-top: #233945 solid 3px;
	border-right: #233945 solid 3px;
	height: 5px;
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 21px;
	width: 5px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
#Extra > div > .text > ul > li a:hover {
	background-color: #ff3700;
}
#Extra > div > .text > ul > li a:hover:after {
	border-top: #ff3700 solid 3px;
	border-right: #ff3700 solid 3px;
}
#Extra > div > .text > ul > li:nth-child(odd) {
	clear: both;
	float: left;
}
#Extra > div > .text > ul > li:nth-child(even) {
	float: right;
}
#Movie {
	background-color: #f5f5f5;
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 120px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 0;
}
#Movie > h2 {
	margin: 0 0 60px;
	text-align: center;
}
#Movie > h2 > span {
	font-family: 'Antonio', sans-serif;
	font-size: 3.3333em;
}
#Movie > h2 > span:nth-child(1) {
	color: #db1029;
	margin-right: .3333em;
}
#Movie > h2 > small {
	color: #4d4d4d;
	display: block;
	font-family: YuGothic,'Yu Gothic','Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;	font-size: 17px;
	font-size: .9em;
	font-weight: bold;
}
#Movie > ul {
	display: block;
	margin: 0;
	list-style: none;
	overflow: hidden;
}
#Movie > ul > li {
	display: block;
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: center;
	width: calc(50% - 30px);
}
#Movie > ul > li h3 {
/*	font-family: 'Antonio', sans-serif;*/
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
	font-size: 2em;
	font-size: 1.5em;
	line-height: normal;
	margin: 0 0 .6666em;
	margin: 0 0 .5em;
	text-align: center;
}
#Movie > ul > li p {
	font-size: .9em;
	line-height: normal;
	margin: 0;
	text-align: center;
}
#Movie > ul > li:nth-child(odd) {
	clear: both;
	float: left;
}
#Movie > ul > li:nth-child(even) {
	float: right;
}
#Movie > ul > li > div {
	margin-bottom: 40px;
	overflow: hidden;
	padding: 0;
	padding-top: 56.25%;
	position: relative;
	width: 100%;
}
#Movie > ul > li > div > iframe {
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}
#Movie > p.btn {
	display: inline-block;
	font-size: 1.125em;
	font-weight: bold;
	margin: 30px 0px 0px;
	overflow: hidden;
	position: relative;
	text-align: center;
	vertical-align: bottom;
	width: 320px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
#Movie > p.btn a {
	background-color: #233945;
	color: #FFF;
	display: block;
	height: 60px;
	line-height: 60px;
	position: relative;
}
#Movie > p.btn a:before {
	background: #FFF;
	border-radius: 50%;
	content: "";
	height: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 24px;
	width: 20px;
}
#Movie > p.btn a:after {
	background: none;
	border-top: #233945 solid 3px;
	border-right: #233945 solid 3px;
	height: 5px;
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 31px;
	width: 5px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
#Movie > p.btn a:hover {
	background-color: #ff3700;
}
#Movie > p.btn a:hover:after {
	border-top: #ff3700 solid 3px;
	border-right: #ff3700 solid 3px;
}
#Info {
	background-color: #fafafa;
	background-color: #f5fafb;
/*	background-image: url(/img/home/hom_bg_005.svg);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 25% auto;*/
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 120px 120px 90px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Info > div {
	background:linear-gradient(90deg,#476084 0%, #476084 6.9767441%, transparent 6.9767441%,transparent 100%);
	display: block;
	margin: 0 0 40px;
	overflow: hidden;
	padding: 0;
	position: relative;
}
#Info > p.btn {
	display: inline-block;
	font-size: 1.125em;
	font-weight: bold;
	margin: 0;
	overflow: hidden;
	position: relative;
	text-align: center;
	vertical-align: bottom;
	width: 320px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
#Info > p.btn a {
	background-color: #233945;
	color: #FFF;
	display: block;
	height: 60px;
	line-height: 60px;
	position: relative;
}
#Info > p.btn a:before {
	background: #FFF;
	border-radius: 50%;
	content: "";
	height: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 24px;
	width: 20px;
}
#Info > p.btn a:after {
	background: none;
	border-top: #233945 solid 3px;
	border-right: #233945 solid 3px;
	height: 5px;
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 31px;
	width: 5px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
#Info > p.btn a:hover {
	background-color: #ff3700;
}
#Info > p.btn a:hover:after {
	border-top: #ff3700 solid 3px;
	border-right: #ff3700 solid 3px;
}
#Info > div > h2 {
	color: #FFF;
	display: block;
	font-size: 1.3333em;
	font-weight: normal;
	left: 0;
	margin-left: 3.4883720%;
	position: absolute;
	overflow: hidden;
	top: 50%;
/*	width: 6.9767441%;*/
	-moz-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
#Info > div > h2 > span {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
}
@media all and (-ms-high-contrast: none) {
}
#Info > div > ul {
	display: block;
	float: right;
	list-style: none;
	overflow: hidden;
	text-align: justify;
	width: 90%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Info > div > ul > li {
	display: block;
	list-style: none;
	overflow: hidden;
	padding: .6666em 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
}
#Info > div > ul > li:hover {
/*	cursor: pointer;*/
}
#Info > div > ul > li:hover a {
/*	color: #ff3700;*/
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
#Info > div > ul > li span.date {
	color: #999;
	font-weight: bold;
	margin-right: 30px;
}
#Info > div > ul > li:nth-child(odd) {
	background-color: #FFF;
}
#Info > div > ul > li > a {
	display: inline;
	line-height: normal;
}
#Info > div > ul > li > a[href$=".pdf"] {
	background: none;
	display: inline;
	font-weight: normal;
	line-height: normal;
	padding: 0;
}
* html #Info > div > ul > li > a.pdf {
	background: none;
	display: inline;
	font-weight: normal;
	line-height: normal;
	padding: 0;
}
#Cont4 {
	clear: both;
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 120px;
	padding: 90px 120px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#Cont4 > ul {
	display: block;
	overflow: hidden;
}
#Cont4 > ul > li {
	display: block;
	list-style: none;
	margin: 0 0 60px;
	overflow: hidden;
	padding: 0;
	text-align: justify;
	width: calc(50% - 30px);
}
#Cont4 > ul > li > a img {
	display: block;
	float: left;
	height: auto;
	margin-right: 30px;
	overflow: hidden;
	vertical-align: bottom;
	width: 46.103896%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
#Cont4 > ul > li > a:hover img {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
#Cont4 > ul > li:nth-last-of-type(1) {
	margin: 0;
}
#Cont4 > ul > li:nth-last-of-type(2) {
	margin: 0;
}
#Cont4 > ul > li:hover a img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
#Cont4 > ul > li:hover {
	cursor: pointer;
}
#Cont4 > ul > li:nth-child(odd) {
	clear: both;
	float: left;
}
#Cont4 > ul > li:nth-child(even) {
	float: right;
}
#Cont4 > ul > li > h2 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transform:rotate(0.03deg);
	font-size: 1.3333em;
	font-weight: bold;
	margin: 0 0 .3333em;
}
#Cont4 > ul > li > p {
/*	font-size: .9em;*/
	margin: 0 0 1em;
}
#Cont4 > ul > li > p.btn {
	background-color: #181d53;
	display: inline-block;
	color: #FFF;
	margin: 0;
	overflow: hidden;
	padding: .25em 1.25em;
	vertical-align: bottom;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
}
#Cont4 > ul > li:hover p.btn {
	background-color: #ff3700;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
