@charset "utf-8";
:root{
    --content-width-pc: 1104px;
	--default-color-black: #2c2a29;
	--bg-color-gray: #f4f4f4;
	--content-color-navy: #1d1e78;
	--content-color-purple: #663399;	
	--content-color-wine: #790d28;
	--content-color-blue: #13569a;
	--content-color-green: #1e5904;
	--content-color-red: #cf000d;
	--content-border_yellow: linear-gradient(transparent 70%, #fff951 0%);
}
.main {
	-webkit-text-size-adjust: none;
}
.contents {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--default-color-black);
	a {
		text-decoration: none;
		&:hover {
			opacity: 0.8;
			transition: all 0.6s ease;
		}
	}
	img {
        max-width: 100%;
		height: auto;
    }
	.inner {
        width: var(--content-width-pc);
		max-width: 100%;
        margin: 0 auto;
	}
	.f-mini {
		font-size: 12px;
	}
	.f-small {
		font-size: 0.8em;
	}
	.red {
		color: var(--content-color-red);
	}	
}
.nopc {
  display: none
}
/*----------------------------------------------
	メインビジュアル
------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 760px;
	overflow: hidden;
	position: relative;

	.bg-img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		opacity: 0;
		animation: mv-animation 16s infinite;
	}
	.img1 { background-image: url("../images/main-bg1.jpg"); animation-delay: 0s; }
	.img2 { background-image: url("../images/main-bg2.jpg"); animation-delay: 4s; }
	.img3 { background-image: url("../images/main-bg3.jpg"); animation-delay: 8s; }
	.img4 { background-image: url("../images/main-bg4.jpg"); animation-delay: 12s; }
	
	.title {
		position: absolute;
		top: 30px;
		right: 0;
		left: 0;
		margin: 0 auto;
		text-align: center;
	}
}

@keyframes mv-animation {
  0%   { opacity: 0;} 
  10%  { opacity: 1;}
  33%  { opacity: 1;}
  43%  { opacity: 0;}
  100% { opacity: 0;}
}
/*----------------------------------------------
	ナビ
------------------------------------------------*/
#navi {
	width: 100%;
	background: var(--content-color-navy);
	padding: 16px 0;
	ul {
		width: var(--content-width-pc);
		margin: 0 auto;
		display: flex;
		justify-content: center;
		li {
			flex: 0 1 auto;	
			&:not(:last-child) {
				border-right: 1px solid #fff;
			}
			a {
				display: block;
				padding: 8px 32px;
				font-size: 16px;
				font-weight: 700;
				color: #fff;
			}
		}
	}
}

/*ナビ固定時*/
.fix-navi:has(.fixed) {
	height: 56px;
}
#navi.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	padding: 8px 0;
}

/*----------------------------------------------
	導入
------------------------------------------------*/
#lead {
	width: 100%;
	background-image: url("../images/lead-line.png"),url("../images/lead-bg.jpg");
	background-repeat: no-repeat,repeat;
	background-position: bottom center,left top;
	padding: 64px 0 96px;
	h2 {
		font-size: 40px;
		text-align: center;
		line-height: 1.0;
		font-weight: 900;
		margin-bottom: 40px;
		&::before,
		&::after {
			content:"";
			display: inline-block;
			width: 130px;
			height: 36px;
			background: url(../images/kazari-kumo.svg) no-repeat;
			background-size: contain;
			margin: 0 20px;
		}
		&::after {
			transform: scaleX(-1);
		}
	}
	.item-box {
		width: 100%;
		display: flex;
		justify-content: space-between;
		gap: 64px;
		li {
			width: 100%;
			.ph {
				width: 280px;
				margin: 0 auto 16px;
				img {
					border-radius: 50%;
				}
			}
			dt {
				text-align: center;
				font-size: 32px;
				font-weight: 700;
				margin-bottom: 8px;
			}
		}
	}
}

/*----------------------------------------------
	チャーターについて
------------------------------------------------*/
#about {
	width: 100%;
	padding: 64px 0 96px;
	background: url("../images/map.png") no-repeat top 300px center;
	h2 {
		text-align: center;
		font-size: 32px;
		line-height: 1.3;
		font-weight: 700;
		margin-bottom: 40px;
	}
	.schedule {
		width: 100%;
		background-color: #faf0fa;
		border:solid 1px #ccc;
		padding: 16px 56px;
		margin-bottom: 40px;
		h3 {
			font-size: 18px;
			font-weight: 700;
			text-align: center;
			margin-bottom: 8px;
			&::before {
				display: block;
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				content: "\e539";
				font-size: 30px;
				line-height: 1.0;
			}
		}
		dl {
			width: 100%;
			display: flex;
			background-color: #fff;
			margin-bottom: 8px;
			dt {
				width: 10%;
				background-color: var(--content-color-purple);
				color: #fff;
				text-align: center;
				padding: 16px;
			}
			dd {
				width: 90%;
				padding: 16px;
				span {
					background-color: #eee;
					display: inline-block;
					padding: 0 16px 2px;
					margin-right: 16px;
					border-radius: 15px;
				}
			}
		}
		.note {
			font-size: 12px;
		}
	}
	.detail {
		.ph {
			display: flex;
			margin-bottom: 32px;
			li {
				width: 300px;
				margin-right: 8px;
				img {
					width: 100%;
				}
			}
		}
		.text {
			margin-bottom: 32px;
			dt {
				font-size: 24px;
				line-height: 1.8;
				font-weight: 700;
			}
			dd {
				width: 610px;
				text-align: justify;
			}
		}
	}
	.seat {
		display: flex;
		justify-content: space-between;
		li {
			background-color: #fff;
			border: solid 1px var(--content-color-purple);
			text-align: center;
			padding-bottom: 8px;
			&:nth-child(1) {
				width: 65%;
			}
			&:nth-child(2) {
				width: 33%;
			}
			h3 {
				background-color: var(--content-color-purple);
				color: #fff;
				font-size: 20px;
				padding: 3px 0 5px;
				margin-bottom: 8px;
			}
		}
	}
}

/*-------------------------------------------------
ツアーポイント共通事項
---------------------------------------------------*/
#point {
	width: 100%;
	background-color: var(--bg-color-gray);
	padding: 0 0 96px;
	.inner:not(:last-child) {
		margin-bottom: 96px;
	}
	h2 {
		background: var(--content-color-wine) url(../images/pattern-kumo.png) repeat;
		text-align: center;
		color: #fff;
		font-size: 40px;
		font-weight: 900;
		padding: 24px 0;
		margin-bottom: 40px;
	}
	h3 {
		text-align: center;
		color: var(--content-color-wine);
		font-size: 52px;
		letter-spacing: 0.4em;
		line-height: 1.0;
		font-weight: 900;
		margin-bottom: 40px;
		&::before,&::after {
			content: "";
			display: inline-block;
			width: 50px;
			height: 50px;
			background: url(../images/kazari-hishi.svg) no-repeat;
			background-size: contain;
			margin: 0 25px 0 0;
			transform: translateY(5px);
		}
		&::after {
			margin: 0;
		}
	}
	.title-text {
		width: var(--content-width-pc);
		margin: 0 auto 40px;
		font-size: 24px;
		font-weight: 700;
		text-align: center;
	}
}
/*----------------------------------------------
	体験
------------------------------------------------*/
#point .taiken-box {
	width: 100%;
	li {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
		img {
			width: 55%;
			li:nth-child(2) & {
				order:2;
			}
		}
		dl {
			width: 41%;
			dt {
				font-size: 32px;
				font-weight: 900;
				border-left: solid 10px var(--content-color-wine);
				line-height: 1.0;
				padding-left: 16px;
				margin-bottom: 32px;
			}
			dd {
				font-size: 18px;
				line-height: 1.8;
				span {
					display: block;
					font-size: 12px;
					margin-top: 32px;
				}
			}
			li:nth-child(2) & {
				order:1;
			}
		}
	}
}
#point .train {
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	border: solid 5px #ccc;
	padding: 24px;
	gap: 24px;
	h4 {
		width: 160px
		img {
			width: 100%;
		}
	}
	dl {
		flex: 1;
		dt {
			font-size: 24px;
			font-weight: 700;
			color: var(--content-color-blue);
			margin-bottom: 16px;
		}
		dd {
			font-size: 18px;
		}
	}
	.ph {
		width: 250px;
		img {
			width: 100%;
		}
	}
}
/*----------------------------------------------
	観光
------------------------------------------------*/
#point .kanko-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
	li {
		img {
			width: 100%;
		}
		span {
			display: block;
			text-align: center;
		}
	}
}
#point .nadam {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 56px 56px 32px;
	background-image:
		url(../images/kazari-waku-1.svg),
		url(../images/kazari-waku-2.svg),
		url(../images/kazari-waku-3.svg),
		url(../images/kazari-waku-4.svg),
		url(../images/nadam-bg.jpg);
	background-position:
		left 16px top 16px,
		right 16px top 16px,
		left 16px bottom 16px,
		right 16px bottom 16px,
		center center;
	background-size: 64px 64px,64px 64px,64px 64px,64px 64px,200px 200px;
	background-repeat: no-repeat,no-repeat,no-repeat,no-repeat,repeat;
	.text-area {
		width: 42%;
		h4 {
			margin-bottom: 24px;
		}
		p {
			line-height: 1.8;
		}
	}
	.ph-slider {
		width: 50%;
	}
}
/*----------------------------------------------
	宿泊
------------------------------------------------*/
.inner-stay {
	width: 100%;
	margin-bottom: 96px;
	.title-text {
		.dx {background-color: var(--content-color-green);color: #fff;}
		.hs {background-color: var(--content-color-blue);color: #fff;}
	}
	.title-area {
		width: var(--content-width-pc);
		margin: 0 auto;
		display: flex;
		gap: 36px;
		margin-bottom: 24px;
		h4 {
			width: 250px;
		}
		p {
			flex: 1;
			font-size: 20px;
			font-weight: 700;
			.f-small {
				display: inline-block;
				padding-top: 8px;
			}
		}
	}
	#dx {
		margin-bottom: 80px;
		.ph-main {
			width: 100%;
			height: 600px;
			background: url(../images/stay-dx-main.jpg) no-repeat center center;
			.inner {
				position: relative;
			};
			p {
				width: 540px;
				position: absolute;
				top: 50px;
				right: 0;
				background-color: rgba(255,255,255,0.35);
				padding: 16px 24px;	
				text-align: justify;
			}
		}
		.ph-list {
			width: var(--content-width-pc);
			margin: 12px auto 0;
			display: flex;
			gap: 12px;
			li {
				width: calc((100% - 36px) / 4);
				img {
					width: 100%;
				}
			}
		}
	}
	#hs {
		.ph-main {
			width: 100%;
			height: 600px;
			background: url(../images/stay-hs-main.jpg) no-repeat center center;
			.inner {
				position: relative;
			};
			p {
				width: 620px;
				position: absolute;
				top: 50px;
				left: 0;
				background-color: rgba(0, 0, 0, 0.35);
				padding: 16px 24px;
				color: #fff;
				text-align: justify;
			}
		}
		.inner {
			margin-top: 12px;
			display: flex;
			justify-content: space-between;
		}
		.ph-list {
			width: 612px;
			display: flex;
			flex-wrap: wrap;
			gap: 12px;
			li {
				width: calc((100% - 12px) / 2);
				img {
					width: 100%;
				}
				h5 {
					font-size: 16px;
					font-weight: 700;
				}
			}
		}
		.hoteldata {
			width: 460px;
			dl {
				background-color: #fff;
				border: solid 1px #ccc;
				margin-bottom: 40px;
				dt {
					width: 100px;
					background-color: var(--default-color-black);
					color: #fff;
					font-size: 14px;
					line-height: 1.3;
					text-align: center;
				}
				dd {
					font-size: 14px;
					padding: 8px;
				}
			}
			.mitori {
				text-align: center;
			}
		}
	}
	.movie {
		text-align: center;
		margin-top: 40px;
	}
}

/* 動画コンテナの装飾 */
.youtube-facade {
  position: relative;
  width: 100%;
  max-width: 560px; /* 元のiframeの幅に合わせて調整 */
  aspect-ratio: 16 / 9;
  cursor: pointer;
  margin: 0 auto;
  overflow: hidden;
}

.youtube-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 中央の再生ボタン（CSSで描画） */
.youtube-facade .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  transition: background-color 0.3s;
}

/* 再生ボタンの三角マーク */
.youtube-facade .play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}

/* ホバー時にYouTube風の赤色にする */
.youtube-facade:hover .play-button {
  background-color: #ff0000;
}
/*----------------------------------------------
	食事
------------------------------------------------*/
#point .food-box {
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	&:not(:last-child) {
		margin-bottom: 40px;
	}
	.ph-slider {
		width: 350px;
	}
	.text-area {
		width: 700px;
		h4 {
			display: inline-block;
			color: #fff;
			font-size: 16px;
			font-weight: 500;
			line-height: 1.3;
			border-radius: 4px;
			padding: 8px 16px;
			margin-bottom: 16px;
			&.dx {background-color: var(--content-color-green);}
			&.hs {background-color: var(--content-color-blue);}
		}
		p {
			font-size: 20px;
			font-weight: 500;
			.f-mini {
				display: block;
				margin-top: 16px;
			}
		}
	}
	.slick-next::before, .slick-prev::before {
		font-size: 16px;
	}
}
/*----------------------------------------------
スライダー調整
------------------------------------------------*/
.ph-slider {
	margin-bottom: 0;

	.slick-prev, .slick-next {
		z-index: 100;
		top:45%;
	}
	.slick-prev {
		left: -5%;
	} 
	.slick-next {
		right: -5%;
	}
	.slick-prev:before,.slick-next:before,.slick-prev::before,.slick-next::before {		
		color: #fff;
	}
	.slick-dots {
		position: static;
	}
	.slick-dots li button:before {
		font-size: 12px;
		color: #acacac;
	}
	.slick-dots li.slick-active button:before {
		color: #000;
	}
}

/*----------------------------------------------
	支店
------------------------------------------------*/
#point .shiten {
	width: 100%;
	display: flex;
	justify-content: space-between;
	.ph {
		width: 45%;
		img {
			width: 100%;
		}
	}
	.text {
		width: 50%;
		dt {
			font-size: 32px;
			font-weight: 700;
			margin-bottom: 16px;
			span {
				display: block;
				font-size: 0.7em;
			}
		}
		dd {
			line-height: 1.8;
		}
	}
}

/*-----------------------------------------
ツアー
-------------------------------------------*/
#tour {
	width: 100%;
	background-color: #fff;
	padding: 0 0 96px;
	h2 {
		background: var(--content-color-red) url(../images/pattern-kumo.png) repeat;
		text-align: center;
		color: #fff;
		font-size: 40px;
		font-weight: 900;
		padding: 24px 0;
		margin-bottom: 40px;
	}
	h3 {
		text-align: center;
		font-size: 36px;
		font-weight: 900;
		margin-bottom: 40px;
		&::before {
			display: block;
			font-family: "Material Symbols Rounded";
			font-weight: 400;
			content: "\e539";
			font-size: 40px;
			line-height: 1.0;
		}
	}
	.schedule {
		text-align: center;
		margin-bottom: 40px;
		.box {
			min-width: 560px;
			display: inline-block;
			background-color: #fff;
			border: solid 1px var(--default-color-black);
			font-size: 18px;
			font-weight: 700;
			padding: 8px 24px;
			border-radius: 8px;
		}
    }
	.tourpoint {
		width: 100%;
		margin-bottom: 32px;
		background-color: #fff9d9;
		border-radius: 8px;
		padding: 16px 16px 16px 230px;
		position: relative;
		dt {
			position: absolute;
			left: 40px;
			top: 35px;
		}
		dd {
			font-size: 16px;
			line-height: 1.3;
			font-weight: 600;
			position: relative;
			padding-left: 28px;
			&::before {
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				content: "\e834";
				font-size: 24px;
				color: var(--content-color-red);
				position: absolute;
				top: -3px;
				left: 0;
			}
			&:not(:last-child) {
				margin-bottom: 8px;
			}
		}
	}
	.btn-more {
		width: 800px;
		margin: 64px auto 0;
		text-align: center;
		a {
			display: block;
			background-color: var(--content-color-navy);
			border-radius: 40px;
			font-size: 20px;
			font-weight: 700;
			padding: 16px;
			color: #fff;
			position: relative;
			&::after {
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				content: "\e5e1";
				font-size: 24px;
				position: absolute;
				right: 16px;
				top: 12px;
			}
		}			
	}
}
/*-----------------------------------------
商品カセット調整
-------------------------------------------*/
#tour .ui-static-grid-list {
	margin-bottom: 24px;
	a {
		background-color: #fff;
	}
	.ui-static-image {
		width: 34%;
	}
	.product-text {
		width: 66%;
		padding: 16px 24px;
	}
	.ui-static-product-card-title {
		line-height: 1.5;
	}
	.ui-static-product-card-summary {
		.note {
			display: block;
			font-size: 12px;
			line-height: 1.3;
		} 
	}
	.ui-static-price-container {
		margin-top: 50px;
		padding: 0;
		.ui-static-price-info {
			display: block;
		}
	}
	.ui-static-product-card .ui-static-image img {
		aspect-ratio: 352 / 235;
	}
}

/*----------------------------------------------
	基本情報
------------------------------------------------*/
#info {
	width: 100%;
	background-color: #f4f4f4;
	padding: 64px 0;
	h2 {
		text-align: center;
		font-size: 32px;
		font-weight: 700;
		margin-bottom: 40px;
	}
	h3 {
		line-height: 44px;
		font-weight: 700;
		padding-left: 60px;
		background-repeat: no-repeat;
		background-position: left center;
		background-size: 44px 44px;
		margin: 30px 0 10px;
		.note & {background-image: url("../images/icon-note.svg");}
		.qa & {background-image: url("../images/icon-qa.svg");}
		.baggage & {background-image: url("../images/icon-baggage.svg");}
	}
	.detail {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		dl {
			width: 48%;
			border-bottom: solid 1px #222;
			padding: 16px;
			display: flex;
			align-items: center;
			background-repeat: no-repeat;
			background-position: left center;
			background-size: 50px;
			&.lang {background-image: url("../images/icon-language.png");}
			&.time {background-image: url("../images/icon-time.png");}
			&.money {background-image: url("../images/icon-money.svg");}
			&.flight {background-image: url("../images/icon-flight.svg");}
			&.climate {background-image: url("../images/icon-climate.svg");width: 100%;}
			
			dt {
				width: 145px;
				line-height: 1.3;
				font-weight: 700;
				padding-left: 60px;
			}
			dd {
				flex: 1;
			}
		}
	}
	.note {
		ul li {
			position: relative;
			padding-left: 20px;
			&::before {
				content: "・";
				position: absolute;
				left: 0;
				top: 0;
			}
		}
	}
	.qa {
		dt {
			background-color: #666;
			color: #fff;
			padding: 5px 10px;
			cursor: pointer;
			position: relative;
			margin-top: 8px;
			&::after {
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				font-size: 24px;
				content: "\e313";
				color: #fff;
				position: absolute;
				right: 10px;
				top: 0;
			}
			&.active::after {
				content: "\e316";
			}
		}
		dd {
			display: none;
			padding: 7px 30px 10px;
			position: relative;
		}
	}
	.baggage {
		ul {
			display: flex;
			flex-wrap: wrap;
			li {
				margin-right: 16px;
				&::before {
					content: "・";
				}
				span {
					font-size: 0.8em;
				}
			}
		}
	}
}

/*------------------------------------------------
	円バナー
--------------------------------------------------*/
.fix-bnr {
    display: none;
    position: fixed;
    right: 10px;
    top: 350px;
    z-index: 100;
	a {
		display: block;
	}
	p.close {
		position: absolute;
		right: 10px;
		top:10px;
		a {
		  display: block;
			span {
				font-size: 16px;
				color: #333;
				background-color: #fff;
				border-radius: 50%;
				padding: 5px;
			}
		}
	}
}

/*-----------------------------------------
検索BOX
-----------------------------------------*/
#searchArea {
  padding: 60px 0 0;
}
/*検索ボタンリセット*/
#searchArea {
  & select {color: #333;}
  & .rn-searchMod__inputField, .rn-searchMod__select, .rn-searchMod__toggle {
    font-size: 14px !important;
  }
  & .rn-searchMod__buttonSearchWrap a {
    font-size: 15px !important;
    padding: 14.6px 15px 16px 80px!important;  
  }
  & .rn-searchMod__formDomLink {
    font-size: 12px !important;
  }
  &.rn-searchMod__label::before {
    font-size: 10px !important;
  }
}
/*------------------------------------------------
        LINEお友達登録ボタン
--------------------------------------------------*/
.line-wrap-detail {
	padding: 50px 0 0;/*ページによって調整*/
	background-color: #fff;
}
.line-inner {
        width: 992px;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.1em;
        line-height: 1.5;
}
.line-wrap-detail .line-inner {
        background: #fff;
        border: solid 1px #d3d3d3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        letter-spacing: 1px;
}
.line-inner .head {
        width: 100%;
        text-align: center;
        background-color: #06C755;
        padding: 8px;
        color: #fff;
        font-size: 20px;
        line-height: 1.5;
        font-weight: bold;
}
.line-inner .textarea {
        width: 76%;
        text-align: left;
        padding: 24px 0 32px 24px;
}
.line-inner .btnarea {
        width: 23.4%;
        padding: 8px 16px 8px 0;
}
.line-inner .text1 {
        font-size: 18px;
        line-height: 1.5;
}
.line-inner .text1 span {
        display: inline-block;
        font-weight: bold;
        color: #DF0D00;
}
.line-inner .text2 {
        font-size: 20px;
        font-weight: bold;
        background: linear-gradient(transparent 60%, #fff231 0%);
        display: inline-block;
        line-height: 1.8;
        padding: 0 4px;
}
.line-button a {
        display: block;
        color: #fff;
        font-size: 14px;
        text-align: center;
        font-weight: bold;
        border-radius: 8vw;
        box-shadow: 0px 3px 0px 0 rgba(0, 0, 0, .14);
        background: url(/kansai/images/icon/icon-linekansai.png) no-repeat;
        background-size: 50px;
        background-position: 12px;
        background-color: #06C755;
        padding: 10px 10px 6px 70px;
        position: relative;
        text-decoration: none;
}
.line-button a:hover {
        opacity: .8;
        transition: all 0.6s ease;        
}
.line-qr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
}
.line-qr span:nth-child(1) {
        width: 50%;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.3;
        text-align: left;
}
.line-qr img {
        width: 50%;
}
.line-qr span:nth-child(3) {
        width: 100%;
        font-size: 14px;
}
.line-qr a {
        text-decoration: underline;
}

/*------------------------------------------------
	クローズ
--------------------------------------------------*/
#close {
	background-color: #efefef;
    padding: 100px 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8em;
}
#close a {
    color: #1a7acd;
}