@charset "UTF-8";

/*
＊＊＊＊＊＊＊＊＊＊

フォント

＊＊＊＊＊＊＊＊＊＊
*/

@font-face {
  font-family: 'din';
  src: url('../assets/fonts/DINMedium.woff') format('woff');
}

@font-face {
  font-family: 'helvetica';
  src: url('../assets/fonts/Helvetica-Neue-Interface.ttf.woff') format('woff');
}

@font-face {
  font-family: 'caslon';
  src: url('../assets/fonts/Big-Caslon-Medium.woff') format('woff');
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*
＊＊＊＊＊＊＊＊＊＊

要素をフワッと表示する。
classにfadeinを記述する

＊＊＊＊＊＊＊＊＊＊
*/
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 500ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}


/*
※※※※※※※※※※※※※※※※

共通

※※※※※※※※※※※※※※※※
*/
.cf:after {
    content: "";
    display: block;
    clear: both;
}

* {
	box-sizing: border-box;
	color: #3e3a39;
}

html {
	font-size:62.5%;
	}

html.noscroll {
	overflow-y:hidden;
}

body {
	font-size: 15px;
  font-size: 1.5rem;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
}

.mb0 {
	margin-bottom: 0!important;
}

.wrap {
	background-color: rgba(255,255,255,.9);
}

a {
	text-decoration: none;
	color:inherit;
}

a:hover,
a img:hover{
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)"; 
	-moz-opacity:0.7; 
	-khtml-opacity: 0.7; 
	opacity:0.7;
	zoom:1;
}

p {
	margin-bottom:1.2em;
	line-height: 1.8em;
	letter-spacing: 0.05em;
}

.flex {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.inner {
	max-width: calc(925px + 4%);
	width: 100%;
	margin: 0 auto;
	padding:0 2%;
}

.pc {
	display:block;
}

.sp {
	display: none;
}

.btn1 {
	position: relative;
	letter-spacing: 0.2em;
	width: 386px;
}

.btn1 a {
	display: block;
	background-color: #0091ff;
	color: #fff;
	width: auto;
	line-height: 45px;
	text-align: center;
	text-indent: -1em;
	transition: .5s ;
	background-image: url("../images/btn_arrow.png");
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: 37px auto;
}

.btn1 a:hover {
	background-position: right 10px center;
}

.sec_title {
	font-family: 'caslon','sans-serif';
	color: #fff;
	font-size: 7.4rem;
	margin-bottom: 0.8em;
	padding-bottom: 0.8em;
	position: relative;
	
	letter-spacing: 0.05em;
}

.sec_title.left {
	padding-left:calc((100vw - (925px + 2%)) / 2);
}


.sec_title.right {
	padding-right:calc((100vw - (925px + 2%)) / 2);
	text-align: right;
}

.sec_title.center {
	text-align: center;
}

.sec_title p:first-of-type span {
	color: #0091ff;
}

.sec_title:before {
	content:'';
	display:block;
	background-color: #0091ff;
	height: 2px;
	
	position: absolute;
	
	bottom:0;
}

.sec_title.left:before {
	width: calc(((100vw - (925px + 4%)) / 2) + 1.5em);
	left:0;
}

.sec_title.right:before {
	width: calc(((100vw - (925px + 4%)) / 2) + 1.5em);
	right:0;
}

.sec_title.center:before {
	width: 185px;
	left:calc(50% - 92px);
}

table.type1 td,
table.type1 th {
	border: 1px solid #b4b2b2;
	padding:1.5em;
	text-align: left;
	line-height: 1.6em;
	vertical-align: middle;
}

table.type1 th {
	border-left: none;
}

table.type1 td {
	border-right: none;
}

.buttonBox{
  position:relative;
  flex: 20%;
  margin-right: calc((100vw - (925px + 2%)) / 2);
	margin-top:40px;
}

button{
width: 100%;
  height:45px;
  position:relative;
  background:#bbbdbd;
  color:white;
  letter-spacing:0.1em;
  border:none;
  font-size:15px;
  outline:none;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  cursor: pointer;
  transition: .5s ;
}


.border{
    position:absolute;
    background:none;
    transition:all .5s ease-in-out;
}

.btn2>.border:nth-of-type(1){
  top:0;
  left:0;
  width:0;
  height:0;
  border-top:1px solid #bbbdbd;
}

.btn2>.border:nth-of-type(2){
  top:0;
  right:0;
  width:10px;
  height:0;
  border-right:1px solid #bbbdbd;
}

.btn2>.border:nth-of-type(3){
  bottom:0;
  right:0;
  width:0;
  height:0;
  border-bottom:1px solid #bbbdbd;
}

.btn2>.border:nth-of-type(4){
  bottom:0;
  left:0;
  width:0;
  height:0;
  border-left:1px solid #bbbdbd;
}

button:hover {
	background-color: inherit;
	color: #bbbdbd;
}

.btn2:hover .border:nth-of-type(1){
  width:100%;
}

.btn2:hover .border:nth-of-type(2){
  height:45px;
}

.btn2:hover .border:nth-of-type(3){
  width:100%;
}

.btn2:hover .border:nth-of-type(4){
  height:45px;
}

@media screen and (max-width: 960px) {
	.sec_title.left {
		padding-left: 2%;
	}


	.sec_title.right {
		padding-right: 2%;
	}
	
	.sec_title.left:before {
		width: 1.5em;
	}

	.sec_title.right:before {
		width: 1.5em;
	}
}

@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
  		font-size: 1.4rem;
	}
	.inner {
		max-width: none;
		width: 100%;
		margin: 0 auto;
		padding:0 4%;
	}
	
	.pc {
		display:none;
	}

	.sp {
		display: block;
	}
	
	
	.btn1 {
		width: 100%;
	}
	
	.btn1 a {
		font-size: 1.2rem;
		width: auto;
	}
	
	.sec_title {
		text-align: center;
		font-size: 5rem;
	}
	
	.sec_title.left:before {
		width: 3em;
		left:calc(50% - 1.5em);
	}
	
	.sec_title.right {
		padding-right:0;
		text-align: center;
	}
	
	.sec_title.right:before {
	width: 3em;
	right:auto;
	left:calc(50% - 1.5em);
}
	
	
	.buttonBox{
	 	position:relative;
	  	flex: 20%;
	 	margin-right: 0;
		margin-top:40px;
	}
	
	button:hover {
	background-color: #bbbdbd;
	color: #FFF;
}
}

/*
※※※※※※※※※※※※※※※※

ボーダーの動き

※※※※※※※※※※※※※※※※
*/

@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0); }
  50% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  100% {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0); }
}


/** ページTOPのライン **/

.scroll_pagetop.scroll-down {
    position: absolute;
    display: none;
    padding-top: 79px;
    text-align: center;
    width: 100px;
    left: inherit;
	right: 43px;
	bottom: 0;
    z-index: 100;
	pointer-events: none;
	 -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.scroll_pagetop.scroll-down::before {
    -webkit-animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
    position: absolute;
    top: 0px;
    left:44%;
    margin-left: 0px;
    width: 1px;
    height: 70px;
    background: #0091ff;
    content: '';
}

.scroll_pagetop.scroll-title {
    position: absolute;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.3em;
    text-align: center;
    margin-bottom: 40px;
    bottom: 40px;
    z-index: 100;
    color: inherit;
	 left: inherit;
	right: 65px;
	cursor: pointer;
}

@media screen and (max-width: 1086px) {
	.scroll_pagetop.scroll-down::before {
		left:auto;
		right: 70px;
	}
	.scroll_pagetop.scroll-title {
		right: 52px;
	}
}

@media screen and (max-width: 767px) {
	.scroll_pagetop.scroll-title {
		/*right: 26px;*/
	}
}


/*
※※※※※※※※※※※※※※※※

slick関連

※※※※※※※※※※※※※※※※
*/

.slick-slide img {
	width: 100%;
}

.slide-dots {
	position: relative;
	margin-top: 15px;
}

.slide-dots li {
	float: left;
	height: 3px;
	width: 110px;
	background-color: #e9eaea;
	margin-right: 5px;
}

.slide-dots li:last-child {
	margin-right: 0;
}

.slide-dots li.slick-active {
	background-color: #af8b6f;
}

.slide-dots button {
	display: none;
}

@media screen and (max-width: 767px) {
	.slide-dots li {
		float: none;
		width: 80px;
	}
}

/*
※※※※※※※※※※※※※※※※

ハンバーガーメニュー

※※※※※※※※※※※※※※※※
*/

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 50px;
  /*height: 44px;*/
	height: 30px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  transform: scale(1.1,1.1);
 margin-top: 35px;
	margin-left: 30px;
	outline:none;
	
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 0;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
 /* top: 20px;*/
	top: 14px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(-42deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(42deg);
}

@media screen and (max-width: 767px) {
	.menu-trigger {
	 	 position: relative;
	 	 width: 50px;
	  	transform: scale(0.7,0.7);
	 	margin-top: 14px;
		margin-left: 6px;
	}
}

/*
※※※※※※※※※※※※※※※※

ビジュアルテキスト

※※※※※※※※※※※※※※※※
*/
.visual_text {
	position: absolute;
	bottom:10vh;
	left:10vh;
	font-size: 4.7rem;
	font-family:"Noto Serif JP","游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	line-height: 1.5em;
	letter-spacing: 0.1em;
}

.visual_text p {
	margin-bottom: 0;
	color:#000;
}

.visual_text .two p:first-of-type {
	text-indent: 1.5em;
}

@media screen and (max-width: 767px) {
	.visual_text {
		font-size: 6vw;
		left:7.5vw;;
	}
}
/*
※※※※※※※※※※※※※※※※

動画ポップアップ

※※※※※※※※※※※※※※※※
*/
video.modalmovie {
	width: 100%;
}


/*
※※※※※※※※※※※※※※※※

スマホメニュー

※※※※※※※※※※※※※※※※
*/

.sp_menu {
	height: 100vh;
	width: 100vw;
	background-color: #000;
	display: none;
	position: fixed;
	z-index: 99;
	overflow-y:scroll;
	background-size: 50% cover;
}

.sp_menu .menu_wrap {
	display:flex;
}

.sp_menu .menu_bg {
	width: 50%;
	background-image: url("../images/navi_bg.jpg");
	background-size: cover;
	background-position: center;
}

.sp_menu ul {
	width: 50%;
	margin-top: 180px;
	height: calc(100vh - 180px);
}

.sp_menu li {
	width: 100%;
}

.sp_menu a {
	display: block;
	margin: 0 auto;
	height: 70px;
}

.sp_menu .en {
	padding-left: 35%;
	font-size: 4rem;
	color: #fff;
	width: 100%;
	margin-bottom: 0;
	position: relative;
	letter-spacing: 0.05em;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "Noto Serif JP","ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.sp_menu .en:before {
	content:'';
	display:block;
	height: 1px;
	width: 50%;
	background-color: #404040;
	bottom: 0;
	left:0;
	position: absolute;
	z-index: -1;
}

.sp_menu .en span {
	background-color: #804b23;
	display:inline-block;
	padding-right: 20px;
}

@media screen and (max-width: 767px) {
	.sp_menu .menu_bg {
		display:none;
	}
	
	.sp_menu ul {
		width: 100%;
		margin-top: 90px;
		height: auto;
	}
	
	.sp_menu li {
		width: 100%;
		height: 71px;
	}
	
	.sp_menu a {
		display: block;
		width: 100%;
		min-width: 0;
		margin: 0 auto;
	}
	
	.sp_menu .en {
		font-size: 2.8rem;
		line-height: 70px;
		padding-left: 30%;
	}
	
	.sp_menu .en:before {
		width: 40%;
	}
	
	.sp_menu .jp {
		width: 45%;
		float: left;
		line-height: 70px;
		padding-left: 10%;
		font-size: 1.4rem;
	}

}


/*
※※※※※※※※※※※※※※※※

ヘッダー

※※※※※※※※※※※※※※※※
*/

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
}

header .logo {
	width: 103px;
	height: auto;
	z-index: 100;
	position: absolute;
	left: 3vw;
	top: 40px;
}

header a:hover,
header img:hover{
	filter: inherit;
	-ms-filter: inherit; 
	-moz-opacity:inherit; 
	-khtml-opacity: inherit; 
	opacity:inherit;
}

.lang_wrap,.movie {
	display: block;
	position: fixed;
	right: 0;
	height: 143px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	font-family: "Noto Serif JP","ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.lang_wrap ul{
	height: 123px;
	width: 92px;
	float:right;
	margin:10px 0;
}

.lang_wrap li {
	line-height: calc(123px / 4);
	
}

.lang_wrap li a {
	color: #fff;
	transition: .5s;
}

.lang_wrap li a:hover {
	text-decoration: underline;
}

.lang_wrap {
	bottom:143px;
	background-color: #de5500;
	width: 138px;
	right: -92px;
	transition: 500ms ease-out;
}

.lang_wrap.is_active {
	right:0;
}

.lang_wrap .lang {
	color: #fff;
	width: 46px;
	line-height: 46px;
	writing-mode: vertical-lr;
	display:block;
	text-align: center;
	float:left;
	height: 143px;
	cursor: pointer;
	transition: .3s;
}

.lang_wrap .lang:hover {
	background-color: #f98a46;
}

.movie {
	bottom:0;
	background-color: #0091ff;
		writing-mode: vertical-lr;
		width: 46px;
	line-height: 46px;
	transition: .3s;
}

.movie:hover {
	background-color: #44acfb;
}



.hamburger_btn {
	width: 106px;
	height: 106px;
	background-color: #000;
	position: absolute;
	top:0;
	right: 0;
	cursor: pointer;
	z-index: 100;
}

@media screen and (max-width: 767px) {
	header .logo {
		width: 70px;
		max-width: 186px;
		height: auto;
		z-index: 100;
		position: absolute;
		left: 7.5vw;
		top: 3vw;
	}
	
	.lang_btn {
		position: absolute;
		right: 62px;
		top:0;
		z-index: 98;
	}
	
	.lang_btn p {
		height:60px;
		width: 60px;
		text-align: center;
		margin-bottom: 0;
		cursor: pointer;
	}
	
	.lang_btn img {
		width: 32px;
		height: 32px;
		margin-top: 14px;
	}
	
	.hamburger_btn {
	width: 60px;
	height: 60px;
	position: absolute;
	top:0;
	right: 0;
	cursor: pointer;
	z-index: 100;
}
}

/*
※※※※※※※※※※※※※※※※

（HOME)メインビジュアル動画

※※※※※※※※※※※※※※※※
*/

.mainvisual {
	background-size: cover;
	height: 100vh;
	background-position: center top;
	position: fixed;
	z-index: -1;
	width: 100%;
	top:0;
	left: 0;
}

.mainvisual video {	
	position: fixed;
  overflow: hidden;
  z-index: -9999999999;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  background-position: center center;
}

/*
※※※※※※※※※※※※※※※※

ABOUT

※※※※※※※※※※※※※※※※
*/

#about {
	margin-top: 100vh;
	padding:80px 0;
	background-color: #000000;
	position: relative;
}

#about .bg_img {
	width: 443px;
	position: absolute;
	right: 0;
	bottom:-70px;
}

#about p {
	color: #fff;
	margin-bottom: 2em;
	line-height: 2em;
}

@media screen and (max-width: 767px) {
	#about .bg_img {
		width: 60vw;
		bottom:-30px;
	}
}

/*
※※※※※※※※※※※※※※※※

FACILITIES

※※※※※※※※※※※※※※※※
*/

#facilities {
	padding: 100px 0 0;
	background-color: #fff;
}

#facilities .sec_title {
	color: #3e3a39;
}

#facilities .facilities_list {
	width: 100%;
	margin-bottom: 70px;
}

#facilities .facilities_list li {
	width: 25%;
	text-align: center;
	background-color: #0091ff;
	color: #fff;
	height: 73px;
	display:grid;
	align-items: center;
	vertical-align: middle;
	float: left;
	border: 1px solid #0091ff;
	border-right: 1px solid #fff;
	border-left:none;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: .5s ;
}

#facilities .facilities_list li:hover {
	background-color: inherit;
	color: inherit;
}

#facilities .facilities_list #fa4_btn {
	border-right: 1px solid #0091ff;
}

#facilities .facilities_list #fa1_btn {
	border-left: 1px solid #0091ff;
}

#facilities .facilities_list li.btn_on {
	background-color: inherit;
	color:inherit;
}

#facilities .facilities_cont {
	display: none;
}

#facilities .facilities_cont.disp {
	display: block;
}

#facilities #fa1 p {
	text-align: center;
	margin-bottom: 50px;
}

#facilities table {
	width: 100%;
}

#facilities #fa1 table td,
#facilities #fa1 table th{
	text-align: center;
	width: 50%;
}

#facilities #fa2,
#facilities #fa3 {
	
}

#facilities .img_area {
	padding-left: 5%;
	width: 55%;
}

#facilities .img_area img {
	width: 100%;
}

#facilities .txt_area {
	width: 45%;
}

#facilities #fa2 p {
	margin:0 auto;
	width: 15em;
	margin-top:16%;
}

#facilities #fa3 p {
	margin:0 auto;
	width: 15em;
	margin-top:21%;
}

#facilities #fa4 th{
	width: 33%;
}

#facilities table  li {
	float: left;
	margin-right: 1em;
}

#facilities .shikaku li:before {
	content:'■';
}

#facilities .fa_slide {
	margin-top: 100px;
}

@media screen and (max-width: 767px) {
	#facilities .facilities_list li {
		width: 50%;
		border-right: inherit;
		border-left:inherit;
		border:1px solid #0091ff;
	}
	
	#facilities .facilities_list #fa1_btn{
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
	}
	
	#facilities .facilities_list #fa2_btn {
		border-left:none;
		border-bottom: 1px solid #fff;
}
	
	#facilities .facilities_list #fa3_btn {
		border-top: none;
		border-right: 1px solid #fff;
	}
	
	#facilities .facilities_list #fa4_btn {
		border-top: none;
		border-left: none;
	}
	
	#facilities .img_area ,
	#facilities .txt_area {
		width: 100%;
	}
	
	#facilities .img_area {
		padding-left: 0;
	}

}

/*
※※※※※※※※※※※※※※※※

ROOMS

※※※※※※※※※※※※※※※※
*/
#rooms {
	padding-top:100px;
	background-color: #fff;
}

#rooms .inner {
	max-width: none;
	padding:0;
}

#rooms .sec_title {
	color: #3e3a39;
}

#rooms .img_area {
	width: 49%;
	position: relative;
	overflow: hidden;
	height: 640px;;
}

#rooms .img_area img {
	width:100%;
	transition: 1000ms ease-out;
	position: absolute;
	left: -100%;
	visibility: hidden;
}

#rooms .img_area img.now {
	left: 0;
	z-index: 3;
	visibility: visible;
}

#rooms .img_area img.prev {
	z-index: 2;
	left:0;
	visibility: visible;
}

#rooms .circle {
	position: absolute;
	bottom: 50px;
	left:calc(50% - 1em);
	z-index: 999;
}

#rooms .circle li.now {
	color: #0091FF;
}

#rooms .circle li {
	float: left;
	color:#fff;
	padding:0 .2em;
}

#rooms .info_area {
	width: 46%;
}

#rooms .name {
	text-align: right;
	font-size: 2.6rem;
	margin-bottom: 1em;
	font-weight: bold;
}

#rooms .txt_area {
	padding-right: calc((100vw - (925px + 2%)) / 2);
}

#rooms .rooms_txt2,
#rooms .rooms_txt3 {
	display:none;
}

#rooms .txt_area p {
	text-align: right;
	margin-bottom: 1.5em;
}

#rooms .type1 {
	width: 100%;
}

#rooms .type1 th {
	text-align: center;
}

#rooms .type1 th,
#rooms .type1 td {
	padding: 1.5em 1em;
}

#rooms .amenity_txt {
	text-align: center;
	margin: 80px 0 60px;
}

#rooms .amenity_img {
	width: 100%;
}

@media screen and (max-width: 1124px) {
	#rooms .img_area {
		height: 54vw;
	}
}

@media screen and (max-width: 960px) {
	
	#rooms .txt_area {
		padding-right: 2%;
	}
	
	.buttonBox {
		margin-right: 2%;
	}
}

@media screen and (max-width: 767px) {
	#rooms .inner {
		padding:0 4%;
	}
	#rooms .flex {
		height: auto;
	}
	
	#rooms .img_area {
		height: 102vw;
		margin-top: 50px;
	}
	
	#rooms .txt_area {
		padding-right:0;
	}
	
	#rooms .txt_area .name {
		text-align: center;
	}
	
	#rooms .txt_area p {
		text-align: center;
	}
	
	#rooms .info_area,
	#rooms .img_area{
		width: 100%;
	}
}

/*
※※※※※※※※※※※※※※※※

（HOME）news & faq

※※※※※※※※※※※※※※※※
*/

#home .newsfaq {
	padding: 0;
	background-color: #fff;
}

#home .newsfaq .inner {
	max-width: none;
	padding:0;
	position: relative;
}

#home .newsfaq .sec_title:before {
	background-color: #fff;
}

#home .newsfaq .sec_title p:first-of-type span {
	color: #fff;
}

#home .news {
	width: 51.5%;
	background-color: #cfd0d0;
	padding:80px 100px 80px 0;
}

#home .news .btn2 {
	margin-left: calc(((100vw - (925px + 2%)) / 2) + 2%);
	margin-right: 0;
}

#home .newslist {
	padding-left: calc(((100vw - (925px + 2%)) / 2) + 2%);
}



.newslist li {
	background-color: #fff;
	margin-bottom: 5px;
	background-image: url("../images/icon_arrow.png");
	background-size: 13px auto;
	background-position: right 1.5em center;
	background-repeat: no-repeat;
}

.newslist li a {
	display: block;
	padding:1.25em 2.5em 1.25em 1em;
}

#news .newslist li:nth-child(odd){
	background-color: #EDEDED;
}

#news .newslist li:nth-child(even) {
	background-color:  #F8F8F8;
}

.newslist .date {
	color: #000;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.6em;
	margin-right: 1.5em;
	letter-spacing: 0.05em;
}

.newslist .title {
	font-size: 1.3rem;
	line-height: 1.6em;
	letter-spacing: 0.05em;
}

#home .faq {
	width: 51.5%;
	position: absolute;
	top: 95px;
	right: 0;
	background-color: #104467;
	padding:80px 0 80px 80px;
	z-index: 2;
}

.faqtable {
	padding-right: calc(((100vw - (925px + 2%)) / 2) + 2%);
}

.faqtable dt {
	background-color: #fff;
	padding:1.6em 3em 1.6em 3.8em;
	margin-bottom: 5px;
	background-image: url("../images/icon_arrow.png");
	background-size: 13px auto;
	background-position: right 1.5em center;
	background-repeat: no-repeat;
	font-size: 1.3rem;
	min-height: 60px;
	position: relative;
	cursor: pointer;
	line-height: 1.4em;
}

.faqtable dt.open {
	background-image: url("../images/icon_arrow_open.png");
	background-size: auto 13px;
}

.faqtable dt:before {
	content:'Q';
	font-size: 3.8rem;
	font-family: 'din','sun-serif';
	position: absolute;
	left: 15px;
	top: 20px;
}

.faqtable dd {
	background-color: #fff;
	padding:1.6em 3em 1.6em 3.8em;
	margin-bottom: 5px;
	background-size: 13px auto;
	background-position: right 1.5em center;
	background-repeat: no-repeat;
	font-size: 1.3rem;
	position: relative;
	line-height: 1.4em;
	display: none;
}

.faqtable dd:before {
	content:'A';
	color: #ed6c00;
	font-size: 3.8rem;
	font-family: 'din','sun-serif';
	position: absolute;
	left: 15px;
	top: 20px;
}

@media screen and (max-width: 960px) {
	#home .news {
		padding:80px 60px 80px 0;
	}
	
	#home .news .btn2 {
		margin-left: 2%;
	}
	
	#home .newslist {
		padding-left: 2%;
	}
	
	#home .faq {
		padding:80px 0 80px 40px;
	}
	
	.faqtable {
		padding-right: 2%;
	}
}

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

	
	#home .news, #home .faq {
		width: 100%;
	}
	
	#home .news {
		margin-bottom: 0;
		padding:50px 4%;
	}
	
	#home .news .btn2 {
		margin-left: 0;
		margin-right: 0;
	}

	#home .newslist {
		padding-left: 0;
	}
	
	#home .faq {
		position: static;
		padding:50px 4%;
	}

}

/*
※※※※※※※※※※※※※※※※

下層共通

※※※※※※※※※※※※※※※※
*/
.titlevisual {
	height: 450px;
	background-size: cover;
	background-repeat: no-repeat;
}

.titlevisual h2 {
	padding-top: 220px;
	margin-left: 120px;
}

@media screen and (max-width: 767px) {
	.titlevisual {
		height: 42vw;
		background-size: cover;
		background-repeat: no-repeat;
	}
	
	.titlevisual h2 {
		padding-top: 22vw;
		margin-left: 10vw;
	}
}



/*
※※※※※※※※※※※※※※※※

ポリシーページ

※※※※※※※※※※※※※※※※
*/
#policy .contents{
	padding: 80px 0 100px;
}

#policy .contents p {
	margin-bottom: 2em;
}

#policy .sec_title {
	color: #3e3a39;
}

#policy .titlevisual {
	background-image: url("../images/policy_visual.jpg");
	background-attachment: fixed;
	background-size: contain;
	background-position: center top;
}

#policy .titlevisual img {
	width: 286px;
}

#policy .sec1 {
	padding-bottom: 80px;
}

#policy .contents ul {
	list-style-type: none;
	list-style-position: inside;
	margin-bottom: 2em;
}

#policy  .contents li {
	margin-bottom: 1em;
}

#policy .list1 li:before {
	content:'・';
}

#policy .large_title {
	font-size: 4.8rem;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #0091ff;
	margin-bottom: 0.8em;
	font-weight: bold;
}

#policy .mini_title {
	font-size: 3rem;
	font-weight: bold;
	color: #0091ff;
	margin-bottom: 1em;
	margin-top: 2em;
}

#policy .sec3 table {
	width: 100%;
}

#policy .sec3 caption {
	margin-bottom: 1.5em;
	text-align: left;
}

#policy .sec3 td,
#policy .sec3 th{
	background-color: #0091ff;
	border: 1px solid #fff;
	color: #fff;
	padding: 1.3em;
	vertical-align: middle;
	line-height: 1.6em;
	text-align: left;
}

#policy .sec3 .table1 {
	margin-bottom: 50px;
}

#policy .sec3 .table1 .col1{
	width: 30%;
}

#policy .sec3 .table1 .col2{
	width: 30%;
}

#policy .sec3 .table1 .col3{
	width: 40%;
}

#policy .sec3 .table2 td {
	text-align: center;
}

#policy .sec3 .table2 .col1 {
	width: 30%;
}

#policy .sec3 .table2 .col2 {
	width: 14%;
}

@media screen and (max-width: 767px) {
	#policy .large_title {
		font-size: 3.5rem;
	}
	#policy .mini_title {
		font-size: 2.5rem;
	}
	
	#policy .sec3 td,
	#policy .sec3 th{
		font-size: 1.2rem;
		padding: 0.5em;
	}
}

/*
※※※※※※※※※※※※※※※※

記事インデックスページ

※※※※※※※※※※※※※※※※
*/

#news .sec1 {
	padding: 150px 0 100px;
}

#news  .titlevisual {
	background-image: url("../images/news_visual.jpg");
}

#news .titlevisual img {
	width:222px;
}

#news .sec_title {
	color: #3e3a39;
}

@media screen and (max-width: 767px) {
	#news .sec1 {
		padding: 80px 0 100px;
	}
	
	#news .titlevisual img {
		width:28vw;
	}
	
	#news .newslist .date {
		display:block;
	}
}

/*
※※※※※※※※※※※※※※※※

記事ページ

※※※※※※※※※※※※※※※※
*/
#article .contents{
	padding: 80px 0 100px;
}
#article  .titlevisual {
	background-image: url("../images/news_visual.jpg");
}

#article .titlevisual img {
	width:222px;
}

#article .sec_title {
	color: #3e3a39;
}

#article .visual {
	text-align: center;
	margin-bottom: 60px;
}

#article .visual img {
	max-width: 100%;
	vertical-align: bottom;
}

#article .date {
	font-size: 2.2rem;
	color: #0091ff;
	font-weight: bold;
	margin-bottom: 1.5em;
}

#article .title {
	font-size: 3.6rem;
	font-weight: bold;
	margin-bottom: 1.5em
}

#article .contents .btn1 {
	margin: 100px auto 0;
}

@media screen and (max-width: 767px) {
	#article .titlevisual img {
		width:28vw;
	}
}
/*
※※※※※※※※※※※※※※※※

共通フッター（ACCESS / MAP / COPYRIGHT）

※※※※※※※※※※※※※※※※
*/

#access {
	background-color: #000;
	padding: 60px 0;
}

#access .inner {
	width:100%;
	margin:0;
	padding:0;
	max-width: none;
}

#access .sec_title {
	color: #fff;
	padding-left:calc(((100vw - (925px + 2%)) / 2) + 2%);
}

#access .sec_title p:first-of-type span {
	color: #fff;
}

#access .sec_title:before {
	background-color: #fff;
}

#access .txtarea {
	width: 52%;
	color: #fff;
	letter-spacing: 0.05em;
}

#access .info {
	margin-left:calc(((100vw - (925px + 2%)) / 2) + 2%);
}

#access .info p{
	color: #fff;
}

#access .info .address {
	margin-bottom: 0.2em;
}

#access .info .telnum {
	font-size: 3.4rem;
	font-family: 'helvetica';
	font-weight: bold;
}

#access .btn2 {
	width: 386px;
}

#access .imgarea {
	width: 48%;
	padding-top: 5vw;
}

#access .imgarea img {
	width: 100%;
}

.map {
	height: 410px;
}

.map {
overflow: hidden;
position: relative;
height: 410px;
}

.map iframe {
position: absolute;
left: 0;
top: 0;
height: 410px;
width: 100%;
}

footer {
	text-align: center;
	background-color: #ededed;
	position: relative;
}

footer small {
	line-height: 120px;
	font-size: 1.2rem;
	letter-spacing: 1em;
}

@media screen and (max-width: 960px) {
	#access .sec_title {
		padding-left:2%;
	}
	
	#access .info {
		margin-left:2%;
	}
}

@media screen and (max-width: 767px) {
	#access .inner {
		width: 85%;
		margin: 0 auto;
	}
	
	#access .sec_title {
		color: #fff;
		padding-left:0;
	}
	
	#access .txtarea {
		width: 100%;
		font-size: 1.3rem;
	}
	
	#access .imgarea {
		display: none;
	}
	
	#access .info {
		margin-left:0;
		width: 320px;
		margin:0 auto;
	}

	#access .btn2 {
		width: 100%;
	}
}



@media screen and (max-width: 370px) {
	#access .info {
		width: auto;
	}
	
	#access .info .address {
		margin-bottom: 0.2em;
		letter-spacing: 0;
	}

	#access .info .telnum {
		font-size: 28rem;
	}
}



.fade_text {
  opacity: 0;
}

.fade_text p {
  display: inline-block;
  transform-origin: center center;
  transform: translate3d(0, 40px, 0);
}

.fade_text p span {
  transform-origin: center center;
  transform: scale3d(0.1, 0.1, 1);
  opacity: 0;
}
.fade_text p:nth-child(1) {
  transition: transform 0.8s ease 0.1s;
}
.fade_text p:nth-child(1) span {
  transition: transform 0.8s ease 0.1s,opacity 0.8s ease 0.1s;
}
.fade_text p:nth-child(2) {
  transition: transform 0.8s ease 0.2s;
}
.fade_text p:nth-child(2) span {
  transition: transform 0.8s ease 0.2s,opacity 0.8s ease 0.2s;
}
.fade_text p:nth-child(3) {
  transition: transform 0.8s ease 0.3s;
}
.fade_text p:nth-child(3) span {
  transition: transform 0.8s ease 0.3s,opacity 0.8s ease 0.3s;
}
.fade_text p:nth-child(4) {
  transition: transform 0.8s ease 0.4s;
}
.fade_text p:nth-child(4) span {
  transition: transform 0.8s ease 0.4s,opacity 0.8s ease 0.4s;
}
.fade_text p:nth-child(5) {
  transition: transform 0.8s ease 0.5s;
}
.fade_text p:nth-child(5) span {
  transition: transform 0.8s ease 0.5s,opacity 0.8s ease 0.5s;
}
.fade_text p:nth-child(6) {
  transition: transform 0.8s ease 0.6s;
}
.fade_text p:nth-child(6) span {
  transition: transform 0.8s ease 0.6s,opacity 0.8s ease 0.6s;
}
.fade_text p:nth-child(7) {
  transition: transform 0.8s ease 0.7s;
}
.fade_text p:nth-child(7) span {
  transition: transform 0.8s ease 0.7s,opacity 0.8s ease 0.7s;
}
.fade_text p:nth-child(8) {
  transition: transform 0.8s ease 0.8s;
}
.fade_text p:nth-child(8) span {
  transition: transform 0.8s ease 0.8s,opacity 0.8s ease 0.8s;
}
.fade_text p:nth-child(9) {
  transition: transform 0.8s ease 0.9s;
}
.fade_text p:nth-child(9) span {
  transition: transform 0.8s ease 0.9s,opacity 0.8s ease 0.9s;
}
.fade_text p:nth-child(10) {
  transition: transform 0.8s ease 1.0s;
}
.fade_text p:nth-child(10) span {
  transition: transform 0.8s ease 1s,opacity 0.8s ease 1s;
}
.fade_text p:nth-child(11) {
  transition: transform 0.8s ease 1.1s;
}
.fade_text p:nth-child(11) span {
  transition: transform 0.8s ease 1.1s,opacity 0.8s ease 1.1s;
}

.fade_text p:nth-child(12) {
  transition: transform 0.8s ease 1.2s;
}
.fade_text p:nth-child(12) span {
  transition: transform 0.8s ease 1.2s,opacity 0.8s ease 1.2s;
}

.fade_text p:nth-child(13) {
  transition: transform 0.8s ease 1.3s;
}
.fade_text p:nth-child(13) span {
  transition: transform 0.8s ease 1.3s,opacity 0.8s ease 1.3s;
}

.fade_text p:nth-child(14) {
  transition: transform 0.8s ease 1.4s;
}
.fade_text p:nth-child(14) span {
  transition: transform 0.8s ease 1.4s,opacity 0.8s ease 1.4s;
}

.fade_text p:nth-child(15) {
  transition: transform 0.8s ease 1.5s;
}
.fade_text p:nth-child(15) span {
  transition: transform 0.8s ease 1.5s,opacity 0.8s ease 1.5s;
}

.fade_text p:nth-child(16) {
  transition: transform 0.8s ease 1.6s;
}
.fade_text p:nth-child(16) span {
  transition: transform 0.8s ease 1.6s,opacity 0.8s ease 1.6s;
}

.fade_text p:nth-child(17) {
  transition: transform 0.8s ease 1.7s;
}
.fade_text p:nth-child(17) span {
  transition: transform 0.8s ease 1.7s,opacity 0.8s ease 1.7s;
}

.fade_text p:nth-child(18) {
  transition: transform 0.8s ease 1.8s;
}
.fade_text p:nth-child(18) span {
  transition: transform 0.8s ease 1.8s,opacity 0.8s ease 1.8s;
}

.fade_text p:nth-child(19) {
  transition: transform 0.8s ease 1.9s;
}
.fade_text p:nth-child(19) span {
  transition: transform 0.8s ease 1.9s,opacity 0.8s ease 1.9s;
}

.fade_text p:nth-child(20) {
  transition: transform 0.8s ease 2s;
}
.fade_text p:nth-child(20) span {
  transition: transform 0.8s ease 2s,opacity 0.8s ease 2s;
}

.fade_text p:nth-child(21) {
  transition: transform 0.8s ease 2.1s;
}
.fade_text p:nth-child(21) span {
  transition: transform 0.8s ease 2.1s,opacity 0.8s ease 2.1s;
}

.fade_text p:nth-child(22) {
  transition: transform 0.8s ease 2.2s;
}
.fade_text p:nth-child(22) span {
  transition: transform 0.8s ease 2.2s,opacity 0.8s ease 2.2s;
}

.fade_text p:nth-child(23) {
  transition: transform 0.8s ease 2.3s;
}
.fade_text p:nth-child(23) span {
  transition: transform 0.8s ease 2.3s,opacity 0.8s ease 2.3s;
}

.fade_text p:nth-child(24) {
  transition: transform 0.8s ease 2.4s;
}
.fade_text p:nth-child(24) span {
  transition: transform 0.8s ease 2.4s,opacity 0.8s ease 2.4s;
}

.fade_text p:nth-child(25) {
  transition: transform 0.8s ease 2.5s;
}
.fade_text p:nth-child(25) span {
  transition: transform 0.8s ease 2.5s,opacity 0.8s ease 2.5s;
}


.fade_text p,
.fade_text p span {
	color: inherit;
}

.fade_text.active {
  opacity: 1;
}

.fade_text.active p {
  transform: translate3d(0, 0, 0);
	margin-bottom: 0!important;
	line-height: 1em!important;
}

.fade_text.active span {

  transform: scale3d(1, 1, 1);
  opacity: 1;
}