@charset "UTF-8";


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

#global-header {
	width: 100%;
	height: 52px;
	position: fixed;
	z-index: 1000;
	background-color: #FDFBE5;
}
#global-header .logo {
	width: 160px;
	position: absolute;
	left: 4%;
	top: 7px;
}
#global-header .logo a {
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#global-header .logo a:hover {
	opacity: .7;
}
@media (min-width:768px){
	#global-header .logo {
		width: 180px;
		left: 3%;
		top: 6px;
	}
	#global-header {
		height: 60px;
	}
}
@media (min-width:1050px){
	#global-header {
		width: 100%;
		height: 90px;
	}
	#global-header .logo {
		width: 270px;
		position: absolute;
		left: 2%;
		top: 12px;
	}
}

/* SP用 menu-wrap-SPTAB
------------------------------*/
/* バーガーメニュー */
#global-header .menu-wrap-SPTAB .hamburger {
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 4%;
	top: 11px;
	border: none;
	background-color: transparent;
	z-index: 10;
}
#global-header .menu-wrap-SPTAB .hamburger__line {
    display: block;
    height: 3px;
    position: absolute;
    top: 12px;
    left: 0;
    width: 32px;
    background-color: #FFE109;
	border-radius: 10px;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .hamburger__line:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #FFE109;
	border-radius: 10px;
    transition: inherit;
	top: -10px;
	left: 0;
}
#global-header .menu-wrap-SPTAB .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #FFE109;
	border-radius: 10px;
    transition: inherit;
	top: 10px;
	left: 0;
}

#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line {
	top: 50%;
	left: 0;
	transform: rotate(45deg);
}
#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line:before {
    display: none;
}
#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line:after {
    top: 50%;
	left: 0;
    transform: rotate(-90deg);
}

/* バーガーメニュー中身 */
#global-header .menu-wrap-SPTAB .header__nav-area {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
	height: 100vh;
	width: 100%;
	visibility: hidden;
	background-color:#FDFBE5;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .header__nav-area.-active {
	right: 0;
	visibility: visible;
}

#global-header .menu-wrap-SPTAB .navi-wrap {
	padding: 5em 4em 0 6em;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-item {
	list-style-type: none;
	margin-top: 2.5em;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-link {
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 2px;
	color: #000;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap {
	margin-top: 4em;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .icon-list {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .icon-list-item {
	margin-right: 20px;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .icon-list-link {
	display: block;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .icon-list-link img {
	width: 35px;
}
@media (min-width:768px){
	#global-header .menu-wrap-SPTAB .hamburger {
		right: 3%;
		top: 15px;
	}
	#global-header .menu-wrap-SPTAB .header__nav-area {
		width: 40%;
	}
	#global-header .menu-wrap-SPTAB .navi-wrap {
		padding: 5em 3em 0 3em;
	}
}
@media (min-width:1050px){
	#global-header .menu-wrap-SPTAB {
		display: none;
	}
}

/* PC用 menu-wrap-PC
------------------------------*/
#global-header .menu-wrap-PC {
	display: none;
}
@media (min-width:1050px){
	#global-header .menu-wrap-PC {
		display: block;
	}
	#global-header .menu-wrap-PC .navi-wrap {
		position: relative;
	}
	#global-header .menu-wrap-PC .navi-wrap .list {
		position: absolute;
		right: 2%;
		top: 27px;
		list-style-type: none;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-item {
		margin-right: 2rem;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-item.icon {
		margin-right: 1rem;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link {
		font-weight: 600;
		font-size: 16px;
		letter-spacing: 0;
		color: #000;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link:hover {
		color: #09A0FF;
	}
	#global-header .menu-wrap-PC .navi-wrap .icon-list-link {
		display: block;
	}
	#global-header .menu-wrap-PC .navi-wrap .icon-list-link:hover {
		 opacity: .5;
	}
	#global-header .menu-wrap-PC .navi-wrap .icon-list-link img {
		width: 28px;
		margin-top: 3px;
	}
}


/****************************************************************************
 	main
****************************************************************************/
#main-wrap {
	position: relative;
	padding-top: 52px;
}
@media (min-width:768px){
	#main-wrap {
		padding-top: 60px;
	}
}
@media (min-width:1050px){
	#main-wrap {
		padding-top: 90px;
	}
}

/****************************************************************************
 	共通：ページ下部 INFORMATIONエリア
****************************************************************************/

/* 観光スポットなど外部リンク
---------------------*/
.c-ft-info-sec {
	background: url("../img/common/bg_curv_btm_yellow.png")no-repeat bottom left #F7FBFC;
	background-size: 100%;
	border-top: 4px solid #FFE109;
}
.c-ft-info-sec .m-inner {
	padding-top: 2rem;
	padding-bottom: 3rem;
}
.c-ft-info-sec .sec-ttl {
	color: #FFE109;
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 1px;
	line-height: 1;
	font-weight: 600;
}
.c-ft-info-sec .info-list {
	margin-top: 1rem;
	list-style-type: none;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.c-ft-info-sec .info-list-item {
	background-color: #FFE109;
	border-radius: 1rem;
}
.c-ft-info-sec .info-list-link {
	display: block;
	padding: 1rem .5rem;
	text-align: center;
	position: relative;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
.c-ft-info-sec .info-list-link:hover {
	opacity: .6;
}
.c-ft-info-sec .info-list-link:before {
	position: absolute;
	right: 8px;
	top: 8px;
	display: block;
	content:"";
	width: 16px;
	height: 16px;
	background: url("../img/common/ft_icon_arrow_blank.svg") no-repeat 0 0;
	background-size: cover;
}
.c-ft-info-sec .info-list-link .illust {
	width: 45%;
	max-width: 100px;
}
.c-ft-info-sec .info-list-link .name-en {
	color: #fff;
	font-size: .7rem;
	letter-spacing: 1px;
	margin-top: .5rem;
}
.c-ft-info-sec .info-list-link .name-jp {
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
}
@media (min-width:768px){
	.c-ft-info-sec .m-inner {
		padding-top: 3rem;
		padding-bottom: 5rem;
	}
	.c-ft-info-sec .sec-ttl {
		font-size: 2rem;
		letter-spacing: 1px;
	}
	.c-ft-info-sec .info-list {
		margin-top: 1.5rem;
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}
@media (min-width:1050px){
	.c-ft-info-sec .m-inner {
		padding-top: 4rem;
		padding-bottom: 6rem;
	}
	.c-ft-info-sec .sec-ttl {
		font-size: 2.6rem;
		letter-spacing: 1px;
	}
	.c-ft-info-sec .info-list {
		margin-top: 1.8rem;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.8rem;
	}
	.c-ft-info-sec .info-list-link {
		padding: 1rem .5rem 1.3rem .5rem;
	}
	.c-ft-info-sec .info-list-link:before {
		right: 10px;
		top: 10px;
		width: 22px;
		height: 22px;
	}
	.c-ft-info-sec .info-list-link .illust {
		width: 45%;
		max-width: 100px;
	}
	.c-ft-info-sec .info-list-link .name-en {
		font-size: .9rem;
		letter-spacing: 2px;
		margin-top: .5rem;
	}
	.c-ft-info-sec .info-list-link .name-jp {
		font-size: 1.15rem;
		letter-spacing: 1px;
	}
}

/* パンフレット DL
---------------------*/
.c-ft-info-sec .dl-box {
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 0 8px rgba(0,0,0,0.05);
	margin-top: 1.5rem;
	padding: 1rem 1rem;
}
.c-ft-info-sec .dl-box .ttl {
	color: #09BDFF;
	text-align: center;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0;
}
.c-ft-info-sec .dl-box .dl-list {
	list-style-type: none;
	display: grid;
    grid-template-columns: repeat(1, 1fr);
	gap: .8rem;
	margin-top: .5rem;
}
.c-ft-info-sec .dl-box .dl-list-item {
	background-color: #FDFBE5;
	border: 1px solid #E6E5D9;
}
.c-ft-info-sec .dl-box .dl-list-link {
	display: block;
	position: relative;
	padding: .8rem .5rem .8rem 30px;
	line-height: 1.3;
	letter-spacing: 0;
	font-size: .9rem;
	font-weight: 700;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
.c-ft-info-sec .dl-box .dl-list-link:hover {
	opacity: .5;
}
.c-ft-info-sec .dl-box .dl-list-link:before {
	position: absolute;
	left: 10px;
	top: 14px;
	display: block;
	content:"";
	width: 16px;
	height: 16px;
	background: url("../img/common/ft_icon_pdf.svg") no-repeat 0 0;
	background-size: cover;
}
@media (min-width:768px){
	.c-ft-info-sec .dl-box {
		margin-top: 2rem;
		padding: 1.3rem 1.5rem;
	}
	.c-ft-info-sec .dl-box .ttl {
		font-size: 1.1rem;
		letter-spacing: 0;
	}
	.c-ft-info-sec .dl-box .dl-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.c-ft-info-sec .dl-box .dl-list-link {
		padding: .8rem .5rem .8rem 30px;
		line-height: 1.3;
		font-size: .9rem;
	}
}
@media (min-width:1050px){
	.c-ft-info-sec .dl-box {
		border-radius: 1rem;
		margin-top: 2.5rem;
		padding: 1.5rem 3rem;
	}
	.c-ft-info-sec .dl-box .ttl {
		font-size: 1.2rem;
		letter-spacing: 0;
	}
	.c-ft-info-sec .dl-box .dl-list {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
		margin-top: .5rem;
	}
	.c-ft-info-sec .dl-box .dl-list-link {
		padding: 1.7rem .1rem 1.7rem 42px;
		line-height: 1.3;
		letter-spacing: -1px;
		font-size: 1.2rem;
	}
	.c-ft-info-sec .dl-box .dl-list-link:before {
		width: 20px;
		height: 20px;
		left: 15px;
		top: 30px;
	}
}

/* バナー
---------------------*/
.c-ft-info-sec .bnr-list {
	margin-top: 1.5rem;
	list-style-type: none;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.c-ft-info-sec .bnr-list-link {
	display: block;
	border: 1px solid #E6E5D9;
}
@media (min-width:768px){
	.c-ft-info-sec .bnr-list {
		margin-top: 2rem;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 0;
	}
	.c-ft-info-sec .bnr-list-item {
		width: 18%;
		margin: 0 1% 1% 1%;
	}
}
@media (min-width:1050px){
	.c-ft-info-sec .bnr-list {
		width: 100rem;
		max-width: 90%;
		margin: 3rem auto 0 auto;
	}
	
}
	

/****************************************************************************
 	footer
****************************************************************************/
#global-footer .ft-sec {
	background-color: #FFE109;
	padding: 3rem 0;
}
#global-footer .ft-sec .note {
	text-align: center;
}
#global-footer .ft-sec .note .logo img {
	width: 60%;
	max-width: 220px;
}
#global-footer .ft-sec .note .text {
	margin-top: .5rem;
	line-height: 1.5;
	font-size: .9rem;
}
#global-footer .ft-sec .navi {
	margin-top: 3rem;
}
#global-footer .ft-sec .navi .list {
	list-style-type: none;
}
#global-footer .ft-sec .navi .list-item {
	text-align: center;
	line-height: 1.5;
	font-weight: 700;
	font-size: .95rem;
	margin-bottom: 1rem;
}
#global-footer .ft-sec .navi .list-link:hover {
	color: #09A0FF;
}
#global-footer .ft-sec .navi .icon-list {
	list-style-type: none;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	justify-content: center;
	margin-top: 2rem;
}
#global-footer .ft-sec .navi .icon-list-item {
	margin-right: 20px;
}
#global-footer .ft-sec .navi .icon-list-item:last-child {
	margin-right: 0;
}
#global-footer .ft-sec .navi .icon-list-link {
	display: block;
}
#global-footer .ft-sec .navi .icon-list-link:hover {
	opacity: .7;
}
#global-footer .ft-sec .navi .icon-list-link img {
	width: 35px;
}
#global-footer .cr-sec {
	padding: 1rem 0;
}
#global-footer .cr-sec .text {
	color: #8E8E8E;
	font-size: .6rem;
	letter-spacing: 0;
	line-height: 1.4;
	text-align: center;
}
@media (min-width:768px){
	#global-footer .ft-sec {
		padding: 3rem 0;
	}
	#global-footer .ft-sec .m-inner {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#global-footer .ft-sec .note {
		width: 40%;
		text-align: left;
	}
	#global-footer .ft-sec .note .logo img {
		width: 100%;
		max-width: 200px;
	}
	#global-footer .ft-sec .note .text {
		margin-top: .5rem;
		line-height: 1.5;
		font-size: .9rem;
	}
	#global-footer .ft-sec .navi {
		width: 55%;
		margin-top: 0;
	}
	#global-footer .ft-sec .navi .list-item {
		display: inline-block;
		text-align: left;
		line-height: 1.5;
		font-size: .9rem;
		margin-bottom: .5rem;
		margin-right: 1rem;
	}
	#global-footer .ft-sec .navi .icon-list {
		justify-content: flex-start;
		margin-top: 1rem;
	}
	#global-footer .cr-sec .text {
		text-align: right;
		font-size: .6rem;
		letter-spacing: 1px;
	}
}
@media (min-width:1050px){
	#global-footer .ft-sec {
		padding: 4rem 0;
	}
	#global-footer .ft-sec .note {
		width: 30%;
	}
	#global-footer .ft-sec .note .logo img {
		width: 100%;
		max-width: 230px;
	}
	#global-footer .ft-sec .note .text {
		margin-top: .5rem;
		line-height: 1.5;
		font-size: 1rem;
	}
	#global-footer .ft-sec .navi {
		width: 63%;
		margin-top: 1rem;
	}
	#global-footer .ft-sec .navi .list-item {
		font-size: 1.05rem;
		margin-bottom: .7rem;
		margin-right: 2.5rem;
	}
	#global-footer .ft-sec .navi .icon-list {
		margin-top: 1.5rem;
	}
	#global-footer .ft-sec .navi .icon-list-link img {
		width: 40px;
	}
	#global-footer .cr-sec {
		padding: 1.5rem 0;
	}
	#global-footer .cr-sec .text {
		font-size: .7rem;
		letter-spacing: 1px;
	}
}



/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 100;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background-color: #000;
	border-radius: 50%;
	cursor: pointer;
}
#pagetop:after {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -3px;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
} 
@media (min-width:1050px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}

	





