@charset "utf-8";

/*
	伊達市観光WEBアプリ。　共通CSS

	create	20260128-

*/

/* ----- import ----- */
@import url("import_html5reset-1.6.1.css") all;		/* リセット */
@import url("import_text.css") all;		/* テキスト */


/* ----- 基本カラー設定 ----- */
:root {
	--body-bgcolor: #FFFFFF;
	--text-color: #000000;
	--block-bgGray: #ECECEC;
	--menu-bgcolor: rgba(148,151,75,0.96); /* スマホ用 */

	/* カテゴリカラー */
	--cat-miru: #BBD200;
	--cat-taberu: #F4B6C3;
	--cat-asobu: #ED7425;
	--cat-kau: #E84665;
	--cat-tomaru: #2E7EC0;
	--cat-kurasi: #2E2EC0;
}

/* ----- 共通 ----- */
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: var(--body-bgColor);
	color: var(--text-color);
	-webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
	box-sizing: border-box;
}
a:hover {
	color: #FF3300;
}
::placeholder {
	color: #ccc;
}



/* ------------------------------
	回り込み解除
------------------------------ */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */

.clearboth {	clear: both; }


/* ------------------------------
	工事中
------------------------------ */
.underConstruction {
	width: 100%;
	padding: 118px 0!important;
	text-align: center!important;
}
.underConstruction > span {
	font-size: 3.2rem;
	margin: 0 0 18px;
	display: block;
}
.underConstructionHead {
	color: #104B87;
	font-size: 1.6rem;
	font-weight: bold;
	width: 100%;
	margin: 0 auto 15px;
	text-align: left;
	padding: 15px;
	background-color: #fff;
	border-radius: 8px;
}



/* ------------------------------
	データなし
------------------------------ */
.nodata {
	width: 100%;
	line-height: 2;
	text-align: center;
	padding: 100px 0;
}



/* ------------------------------
	アイコン
------------------------------ */
.icon_img {
	vertical-align: middle;
	margin: 0px 0px 0px 5px;
	padding: 0px;
	border: 0px;
}
.tipped {color: #ccc;}



/* ------------------------------
	ローディングぐるぐる
------------------------------ */
.loading {
	margin: 0px auto;
	padding: 55px 0;
	width: 32px;
	background: url(../img/loading.gif) no-repeat 0px 40px;
	height: 32px;
}


/* ------------------------------
	色設定
------------------------------ */
.inputError {
	background-color: #ffedf8;
	border: 1px solid #f00;
}
.fa-file-pdf {
	color: #bc1d07;
}
.fa-file-word {
	color: #103f91;
}
.fa-file-excel {
	color: #185c37;
}
.fa-file-archive {
	color: #000;
}
.fa-file-powerpoint{
	color: #d35230;
}
.fa-volume-high { color: #9093a1; }
.fa-podcast { color: #893289; }


/* ------------------------------
	スクロールバー
------------------------------ */
/*スクロールバー全体*/
::-webkit-scrollbar {
	width: 10px;
}
/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 50, .5);
	border-radius: 10px;
	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}



/* ---------------------------------------------------------
	約320px未満の画面向けスタイル モバイルファースト
--------------------------------------------------------- */

/* header
------------------------------ */
header {
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 10px;
	text-align: left;
	background-color: rgba(255, 255, 255, 0.9);
/*
	position: fixed;
	top: 0;
	left: 0;
*/
	z-index: 98;
}
header .mainLogo {
	width: 122px;
	float: left;
}
header .mainLogo h1 a img {
	width: 100%;
}
header .menuBtn {
	color: #333333;
	font-size: 22px;
	text-align: center;
	width: 44px;
	height: 44px;
	padding: 12px 0 0;
	background-color: #eee;
	border-radius: 2px;
	position: fixed;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 99;
}
header .naviBlock {
	display: none;
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 88px 0 0 0;
	width: 100%;
	height: 100%;
	background-color: var(--menu-bgcolor);
	overflow: scroll;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
	z-index: 88;
}
header .naviBlock figure.headLogo {
	width: 222px;
	margin: 0 auto 50px;
}
header .naviBlock figure.headLogo img {
	width: 100%;
}
header .naviBlock .menuBlock{
	width: 180px;
	margin: 0 auto;
}
header .naviBlock .menuBlock ul {
	list-style: none;
}
header .naviBlock .menuBlock li {
	text-align: left;
	margin: 0 0 30px;
}
header .naviBlock .menuBlock li a {
	color: #fff;
	font-size: 1.6rem;
	text-decoration: none;
}
header .naviBlock .menuBlock li a span:first-of-type {
	text-align: right;
	width: 50px;
	margin: 0 22px 0 0;
	display: inline-block;
}
header .naviBlock.naviOpen {
	display: block;
}
header .spMenu {
	color: #999;
	width: 100%;
	height: 80px;
	margin: 0;
	padding: 0;
	background-color: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999;
}
header .spMenu ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
}
header .spMenu ul li {
	width: 20%;
}
header .spMenu ul li a {
	color: #999999;
	font-size: 1.4rem;
	text-align: center;
	text-decoration: none;
	width: 100%;
	height: 80px;
	margin: 0;
	padding: 16px 0;
	display: block;
}
header .spMenu ul li a i {
	font-size: 2.2rem;
}
header .spMenu ul li a span {
	margin: 8px 0 0 0;
	display: block;
}
header .spMenu ul li.select a {
	color: #988849;
	font-weight: bold;
}



/* main
------------------------------ */
main {
	width: 100%;
	margin: 0;
	padding: 0;
}



/* footer
---------------------------------------- */
footer {
	color: #fff;
	margin: 0;
	padding: 80px 15px;
	background-image: url(../img/footer_Bg.png);
	background-position: center top;
	background-repeat: repeat;
	position: relative;
	z-index: 4;
}
footer .cityBgBlock {
	width: 100%;
	height: 60px;
	background-image: url(../img/bgYama_spring.svg);
	background-repeat: repeat-x;
	background-position: bottom center;
	background-size: cover;
	position: absolute;
	top: -58px;
	left: 0;
	z-index: 2;
}
footer .cityBgBlock .city {
	width: 100%;
	height: 50px;
	margin-top: 14px;
	background-image: url(../img/bgCity_spring.svg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	position: initial;
	z-index: 3;
}
footer .footerLogo {
	width: 222px;
	margin: 0 auto 50px;
}
footer .footerLogo img {
	width: 100%;
}
footer .footerMenu {
	width: 100%;
	margin: 0 auto 30px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
footer .footerMenu ul {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
}
footer .footerMenu ul li {
	width: 50%;
}
footer .footerMenu ul li a {
	color: #fff;
	font-size: 1.6rem;
	text-decoration: none;
	width: 100%;
	margin: 0;
	padding: 15px 0;
	display: block;
}
footer .company {
	margin: 0;
}
footer .company h3 {
	font-size: 1.8rem;
	margin-bottom: 25px;
}
footer .company .address {
	font-size: 1.4rem;
}
footer .company .address span {
	margin-top: 10px;
	display: block;
}
copyright {
	color: #000;
	margin: 0;
	padding: 15px 0;
	background-color: #fff;
	display: block;
}

/* パンくず
---------------------------------------- */
.pankuzu {
	width: 100%;
	color: #333;
	margin: 0;
	padding: 15px 0;
	background-color: #F0F0F0;
}
.pankuzu ul {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
	padding: 0 10px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.pankuzu ul li {
	display: none;
}
.pankuzu ul li:nth-last-of-type(3) {
	display: none;
}
.pankuzu ul li:nth-last-of-type(2) {
	display: block;
	width: 30px;
}
.pankuzu ul li:nth-last-of-type(2) span {
	display: none;
}
.pankuzu ul li:last-of-type {
	width: calc(100% - 50px);
	margin: 0;
	padding: 0;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}
.pankuzu ul li:last-of-type {
	width: calc(100% - 50px);
	margin: 0;
	padding: 0;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}



/* ----- .btnTop ----- */
.btnTop {
	position: fixed;
	bottom: 99px;
	right: 15px;
	z-index: 999;
}
.btnTop a {
	width: 48px;
	display: block;
	float: right;
	transition: all 0.3s;
}
.btnTop a img {
	width: 100%;
}
.btnTop a:hover {
	transform: rotateY(-360deg);
}



@media screen and (min-width: 370px){
	/*	約370px以上の画面向けスタイル */

}



@media screen and (min-width: 560px){
	/*	約560px以上の画面向けスタイル */

	/* パンくず
	---------------------------------------- */
	.pankuzu {
		padding: 20px;
	}

	/* main
	------------------------------ */
}



@media screen and (min-width: 740px){
	/*	約740px以上の画面向けスタイル second tablet */

	/* header
	------------------------------ */

	/* main
	------------------------------ */

	/* footer
	------------------------------ */
	footer .cityBgBlock {
		height: 68px;
	}
	footer .cityBgBlock .city {
		margin-top: 22px;
	}
	footer .footerLogo {
		width: 272px;
	}
	footer .footerMenu ul li {
		width: 25%;
	}
	footer .company h3 {
		font-size: 2rem;
	}
	footer .company .address {
		font-size: 1.6rem;
	}
}



@media screen and (min-width: 980px){
	/*	約980px以上の画面向けスタイル */

	/* header
	------------------------------ */
	header {
		width: 100%;
	}
	header .spMenu {
		display: none;
	}
	header .menuBtn {
		display: none;
	}
	header .naviBlock {
		width: auto;
		height: auto;
		padding: 30px 22px 0px 38px;
		display: inline-block;
		background-color: rgba(255,255,255,0.77);
		position: static;
		border-radius: 28px 0 0 28px;
		float: right;
		display: inline-block;
		overflow: hidden;
	}
	header .naviBlock figure.headLogo {
		display: none;
	}
	header .naviBlock .menuBlock {
		width: auto;
	}
	header .naviBlock .menuBlock ul {
		display: flex;
		justify-content: right;
		gap: 20px;
	}
	header .naviBlock .menuBlock ul li {
		text-align: center;
		margin: 0;
	}
	header .naviBlock .menuBlock ul li a {
		color: #000;
		padding: 5px 0 5px;
		display: block;
	}
	header .naviBlock .menuBlock ul li.select a {
		font-weight: bold;
		padding: 5px 0 3px;
		border-bottom: 3px solid #000;
	}
	header .naviBlock .menuBlock li a span:first-of-type {
		display: none;
	}
	header .naviBlock .menuBlock li:nth-child(7) a span:first-of-type,
	header .naviBlock .menuBlock li:nth-child(8) a span:first-of-type,
	header .naviBlock .menuBlock li:nth-child(9) a span:first-of-type {
		width: auto;
		margin: 0;
		display: block;
	}
	header .naviBlock .menuBlock li:nth-child(7) a span:last-of-type,
	header .naviBlock .menuBlock li:nth-child(8) a span:last-of-type,
	header .naviBlock .menuBlock li:nth-child(9) a span:last-of-type {
		display: none;
	}

	/* パンくず
	---------------------------------------- */
	.pankuzu {
		padding: 12px calc(50% - 520px);
	}
	.pankuzu ul {
		width: calc(100% - 260px);
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.pankuzu ul li {
		font-size: 1.4rem;
		line-height: 1.3;
		text-align: left;
		margin-left: 5px;
		margin-right: 5px;
		display: block;
	}
	.pankuzu ul li:after {
		content: "　>";
	}
	.pankuzu ul li:last-of-type:after {
		content: "";
	}
	.pankuzu ul li:nth-last-of-type(3) {
		display: inline-block;
	}
	.pankuzu ul li:nth-last-of-type(3) span {
		display: inline-block;
	}
	.pankuzu ul li:nth-last-of-type(3) i {
		display: none;
	}
	.pankuzu ul li:nth-last-of-type(2) {
		display: block;
		width: auto;
	}
	.pankuzu ul li:nth-last-of-type(2) i {
		display: none;
	}
	.pankuzu ul li:nth-last-of-type(2) span {
		display: inline-block;
	}
	.pankuzu ul li:first-of-type {
		display: inline-block;
	}
	.pankuzu ul li:first-of-type i {
		display: inline-block;
	}
	.pankuzu ul li:last-of-type {
		display: block;
		width: auto;
		margin: 0 0 0 10px;
		padding: 0;
		overflow: hidden;
		white-space: nowrap;
		-o-text-overflow: ellipsis;
		   text-overflow: ellipsis;
	}

	/* main
	------------------------------ */

	/* footer
	------------------------------ */
	footer {
		padding: 100px 0;
	}
	footer .cityBgBlock {
		height: 80px;
		background-size: contain;
	}
	footer .cityBgBlock .city {
		height: 63px;
		margin-top: 23px;
		background-size: contain;
	}
	footer .footerLogo {
		width: 333px;
	}
	footer .footerMenu {
		width: auto;
		padding: 0 20px;
		display: inline-block;
	}
	footer .footerMenu ul {
		justify-content: center;
		flex-wrap: nowrap;
		gap: 20px;
	}
	footer .footerMenu ul li {
		width: auto;
	}
	footer .footerMenu ul li a {
		padding: 5px 0;
	}
	footer .footerMenu ul li a:hover {
		padding: 5px 0 3px;
		border-bottom: 2px solid #fff;
	}
	footer .company h3 {
		font-size: 2.2rem;
	}
	footer .company .address {
		font-size: 1.6rem;
	}

	/* トップに戻るボタン */
	.btnTop {
		bottom: 83px;
		right: 38px;
	}
	.btnTop a {
		width: 66px;
	}
}



@media screen and (min-width: 1200px){
	/*	約1200px以上の画面向けスタイル */

	/* パンくず
	---------------------------------------- */
	.pankuzu {
		padding: 15px;
	}

	/* header
	------------------------------ */

	/* main
	------------------------------ */

	/* footer
	------------------------------ */

}



@media screen and (min-width: 1600px){
	/*	約1600px以上の画面向けスタイル */

	/* header
	------------------------------ */

	/* main
	------------------------------ */

	/* footer
	------------------------------ */

}
