﻿@charset UTF-8;
/* ================================================ */
/*               全体設定                */
/* ================================================ */

/* ================================================ */
/* こまめにどこの作業分か書いていく！ */
/* ================================================ */

* {
	box-sizing: border-box;
	text-decoration: none;
}

body {
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 14px;
	font-weight: bold;
	color: #10345b;
	margin: 0 auto;
	background: #fff;
}

/*ファーストビューフェードイン*/
.fade {
	animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn { /*animetion-nameで設定した値を書く*/

 	0% {opacity: 0} /*アニメーション開始時は不透明度0%*/

 	100% {opacity: 1} /*アニメーション終了時は不透明度100%*/

}

/*下からふわっと表示させる*/
.fadeInUp {
	opacity : 0;
	transform: translateY(50px);
	transition: 1.5s;
}

/* ================================================ */
/*MV*/
/* ================================================ */

.top-wrapper {
	position: relative;
    width: 100%;
    height: auto;
}

.top_inner {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}

.top-container {
	max-width: 1000px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

.top-title {
	display: inline-block;
	position: absolute;
	top: 50%;
  	left: 50%;
  	transform: translateY(-50%) translateX(-50%);
  	-webkit- transform: translateY(-50%) translateX(-50%);
  	-ms-transform: translateY(-50%) translateX(-50%);
  	-moz-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
  	margin: auto;
	position: relative;
}

.top-title h1 {
	font-size: 28.5px;
	font-weight: bold;
	letter-spacing:2px;
	color: #fff;
	position: absolute; /*タイトル「恋を始める街、川越」の位置調整*/
	top: 65%;
	left: 25.5%;
}


/* ================================================ */
/*ヘッダー*/
/* ================================================ */

nav {
	max-width: 1000px;
	margin: 0 auto;
}

.header_nav {
	padding: 0 10px 22px;
}

.gnavi {
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.gnavi_li1 {
	border-left: solid 1px #f2f0f1;
}

.gnavi_li {
	border-right: solid 1px #f2f0f1;
	width: 100%;
}

.gnavi a {
	color: #10345b;
	display: block;
	transition: all 0.5s;
}

.gnavi a:hover {
	opacity: 0.7;
}

.gnavi_p {
	padding-top: 15px;
}

/*途中で入れ替わるヘッダー*/
.header2 {
	background: #fff;
	border-bottom: solid 2px #f2f0f1;
	position: fixed;
	top: -53px;
	z-index: 10;
	width: 100%;
	transition: 0.5s;
}

.show{
	z-index: 10;
    top: 0;
}

.change_header_nav {
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
}

.change_header_img {
	width: 180px;
}

.change_gnavi {
	display: flex;
	text-align: center;
}

.change_gnavi_li1 {
	border-left: solid 1px #f2f0f1;
}

.change_gnavi_li {
	border-right: solid 1px #f2f0f1;
	width: 100px;
}

.change_gnavi_li img {
	height: 25px;
	padding-bottom: 5px;
}

.change_gnavi a {
	color: #10345b;
	display: block;
	transition: all 0.5s;
}

.change_gnavi a:hover {
	opacity: 0.7;
}

/* ================================================ */
/*メインコンテンツ*/
/* ================================================ */

.main_wrapper {
	background: #f2f0f1;
	line-height: 2;
	padding-bottom: 1px;
	position: relative;
	min-height: 1340px;
}

/*背景の花模様*/
.flower1 {
	position: absolute;
	top: 12%;
	left: -2%;
}

.flower1 img {
	width: 70%;
}

.flower2 {
	position: absolute;
	top: 35%;
	right: 0%;
}

.flower3 {
	position: absolute;
	bottom: 20%;
	left: 0%;
}

.flower4 {
	position: absolute;
	bottom: -3%;
	right: 0%;
}

.main_container {
	max-width: 1000px;
	margin: 0 auto;
}

/* ================================================ */
/*ディスクリプション*/
/* ================================================ */

.description {
	padding: 8% 0;
	text-align: center;
	position: relative;
}

.description p {
	width: 100%;
	font-size: 15px;
	position: absolute;
	top: 55%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  	-webkit- transform: translateY(-50%) translateX(-50%);
  	-ms-transform: translateY(-50%) translateX(-50%);
  	-moz-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
}

/* ================================================ */
/*コンテンツ*/
/* ================================================ */

.main_contents {
	padding: 0 10px;
}

/*スポットだけmarginを変えてる*/
.content1 {
    margin: 3% 0 15% 0;
}

.content {
	position: relative;
    width: 100%;
    height: auto;
    margin: 15% 0;
}

.content_box:before {
	content: "";
    display: block;
    padding-top: 38%;
}

.content_inner {
	position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.content_img {
    position: absolute;
    right: 0;
    width: 60%;
}

.content_img img {
	width: 100%;
}

.text_content {
	background: #fbdde1;
    width: 50%;
    height: 80%;
    align-self: center;
    z-index: 2;
    display: flex;
	justify-content: center;
 	align-items: center;
}

.content_title {
	display: inline-block;
	position: relative;
}

.content_title h2 {
	font-size: 22px;
}

/*コンテンツタイトルの文字位置*/
.content_title_h2_1 {
	position: absolute;
	top: -11px;
	left: 35px;
}

.content_title_h2_2 {
	position: absolute;
	top: -11px;
	left: 32px;
}

.content_title_h2_3 {
	position: absolute;
	top: -11px;
	left: 38px;
}

.text_content p {
	padding: 5% 0 3% 0;
}

.btn_more {
	font-family: copperplate,serif;
	font-weight: 700;
	font-style: normal;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #fff;
	background: #9893a7;
	padding: 10px 65px 10px 50px;
	border-radius: 10px;
	transition: all 0.5s;
	position: relative;
}

.btn_more:after {
	content: url(images/MORE_icon.png);
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 8px;
	right: 45px;
}

.btn_more:hover {
	opacity: 0.7;
}

/*グルメだけ並びを変えてる*/
.content_inner2 {
	position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.content_img2 {
    position: absolute;
    left: 0;
    width: 60%;
}

.content_img2 img {
	width: 100%;
}

/*イベント文言改行*/
	.break2:before {
		content: "\A";
		white-space: pre;
	}

/* ================================================ */
/*アクセス*/
/* ================================================ */

.access_container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	padding: 60px 0 80px;
}

.access_content_title {
	display: inline-block;
	position: relative;
}

.access_content_title h2 {
	font-size: 22px;
	position: absolute;
	top: 5%;
	left: 18%;
}

.access_text_content p {
	font-size: 15px;
	line-height: 2;
	padding: 3% 0 2% 0;
}

.access_btn_more {
	font-family: copperplate,serif;
	font-weight: 700;
	font-style: normal;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #fff;
	background: #9893a7;
	padding: 10px 65px 10px 50px;
	border-radius: 10px;
	transition: all 0.5s;
	position: relative;
}

.access_btn_more:after {
	content: url(images/MORE_icon.png);
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 10px;
	right: 45px;
}

.access_btn_more:hover {
	opacity: 0.7;
}

.access_image {
	padding: 10% 0 0;
}

/* ================================================ */
/*フッター*/
/* ================================================ */

footer {
	background: #fbdde1;
	padding: 8% 0 2%;
}

.footer_container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
}

.footer_sitlogo {
	display: none;
}

/*フッターメニュー*/

.footer_menu ul {
	font-size: 12px;
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.footer_menu li {
	width: 100%;
}

.footer_menu_li {
	border-right: solid 1px #5a5e66;
}

.footer_menu a {
	display: block;
	color: #5a5e66;
	transition: all 0.5s;
}

.footer_menu a:hover {
	opacity: 0.7;
}

/*snsシェアボタン*/
.sns_btn  {
	padding-top: 50px;
	transition: all 0.5s;
}

.sns_btn p {
	font-family: copperplate,serif;
	font-weight: 700;
	font-style: normal;
	font-size: 10px;
	letter-spacing: 0.1em;
	color: #5a5e66;
	text-align: center;
}

.sns_btn a {
	transition: all 0.5s;
}

.sns_btn a:hover {
	opacity: 0.7;
}

.sns_btn ul {
	display: flex;
	justify-content: center;
	padding-top: 10px;
}

.tw {
	padding-right: 20px;
}

/*ページトップボタン*/
.pagetop_btn {
	height: 0px;
}

.pagetop_btn:hover {
	opacity: 0.7;
}

.pagetop_container {
	display: inline-block;
	position: relative;
}

.pagetop_link {
	position: fixed;
	right: 10px;
	bottom: 10px;
}

.pagetop_btn p {
	font-family: copperplate,serif;
	font-weight: 700;
	font-style: normal;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.1;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 38%;
	left: 24%;
}

/* ================================================ */
/*レスポンシブ　タブレット*/
/* ================================================ */

@media screen and (max-width: 800px) {
	
	/*タイトルを小さく*/
	.top-title {
		left: 55%;
	}	

	.top-title img {
		width: 80%;
	}
	.top-title h1 {
		font-size: 22px;
		left: 21%;
	}
	
	/*グロナビ調整*/
	.gnavi_li img {
		height: 25px;
	}

	.gnavi_p {
		padding-top: 10px;
	}

	.header_nav {
		padding-bottom: 10px;
	}

	/*グロナビ、フッター文言改行*/
	.break:before {
		content: "\A";
		white-space: pre;
	}

	/*途中で入れ替わるヘッダー*/
	.change_header_img {
		width: 150px;
	}

	/*ディスクリプション、アクセス文字サイズ小さく*/
	.description p,.access_text_content p {
		font-size: 14px;
	}

	/*背景の花模様*/
	.flower1 {
		position: absolute;
		top: 9%;
		left: -2%;
	}

	.flower1 img {
		width: 40%;
	}

	.flower2 {
		position: absolute;
		top: 35%;
		right: 0%;
	}

	.flower2 img {
		width: 150px;
	}

	.flower3 {
		position: absolute;
		bottom: 25%;
		left: 0%;
	}

	.flower3 img {
		width: 60%;
	}

	.flower4 {
		position: absolute;
		bottom: -1%;
		right: 0%;
	}

	.flower4 img {
		width: 200px;
	}

	/*メインコンテンツ並び替え*/
	.content_box:before {
    	padding-top: 80%;
	}

	.content_img {
		right: 10%;
		width: 80%;
	}

	.text_content {
		text-align: center;
		position: absolute;
		top: 60%;
		right: 17%;
		width: 65%;
		height: 45%;
		max-height: 250px;
	}

	.content_img2 {
		left: 10%;
		width: 80%;
	}

	.text_content2 {
		position: absolute;
		top: 60%;
		right: 17%;
		width: 65%;
		height: 45%;
	}

	/*hover解除*/
	.gnavi a:hover,.change_gnavi a:hover,.btn_more:hover,.footer_menu a:hover,.sns_btn a:hover,.pagetop_btn:hover {
		opacity: 1;
	}
	
	/*ボタンタップ時に変化*/
	.gnavi a:active,.change_gnavi a:active,.btn_more:active,.footer_menu a:active,.sns_btn a:active,.pagetop_btn:active {
		opacity: 0.7;
	}

	/*アクセス画像小さく*/
	.access_image img {
		width: 70%;
	}
}

/* ================================================ */
/*レスポンシブ　スマホ*/
/* ================================================ */

@media screen and (max-width: 580px) {
	p {
		font-size: 12px;
	}

	/*タイトルを小さく*/
	.top-title {
		left: 50%;
	}	

	.top-title img {
		width: 240px;
	}

	.top-title h1 {
		font-size: 16.4px;
		left: 26.1%;
	}

	/*ヘッダー2段に*/
	.header_nav {
		padding-bottom: 5px;
	}

	.gnavi {
		flex-wrap: wrap;
	}

	.gnavi_li {
		width: 50%;
		border: none;
	}

	.gnavi_li2 {
		padding-bottom: 5px;
		border-right: solid 1px #f2f0f1;
		border-bottom: solid 1px #f2f0f1;
	}

	.gnavi_li3 {
		padding-bottom: 5px;
		border-bottom: solid 1px #f2f0f1;
	}

	.gnavi_li4 {
		padding-top: 5px;
		border-right: solid 1px #f2f0f1;
	}

	.gnavi_li5 {
		padding-top: 5px;
	}

	.gnavi_li img {
		height: 20px;
	}

	.gnavi_p {
		padding-top: 3px;
	}

	/*文言改行取る*/
	.break:before {
		content: "";
	}

	/*途中で入れ替わるヘッダー*/
	.header2 {
		background: #fff;
		top: initial;
		bottom: -53px;
		border-top: solid 1px #f2f0f1;
		border-bottom: none;
	}

	.show {
		bottom: 0;
	}

	.change_header_nav {
		display: block;
	}

	.change_header_img {
		display: none;
	}

	.change_gnavi {
		justify-content: space-between;
	}

	.change_gnavi_li {
		width: 100%;
		border-right: none;
		border-left: solid 1px #f2f0f1;
	}

	.change_gnavi_li img {
		height: 23px;
	}

	.change_gnavi_li1 {
		border-left: none;
	}

	/*ディスクリプション*/
	.description {
		height: 150px;
	}

	.description p,.access_text_content p {
		font-size: 12px;
	}

	.description img,.flowers {
		display: none;
	}

	/*メインコンテンツ調整*/
	.content_box:before {
    	padding-top: 110%;
	}

	.text_content {
		padding: 5px;
		top: 55%;
		right: 5%;
		width: 90%;
		height: 50%;
		max-height: 200px;
		min-height: 170px;
	}

	.content_img {
		right: 0%;
		width: 100%;
	}

	.content_title h2 {
		font-size: 16px;
	}

	/*各コンテンツタイトル個別調整*/
	.content_title_img1 {
		width: 230px;
	}

	.content_title_img2 {
		width: 210px;
	}

	.content_title_img3 {
		width: 250px;	
	}

	/*コンテンツタイトルの文字位置*/
	.content_title_h2_1 {
		top: -8px;
		left: 30px;
	}

	.content_title_h2_2 {
		top: -9px;
		left: 27px;
	}

	.content_title_h2_3 {
		top: -8px;
		left: 32px;
	}

	/*グルメだけ別調整*/
	.content_img2 {
		left: 0%;
		width: 100%;
	}

	/*イベント改行取る*/
	.break2:before {
		content: "";
	}

	/*アクセス*/
	.access_btn {
		margin-top: 10px;
	}

	.access_content_title h2 {
		font-size: 18px;
		left: 24%;
	}

	.access_content_title img {
		width: 80%;
	}

	/*アクセス画像小さく*/
	.access_image img {
		width: 80%;
	}

	/*フッター*/
	footer {
		padding-top: 5%;
		background: #fff;
	}

	.footer_sitlogo {
		display: block;
		text-align: center;
		padding-bottom: 30px;
	}

	.footer_sitlogo img {
		width: 150px;
	}

	.footer_menu {
		display: none;
	}

	.sns_btn {
		padding: 0 0 50px;
	}

	.sns_btn img {
		width: 35px;
	}

	.pagetop_container img {
		width: 50px;
	}

	.pagetop_link {
		bottom: 55px;
	}

	.pagetop_btn p {
		font-size: 10px;
		top: 37%;
		left: 20%;
	}
}