@charset "utf-8";
/* ===================================================
	Base CSS
====================================================== */
body {
	min-width: 1200px; min-height: 100vh; background: #fff; color: #000;
	font-size: 14px; font-weight: normal; line-height: 1.5;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	-webkit-text-size-adjust: 100%; position: relative;

}

/* eb-garamond-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'EB Garamond';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/eb-garamond-v27-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.font_en { font-family: 'EB Garamond'; }
.v_rl{ writing-mode: vertical-rl; font-feature-settings: "palt" 0;}

:root {
	--color01: #a89653;
	--color02: #ccc;
	--color03: #f5f4f2;
}

input,
select,
textarea { font-size: 13px; font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif; }

div { box-sizing: border-box;}

a { color: #000; text-decoration: none; transition: opacity .5s;}

.pos_fix { overflow: hidden;}

#lineup-font-size-sampler { bottom: 0; left: 0;}
.fixed { width: 100%; min-width: 1100px; position: fixed; top:0; left: 0; z-index: 999; }
iframe[name="google_conversion_frame"] { position: absolute; bottom: 0; left: 0;}

.ofi { object-fit: cover; width: 100%; height: 100%;}
.view_sp { display: none;}

@media screen and (hover: hover) {
	a:hover { color: #000; opacity: 0.6; text-decoration: none;}
}

@media screen and (max-width: 600px) {
	body { font-size: 14px;}
	input,
	select,
	textarea { font-size: 16px;}

	body { min-width: 0;}
	.view_sp { display: block;}
	.view_pc { display: none !important;}
}


/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */
/* コンテンツ幅 */
.inner_lg { width: 1400px; max-width: 96%; margin: 0 auto;}
.inner_md { width: 1200px; max-width: 94%; margin: 0 auto;}
.inner_sm { width: 1100px; max-width: 92%; margin: 0 auto;}

@media screen and (max-width: 600px) {
	.inner_lg,
	.inner_md,
	.inner_sm { max-width: 88%;}
}

/* ---------------------------------------------------
	Header
------------------------------------------------------ */
#g_header { padding: 0; z-index: 99; position: sticky; top: 0; left: 0; width: 100%; min-width: 1200px; height: 140px; display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 20px; box-sizing: border-box; container: gheader / inline-size;}
#g_header .hd_inner { display: flex; align-items: center; height: 100%; box-sizing: border-box; pointer-events: auto; opacity: 1; transition: opacity .6s; position: relative; z-index: 60; }
#g_header .hd_logo { display: block; width: 60px; padding: 0 15px 0 0; }
#g_header .hd_tit { flex-shrink: 0; }
#g_header .hd_tit .tit { display: flex; flex-direction: column; font-size: 13px; }
#g_header .hd_tit .tit span { font-size: 25px; line-height: 1; display: block; letter-spacing: 0.08em; margin-bottom: 10px; }
#g_header .hd_inner .lg_link { display: none; }

#g_header .hd_snav { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 20px; margin-right: 16px; }
#hd_search #form { position: relative; width: 265px; }
#hd_search #form input { width: 100%; height: 35px; background: #fff; border: 1px solid #000; box-sizing: border-box; padding: 5px 40px 5px 25px; border-radius: 50px; }
#hd_search #form button { position: absolute; width: auto; height: 100%; top: 0; right: 0; background: none; border-radius: 0; border: none; padding: 5px 15px 5px 5px; box-sizing: border-box; cursor: pointer; }

#g_header .lg_link { margin-left: 20px; font-size: 12px; border-bottom: 1px solid var(--color02); display: flex; align-items: center; justify-content: space-between; width: 80px; padding-bottom: 3px; }
#g_header .lg_link::before { content: ''; width: 15px; height: 15px; background: url(../img/common/icon_lg.svg) no-repeat center/contain; display: block; }

#h_open_menu { position: absolute; top: 0; right: 0; z-index: 999; display: none; height: 120px; }
#h_open_menu .open_menu { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 80px; height: 100%; padding: 7px 20px 0 10px; box-sizing: border-box;}
#h_open_menu .open_menu span:not(.txt) { font-size: 0; }
#h_open_menu .open_menu::before,
#h_open_menu .open_menu>span:not(.txt)::before,
#h_open_menu .open_menu>span:not(.txt)::after { content: ''; display: block; width: 38px; height: 1px; margin-bottom: 10px; background: #000; transition: transform .5s, opacity .5s, background-color .3s, width .5s;}
#h_open_menu .open_menu>span:not(.txt)::after { margin: 0 0 0 auto; width: 20px; }
#h_open_menu .open_menu .txt { font-size: 15px; line-height: 1.5; margin-top: 12px; }

.pos_fix #g_header { position: fixed; min-width: auto; }
.pos_fix #h_open_menu { position: fixed; }
.pos_fix #h_open_menu .open_menu { border-left: none; }
.pos_fix #h_open_menu .open_menu>span:not(.txt)::before { opacity: 0; }
.pos_fix #h_open_menu .open_menu::before { transform: rotate(45deg) translate(7px, 7px); width: 48px; }
.pos_fix #h_open_menu .open_menu>span:not(.txt)::after { transform: rotate(-45deg) translate(8px, -8px); width: 48px; }

#g_header .hd_nav { display: flex; align-items: center; justify-content: center; position: relative; }
#g_header .hd_nav > li { padding: 0 11px; box-sizing: border-box; }
#g_header .hd_nav > li > p { cursor: pointer;}
#g_header .hd_nav > li > a,
#g_header .hd_nav > li > p { display: flex; align-items: center; font-size: 15px; line-height: 1.5; font-weight: bold; }
#g_header .hd_nav > li > .hacc_tit::after { content: '＞'; font-size: 12px; transform: rotate(90deg); display: block; margin-left: 3px; transition: transform .7s; width: 12px; height: 12px; line-height: 1; }
#g_header .hd_nav > li > .hacc_tit.hactive::after { transform: rotate(270deg); }
#g_header .hd_nav > li a img { display: block; margin-bottom: 10px; transition: transform .5s; height: 40px; }
#g_header .hd_nav > li > ul { background: #fff; position: absolute; top: 70px; left: 17px; transition: opacity .5s; opacity: 0; pointer-events: none; width: fit-content; border-radius: 10px; padding: 30px; overflow: scroll; max-height: calc(100vh - 170px);}
#g_header .hd_nav > li > ul > li { border-bottom: 1px dashed var(--color02); padding: 13px 10px;}
#g_header .hd_nav > li > ul > li > a,
#g_header .hd_nav > li > ul > li > p { padding: 13px 15px; font-weight: bold; display: block; }
#g_header .hd_nav > li > ul > li > ul > li a { padding: 13px 15px; display: block; }

#g_header .hd_nav1400 { display: none; align-items: center; justify-content: center; margin: 0 0 0 auto;}
#g_header .hd_nav1400 li { padding: 0 10px; box-sizing: border-box;}
#g_header .hd_nav1400 li a { display: flex; flex-direction: column; align-items: center; font-size: 15px; line-height: 1.5; }
#g_header .hd_nav1400 li a img { display: block; margin-bottom: 10px; transition: transform .5s; height: 33px; }

body::after  { display: block; content: ''; width: 100%; height: 100vh; position: fixed; top: 0; left: 0; background: #000; opacity: 0; transition: opacity .5s .2s, transform 0s .7s; z-index: 50; transform: translateX(-100%); }
body.hactive::after { opacity: 0.2; transition: opacity .5s; transform: translateX(0); }
#g_header .hd_nav > li > ul.hactive { display: block; opacity: 1; pointer-events: auto; transition: opacity .5s .2s; }

@media screen and (hover: hover) {
	#g_header .hd_nav1400 li a:hover img { transform: scale(1.1); opacity: 1; }
	#h_open_menu .open_menu:hover { opacity: 1; }
}

@media screen and (max-width: 1400px) {
	#g_header .hd_nav > li > a,
	#g_header .hd_nav > li > p { font-size: 14px; }
}

@media screen and (max-width: 1365px) {
	.pos_fix #main_img { margin-top: 120px; }
	#g_header { height: 120px; padding: 10px 80px 10px 20px; }
	#h_open_menu { display: block; }
	#g_header .hd_nav1400 { display: flex; }
	#g_header #gnav_wrap .lg_link { display: none; }
	body::after { display: none; }
}

@container gheader (max-width: 668px) {
	#g_header .hd_tit { width: calc(100% - 60px); }
	#g_header .hd_inner { width: 53%; }
	#g_header .hd_tit .tit { font-size: 10px;}
	#g_header .hd_nav1400 li { padding: 0 5px;}
	#g_header .hd_nav1400 li a { font-size: 12px; }
	#h_open_menu .open_menu .txt { font-size: 12px; }
}

@media screen and (max-width: 600px) {
	#g_header { height: 70px; display: block; min-width: auto; position: fixed; padding: 8px 50px 8px 10px; }
	#g_header .hd_inner { width: auto; }
	#g_header .hd_logo { width: min(12vw, 60px); height: 100%; padding: 0; opacity: 0; transition: opacity .3s; }
	#g_header .hd_logo img { width: 100%; height: 100%; object-fit: contain;}
	#g_header .hd_tit { opacity: 0; transition: opacity .3s; width: 49vw; margin-left: 3%; }
	#g_header .hd_tit .tit { font-size: 2.5vw;}
	#g_header .hd_tit .tit span { margin-bottom: 5px; width: 90%; }
	#g_header .hd_inner .lg_link { display: flex; margin: 0 0 0 auto; border: none; flex-direction: column; font-size: 10px; width: 52px; padding: 0; }
	#g_header .lg_link::before { width: 23px; height: 23px; margin: 0 auto 3px; }

	#h_open_menu { height: 70px; }
	#h_open_menu .open_menu { width: 50px; height: 100%; padding: 3px 8px 0 5px;}
	#h_open_menu .open_menu::before,
	#h_open_menu .open_menu>span:not(.txt)::before,
	#h_open_menu .open_menu>span:not(.txt)::after { width: 28px; margin-bottom: 6px;  }
	#h_open_menu .open_menu>span:not(.txt)::after { width: 18px; margin: 0 0 0 auto; }
	#h_open_menu .open_menu .txt { font-size: 10px; margin-top: 8px; }

	.pos_fix #main_img { margin-top: 0; }
	.pos_fix #h_open_menu .open_menu::before { transform: rotate(45deg) translate(5px, 5px); width: 28px; }
	.pos_fix #h_open_menu .open_menu>span:not(.txt)::after { transform: rotate(-45deg) translate(5px, -5px); width: 28px; }
	.pos_fix #g_header .hd_logo,
	.pos_fix #g_header .hd_tit { opacity: 1; }

	#g_header.fixed .hd_logo,
	#g_header.fixed .hd_tit { opacity: 1; }
	#hd_search #form { width: 100%; }

	#g_header::after { display: none; }

	#g_header .hd_nav1400 { display: none; }
}


/* ---------------------------------------------------
	G-nav
------------------------------------------------------ */
#gnav_wrap { margin: 0 0 0 auto; }

@media screen and (max-width: 1365px) {
	#gnav_wrap { opacity: 0; pointer-events: none; transition: opacity .6s; position: fixed; top: 0; left: 0; background: #fff; width: 100%; height: auto; z-index: 998; min-width: auto; margin-top: 120px; }
	#gnav_wrap.active { opacity: 1; pointer-events: auto; }
	#gnav_wrap .gnav_inner { overflow: scroll; padding: 0 0 150px; display: flex; flex-direction: column; box-sizing: border-box; height: calc(100vh - 120px); }
	#g_header .hd_snav,
	#g_header .hd_nav { width: 88%; margin: 0 auto; }
	#g_header .hd_snav { margin-top: 40px; }
	#g_header .hd_nav { margin-top: 50px; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; }
	#g_header .hd_nav > li { width: 48%; padding: 20px 10px; border-bottom: 1px dashed var(--color02);  }
	#g_header .hd_nav > li > ul { width: 100%; position: static; opacity: 1; padding: 0; transition: none; margin-top: 15px; padding-left: 15px; margin-left: 10px; border-left: 1px solid var(--color02); border-radius: 0; max-height: none; }
	#g_header .hd_nav > li > ul.hactive { transition: none; }
	#g_header .hd_nav > li > .hacc_tit { position: relative; }
	#g_header .hd_nav > li > a::after { content: '＞'; margin-left: auto; font-size: 10px; color: var(--color02); }
	#g_header .hd_nav > li > .hacc_tit::after { content: ''; width: 10px; height: 1px; background: var(--color02); transform: rotate(90deg); display: block; margin-left: auto; transition: transform .7s; }
	#g_header .hd_nav > li > .hacc_tit::before { content: ''; width: 10px; height: 1px; background: var(--color02); transform: rotate(0); display: block; transition: transform .7s; position: absolute; right: 0; top: calc(50% - 1px); opacity: 1; }
	#g_header .hd_nav > li > .hacc_tit.hactive::after { transform: none; }
	#g_header .hd_nav > li > ul > li { border: none; padding: 0; }
	#g_header .hd_nav > li > ul > li > a,
	#g_header .hd_nav > li > ul > li > p { padding-left: 0; }
}

@media screen and (max-width: 600px) {
	#gnav_wrap { margin: 70px 0 0; }
	#gnav_wrap .gnav_inner { padding: 0 0 100px; height: calc(100vh - 70px); }
	#g_header .hd_nav { margin-top: 60px; order: 1; }
	#g_header .hd_nav > li { width: 100%; padding: 10px; }
	#g_header .hd_snav { margin-top: 50px; flex-direction: column; justify-content: center; align-items: flex-start; order: 2; }
	#g_header .hd_snav #hd_search { width: 100%; }
}

/* ---------------------------------------------------
	Main_title01
------------------------------------------------------ */
.main_tit01 { padding: 55px 0; text-align: center; border-top: 1px solid var(--color02); border-bottom: 1px solid var(--color02); }
.main_tit01 h1 span { display: block; }
.main_tit01 h1 span:nth-child(1) { font-size: 40px; text-transform: uppercase; letter-spacing: 0.1em; }
.main_tit01 h1 span:nth-child(2) { font-size: 15px; }

.main_tit02 { text-align: center; padding: 95px 0 100px; }
.main_tit02 h1 { font-size: 40px; padding-bottom: 75px; letter-spacing: 0.05em; }
.main_tit02 .slick-slide img { height: auto; }
.main_tit02 .slick-slide { height: auto;}

@media screen and (max-width: 600px) {
	.main_tit01 { padding: 30px 0; }
	.main_tit01 h1 span:nth-child(1) { font-size: 30px; letter-spacing: 0.07em;}
	.main_tit01 h1 span:nth-child(2) { font-size: 13px; }

	.main_tit02 { padding: 30px 0 45px;}
	.main_tit02 h1 { font-size: 22px; padding: 0 6% 25px; }

}


/* ---------------------------------------------------
	Contents
------------------------------------------------------ */

#lead_col { padding: 110px 0 0; text-align: center; }
#lead_col .lead_tit { font-size: 28px; margin-bottom: 80px; }
#lead_col .lead_txt { font-size: 15px; line-height: 2.3; }

#lead_col .cnav_col { display: flex; justify-content: space-between; flex-wrap: wrap; }
#lead_col .cnav_col li { width: min(274px, 24%); text-align: center; border: 1px solid var(--color02); box-sizing: border-box; }
#lead_col .cnav_col li a { display: block; width: 100%; padding: 15px 10px; box-sizing: border-box; }
#lead_col .cnav_col li a span { transition: all .5s; border-bottom: 1px solid transparent; }
#lead_col .cnav_col li:nth-child(n+5) { margin-top: 30px; }
#lead_col .cnav_col::after { content: ''; display: block; width: min(274px, 24%); }

@media screen and (hover: hover) {
	#lead_col .cnav_col li a:hover { opacity: 1; }
	#lead_col .cnav_col li a:hover span { border-color: #000; }
}
@media screen and (max-width: 600px) {
	#lead_col { padding: 60px 0 0; }
	#lead_col .lead_tit  { font-size: 22px; margin-bottom: 40px; }
	#lead_col .lead_txt { font-size: 14px; line-height: 1.8; text-align: left; }

	#lead_col .cnav_col { }
	#lead_col .cnav_col li { width: calc(50% - 5px); }
	#lead_col .cnav_col li a { padding: 10px; }
	#lead_col .cnav_col li:nth-child(n+5),
	#lead_col .cnav_col li:nth-child(n+3) { margin-top: 10px; }
	#lead_col .cnav_col::after { display: none; }
}


/* breadcrumb */
#contents_wrap #breadcrumb { margin: 120px auto 0; font-size: 13px; }
#contents_wrap #breadcrumb li { display: inline-block; line-height: 1.6;}
#contents_wrap #breadcrumb li:before { content: '>'; margin: 0 10px 0 5px; }
#contents_wrap #breadcrumb li:first-child:before { display: none;}

@media screen and (max-width: 600px) {
	#contents_wrap #breadcrumb { margin: 100px auto 0;}
}


/* tit */
.cmn_tit01 { padding-left: 65px; display: flex; align-items: center; background: no-repeat center left; }
.cmn_tit01 .jp { font-size: 26px; display: inline-block; }
.cmn_tit01 .en { font-size: 13px; margin-left: 25px; display: inline-block; color: rgba(0, 0, 0, 0.5); line-height: 1; }

@media screen and (max-width: 600px) {
	.cmn_tit01 { padding-left: 45px; }
	.cmn_tit01 .jp span { display: inline-block;}
	.cmn_tit01 .jp { font-size: 20px; }
	.cmn_tit01 .en { font-size: 8px; margin-left: 15px; flex-shrink: 0; }
}

/* btn */
.cmn_btn01 { line-height: 1; transition: all .3s; }
.cmn_btn01 > span { border-bottom: 1px solid #666; }
.cmn_btn01 > span::after { content: '＞'; transition: transform .3s; display: inline-block; margin-left: 15px; }
.cmn_btn02 .arrow { width: 120px; height: 77px; position: relative; }
.cmn_btn02 .arrow p { position: absolute; top: 40%; left: 0; display: inline-block; z-index: 2; }
.cmn_btn02 .arrow p:after { content: ''; width: 0%; height: 101%; position: absolute; top: 0; right: 0; background: #fff; }
.cmn_btn02 .arrow svg { position: absolute; top: 50%; right: 0; transform: translateY(-50%) scale(1, -1) rotate(90deg); width: 77px; height: 77px;}

@keyframes circle-in {
	0% {
		stroke-dashoffset: -280
	}

	to {
		stroke-dashoffset: 0
	}
}
@keyframes arrow-in {
	0% {
		width: 100%;
	}

	to {
		width: 0;
	}
}

@media screen and (hover: hover) {
	.cmn_btn01:hover span { border-color: transparent; opacity: 1; }
	.cmn_btn01:hover span::after { transform: translateX(2px); }
}

@media screen and (max-width: 600px) {
	.cmn_btn01 > span::after { margin-left: 10px; }
	.cmn_btn02 .arrow { width: 55px; height: 35px; }
	.cmn_btn02 .arrow p { width: 40px; }
	.cmn_btn02 .arrow svg { width: 35px; height: 35px;}
}

/* link */
.link_01 { display: inline-block; line-height: 1; text-indent: 0; color: #2262c1; border-bottom: 1px solid #2262c1; }
.link_01.prepare { color: #000; border-color: transparent; pointer-events: none; }

@media screen and (hover: hover) {
	.link_01:hover { color: #2262c1; border-color: transparent; }
	.link_01.prepare:hover { color: #000; opacity: 1; }
}

/* Magnific Popup */
.mfp-bg { opacity: 0; transition: all .5s ease-out; }
.mfp-bg.mfp-ready { opacity: 0.8; }
.mfp-bg.mfp-removing { opacity: 0;}
.mfp-wrap .mfp-content { opacity: 0; transition: all .5s ease-out; }
.mfp-wrap.mfp-ready .mfp-content { opacity: 1; }
.mfp-wrap.mfp-removing .mfp-content { opacity: 0; }
.mfp-close:active { top: 0;}

.pop_col { display: flex; flex-direction: column; align-items: center; position: relative; padding: 120px 6%; background: #fff; }
.pop_col dl { width: min(700px, 100%); margin: 0 auto;}
.pop_col dl dt { font-size: 25px; margin-bottom: 40px; }
.pop_col dl dd { font-size: 21px; line-height: 2; }
.pop_col .mfp-close { opacity: 1; transition: opacity .5s; }
.pop_col .top_close { width: 115px; height: 115px; padding: 0; top: -115px; }
.pop_col .top_close:active { top: -115px; }
.pop_col .top_close::before,
.pop_col .top_close::after { content: ''; background: #fff; width: 115px; height: 2px; display: block; position: absolute; top: 50%; right: 0; }
.pop_col .top_close::before { transform: rotate(45deg);}
.pop_col .top_close::after { transform: rotate(-45deg);}
.pop_col .bottom_close { margin-top: 50px; font-size: 17px; color: #000!important; text-align: center; display: block; position: static; width: fit-content; height: auto; padding: 0; line-height: 1.2; font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif; box-sizing: border-box; border-bottom: 1px solid #000; transition: opacity .5s, border .5s; }

@media screen and (hover: hover) {
	.pop_col .top_close:hover { opacity: 0.7; }
	.pop_col .bottom_close:hover { opacity: 0.7; border-color: transparent; }
}

@media screen and (max-width: 600px) {
	.pop_col { padding: 50px 6%; }
	.pop_col dl dt { font-size: 22px; margin-bottom: 25px; }
	.pop_col dl dd { font-size: 16px; line-height: 1.8; }
	.pop_col .top_close { width: 50px; height: 50px; top: -60px; }
	.pop_col .top_close:active { top: -60px; }
	.pop_col .top_close::before,
	.pop_col .top_close::after { width: 50px; height: 1px; }
}


/* ---------------------------------------------------
	#search_col
------------------------------------------------------ */
#search_col { padding: 140px 0; }
#search_col .cmn_tit01 { background-image: url(../img/common/hd_icon06.svg); }
#search_col .cmn_tit01 .jp { font-size: 26px; }
body:not(.home) #search_col .cmn_tit01 .en { display: none; }
#search_col .inner_sm > dl { display: flex; padding: 35px 0 0; }
#search_col .inner_sm > dl > dt { font-size: 20px; color: #fff; background: url(../img/common/icon_serch.svg) no-repeat center left 35px/20px, var(--color01); display: flex; align-items: center; justify-content: center; width: 234px; padding-left: 10px; box-sizing: border-box; font-family:"Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; }
#search_col .inner_sm > dl > dd { flex-grow: 1; background: var(--color03); padding: 20px 40px 20px 50px; }

/* form */
.ui-widget.ui-widget-content { z-index: 10!important; }
#search_489ban { font-family:"Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; }
#search_489ban form { display: flex; justify-content: space-between; }
#search_489ban .main_489ban { display: flex; }
#search_489ban input[type="text"],
#search_489ban select {
	margin: 0; padding: 0 20px 0 10px; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 15px; line-height: 35px; outline: none; font-family:"Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; background: url(../img/common/arrow02.svg) no-repeat center right 3px/9px, #fff; color: #000; }
#search_489ban input[type="text"]:disabled,
#search_489ban select:disabled { color: #888; opacity: 1; -webkit-text-fill-color: #888; }
#search_489ban .date_489ban,
#search_489ban .area_489ban { position: relative; box-sizing: border-box; }
#search_489ban .date_489ban dt,
#search_489ban .area_489ban dt { letter-spacing: 0; }
#search_489ban .date_489ban { margin-left: 25px; }
#search_489ban .date_489ban dd { display: flex; }
#search_489ban .date_489ban dd select:nth-of-type(1) { width: 135px; }
#search_489ban .date_489ban dd select:nth-of-type(2) { width: 80px; }
#search_489ban .date_489ban dd select + select { margin-left: 5px; }
#search_489ban .date_489ban dd label { display:flex; align-items: center; justify-content: center; width: 85px; letter-spacing:0; }
#search_489ban .date_489ban dd label input { transform: scale(1.05); }
#search_489ban .area_489ban select { width: 100%; }
#search_489ban .area_489ban { width: 210px; }
#search_489ban button { flex-grow: 1; outline: none; max-width: 190px; height: 57px; margin-left: 40px; padding: 0; font-size: 15px; border: 0; color: #fff; background: var(--color01); letter-spacing: .1em; cursor: pointer; transition: opacity .5s; font-family:"Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;}
#search_489ban button::after { content: '＞'; transition: transform .3s; display: inline-block; margin-left: 15px; }

@media screen and (hover: hover) {
	#search_489ban button:hover { opacity: .7; }
	#search_489ban input[type="text" i]:hover { cursor: default; }
	#search_489ban button:hover::after { transform: translateX(2px); }
}

@media screen and (max-width: 600px) {
	#search_col { padding: 80px 0; }
	#search_col .cmn_tit01 { padding-top: 5px; padding-bottom: 5px; background-size: 25px; }
	#search_col .cmn_tit01 .jp { font-size: 20px; }
	#search_col .cmn_tit01 .en { margin-left: 15px; }
	#search_col .inner_sm > dl { flex-direction: column; padding: 20px 0 0; }
	#search_col .inner_sm > dl > dt { font-size: 18px; width: 100%; padding: 10px 20px; background-position: center left calc(50% - 70px); }
	#search_col .inner_sm > dl > dd { box-sizing: border-box; width: 100%; padding: 20px 30px; }

	/* form */
	#search_489ban form { flex-direction: column; }
	#search_489ban .main_489ban { flex-direction: column; width: 90%; margin: 0 auto; }
	#search_489ban input[type="text"],
	#search_489ban select { font-size: 16px; }
	#search_489ban .date_489ban { margin: 15px 0 0; }
	#search_489ban .date_489ban dt,
	#search_489ban .area_489ban dt { margin-bottom: 5px; }
	#search_489ban .date_489ban dd { flex-wrap: wrap; }
	#search_489ban .date_489ban dd select:nth-of-type(1) { width: 60%; }
	#search_489ban .date_489ban dd select:nth-of-type(2) { width: calc(40% - 5px); }
	#search_489ban .date_489ban dd label { justify-content: flex-start; width: 100%; margin-top: 10px; }
	#search_489ban .area_489ban select { width: 100%; }
	#search_489ban .area_489ban { width: 100%; }
	#search_489ban button { height: 45px; max-width: none; margin: 20px 0 0; font-size: 15px; }
}


/* ---------------------------------------------------
	Area_map
------------------------------------------------------ */
#area_map { position: relative; }
#area_map .map_col { background: linear-gradient(to right, #e3f0e7 50%, #9bd3da 50%); overflow: hidden; position: relative; padding-bottom: 689px; }
#area_map .map_col .map_img01 { width: 1585px; position: absolute; left: 50%; transform: translateX(-50%); }
#area_map .map_col .map_img02 { position: absolute; bottom: 20px; right: calc(50% - 675px); width: min(306px, 21%); }
#area_map .map_col .area_name { position: absolute; top: 130px; left: calc(50% - 568px); width: 1118px; z-index: 5; }
#area_map .map_col .area_name li { position: absolute; }
#area_map .map_col .area_name li a .anim_circle { position: absolute; border-radius: 50%; width: 9px; height: 9px; background: #a3a377; box-sizing: border-box; }
#area_map .map_col .area_name li a .anim_circle::after { content: ''; border-radius: 50%; width: 31px; height: 31px; border: 2px solid #a3a377; position: absolute; box-sizing: border-box; animation: circleFade 2s infinite; box-shadow: 0 0 4px #a3a377;  margin: 0; transition: none; top: calc(50% - 15.5px); left: calc(50% - 15.5px); }
#area_map .map_col .area_name li a { display: inline-block; box-sizing: border-box; color: #fff; background: var(--color01); padding: 10px 45px 10px 35px; border-radius: 50px; border-bottom: none; font-size: 18px; position: relative; }
#area_map .map_col .area_name li a::before { content: ''; width: 100px; height: 1px; background: #a3a377; position: absolute; transform-origin: center; z-index: -1; pointer-events: none; }
#area_map .map_col .area_name li a span { border: none;}
#area_map .map_col .area_name li p { margin: 10px 0 0 15px; }
#area_map .map_col .area_name li:nth-child(1) { top: 0; right: 0; }
#area_map .map_col .area_name li:nth-child(2) { top: 160px; right: 100px; }
#area_map .map_col .area_name li:nth-child(3) { top: 340px; right: 188px; }
#area_map .map_col .area_name li:nth-child(4) { top: 195px; left: 0; }
#area_map .map_col .area_name li:nth-child(2) a { padding: 10px 35px 10px 35px; }
#area_map .map_col .area_name li:nth-child(3) a { padding: 10px 25px 10px 35px; }
#area_map .map_col .area_name li:nth-child(1) a::before { width: 162px; transform: rotate(-33deg); bottom: -25px; left: -148px; }
#area_map .map_col .area_name li:nth-child(2) a::before { width: 118px; transform: rotate(13deg); top: 7px; left: -116px; }
#area_map .map_col .area_name li:nth-child(3) a::before { width: 149px; transform: rotate(57.4deg); top: -51px; left: -113px; }
#area_map .map_col .area_name li:nth-child(4) a::before { width: 215px; transform: rotate(39deg); bottom: -57px; right: -186px; }
#area_map .map_col .area_name li:nth-child(1) a .anim_circle { bottom: -75px; left: -143px;}
#area_map .map_col .area_name li:nth-child(2) a .anim_circle { top: -12px; left: -124px; }
#area_map .map_col .area_name li:nth-child(3) a .anim_circle { top: -118px; left: -83px;}
#area_map .map_col .area_name li:nth-child(4) a .anim_circle { bottom: -131px; right: -170px; }

@keyframes circleFade {
	0% { opacity: 1; transform: scale(0); }
	100% { opacity: 0; transform: scale(1); }
}

@media screen and (hover: hover) {
	#area_map .map_col .area_name li a:hover { color: var(--color01); background: #fff; opacity: 1;}
}

@media screen and (max-width: 1400px) {
	#area_map .map_col .map_img02 { right: 2%; }
}

@media screen and (max-width: 600px) {
	#area_map { background: var(--color03); padding-bottom: 50px; }
	#area_map .map_col { padding-bottom: 0; background: transparent; }
	#area_map .map_col .map_img01 { position: static; width: 100%; transform: none; }
	#area_map .map_col .map_img02 { position: static; margin: 30px auto 0; width: 60%; }
	#area_map .map_col .area_name { width: 91.5%; left: 4.25%; top: 5.6vw; }
	#area_map .map_col .area_name li a { padding: 1.333vw 2.667vw 1.333vw 5.333vw; font-size: 3.2vw; }
	#area_map .map_col .area_name li a .anim_circle { width: 1.733vw; height: 1.733vw; }
	#area_map .map_col .area_name li a .anim_circle::after { width: 4.667vw; height: 4.667vw; top: calc(50% - (4.667vw / 2)); left: calc(50% - (4.667vw / 2)); }
	#area_map .map_col .area_name li p { margin: 5px 0 0 10px; font-size: 2.667vw; }
	#area_map .map_col .area_name li:nth-child(1) { top: 0; right: auto; left: 0; }
	#area_map .map_col .area_name li:nth-child(2) { top: 33.067vw; right: 0; }
	#area_map .map_col .area_name li:nth-child(3) { top: 56.667vw; right: 1.867vw; }
	#area_map .map_col .area_name li:nth-child(4) { top: 77.333vw; left: auto; right: 6.133vw; }
	#area_map .map_col .area_name li:nth-child(2) a { padding: 1.333vw 3vw 1.333vw 6vw; }
	#area_map .map_col .area_name li:nth-child(2) a { padding: 1.333vw 2.667vw 1.333vw 5.333vw; }
	#area_map .map_col .area_name li:nth-child(3) a { padding: 1.333vw 2.667vw 1.333vw 5.333vw; }
	#area_map .map_col .area_name li:nth-child(1) a::before { background: url(../img/home/map_arrow01.svg) no-repeat center/contain; width: 49vw; height: 6.5vw; transform: none; bottom: -2.4vw; right: -47vw; left: auto; }
	#area_map .map_col .area_name li:nth-child(2) a::before { background: url(../img/home/map_arrow02.svg) no-repeat center/contain; width: 9.2vw; height: 13.067vw; transform: none; top: -13vw; left: -2vw; }
	#area_map .map_col .area_name li:nth-child(3) a::before { background: url(../img/home/map_arrow03.svg) no-repeat center/contain; width: 10vw; height: 25vw; transform: none; top: -21.733vw; left: -8.6vw; }
	#area_map .map_col .area_name li:nth-child(4) a::before { background: url(../img/home/map_arrow04.svg) no-repeat center/contain; width: 17.333vw; height: 14.267vw; transform: none; top: -10.8vw; bottom: auto; left: -16.667vw; right: auto; }
	#area_map .map_col .area_name li:nth-child(1) a .anim_circle { bottom: -3.2vw; left: auto; right: -48vw;}
	#area_map .map_col .area_name li:nth-child(2) a .anim_circle { top: -14vw; left: -3vw; }
	#area_map .map_col .area_name li:nth-child(3) a .anim_circle { top: -23vw; left: -9.6vw;}
	#area_map .map_col .area_name li:nth-child(4) a .anim_circle { bottom: auto; right: auto; top: -12vw; left: -17.5vw; }
}


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#pagetop { position: fixed; bottom: 240px; right: 20px; z-index: 90; transform: rotate(-90deg); transform-origin: right; }
#pagetop a { display: block; position: relative; transition: opacity 0.5s; }

#footer_wrap { padding-top: 147px; position: relative; overflow: hidden; }
#footer_wrap::before { content: ''; width: 2919px; height: 147px; background: url(../img/common/ft_illust01.svg) no-repeat center/contain; position: absolute; top: 0; left: 50%; transform: translateX(-50%);}
#footer { background: var(--color03); padding: 0 0 110px; letter-spacing: 0.05em; }
#footer > div { display: flex; justify-content: space-between; align-items: flex-end; line-height: 1.6;}

#f_logo { width: 50%; font-style: normal; display: flex; align-items: center; }
#f_logo > a { width: 126px; }
#f_logo > div { margin-left: 35px; }
#f_logo > div p { font-size: 18px; }
#f_logo > div p span:nth-child(1) { font-size: 22px; margin-left: 15px; }
#f_logo > div p .en { display: block; font-size: 12px; line-height: 1; margin-top: 5px; }
#f_logo img { display: block; width: 100%; height: auto; }
#f_logo address { margin-top: 20px; font-size: 13px; }
#f_logo address .time { margin-left: 15px;}
#f_logo address span { display: inline-block; }

#f_nav { padding: 15px 0 0; width: 44%; }
#f_nav #fnav { text-align: right; font-size: 13px; }
#f_nav #fnav li { display: inline-block; }
#f_nav #fnav li:not(:first-child)::before { content: '/'; margin: 0 10px; }
#f_nav > div { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 75px; }
#f_nav .sns_link { display: flex; align-items: center; margin-left: 35px; }
#f_nav .sns_link li + li { margin-left: 15px; }
#f_nav .sns_link img { display: block; }
#f_nav .lg_link { font-size: 12px; border-bottom: 1px solid var(--color02); display: flex; align-items: center; justify-content: space-between; width: 82px; padding-bottom: 3px; }
#f_nav .lg_link::before { content: ''; width: 15px; height: 15px; background: url(../img/common/icon_lg.svg) no-repeat center/contain; display: block; }

@media screen and (hover: hover) {
	#pagetop a:hover { opacity: 0.5; }
}

@media screen and (max-width: 600px) {
	#pagetop { bottom: 150px; right: 3%; }
	#pagetop a img { width: 70px; height: auto; }

	#footer_wrap { padding-top: 8vw; }
	#footer_wrap::before { width: 170vw; height: 8vw; }
	#footer { padding: 0 0 80px; }
	#footer > div { flex-direction: column; align-items: center; }

	#f_logo { width: 100%; flex-direction: column; }
	#f_logo > a { width: 100px; margin: 30px auto; }
	#f_logo > div { margin-left: 0; text-align: center; }
	#f_logo > div p { font-size: 16px; }
	#f_logo > div p span:nth-child(1) { font-size: 20px; margin-left: 10px; }
	#f_logo > div p .en { margin: 0; font-size: 10px; }

	#f_nav { margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--color02); width: 100%; }
	#f_nav #fnav { text-align: left; display: flex; justify-content: space-between; flex-wrap: wrap; }
	#f_nav #fnav li { width: 100%; display: flex; align-items: center; }
	#f_nav #fnav li + li { margin-top: 10px; }
	#f_nav #fnav li:not(:first-child)::before,
	#f_nav #fnav li::before { content: ''; width: 3px; height: 1px; background: #000; display: block; margin: 0 5px 0 0; }
	#f_nav > div { flex-direction: column-reverse; justify-content: center; margin-bottom: 30px; }
	#f_nav .sns_link { margin: 0; }
	#f_nav .sns_link li + li { margin-left: 15px; }
	#f_nav .lg_link { font-size: 10px; width: 65px; margin: 20px 0 0; letter-spacing: 0; }
	#f_nav .lg_link::before { width: 12px; height: 12px; }
	#footer #copyright { width: 100%; margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--color02); font-size: 13px; text-align: center;}
}

#sp_nav { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 90; }
#sp_nav ul { display: flex; text-align: center; font-size: 14px; }
#sp_nav ul li { width: 50%; box-sizing: border-box; }
#sp_nav ul li + li { border-left: 1px solid #fff; }
#sp_nav ul li a { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--color01); color: #fff; padding: 12px 10px; box-sizing: border-box; }
#sp_nav ul li a span span { display: inline-block; }

@media screen and (hover: hover) {
}

@media screen and (max-width: 600px) {
}

/* ---------------------------------------------------
	clear
------------------------------------------------------ */


/* ---------------------------------------------------
	更新履歴
------------------------------------------------------

180228_〇〇_cssを更新したらここに更新履歴を追加していきます。多くなったら上の方は削除。


------------------------------------------------------ */
