@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,body{ height:100%; }
html{
	font-size:62.5%;
  overflow-y: scroll;
}

@media screen and (min-width: 768px) {
	body {
		position: relative;
	}
}


body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 1.5;
	list-style-type: none;
	font-style: normal;
	font-size: 1.4rem;
	font-weight: normal;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	text-align: left;
	color:#333;
	letter-spacing: 1px;
}

img {
	vertical-align: middle;
	max-width: 100%;
}

a {
	color: #333;
	text-decoration: none;
	transition: 0.3s;
}

a img {
 transition: opacity 0.3s ease-out;
}

a:hover img {
 opacity: 0.7;
}

@media screen and (min-width: 768px) {
a[href^="tel:"] {
	display: inline-block;
	pointer-events: none;
}
}

.inner {
	max-width: 1000px;
	margin: 0 auto;
}

@media screen and (max-width: 1100px) {
	.inner {
		padding: 0 5%;
	}
}



/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/

#header {
	padding: 16px 0;
	position: fixed;
	width: 100%;
	transition: 0.3s;
	z-index:100;
}
#header .inner.flex {
	align-items:center;
}

#header .logo a {
	display:flex;
	align-items: center;
}
#header .logo img {
	width: 93px;
}
#header .logo span {
	color: #fff;
	display: inline-block;
	margin-left: 30px;
	font-size: 1.2rem;
	text-shadow: 0 0 2px rgba(0,0,0,1);
}
#header #gnav {
	position: relative;
	padding-right: 110px; 
}

#header #gnav .flex {
	align-items: stretch;
}

#header #gnav li {
	border-left: 2px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	text-align: center;
	width: 140px;
}

#header #gnav li a {
	color: #fff;
	font-size: 1.2rem;
	text-shadow: 0 0 2px rgba(0,0,0,1);
}
#header #gnav li a span {
	font-size: 1.6rem;
}

#header #gnav li a:hover {
	color: #F75C2F;
}

#header #gnav .lang {
	border-left: 2px solid #fff;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 110px;
}
#header #gnav .lang ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}
#header #gnav .lang li {
	border: 1px solid #F75C2F;
	display: inline-block;
	height: auto;
	width: auto;
	overflow: hidden;
}

#header #gnav .lang li:nth-child(1) {
	background: #F75C2F;
}

#header #gnav .lang li span {
	background: #F75C2F;
	display: block;
	color: #fff;
	text-align: center;
	width: 36px;
}

.ie #header #gnav .lang li {
	height: 25px;
}
.ie #header #gnav .lang li span {
	line-height: 1;
	height: 100%;
	padding: 4px 0 0 2px;
	vertical-align: middle;
}

#header #gnav .lang li a {
	display: inline-block;	
  width: 34.5px;
  font-size: 1.4rem;
} 

.ie #header #gnav .lang li a {
	line-height: 1;
	height: 100%;
	padding-top: 6px;
	vertical-align: middle;
}

.mobile #header #gnav .lang li span {
	padding-bottom: 1px;
}

#header.on {
	background: rgba(255,255,255,0.8);
}
#header.on #gnav li, #header.on #gnav .lang {
	border-left: 1px solid #333;
}
#header.on #gnav .lang li {
	border: 1px solid #F75C2F;
}

#header.on .logo span {
	color: #333;
	text-shadow: none;
}
#header.on #gnav li a {
	color: #333;
	text-shadow: none;
}

@media screen and (max-width: 1100px) {
	#header .inner.flex {
		justify-content: center;
	}
}

@media screen and (max-width: 767px) {
	#header {
		position: fixed;
	}
	#header .logo {
		display: none;
	}
	#header .menu {
		display: none;
	}
	
	.toggle {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
		position: absolute;
		right: 7%;
		top: 25px;
		width: 22px;
		height: 22px;		
		z-index: 10;
	}
	.toggle span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #F75C2F;
		border-radius: 0;
	}
	.toggle span:nth-of-type(1) {
		top: 0;
	}
	.toggle span:nth-of-type(2) {
		top: 10px;
	}
	.toggle span:nth-of-type(3) {
		bottom: 0;
	}

	.toggle.active span:nth-of-type(1) {
		-webkit-transform: translateY(11px) rotate(45deg);
		transform: translateY(11px) rotate(45deg);
	}
	.toggle.active span:nth-of-type(2) {
		opacity: 0;
	}
	.toggle.active span:nth-of-type(3) {
		-webkit-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
	#header {
		padding: 0;
	}
	#header .inner {
		padding: 0;
	}
	
	#header #gnav {
		position: relative;
		height: auto;
		padding: 0;
	}
	
	#header #gnav .menu {
		background: rgba(277,277,277,0.8);
		position: absolute;
		padding: 60px 0;
		width: 100%;
	}
	#header #gnav .menu li {
		margin-bottom: 10px;
	}
	
	#header #gnav .menu li a {
		color: #333;
		text-shadow: none;
	}
	#header #gnav .menu li, #header.on #gnav .menu li  {
		border:none;
		width: 100%;
	}
	#header #gnav .lang {
		border: none;
		left: 7%;
		height: auto;
		top: 25px;		
	}
	#header.on #gnav .lang {
		border: none;
	}
	#header #gnav .lang ul {
		justify-content: flex-start;
	}
	#header #gnav .lang li {
		height: 25px;
	}
	#header #gnav .lang li span {
		height: 100%;
		padding-bottom: 1px;
	}
	#header #gnav .lang.active li a {
		color: #333;
		text-shadow: none;
		padding-bottom: 1px;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  コンテンツ
* --------------------------------------------------------------------------------------------------*/

.fv {
	height: 100vh;
	position: relative;
}

.fv:after {
	content: '';
	display: block;
	background: url("../images/bg_fv_price.png");
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 130px;
}


.slide li {
	height: 100vh;
	width: 100%;
}

.slide li img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}


.fv .txt {
	position: absolute;
	left: 69.5%;
	top: 24%;
	z-index: 10;
}

.fv .txt p {
	color: #fff;
	font-size: 1.6rem;
	letter-spacing: 0.7rem;
	line-height: 2.6;	
 	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}

.fv .fv_logo {
	height: 191px;
	left: 0;
	margin: 0 auto;
	position: absolute;	
	right: 0;
	top:calc(50% - 85px);
	width: 191px;
	z-index: 10;
}

.fv .fv_price {
	max-width: 1000px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10;
	bottom: 40px;
}

.fv .fv_price div {
  align-items: center;
	display: flex;
	justify-content: flex-end;
}

.fv .fv_price .notice {
  max-width: 720px;
  font-size: 1.2rem;
  text-align: left;
  margin: 10px 0 0 auto;
}

.ie .fv .fv_price {
	position:relative;
	bottom: 80px;
}

.fv .fv_price p {
	color: #fff;
	font-size: 1.4rem;
	margin-right: 25px;
}

.fv .fv_price p span {
	display: inline-block;
	margin-left: 10px;
	font-size: 2.2rem;
}

.fv .fv_price .btn {
	background: #f75c2f;
	font-size: 1.6rem;
	color: #fff;
	letter-spacing: -1px;
	padding: 10px 38px;
}

.fv .fv_price .btn:hover {
	background: #fff;
	color: #f75c2f;
}

.ie .fv .fv_price .btn {
	padding: 12px 38px 8px;
}

@media screen and (max-width: 1020px) {
	.fv .fv_price {
		padding: 0 5%;
	}
	
	.fv .txt {
		margin: 0;
	}
}
@media screen and (max-width: 767px) {
	.fv:after {
		content: none;
	}
	.fv .fv_logo {
		top: 76px;
		height: auto;
		width: 153px;
	}
	.fv .txt {
		top: 20%;
	}
	.fv .txt p {
		font-size: 1.2rem;
	}
	
	.fv .fv_price {
		bottom: 10px;
		padding: 0 5%;
		justify-content: center;
	}
	.fv .fv_price p span {
		margin-left: 0;
	}
	.fv .fv_price .btn {
		white-space: nowrap;
	}
}
@media screen and (max-width: 480px) {
	.fv .txt {
		right: 0;
		left: 0;
		margin: 0 auto;
		display: inline-block;
		top: 270px;
		text-align: center;
	}
	.fv .txt p {
		font-size: 1.6rem;
		display: inline-block;
	}
	.fv .fv_price {
		bottom: 20px;
	}
	.fv .fv_price p {
		margin-right: 0;
		text-align: center;
	}
	.fv .fv_price .btn {
		padding: 20px 10%;
	}
}

@media screen and (max-width: 480px) and (max-height: 620px) {
	.fv .fv_logo {
		top: 50px;
	}
	.fv .txt {
		top:220px;
	}
	.fv .txt p {
		font-size: 1.2rem;
		letter-spacing: 3px;
	}
	.fv .fv_price .btn {
		padding: 10px 5%;
	}
}


/*stay*/
.stay {
	background: url("../images/bg_lead.png") no-repeat right -33px top 45px;
	background-size: auto 75%;
	padding: 100px 0;
	margin: 0 auto;
}

.stay .img {
	width: 50%;
}
.stay .img img {
	width: 100%;
}

@media screen and (max-width: 1200px) {
	.stay .img {
		width: 55%;
	}
}

.stay .inner {
	position: relative;
}

.stay .txt {
	position: absolute;
	right: 3%;
	
 	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	height: 450px;
}

.stay .txt .ttl {
	font-size: 2rem;
	margin-left: 30px;
}

.stay .txt p {
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
	line-height: 2.5;	
	margin-left: 30px;
}


@media screen and (max-width: 980px) {
	.stay .inner {
		padding: 0 5%;
		text-align: center;
	}
	.stay {
		background: url("../images/bg_lead.png") no-repeat center 40px;
		background-size: 280px;
		padding: 100px 0;
		margin: 0 auto;
	}
	
	.stay .txt {
		position: static;
		height: initial;
		display: inline-block;
		margin: 0 0 40px;
		white-space: nowrap;
		width: auto;
	}
	.stay .img {
		width: 100%;
	}
	.stay .img img {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.stay {
		padding-bottom: 50px;
	}
	.stay .txt .ttl {
		margin-left: 10px;
	}
	.stay .txt p {
		margin: 0;
		line-height: 2.3;
		letter-spacing: 0.5px;
	}
}

.photo_list li {
	margin: 0 2% 20px 0;
	transition:0.5s;
	width: 32%;
}

.photo_list li:nth-child(3n) {
	margin-right: 0;
}

.photo_list li:nth-child(n + 10) {
	opacity: 0;
	height: 0;
	margin-bottom: 0;
}

.photo_list.show li:nth-child(n + 10) {
	opacity: 1;
	margin-bottom: 20px;
	height: auto;
}

.photo_more {
	cursor: pointer;
	margin-top: 20px;
	text-align: center;
	transition: 0.3s;
	position: relative;
	z-index: 10;
}

.photo_more:hover {
	opacity: 0.8;
}

.photo_more p {
	font-size: 1.6rem;
	margin-top: 10px;
	text-align: center;
}

.photo_list.show + .photo_more {
	display: none;
}

@media screen and (max-width: 767px) {
	.photo_list li {
		margin-right: 0;
		width: 100%;
	}
	.photo_list li:nth-child(n + 10) {
		opacity: 1;
		height: auto;
		margin-bottom: 20;
	}
	.photo_list li:nth-child(n + 5) {
		opacity: 0;
		height: 0;
		margin-bottom: 0;
	}

	.photo_list.show li:nth-child(n + 5) {
		opacity: 1;
		margin-bottom: 20px;
		height: auto;
	}
	.photo_more {
		margin-top: 10px;
	}
}

.movie {
  max-width: 1000px;
  margin: 0 auto;
}
.movie div{
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
  margin: 70px auto;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.information {
	margin: 70px 0;
	text-align: center;
}

.info_box {
	border: 2px solid #F75C2F;
	margin: 80px auto 0;
	max-width: 840px;
	padding: 12px 30px;
}

.info_box .ttl {
	border-bottom: 2px solid #F75C2F;
	font-size: 1.4rem;

	padding-bottom: 20px;
	text-align: center;
}
.info_box .ttl span{
	font-size: 3rem;
	letter-spacing: 2px;
}
.info_box .txt {
	margin: 35px 5% 25px;
}

.info_box .flex {
	align-items: flex-start;
}
.info_box ul {
	margin: 0 1% 0 0;
	width: 32%;
}
.info_box ul li {
	letter-spacing: -1px;
	margin: 0 0 5px 0;
}

.info_box ul li:before {
	content:'・';
	margin-right: 10px;
}

.info_box p {
	line-height: 2;
	letter-spacing: -0.5px;
}

.info_box + .info_box {
	margin-top: 45px;
}

@media screen and (max-width: 767px) {
	.information {
		margin: 60px 0 40px;
	}
	.info_box {
		margin: 62px auto 0;
		padding-bottom: 0;
	}
	.info_box ul {
		margin: 0 auto;
		width: 60%;
	}
	.info_box .txt {
		margin: 35px 0 25px;
	}
}


.faq {
	margin: 60px 0 0;
}

.faq .ttl {
	margin-bottom: 55px;
	text-align: center;
}
.faq .ttl span {
	color: #f75c2f;
	display: inline-block;
	font-size: 3rem;
	margin-bottom: 10px;
}

.faq .flex {
	align-items: flex-start;
}

.faq ul {
	max-width: 950px;
	margin: 0 auto;
}

.faq ul li {
	margin-right: 5%;
	width: 47.5%;
}

.faq li:nth-child(2n) {
	margin-right: 0;
}

.faq .subttl {
	background: #FDCEC1;
	font-size: 1.6rem;
	margin-bottom: 28px;
	padding: 8px 15px;
}

.ie .faq .subttl {
	padding: 12px 15px 6px;
}

.faq li {
	margin-bottom: 25px;
}

.faq li p {
	line-height: 2;
	letter-spacing: -0.5px;
}

@media screen and (max-width: 1100px) {
	.faq .subttl {
		font-size: 1.2rem;
	}
	.faq li p {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 767px) {
	.faq {
		margin-top: 50px;
	}
	.faq .ttl {
		margin-bottom: 30px;
	}
	.faq .ttl span {
		margin-bottom: 0;
	}
	.faq ul li {
		margin-bottom: 45px;
		width: 100%;
	}
	.faq .subttl {
		font-size: 1.6rem;
		letter-spacing: -1px;
		margin-bottom: 20px;
	}
	.faq li p {
		font-size: 1.35rem;
		letter-spacing: -1px;
	}
}


.access {
	margin: 50px 0 90px;
}

.access .ttl {
	margin-bottom: 35px;
	text-align: center;
}
.access .ttl span {
	color: #f75c2f;
	display: inline-block;
	font-size: 3rem;
	margin-bottom: 10px;
}

.access .map {
	border: none;
	height: 400px;
	width: 100%;
}
.access .flex {
	align-items: flex-start;
	max-width: 950px;
	margin: 50px auto 0;
}

.access .flex .address {
	width: 45%;
	margin-right: 5%;
}

.access .flex .address .subttl {
	font-size: 1.8rem;
	letter-spacing: -0.5px;
	margin-bottom: 35px;
}

.access .flex .address p {
	font-size: 1.5rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

.access .flex .way {
	max-width: 440px;
	padding-top: 15px;
	width: 50%;
}
.access .flex .way p {
	font-size: 1.35rem;
	letter-spacing: -0.5px;
	line-height: 1.8;
	padding-left: 30px;
	position: relative;
}

.access .flex .way p:before {
	content:'';
	display: block;
	position: absolute;
	left: 0;
}

.access .flex .way p.bus:before {
	background: url("../images/ico_bus.png") no-repeat;
	background-size: cover;
	height: 18px;
	width: 15px;
	top: -4px;
}

.access .flex .way p.car:before {
	background: url("../images/ico_car.png") no-repeat;
	background-size: cover;
	height: 15px;
	width: 20px;
	top: 0;
}

.access .flex .way p.bus {
	margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
	.access {
		margin-bottom: 76px;
	}
	.access .ttl {
		margin-bottom: 45px;
	}
	.access .ttl span {
		margin-bottom: 0;
	}
	.access .map {
		height: 230px;
	}
	.access .flex {
		margin-top: 30px;
	}
	.access .flex .address {
		width: 100%;
	}
	.access .flex .address .subttl {
		margin-bottom: 30px;
	}
	.access .flex .way {
		width: 100%;
	}
}

.reservation {
	background: #F75C2F;
	padding: 40px 0 76px;
}

.reservation .ttl {
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
}

.reservation .ttl span {
	display: inline-block;
	font-size: 3rem;
	margin-bottom: 10px;
}

.reservation .flex {
	align-items: flex-end;
	max-width: 745px;
	margin: 0 auto;
}

.reservation .flex p {
	color: #fff;
	letter-spacing: -1px;
	text-align: center;
}

.reservation .flex .web p {
	margin-bottom: 38px;
}

.reservation .flex .tel p {
	margin-bottom: 28px;
}

.reservation .flex .btn {
	border:1px solid #fff;
	color: #fff;
	display: block;
	font-size: 1.8rem;
	letter-spacing: 3px;
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
	width: 311px;
}
.reservation .flex .btn:hover {
	background: #fff;
	color: #F75C2F;
}

.ie .reservation .flex .btn {
	padding: 24px 0 16px;
}

@media screen and (max-width: 767px) {
	.reservation {
		padding-bottom: 50px;
	}
	.reservation .ttl {
		margin-bottom: 40px;
	}
	.reservation .ttl span {
		margin-bottom: 0;
	}
	
	.reservation .flex .btn {
		width: 100%;;
	}
	.reservation .flex .web {
		margin-bottom: 30px;
	}
	.reservation .flex .web p {
	}
	
}

.contact {
	margin: 60px 0 85px;
}

.contact .ttl {
	margin-bottom: 30px;
	text-align: center;
}
.contact .ttl span {
	color: #f75c2f;
	display: inline-block;
	font-size: 3rem;
	margin-bottom: 10px;
}

/*ios reset*/

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
 display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
 outline-offset: -2px;
}
/*original*/

input[type="text"], input[type="email"], input[type="tel"] {
	border: 1px solid #e6e6e6;
	border-radius: 0;
	color: #000;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 1.4rem;
	padding : 12px;
	width: 100%;
}
textarea {
	border-radius: 0;
	color: #000;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	padding : 12px;
	height: 200px;
	resize: vertical;
	width: 100%;
}

_:-ms-input-placeholder, :root input, _:-ms-input-placeholder, :root textarea {
	font-family: Verdana,Arial,"メイリオ",Meiryo,"ＭＳ Ｐゴシック";
}

 input::placeholder, textarea::placeholder {
 color: #808080;
 font-weight: normal;
}

@media screen and (max-width : 768px) {
	input[type="text"], input[type="email"], input[type="tel"] {
		padding : 10px 15px;
	}
}

.form {
	max-width: 590px;
	margin: 0 auto;
}

.form table {
	width: 100%;
}
.form table th, .form table td {
	padding: 7px 0;
}
.form table th {
	font-size: 1.4rem;
	letter-spacing: -1px;
	vertical-align: top;
}

.form table th span {
	color: #F75C2F;
}

.form table td {
	width: 450px;
}

.form input, .form textarea {
	background: #FEEFEA;
	border: none;
	outline:none;
	padding: 12px 10px;
	width: 100%;
}

.form textarea {
	height: 130px;
}

.form .note {
	font-size: 1.2rem;
	text-align: right;
}

.form .note span {
	color: #F75C2F;
}

.contact .btnwrap {
	display: flex;
	justify-content: center;
	margin: 20px 0;
	text-align: center;
}

.contact .btnwrap .btn {
	background: #fff;
	border: 1px solid #F75C2F;
	color: #F75C2F;
	letter-spacing: 3px;
	padding: 10px 17px 8px;
	width: auto;
	transition: 0.3s;
}


.contact .btnwrap .btn:hover {
	background: #F75C2F;
	color: #fff;
}
.contact .btnwrap .btn.back:hover {
	background: #333;
	color: #fff;
}


@media screen and (max-width: 767px) {
	.contact {
		margin: 50px 0 40px;
	}

	.contact .ttl span {
		margin-bottom: 0;
	}

	.form table th, .form table td {
		display: block;
		padding: 0 0 5px;
	}
	.form table td {
		width: 100%;
	}
}

/*confirm*/
.confirm .contact {
	margin: 0;
	padding: 150px 0;
}

.confirm .form table td {
	padding-bottom: 40px;
}

.contact .btnwrap .btn.back {
	border: 1px solid #333;
	color: #333;
	margin-right: 10px;
}

@media screen and (max-width: 767px) {
	.confirm .contact {
		padding-top: 100px;
	}
}

/*finish*/
.finish .contact {
	margin: 0;
	padding: 150px 0 100px;
}

.finish .thanks {
	text-align: center;
}

.finish .contact .btnwrap {
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.finish .contact {
		padding: 100px 0;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  キャンペーン
* --------------------------------------------------------------------------------------------------*/
.campaign .info_box{
  max-width: 1000px;
  padding: 47px 43px 44px;
}
.campaign .img {
  width: 230px;
}
.campaign img {
  max-width: 230px;
  height: auto;
}
.campaign .text {
  padding-left: 45px;
  width: 100%;
  flex: 1;
}
.campaign .ttl {
  color: #F75C2F;
  text-align: left;
  font-size: 2.5rem;
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.campaign a {
  color: #F75C2F;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .campaign .info_box{
    padding: 47px 30px 44px;
  }
	.campaign .img {
		width: 100%;
    text-align: center;
	}
  .campaign .text {
    padding-left: 0;
    padding-top: 43px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  フッタ
* --------------------------------------------------------------------------------------------------*/

#footer {
	background: url("../images/bg_footer.png") no-repeat;
	background-size: cover;
	height: 400px;
	padding: 68px 0;
}

.footer_logo {
	margin-bottom: 53px;
	width: 106px;
}

.footer_info {
	color: #fff;
	line-height: 1.7;
}

.footer_info a {
	color: #fff;
}

@media screen and (max-width: 767px) {
	#footer {
		background: url(../images/bg_footer_sp.png) no-repeat right top;
		background-size: cover;
		height: auto;
		min-height: 310px;
		padding: 44px 0 20px;
	}
	.footer_logo {
		margin-bottom: 23px;
	}
	.footer_info {
		letter-spacing: 0px;
		line-height: 1.7;
	}
}

/* ------------------------------
    汎用アイテム
------------------------------ */

.lora {
	font-family: 'Lora', serif;
}

.flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.flex.bw {
	justify-content: space-between;
}
.flex.cnt {
	justify-content: center;
}
.flex.fdr {
	flex-direction: column-reverse;	
}

@media screen and (max-width: 767px) {
	.flex {
		display: block;
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */


/* ------------------------------
    sp/pc
------------------------------ */

@media screen and (min-width:768px) {
.sp {
	display: none!important;
}
}

@media screen and (max-width:767px) {
.pc {
	display: none!important;
}
}
