@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital@1&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

*,
*:after,
*:before {
	box-sizing: border-box;
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	text-align: left;
	color: #000000;
	letter-spacing: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

input,
select,
button,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

button {
	cursor: pointer;
}

textarea {
	resize: vertical;
}

select::-ms-expand {
	display: none;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

/* ---------------------------------------
  responsive
-----------------------------------------*/

@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}


/* ---------------------------------------
  base
-----------------------------------------*/
body {
	position: relative;
	word-wrap: break-word;
	font-weight: normal;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	background-color: #fff;
}


p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
	font-size: 2rem;
	line-height: 1.65;
	text-align: justify;
}

main {
	display: block;
	overflow: hidden;
}

section {
	position: relative;
}

.wrap {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}


.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.small {
	font-size: 1.8rem;
}

.ls0 {
	letter-spacing: 0;
}

.link_txt {
	text-decoration: underline;
}

.link_txt:hover {
	text-decoration: none;
}

.bold {
	font-weight: 700;
}

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

.fade {
	transition: opacity .3s;
}

.fade:hover {
	opacity: .8;
}

.hover_img {
	position: relative;
}


.en {
	font-family: 'EB Garamond', serif;
	font-weight: 400;
	font-style: italic;
}

@media screen and (max-width: 768px) {
	body {
		-webkit-text-size-adjust: 100%;
		min-width: inherit;
		font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
	}

	img {
		width: 100%;
	}

	p,
	dt,
	dd,
	li,
	th,
	td,
	input,
	button,
	textarea,
	select {
		font-size: 3.2vw;
	}

	.wrap {
		width: 84%;
	}

	.wrap.sp_l {
		width: 92%;
	}

	.sp_block {
		display: block !important;
	}

	.small {
		font-size: 2.8vw;
	}

	svg {
		width: 100%;
		height: auto;
	}
}

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

#header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 230px;
	z-index: 999;

}

#header .logo_wrap {
	padding-top: 10px;
	/*	padding-bottom: 10px;*/
	height: 120px;
	background-color: #FFE100;
}

#header .logo_wrap .wrap {
	height: 100%;
	position: relative;
}

#header .logo {
	width: 633px;
	line-height: 1;
	margin: 0 auto;
}

#header .kusairomap a {
	display: block;
	position: relative;
}

#header .kusairomap a img {
	width: 100% !important;
	transition: .3s ease;
}

#header .kusairomap a::before {
	content: "";
	width: 314px;
	height: 314px;
	background: url(../img/common/btn_kuroisamap_shadow.png) no-repeat center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: .3s ease;
	pointer-events: none;
	z-index: -1;
}

#header .kusairomap a:hover::before {
	opacity: 1;
}

/*nav*/
#header nav {
	position: relative;
}

#header nav::before,
#header nav::after {
	content: "";
	width: calc(50% - 550px);
	height: 110px;
	background-repeat: repeat-x;
	background-image: url(../img/common/bg03_nav.png);
	position: absolute;
	top: 0;
	z-index: -1;
}

#header nav::before {
	background-position: right top;
	left: 0;
}

#header nav::after {
	background-position: left top;
	right: 0;
}


#header nav .kusairomap {
	position: absolute;
	right: 10px;
	top: -121px;
	z-index: 2;
}

#header .kusairomap.sp {
	position: absolute;
	right: 5px;
	top: 55px;
	width: 72px;
}

#header nav .gnavi {
	height: 110px;
	display: flex;
	align-items: center;
	position: relative;
}


#header nav .gnavi > li {
	width: 20%;
	height: 100%;
	position: relative;
}

#header nav .gnavi > li:last-child {
	margin-right: 0;
}

#header nav .gnavi > li > a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 1.9rem;
	line-height: 1.37;
	letter-spacing: 0.04em;
	padding-bottom: 46px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center bottom;
	background-image: url(../img/common/bg02_nav.png);
	border-top: 1px solid #FFE100;
	/*	transition: .3s ease;*/
}

#header nav .gnavi > li:first-child > a {
	background-image: url(../img/common/bg01_nav.png);
}


#header nav .gnavi > li > a .arw {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid #000;
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translatex(-50%);
	transition: .3s ease;
}

#header nav .gnavi > li > a .arw::before {
	content: "";
	width: 6px;
	height: 6px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	position: absolute;
	right: 8px;
	top: 7px;
	transform: rotate(-45deg);
	transition: .3s ease;
}

#header nav .gnavi > li > a:hover .arw {
	background-color: #000;
}

#header nav .gnavi > li > a:hover .arw:before {
	border-color: #FFE100;
}

@media screen and (min-width: 769px) {
	#header::before {
		content: "";
		width: 100%;
		height: 5px;
		border-top: 5px solid #FDEE00;
		box-shadow: 0px 4px 4px 0px #FDEE00;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}

	#header .logo_wrap {
		border-top: 16px solid #F7D000;
	}

	#header nav .gnavi::after {
		content: "";
		width: 20%;
		height: 100%;
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-position: center bottom;
		background-image: url(../img/common/bg02_nav.png);
		position: absolute;
		right: 0;
		bottom: 0;
	}

	#header nav .gnavi > li > a:hover {
		background-image: url(../img/common/bg02_nav_on.png);
	}

	#header nav .gnavi > li:first-child > a:hover {
		background-image: url(../img/common/bg01_nav_on.png);
	}


	#header nav .gnavi > li a::before {
		content: "";
		position: absolute;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% auto;
		z-index: -1;
		opacity: 0;
	}

	#header nav .gnavi > li:nth-child(1) a::before {
		opacity: 1;
		width: 92px;
		height: 103px;
		background-image: url(../img/common/nav_hanamaru01.png);
		left: -45px;
		bottom: -14px;
	}


	#header nav .gnavi > li:nth-child(2) a::before {
		width: 48px;
		height: 58px;
		background-image: url(../img/common/nav_hanamaru02.png);
		left: -5px;
		bottom: -2px;
	}

	#header nav .gnavi > li:nth-child(3) a::before {
		width: 49px;
		height: 59px;
		background-image: url(../img/common/nav_hanamaru03.png);
		left: -5px;
		bottom: -2px;
	}

	#header nav .gnavi > li:nth-child(4) a::before {
		width: 46px;
		height: 58px;
		background-image: url(../img/common/nav_hanamaru04.png);
		left: -2px;
		bottom: -4px;
	}

	#header nav .gnavi > li a:hover::before {
		z-index: 1;
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	#header {
		height: 50px;
		position: fixed;
		left: 0;
		top: 0;
	}

	#header .logo_wrap {
		width: 100%;
		height: 100%;
		padding: 0 0 0 4%;
		background: url(../img/common/header_bg_sp.png) repeat-x center / auto 50px;
	}

	#header .logo_wrap .wrap {
		width: 100%;
		display: flex;
		align-items: center;
	}

	#header .logo {
		width: 293px;
		margin: 0 0 4px;
	}

	#header .menu-trigger {
		display: block;
		position: absolute;
		top: 4px;
		right: 4px;
		width: 42px;
		height: 42px;
		z-index: 999;
		text-align: center;
		background: #000;
		border-radius: 50%;
	}

	#header .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		right: 11px;
		width: 20px;
		height: 2px;
		background-color: #FFE100;
	}

	#header .menu-trigger span:nth-of-type(1) {
		top: 10px;
	}

	#header .menu-trigger span:nth-of-type(2) {
		top: 16px;
	}

	#header .menu-trigger span:nth-of-type(3) {
		top: 23px;
	}

	#header .menu-trigger .menu-trigger_menu {
		width: 24px;
    left: 50%;
    margin-left: -12px;
    top: 25px;
		position: absolute;
	}

	#header.navOpen .menu-trigger span:nth-of-type(1) {
		top: 17px;
		transform: rotate(-45deg);
	}

	#header.navOpen .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}

	#header.navOpen .menu-trigger span:nth-of-type(3) {
		top: 17px;
		transform: rotate(45deg);
	}


	/*nav*/
	#header nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 990;
		text-align: center;
		overflow-y: scroll;
		max-height: 100%;
		background: #005578 url(../img/common/header_nav_bg.png) no-repeat center bottom / 106vw auto;
		padding: 0 0 40vw;
		-webkit-overflow-scrolling: touch;
	}

	#header nav::before,
	#header nav::after {
		content: none;
	}

	#header nav .wrap {
		width: 100%;
		padding: 0;
	}

	#header nav .logo {
		width: 100%;
		text-align: center;
		padding: 3.2vw 0 0;
		background-color: #FFE100;
		position: relative;
		z-index: 1;
		margin: 0;
	}

	#header nav .logo::after {
		content: "";
		width: 100%;
		height: 14.13vw;
		background: url(../img/common/header_bg02_sp.png) no-repeat center bottom / 133vw auto;
		position: absolute;
		top: 100%;
		left: 0;
		margin-top: -2px;
		z-index: -2;
	}

	#header nav .logo a {
		display: block;
	}

	#header nav .logo img {
		width: 39.6vw;
	}

	/*
	#header nav .kusairomap {
		width: 28.533vw;
		right: auto;
		left: 3.6vw;
		top: 0;
	}
*/

	#header nav .gnavi {
		width: 84%;
		display: block;
		height: auto;
		margin: 16.8vw auto 0;
	}


	#header nav .gnavi > li {
		width: 100%;
		height: auto;
	}

	#header nav .gnavi > li:last-child {
		margin-right: 0;
	}


	#header nav .gnavi > li + li {
		margin-top: 2.13vw;
	}

	#header nav .gnavi > li > a {
		width: 100%;
		height: 11.2vw;
		font-size: 4vw;
		line-height: 11.2vw;
		padding-bottom: 0;
		border: none;
		background: #FFE100;
		border-radius: 5.6vw;
		display: block;
		text-align: center;
	}

	#header nav .gnavi > li:first-child > a {
		background: #FFE100;
	}


	#header nav .gnavi > li > a .arw {
		width: 4.8vw;
		height: 4.8vw;
		border: 2px solid #000;
		left: auto;
		right: 4vw;
		bottom: auto;
		top: 50%;
		transform: translateY(-50%);
	}

	#header nav .gnavi > li > a .arw::before {
		width: 1.4vw;
		height: 1.4vw;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
		right: 1.3vw;
		top: 1vw;
	}

	#header nav .corporate {
		text-align: center;
		margin: 4vw auto 0;
	}

	#header nav .corporate a {
		position: relative;
		display: inline-block;
		color: #fff;
		font-size: 3.2vw;
		letter-spacing: 0.08em;
		padding: 0 1.5em 0 0;
	}

	#header nav .corporate a::after {
		content: "";
		width: 3.07vw;
		height: 3.07vw;
		background: url(../img/common/ico_blank_white.svg) no-repeat left bottom / 100% auto;
		position: absolute;
		right: 0;
		bottom: .25em;
	}

	/*closebtn*/
	#header .closebtn {
		display: block;
		text-align: center;
		background: #fff;
		color: #005578;
		font-weight: bold;
		width: 49vw;
		height: 11.2vw;
		font-size: 4.48vw;
		line-height: 11.2vw;
		border-radius: 5.6vw;
		margin: 6vw auto 0;
		position: relative;
	}

	#header .closebtn span {
		display: inline-block;
		line-height: 1;
		width: 5.3vw;
		position: absolute;
		right: 4vw;
		top: 50%;
		transform: translateY(-50%);
	}

}

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

	#header .logo {
		width: 250px;
	}
}

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

/* main共通
--------------------------------*/
.bg_y {
	background-color: #FFE100;
}

.bg_dot {
	background-image: url(../img/common/bg_dot.png);
	background-color: rgba(0, 0, 0, .8);
}


/*パンくず*/
.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 10px 0;
}

.breadcrumb li {
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.6;
}

.breadcrumb li::after {
	content: "";
	width: 16px;
	height: 16px;
	background: url(../img/common/arw_breadcrumb.png) no-repeat center / 100% auto;
	display: inline-block;
	margin: 0 1em;
	position: relative;
	top: .1em;
	left: 0;
}

.breadcrumb li:last-child::after {
	display: none;
}

.breadcrumb li a {
	color: #CCCDCD;
	display: inline-block;
}

/*btn*/
.morebtn a {
	display: block;
	width: 250px;
	height: 60px;
	border-radius: 30px;
	background-color: #DB4F3E;
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	line-height: 1.2;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image: url(../img/common/morebtn_line.png);
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	white-space: nowrap;
	transition: .2s ease;
	text-decoration: none !important;
}

.morebtn .arw {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid #fff;
	position: absolute;
	right: 19px;
	top: 50%;
	transform: translateY(-50%);
}

.morebtn .arw::before {
	content: "";
	width: 6px;
	height: 6px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	right: 8px;
	top: 7px;
	transform: rotate(-45deg);
}

.btn a,
.mapbtn {
	display: inline-block;
	min-width: 250px;
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	color: #000;
	background: #FFE100;
	height: 60px;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 3px solid #FFE100;
	border-radius: 30px;
	font-weight: bold;
	padding: 0 1.8em 0 1em;
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	transition: .3s ease;
}

.mapbtn {
	width: 356px;
	padding: 0 1em;
	color: #000;
	background: #FFE100;
	border: 3px solid #000;
}

.btn .arw,
.mapbtn .arw {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid #000;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s ease;
}

.btn .arw::before,
.mapbtn .arw::before {
	content: "";
	width: 6px;
	height: 6px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	position: absolute;
	right: 8px;
	top: 7px;
	transform: rotate(-45deg) translateZ(0);
	transition: .3s ease;
}

.mapbtn .arw::before {
	border-color: #000;
	transform: rotate(45deg) translateZ(0);
	right: 7px;
	top: 6px;
}

.btn a:hover {
	background-color: #000;
	color: #FFE100;
}

.mapbtn:hover,
.mapbtn.active {
	background-color: #000;
	color: #FFE100;
	border-color: #000;
}

.btn a:hover .arw,
.btn a:hover .arw:before {
	border-color: #FFE100;
}

.mapbtn:hover .arw,
.mapbtn:hover .arw::before,
.mapbtn.active .arw,
.mapbtn.active .arw::before {
	border-color: #FFE100;
}


/*slider*/
.slider {
	display: none;
}

.slider.slick-initialized {
	display: block;
	/*slick-initializedが付与されたら表示*/
}


/*clip*/
.img.clip {
	position: relative;
	text-align: center;
	overflow: hidden;
}
.img.clip svg{
	overflow: hidden;
	backface-visibility: hidden;
}

/*IE*/

.ie .morebtn a,
.ie .btn a,
.ie .mapbtn {
	padding-top: .4em;
}

.ie .breadcrumb {
	padding: 14px 0 6px;
}

@media screen and (min-width: 769px) {

	.morebtn a:hover {
		background-image: url(../img/common/morebtn_line_on.png);
	}

}

@media screen and (max-width: 768px) {
	.bg_dot {
		background-size: 3vw auto;
	}


	/*パンくず*/
	.breadcrumb {
		padding: 2.8vw 0;
	}

	.breadcrumb li {
		font-size: 3.2vw;
	}

	.breadcrumb li::after {
		width: 3vw;
		height: 3vw;
		background: url(../img/common/arw_breadcrumb.png) no-repeat center / 100% auto;
	}

	.breadcrumb li:last-child::after {
		display: none;
	}

	.breadcrumb li a {
		color: #CCCDCD;
		display: inline-block;
	}

	/*btn*/
	.morebtn a {
		width: 66.67vw;
		height: 11.2vw;
		border-radius: 5.6vw;
		font-size: 4vw;
		background-image: url(../img/common/morebtn_line_sp.png);
		background-size: 64.8vw auto;
	}

	.morebtn .arw {
		width: 4.8vw;
		height: 4.8vw;
		right: 4vw;
	}

	.morebtn .arw::before {
		width: 1.4vw;
		height: 1.4vw;
		right: 1.3vw;
		top: 1vw;
	}

	.btn a,
	.mapbtn {
		width: 100%;
		min-width: inherit;
		font-size: 4vw;
		height: 11.2vw;
		border: 2px solid #FFE100;
		border-radius: 5.6vw;
		padding: 0 1.8em 0 1em;
	}

	.mapbtn {
		width: 100%;
		border: 2px solid #000;
	}

	.btn .arw,
	.mapbtn .arw {
		width: 4.8vw;
		height: 4.8vw;
		right: 4vw;
	}

	.btn .arw::before,
	.mapbtn .arw::before {
		width: 1.4vw;
		height: 1.4vw;
		right: 1.3vw;
		top: 1vw;
	}

	.mapbtn .arw::before {
		right: 1.2vw;
		top: 1vw;
	}

	/*clip*/
	svg {
		width: 100%;
		height: auto;
	}
}





/* ------------------------------
    mv
------------------------------ */
#sec_mv {
	width: 100%;
	height: 100vh;
	min-height: 1200px;
	background: url(../img/common/bg_main.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

@media screen and (max-width: 768px) {
	#sec_mv {
		height: 173.33vw;
		min-height: inherit;
		background-image: url(../img/common/bg_main_sp.jpg);
	}
}

/* ------------------------------
    sec_search
------------------------------ */
#sec_search {
	padding: 70px 0 65px;
	background-color: rgba(255, 255, 255, .94);
}

#sec_search .secttl {
	margin-bottom: 26px;
	padding-left: 32px;
}

#sec_search .illust {
	position: absolute;
	left: 78px;
	top: -59px;
}

#sec_search .search_ttl {
	position: relative;
	text-align: center;
	background-color: #FFE100;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.35;
	letter-spacing: 0.04em;
	border: 2px solid #000;
	border-radius: 30px;
	padding: .5em;
	margin-bottom: 1.25em;
}

#sec_search .search_cate .cate_list {
	display: flex;
	flex-wrap: wrap;
}

#sec_search .search_cate .cate_list .item {
	width: 263px;
	position: relative;
}


#sec_search .search_cate .cate_list .item a {
	display: block;
	position: relative;
}

#sec_search .search_cate .cate_list .item a span {
	display: block;
	height: 0;
	padding-top: 111px;
	overflow: hidden;
	transition: .2s ease;
	background-repeat: no-repeat;
}

#sec_search .search_cate .cate_list .item a::before {
	content: "";
	width: 100%;
	height: 100%;
	border: 4px solid #000;
	position: absolute;
	left: 0;
	top: 0;
	background: transparent;
	z-index: 1;
}


#sec_search .search_keyword {
	margin-top: 64px;
}

#sec_search .search_keyword .search_container {
	position: relative;
	width: 914px;
	margin: 0 auto 40px;
}

#sec_search .search_keyword .search_container input[type="text"] {
	width: 100%;
	height: 60px;
	border: 2px solid #000;
	border-radius: 30px;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.6;
	letter-spacing: 0.04em;
	padding: .9em 140px .7em 2em;
	background: #fff;
}

#sec_search .search_keyword .search_container input[type="submit"] {
	background-image: url("../img/common/ico_search.png");
	background-repeat: no-repeat;
	background-position: center;
	width: 130px;
	height: 60px;
	background-color: #ffe100;
	border: 2px solid #000;
	border-radius: 30px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	transition: .3s ease;
}

#sec_search .search_keyword .search_container input[type="submit"]:hover {
	background-image: url("../img/common/ico_search_on.png");
	background-color: #000;
}

#sec_search .search_keyword .ttl {
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	line-height: 1;
	margin-bottom: 1.3em;
	position: relative;
}

#sec_search .search_keyword .ttl::before {
	content: "";
	width: calc(100% - 13em);
	height: 2px;
	background-color: #000;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -1px;
}

#sec_search .search_keyword .tag_list {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	font-size: 1.8rem;
	line-height: 1.23;
	margin-bottom: 6px;
}

#sec_search .search_keyword .tag_list .tag a {
	display: inline-block;
	font-size: 1.8rem;
	line-height: 1.23;
	background-color: #FFE100;
	border-radius: 17px;
	padding: .4em 1.5em .268em;
	margin-right: 18px;
	margin-bottom: 18px;
	transition: .3s ease;
}

#sec_search .search_keyword .tag_list .tag a:hover {
	color: #FFE100;
	background-color: #000;
}

#sec_search .search_keyword .tag_list + .show_btn {
	position: relative;
	margin-top: 20px;
}

#sec_search .search_keyword .tag_list + .show_btn.active {
	margin-top: 0;
}

/* #sec_search .search_keyword .tag_list + .show_btn::before {
	content: "";
	width: 100%;
	height: 110px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 81.68%);
	position: absolute;
	bottom: 30px;
	left: 0;
	transition: .2s ease;
} */

#sec_search .search_keyword .tag_list + .show_btn.active::before {
	height: 0;
}

#sec_search .search_keyword .tag_list + .show_btn .arw::before {
	transition: .2s ease;
	transform: rotate(45deg);
	right: 7px;
	top: 6px;
	transition: .3s ease;
}

#sec_search .search_keyword .tag_list + .show_btn.active .arw::before {
	transform: rotate(-135deg);
	margin-top: 2px;
}

/*IE*/
.ie #sec_search .search_ttl {
	padding: .7em .5em .3em;
}

.ie #sec_search .search_keyword .tag_list .tag a {
	padding: .5em 1.5em .168em;
}

.ie #sec_search .search_keyword .ttl::before {
	margin-top: -3px;
}

@media screen and (min-width: 769px) {
	#sec_search .search_cate .cate_list .item + .item:not(:nth-child(4n + 1)) {
		margin-left: 16px;
	}

	#sec_search .search_cate .cate_list .item:nth-child(n + 5) {
		margin-top: 18px;
	}
}

@media screen and (max-width: 768px) {
	#sec_search {
		padding: 12vw 0;
	}

	#sec_search .secttl {
		width: 38.93vw;
		margin: 0 auto 7.73vw;
		padding-left: 0;
	}

	#sec_search .illust {
		width: 21.47vw;
		left: 0;
		top: -4vw;
	}

	#sec_search .search_ttl {
		font-size: 4.53vw;
		border: 2px solid #000;
		border-radius: 5.6vw;
	}


	#sec_search .search_cate .cate_list .item {
		width: 48.5%;
	}

	#sec_search .search_cate .cate_list .item:nth-child(even) {
		margin-left: 3%;
	}

	#sec_search .search_cate .cate_list .item:nth-child(n + 3) {
		margin-top: 3%;
	}

	#sec_search .search_cate .cate_list .item a::before {
		border: 2px solid #000;
	}

	#sec_search .search_keyword {
		margin-top: 64px;
	}


	#sec_search .search_keyword .search_container {
		width: 100%;
		margin: 0 auto 7vw;
	}

	#sec_search .search_keyword .search_container input[type="text"] {
		height: 11.2vw;
		border-radius: 5.6vw;
		font-size: 3.47vw;
		padding: .9em 17.33vw .7em 1.5em;
	}

	#sec_search .search_keyword .search_container input[type="submit"] {
		background-size: 5vw auto;
		width: 15.73vw;
		height: 11.2vw;
		border: 2px solid #000;
		border-radius: 5.6vw;
		background-image: url("../img/common/ico_search_on.png");
		background-color: #000;
	}

	#sec_search .search_keyword .ttl {
		font-size: 3.47vw;
	}

	#sec_search .search_keyword .tag_list {
		margin-bottom: 2vw;
	}

	#sec_search .search_keyword .tag_list .tag a {
		font-size: 3.47vw;
		border-radius: 3.2vw;
		padding: .32em 1.5em;
		margin-right: 3.6vw;
		margin-bottom: 3.6vw;
	}

	#sec_search .search_cate .cate_list .item a span {
		padding-top: 41.5%;
	}

	#sec_search .search_keyword .tag_list + .show_btn {
		margin-top: 0;
	}

	#sec_search .search_keyword .tag_list + .show_btn.active {
		margin-top: 0;
	}

	#sec_search .search_keyword .tag_list + .show_btn::before {
		height: 22vw;
		bottom: 5.6vw;
	}

	#sec_search .search_keyword .tag_list + .show_btn.active {
		/*		margin-top: 10px;*/
	}

	#sec_search .search_keyword .tag_list + .show_btn .arw::before {
		right: 1.1vw;
		top: 1vw;
	}

	#sec_search .search_keyword .tag_list + .show_btn.active .arw::before {
		margin-top: .5vw;
	}
}


/* ------------------------------
    sec_map
------------------------------ */
#sec_map {
	padding: 60px 0 0;
	background-color: rgba(255, 225, 0, .94);
}

#sec_map .secttl {
	margin-bottom: 45px;
}

#sec_map .illust {
	position: absolute;
	right: 40px;
	top: -50px;
}

#sec_map .map_ttl {
	position: relative;
	text-align: center;
	background-color: #fff;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.35;
	letter-spacing: 0.04em;
	border: 2px solid #000;
	border-radius: 30px;
	padding: .5em;
	margin-bottom: 1.5em;
}

/**/
.platina-wrapper {
	position: relative;
	width: 100%;
	height: 630px;
	display: none;
}

.platina-wrapper.show {
	display: block;
}

.platina-wrapper iframe {
	border: none;
	width: 100%;
	height: 100%;
}


.map-select {
	margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
}

.map-select .mapbtn {
	width: 100%;
}

/* 
.map-select .mapbtn + .mapbtn {
	margin-left: 16px;
} */

.illust img {
	opacity: 1 !important;
}

/*IE*/
.ie #sec_map .map_ttl {
	padding: .7em .5em .3em;
}


@media screen and (max-width: 480px) {
	.platina-wrapper {
		position: relative;
		height: auto;
	}

	.platina-wrapper::before {
		content: "";
		display: block;
		width: 100%;
		height: 0;
		padding-top: calc(100% / 3 * 4);
	}

	.platina-wrapper iframe {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
}

@media screen and (max-width: 768px) {
	#sec_map {
		padding: 13.6vw 0 0;
	}

	#sec_map .secttl {
		width: 48vw;
		margin-bottom: 8vw;
		margin-left: 5.87vw;
	}

	#sec_map .illust {
		width: 26.53vw;
		right: 2vw;
		top: -4vw;
	}

	#sec_map .map_ttl {
		font-size: 4.53vw;
		border: 2px solid #000;
		border-radius: 5.6vw;
		margin-bottom: 3.47vw;
	}

	/**/
	.platina-wrapper {
		height: 156vw;
	}

	.map-select {
		display: block;
		margin-bottom: 8vw;
	}

	.map-select .mapbtn {
		width: 100%;
	}

	.map-select .mapbtn + .mapbtn {
		margin-left: 0;
		margin-top: 3.47vw;
	}


}



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

/*pagetop*/
.pagetop {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 100;
}

.pagetop a {
	display: block;
}


footer {
	background-color: #FFE100;
	position: relative;
}

footer .wrap {
	padding: 50px 0 35px;
}

footer .logo {
	margin-bottom: 34px;
}

footer .sns .ttl span {
	font-weight: bold;
	font-size: 1.9rem;
	letter-spacing: 0.16em;
	line-height: 1.78;
	position: relative;
	display: inline-block;
	margin-bottom: .5em;
}

footer .sns .ttl span::before,
footer .sns .ttl span::after {
	content: "";
	width: 1em;
	height: 1em;
	background: url(../img/common/ttl_sns.svg) no-repeat right center;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: .2em;
}

footer .sns .ttl span::before {
	margin-right: .5em;
}

footer .sns .ttl span::after {
	margin-right: .2em;
	transform: scale(-1, 1);
}

footer .sns .list {
	justify-content: center;
}

footer .sns .list li {
	margin: 0 16px;
}

footer .sns .list li a {
	display: block;
}

footer .sns .list li a:hover {
	opacity: .7;
}

footer .sns .list li a img {
	width: 54px;
}

footer .f_navi {
	justify-content: center;
	margin-top: 50px;
}

footer .f_navi li {
	position: relative;
}

footer .f_navi li + li {
	margin-left: 65px;
}

footer .f_navi li + li::before {
	content: "";
	width: 1px;
	height: 20px;
	background-color: #000;
	transform: rotate(45deg);
	position: absolute;
	left: -32px;
	top: 7px;
}

footer .f_navi li a {
	position: relative;
	font-size: 1.6rem;
	padding: 0 1.5em 0 0;
	letter-spacing: 0.08em;
	transition: .3s ease;
}

footer .f_navi li a::after {
	content: "";
	width: 18px;
	height: 18px;
	background: url(../img/common/ico_blank_off.svg) no-repeat left bottom;
	position: absolute;
	right: 0;
	bottom: .25em;
}

footer .f_navi li a:hover::after {
	background: url(../img/common/ico_blank_on.svg) no-repeat center;
}

footer .copyright {
	background-color: #000;
	color: #FFE100;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.04em;
	padding: 1em 0;
}

.post-ratings {
	display: flex !important;
	align-items: center !important;
}

.post-ratings .hover_img {
	width: auto;
	height: auto;
}

.post-ratings img, .post-ratings-loading img, .post-ratings-image img {
	margin-right: 10px !important;
}

.ie .post-ratings img,
.ie .post-ratings-loading img,
.ie .post-ratings-image img {
	margin-top: -5px;
}

@media screen and (max-width: 768px) {
	.post-ratings img, .post-ratings-loading img, .post-ratings-image img {
		margin-right: 1.33vw !important;
	}
}

/*IE*/
.ie footer .f_navi li a::after {
	bottom: .55em;
}

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

	/*pagetop*/
	.pagetop {
		width: 15vw;
		bottom: 14vw;
		right: 1vw;
	}

	/*fixedmap*/
	.fixed_map {
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 100;
	}

	.fixed_map a {
		display: flex;
		align-items: center;
		height: 13.363vw;
		background-color: #db4f3e;
		padding-left: 2vw;
	}

	.fixed_map a img {
		width: 94.13vw;
	}

	/*footer*/
	footer .wrap {
		padding: 6.67vw 0;
	}

	footer .logo {
		width: 38.4vw;
		margin: 0 auto 6vw;
	}

	footer .sns .ttl span {
		font-size: 3.55vw;
		margin-bottom: .8em;
	}


	footer .sns .list li {
		width: 9.7vw;
		margin: 0 3vw;
	}

	footer .f_navi {
		margin-top: 6vw;
		display: block;
	}

	footer .f_navi li {
		text-align: center;
	}

	footer .f_navi li + li {
		margin-left: 0;
		margin-top: .5em;
	}

	footer .f_navi li + li::before {
		content: none;
	}

	footer .f_navi li a {
		font-size: 3.2vw;
	}

	footer .f_navi li a::after {
		width: 3.1vw;
		height: 3.1vw;
		background-size: 2.7vw 2.7vw;
		bottom: .25em;
	}

	footer .f_navi li a:hover::after {
		background-size: 3.1vw 3.1vw;
	}

	footer .copyright {
		font-size: 2.93vw;
		padding: .7em 0 15vw;
	}
}



/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */
