@charset "UTF-8";

:root {
	/* font */
	--gothic: "Gen Jyuu Gothic", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--title: "wanpaku-rera", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	/* color */
    --bg_brown: #F2EBE1;
	--bg_yellow: #FFFFE8;
    --bg_blue: #E2EDFF;
    --bg_green: #D6E5BC;
    --btn: #FFE100;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	word-wrap: break-word;
	color: #000000;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

fieldset,
img {
	border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: underline;
	transition: all 0.5s ease 0s;
	color: #222;
	outline: none;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

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



/*
	表示設定
------------------------------ */
body {
	line-height: 1.7;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1080px;
}

@media screen and (max-width: 768px) {
	.container {
		padding: 24px 16px;
	}
}

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	font-feature-settings: "pkna";
	letter-spacing: 0.05em;
}

body,
th,
td {
	color: var(--blk);
	font-size: 16px;
	font-weight: normal;
}

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

	body,
	th,
	td {
		font-size: 3.73333vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
/*ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}*/

/* note */
ul.note li {
	margin-left: 1em;
	text-indent: -1em;
	font-size: 14px;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: calc(1em - 2px);
	}
}

/* type */
ul.type1 li::before {
	content: "●";
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	margin: 0 auto;
	width: 100%;
	height: 60px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a.type1 {
	background-color: #F88AA7;
}

.linkBtn a.type2 {
	background-color: rgb(var(--btnColor));
}

.linkBtn a svg {
	width: 29.48px;
	height: auto;
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	position: absolute;
	top: 50%;
	right: -14px;
	z-index: 2;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		height: 13.33333vw;
	}

	.linkBtn a svg {
		right: -4%;
		width: 8%;
	}
}

/*
	linkBtn（cover）
------------------------------ */
.linkBtn a.cover {
	pointer-events: none;
	z-index: 1;
}

.linkBtn a.cover::before {
	background: rgb(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/* comingsoon */
.linkBtn a.comingsoon::before {
	content: "Coming Soon";
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: var(--btn);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 40px;
	bottom: 48px;
	z-index: 10;
	filter: drop-shadow(0px 3px 3px rgba(61, 38, 4, 0.25));
}

.pageTop p {
	position: fixed;
	right: 32px;
	bottom: 16px;
	z-index: 10;
}

.pageTop a svg {
	fill: #000;
	width: 24px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.pageTop a {
		width: 50px;
		height: 50px;
		right: 16px;
		bottom: 24px;
	}

	.pageTop a svg {
		width: 20px;
	}
}

/* ----------------------------------------------------
	toggle nav
---------------------------------------------------- */
/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		display: block;
		position: fixed;
		top: 25px;
		left: 25px;
		z-index: 1101;
	}

	.toggle__inner {
		position: relative;
		width: 36px;
		height: 36px;
		cursor: pointer;
	}

	.toggle__inner span {
		background: #F88AA7;
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 0;
		transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
	}

	.toggle__inner span:nth-child(1) {
		top: 2px;
	}

	.toggle__inner span:nth-child(2) {
		top: 50%;
		transform: translatey(-50%);
	}

	.toggle__inner span:nth-child(3) {
		bottom: 2px;
	}

	/* is-open */
	.is-open .toggle__inner span {
		background: #fff;
	}

	.is-open .toggle__inner span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translatey(-50%);
	}

	.is-open .toggle__inner span:nth-child(2) {
		width: 0;
	}

	.is-open .toggle__inner span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg) translatey(-50%);
	}
}

/*
	lp_gnav
------------------------------ */
.lp_gnav {
	background: rgb(var(--bg));
	width: 100%;
	height: 70px;
	font-size: 18px;
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 1100;
}

.lp_gnav__list {
	padding: 0 2em;
	height: 100%;
	display: flex;
}

.lp_gnav__list--item {
	height: 100%;
}

.lp_gnav__list--item a {
	padding: 0 1em;
	height: 100%;
	color: #5FBEE1;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: opacity 0.6s ease;
}

.lp_gnav__list--item a.pt {
	color: #F65D99;
}

.lp_gnav__list--item a:hover {
	opacity: 0.6;
}

@media screen and (max-width: 768px) {
	.lp_gnav {
		background: #F88AA7;
		padding-top: 86px;
		max-width: 80%;
		width: 100%;
		height: 100%;
		color: #fff;
		font-size: 4.68vw;
		text-align: left;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		transform: translateX(-100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.lp_gnav__list {
		display: block;
	}

	.lp_gnav__list--item {
		height: auto;
	}

	.lp_gnav__list--item a {
		padding: 0.5em 0;
		color: #fff;
		display: block;
	}

	.lp_gnav__list--item a.pt {
		color: #fff;
	}

	/* is-open */
	.is-open {
		overflow-x: hidden;
	}

	.is-open .lp_gnav {
		z-index: 1100;
		transform: translateX(0);
	}

	.is-open .filter.overlay {
		background: rgba(var(--bg), 0.8);
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1099;
	}
}

/* ---------------------------------------------------
	footer_sub
---------------------------------------------------- */
.footer_sub {
	background: #84CCC9;
	padding: 100px 0 120px;
}
.footer_sub .footer_sub_img {
	display: block;
	width: 18%;
	margin: 0 auto 2.5rem;
}
.footer_sub p {
    color: #fff;
    padding-bottom: 2.5rem;
    text-align: center;
}
.footer_sub .footer_sub_btn {
	display: flex;
	justify-content: center;
    flex-direction: row;
}
.footer_sub_btn_right{
    border-right: solid 1px #fff;
}
.footer_sub_btn_left, .footer_sub_btn_right {
    color: #fff;
	font-weight: 500;
    text-decoration: none;
    border-left: solid 1px #fff;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
	.footer_sub {
		padding: 2.5rem 0;
	}
	.footer_sub .footer_sub_img {
		width: 50%;
	}
    .footer_sub .footer_sub_btn {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    .footer_sub_btn_left, .footer_sub_btn_right {
        border-right: solid 1px #fff;
    }
}

/*
	copy
------------------------------ */
.lp_footer .copy {
	padding: 0 0 100px;
	color: #808080;
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.lp_footer .copy {
		padding: 0 0 16vw;
		font-size: 2.66667vw;
	}
}

/* 
	mv
---------------------------------------------------- */
.lp_mv {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
    padding: 4em 4em 7.5rem;
}
.lp_mv::after {
    content: "";
    position: absolute;
    background-image: url(../img/kv_left.webp);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 90px;
    left: 10%;
    width: 28%;
    height: 80px;
}
.lp_mv::before {
    content: '';
    position: absolute;
    background-image: url(../img/kv_rigut.webp);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 86px;
    right: 10%;
    width: 10%;
    height: 103px;
}

.lp_mv img {
	width: 100%;
}
.lp_mv h1 {
	position: absolute;
	text-align: center;
	top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
}
.lp_mv span {
	font-size: 22px;
}
.lp_main .container h2 {
    position: relative;
    font-family: var(--title);
    font-size: 2.5rem;
    text-align: center;
    font-weight: 5;
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
    .lp_mv {
        padding: 2rem 1.5em;
    }
    .lp_mv h1 {
        width: 67%;
        top: 47%;
    }
    .lp_mv::after {
        bottom: 17px;
        left: 5%;
        width: 58%;
        height: 34px;
    }
    .lp_mv::before {
        bottom: 19px;
        right: 8%;
        width: 20%;
        height: 41px;
    }
    .lp_main .container h2 {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
}

/* 
	read
---------------------------------------------------- */
.lp_read {
    margin-bottom: 7.5rem;
}
.lp_read .container h2::before {
    content: "";
    position: absolute;
    background-image: url(../img/title_yew.webp);
    background-size: cover;
    background-repeat: no-repeat;
    top: -17px;
    left: 18.5%;
    width: 74px;
    height: 81px;
    z-index: -1;
}
.lp_read .container p {
    font-family: var(--Gothic);
    font-size: 20px;
    font-weight: 500;
    line-height: 180%;
	text-align: center;
	padding-bottom: 3.5rem;
}
.lp_read .attention {
    background: var(--bg_brown);
    border-radius: 20px;
    padding: 2.5rem 6.5rem;
    position: relative;
}
.lp_read .attention::after {
    content: "";
    position: absolute;
    background-image: url("../img/attention_left.webp");
    background-size: cover;
    background-repeat: no-repeat;
    top: -15%;
    left: 4%;
    width: 164px;
    height: 140px;
}
.lp_read .attention::before {
    content: '';
    position: absolute;
    background-image: url("../img/attention_right.webp");
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 10%;
    right: 4%;
    width: 150px;
    height: 134px;
}
.lp_read .attention h3 {
    position: relative;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.lp_read .attention h3::after {
    content: '';
    position: absolute;
    background-image: url("../img/attention_top.webp");
    background-size: cover;
    background-repeat: no-repeat;
    top: -160%;
    right: 12%;
    width: 160px;
    height: 70px;
}
.lp_read .list-style {
    line-height: 180%;
    letter-spacing: 0px;
    font-weight: 500;
}
.lp_read .list-style li{
    position: relative;
    padding-left: 20px;
}
.lp_read .list-style li::before {
    content: "※";
    position: absolute;
    left: 0;
}

@media screen and (max-width: 768px) {
    .lp_read {
        margin-bottom: 2.5rem;
    }
    .lp_read .container p {
        font-size: 1rem;
        padding-bottom: 2.5rem;
    }
    .lp_read .container h2::before {
        top: -10px;
        left: 0.5%;
        width: 36px;
        height: 40px;
    }
    .lp_read .attention {
        padding: 2.5rem 20px 3.5rem;
    }
    .lp_read .attention::before {
        bottom: 2%;
        right: 4%;
        width: 75px;
        height: 67px;
    }
    .lp_read .attention::after {
        top: -4%;
        left: 6%;
        width: 82px;
        height: 71px;
    }
    .lp_read .attention h3 {
        font-size: 20px;
    }
    .lp_read .attention h3::after {
        top: -80%;
        right: 0;
        width: 100px;
        height: 45px;
    }
    .lp_read .attention::after {
        top: 0;
    }
    .lp_read .list-style li {
        padding-left: 14px;
    }
}

/* ---------------------------------------------------
	activity
---------------------------------------------------- */

.activity {
    background: var(--bg_yellow);
    padding: 7.5rem 0 0;
}
.activity .container h2 {
    z-index: 0;
}
.activity .container h2::before {
    content: "";
    position: absolute;
    background-image: url(../img/title_org.webp);
    background-size: cover;
    background-repeat: no-repeat;
    top: -17px;
    left: 28%;
    width: 74px;
    height: 81px;
    z-index: -1;
}
.activity .container h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .activity .container h2::before {
        top: -10px;
        left: 54px;
        width: 36px;
        height: 40px;
    }
    .activity .container h4 {
        font-size: 1rem!important;
        line-height: 1.6;
    }
}

/* ---------------------------------------------------
	SP アコーディオン タグ
---------------------------------------------------- */

.title {
	display: none;
}

@media screen and (max-width: 768px) {
	.accordion {
		margin: 0 auto;
		max-width: 100%;
	}

	.toggle {
		display: none;
	}

	.option {
		position: relative;
		background: #3D2604;
	}

	.title,
	.content {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transform: translateZ(0);
		transition: all 0.3s;
	}

	.title {
        padding: 0px 1rem 1.5rem 3.5rem;
        margin-bottom: 5.5rem;
        background: var(--bg_brown);
        display: block;
        color: #000;
        font-weight: bold;
        font-size: 16px;
	}

	.title span {
		position: relative;
		left: -41px;
		top: 26px;
		display: block;
        background: #fff;
		width: 26px;
		height: 26px;
		border-radius: 50%;
		z-index: -10;
	}

	.title::after,
	.title::before {
		content: "";
		position: absolute;
		left: 1.7em;
		top: 1.95em;
		width: 2px;
		height: 1em;
		background-color: #3D2604;
		transition: all 0.3s;
	}

	.title::after {
		transform: rotate(90deg);
	}

	.content {
		max-height: 0;
		overflow: hidden;
	}

	.content p {
		margin: 0;
		padding: 0.5em 1em 1em;
		font-size: 0.9em;
		line-height: 1.5;
	}

	.toggle:checked+.title+.content {
		max-height: max-content;
		transition: all 1.5s;
		height: auto;
        margin: -80px 0 40px;
        padding: 32px 16px;
	}

	.toggle:checked+.title::before {
		transform: rotate(90deg) !important;
	}
}

/* ---------------------------------------------------
	Top tag_area
---------------------------------------------------- */

.search-box_label {
      font-weight: bold;
    }
.is-hide {
      display: none;
    }
.top_article {
	padding-bottom: 0;
}
.top_article .tag_list {
    position: relative;
	padding: 40px 0;
    margin: 0 auto;
    max-width: 1080px;
}
.top_article .article_icon::after {
    content: "";
    position: absolute;
    background-image: url(../img/activity_left.webp);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    width: 260px;
    height: 110px;
}
.top_article .article_icon::before {
    content: "";
    position: absolute;
    background-image: url(../img/activity_right.webp);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    width: 330px;
    height: 110px;
}

.top_article form{
    display: flex;
    flex-direction: column;
}
.top_article .tag_title {
    margin-bottom: 2rem;
	text-align: left;
	position: relative;
}
.top_article .tag_title span {
    display: block;
    width: 20.5%;
    margin: 0 auto;
}
.tag-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 16px;
}
.tag-area input{
	display: none;
}
.tag-area label {
    font-size: 1.5rem;
    font-weight: 500;
    background: var(--bg_blue);
    padding: 0.5rem 1.5rem;
    color: #3D2604;
    border-radius: 3px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
.green label {
    background: var(--bg_green);
}
.tag-area .radio:hover {
  background-color: #a6c8ff;
}
.tag-area input[type="radio"]:checked + label {
    background: #588EE4;
	color: #fff;
}
.tag-area .checkbox:hover {
    background-color: #99b863;
}
.tag-area input[type="checkbox"]:checked + label {
    background: #758C4E;
	color: #fff;
}
.bule label {
    background-color: var(--bg_blue);
}
.bule .checkbox:hover {
    background-color: #a6c8ff;
}
.bule input[type="checkbox"]:checked + label {
    background: #588EE4;
	color: #fff;
}

.top_article .tag_clear, .top_article .more_clear {
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    background: #3D2604;
    border-radius: 3px;
    text-align: center;
    width: 250px;
    height: 48px;
    padding: 10px 16px;
    margin: 0 auto;
}
.top_article .more_clear {
    margin: 40px auto;
}
.top_article .tag_clear:hover, .top_article .more_clear:hover {
    opacity: 0.8;
}
.top_article .article_list {
    background: var(--bg_blue);
    padding: 40px 16px 0 16px;
}
.top_article .list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.top_article .list .list_item {
    width: 48.5%;
    background: #fff;
    align-items: flex-start;
    border-radius: 20px;
    padding: 24px;
}
.top_article .list .list_item img {
	border-radius: 10px;
    max-height: 469px;
    object-fit: cover;
    width: 100%;
}
.top_article .item-content {
	text-decoration: none;
}
.top_article .item-content .top-tag {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
}
.top_article .item-content p{
    line-height: 1.5;
    letter-spacing: 0;
}
.top_article .item-content p span{
    font-size: 13px;
}
.top_article .tag_table {
    width: 100%;
}
.top_article .tag_table tr {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.top_article .tag_table th {
    color: #588EE4;
    font-size: 1rem;
    font-weight: 500;
    width: 25%;
}
.top_article .tag_table td {
    text-align: left;
    letter-spacing: 0;
    width: 80%;
}
.top_article .conts-btn {
    width: 100%;
    text-decoration: none;
    background: var(--btn);
    padding: 12px;
    font-weight: 500;
    border-radius: 6px;
    text-align: center;
    margin-top: auto;
}
.top_article .conts-btn:hover {
    background: #ffd400!important;
    opacity: inherit;
}
.top_article  .tag_info {
    background: var(--bg_yellow);
    padding: 1rem;
    border-radius: 4px;
}
.top_article  .tag_info p {
    font-size: 14px;
    line-height: 1.6;
}
.top_article  .tag_info p span {
    color: #FF4E4E;
}


@media only screen and (max-width: 768px) {
    .top_article {
        background: var(--blk);
        padding: 0;
    }
    .top_article .list {
        gap: 16px;
    }
    .top_article .list .list_item {
        width: 100%;
        padding: 24px 16px;
    }
    
    .top_article .item-content h4 {
        letter-spacing: normal;
    }
    .top_article .tag_table th {
        width: 40%;
    }
    .top_article .tag_title span {
        width: 50%;
    }
    .top_article .tag_list {
        margin: 0;
        padding: 0;
    }
    .top_article .article_list {
        padding: 40px 16px;
    }
    .top_article .article_icon::before {
        width: 165px;
        height: 55px;
    }
    .top_article .article_icon::after {
        width: 130px;
        height: 55px;
    }
    .tag-area {
        justify-content: center;
        margin-bottom: 2.5rem;
        gap: 10px;
    }
    .tag-area label {
        font-size: 1rem;
        padding: 0.5rem 0.5rem;
        letter-spacing: -0.5px;
    }
}

/*
	title
------------------------------ */
.lp_hotels__title {
	margin-bottom: 1em;
	text-align: center;
}

.lp_hotels__title span {
	display: inline-block;
	position: relative;
}

.lp_hotels__title span img {
	width: auto;
	height: 50px;
}

.lp_hotels__title span svg {
	width: 71px;
	height: 61px;
	fill: #5FBEE1;
	stroke-width: 0px;
	position: absolute;
	top: -48px;
	right: -48px;
	content: "";
}

@media screen and (max-width: 768px) {
	.lp_hotels__title span img {
		height: 8vw;
	}

	.lp_hotels__title span svg {
		width: 11.36vw;
		height: 9.760002vw;
		top: -6vw;
		right: -8vw;
	}
}

/*
	copy
------------------------------ */
.lp_hotels__copy {
	margin-bottom: 2em;
	font-size: 22px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.lp_hotels__copy {
		font-size: 4.26667vw;
	}
}

/*
	category
------------------------------ */
.lp_hotels .category {
	margin: 0 auto;
	max-width: 1080px;
	font-size: 18px;
	/* font-weight: bold; */
}

@media screen and (max-width: 768px) {
	.lp_hotels .category {
		font-size: 3.73333vw;
	}
}

/* category__title */
.lp_hotels .category__title {
	margin-bottom: 2rem;
	text-align: left;
	position: relative;
}

.lp_hotels .category__title span {
	display: inline-block;
	position: relative;
	z-index: 2;
	border-left: 10px solid #e3588a;
	padding-left: 10px;
}

.lp_hotels .orange .category__title span {
	border-left: 10px solid #EC8B32;

}

.lp_hotels .green .category__title span {
	border-left: 10px solid #77C316;
	margin-left: 14px;

}

@media screen and (max-width: 768px) {
	.lp_hotels .category__title span {
		font-size: 20px;
	}
}

/* tag-list */
.lp_hotels .category__content .tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0px 19px;
	padding-bottom: 40px;
	gap: 15px;
}

.lp_hotels .category__content .tag-list .filter-tag {
	font-family: "Noto Sans JP";
	font-size: 16px;
	border: 2px solid #3D2604;
	padding: 8px 16px;
	color: #3D2604;
	border-radius: 3px;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}

.lp_hotels .category__content .tag-list .filter-tag:hover{
    background-color: #ffc3d9;
}
.lp_hotels .category__content .tag-list .filter-tag.active {
	background: #F65D99;
	color: #fff;
}

.lp_hotels .orange .category__content .tag-list .filter-tag:hover{
     background-color: #ffc58f;
}
.lp_hotels .orange .category__content .tag-list .filter-tag.active {
	background: #EC8B32;
}

.lp_hotels .category__content .all-check {
	width: 250px;
	height: 48px;
	padding: 10px 16px;
	margin: 0 auto;
	gap: 10px;
	border-radius: 3px;
}

.lp_hotels .category__content .all-check .all {
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	margin: auto;
	margin-bottom: 0;
	padding: 0;
}

@media screen and (max-width: 768px) {
	.lp_hotels .category__content .tag-list .filter-tag {
		margin: 0 0.25rem 0.5rem;
		padding: 0.25em 0.5em;
	}

	.lp_hotels .category__content .tag-list {
		margin: 0 auto;
		justify-content: center;
		padding-bottom: 2rem;
		gap: 4px;
	}

	.lp_hotels .category__content .all-check .all {
		padding: 0;
	}
}
/* ---------------------------------------------------
	pickup
---------------------------------------------------- */
.lp_pickup {
	background: #5FBEE1;
	padding: 100px 20px;
	color: rgb(var(--bg));
	border-top: solid 12px #F88AA7;
	border-bottom: solid 12px #F88AA7;
}

.lp_pickup .container {
	padding: 0;
	max-width: 1080px;
}

@media screen and (max-width: 768px) {
	.lp_pickup {
		padding: 13.33333vw 6.4vw;
	}
}

/*
	lead
------------------------------ */
.lp_pickup__lead .text {
	line-height: 2.11111;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 840px) {
	.lp_pickup__lead .text {
		font-size: 2.14286vw;
	}
}

@media screen and (max-width: 768px) {
	.lp_pickup__lead {
		margin-bottom: 3em;
	}

	.lp_pickup__lead .text {
		font-size: 3.73333vw;
	}
}

/*
	title
------------------------------ */
.lp_pickup__title {
	margin-bottom: 1em;
	padding-top: 6em;
	text-align: center;
}

.lp_pickup__title span {
	display: inline-block;
	position: relative;
}

.lp_pickup__title span img {
	width: auto;
	height: 50px;
}

.lp_pickup__title span svg {
	width: 71px;
	height: 61px;
	fill: #fff;
	stroke-width: 0px;
	position: absolute;
	top: -48px;
	right: -48px;
	content: "";
}

@media screen and (max-width: 768px) {
	.lp_pickup__title {
		padding-top: 2em;
	}

	.lp_pickup__title span img {
		height: 8vw;
	}

	.lp_pickup__title span svg {
		width: 11.36vw;
		height: 9.760002vw;
		top: -6vw;
		right: -8vw;
	}
}

/*
	copy
------------------------------ */
.lp_pickup__copy {
	font-size: 22px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.lp_pickup__copy {
		font-size: 4.26667vw;
	}
}

/*
	list
------------------------------ */
.lp_pickup__list .content {
	margin-top: 4em;
	padding-top: 4em;
	border-top: solid 3px rgb(var(--bg));
	display: flex;
	justify-content: space-between;
}

.lp_pickup__list .content:nth-child(even) {
	flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
	.lp_pickup__list .content {
		margin-top: 2em;
		padding-top: 2em;
		display: block;
	}
}

/* image */
.lp_pickup__list .content .image {
	margin: 0;
	width: 60.6383%;
}

@media screen and (max-width: 768px) {
	.lp_pickup__list .content .image {
		margin-bottom: 1em;
		width: 100%;
	}
}

/* detail */
.lp_pickup__list .content .detail {
	width: 34.04255%;
}

@media screen and (max-width: 768px) {
	.lp_pickup__list .content .detail {
		width: 100%;
	}
}

/* title */
.lp_pickup__list .content .detail .title {
	line-height: 1.5;
	font-size: 23px;
	font-weight: bold;
}

.lp_pickup__list .content .detail dt .hotel-name {
	margin-top: 0.5em;
	font-size: 18px;
	display: block;
}

.lp_pickup__list .content .detail dt .hotel-name a {
	color: #fff;
}

@media screen and (max-width: 940px) {
	.lp_pickup__list .content .detail .title {
		font-size: 2.44681vw;
	}

	.lp_pickup__list .content .detail dt .hotel-name {
		font-size: 1.91489vw;
	}
}

@media screen and (max-width: 768px) {
	.lp_pickup__list .content .detail .title {
		font-size: 5.33333vw;
		text-align: center;
	}

	.lp_pickup__list .content .detail dt .hotel-name {
		font-size: 4vw;
	}
}

/* detail dd */
.lp_pickup__list .content .detail dd {
	margin-top: 1em;
}

.lp_pickup__list .content .detail dd .text {
	line-height: 1.5;
	color: rgb(var(--blk));
	font-size: 17px;
	letter-spacing: -0.005em;
}

.lp_pickup__list .content .detail dd .linkBtn {
	margin-top: 1em;
	position: relative;
}

@media screen and (max-width: 940px) {
	.lp_pickup__list .content .detail dd .text {
		font-size: 1.80851vw;
	}
}

@media screen and (max-width: 768px) {
	.lp_pickup__list .content .detail dd .text {
		font-size: 3.77777vw;
	}
}


/*
	category__clear
------------------------------ */
.sortArea .category__clear {
	margin-bottom: 4em;
	text-align: center;
}

.sortArea .more {
	margin-top: 1em;
	text-align: center;
}

.category__clear .clear-filters,
.sortArea .more .load-more {
	margin: 0 auto;
	width: 250px;
	height: 48px;
	color: #fff;
	background: #3D2604;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.category__clear .clear-filters:hover,
.sortArea .more .load-more:hover {
	background: rgb(var(--blk));
	color: rgb(var(--bg));
	transition: all 0.5s ease 0s;
}

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

	.category__clear .clear-filters,
	.sortArea .more .load-more {
		width: 100%;
		height: 11.2vw;
		border-radius: 11.2vw;
	}
}

/*
	hotels__list
------------------------------ */
.hotels__bg {
	background: var(--bg);
	padding: 80px 0;
}

.hotels__box {
	max-width: 1080px;
	margin: 0 auto;
}

.hotels__list {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
}

.hotels__list li {
	background: rgb(var(--bg));
	box-shadow: 0 0 10px 0 rgba(var(--blk), 0.4);
	margin: 0 0.5em 1em;
	width: calc((100% - 3em) / 3);
	display: none;
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.hotels__list li a {
	color: rgb(var(--blk));
	text-decoration: none;
}

.hotels__list li a:hover {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.hotels__list li {
		margin: 0 0.5em 1em;
		width: 100%;
	}
}

/* hotels__image */
.hotels__list li .hotels__image {
	margin: 0;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.hotels__list li .hotels__image img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease-in-out;
}

.hotels__list li a:hover .hotels__image img {
	opacity: 1;
	transform: scale(1.1);
}

.hotels__list li .hotels__image .tagBox {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	bottom: 0;
	left: 0.5em;
}

.hotels__list li .hotels__image .tagBox .tag {
	background: rgb(var(--bg));
	margin: 0 0.5em 0.5em 0;
	padding: 0 1em;
	height: 28px;
	color: #F65D99;
	font-size: 13px;
	border-radius: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 1000px) {
	.hotels__list li .hotels__image .tagBox .tag {
		font-size: 1.3vw;
	}
}

@media screen and (max-width: 768px) {
	.hotels__list li .hotels__image .tagBox .tag {
		font-size: 2.93333vw;
	}
}

/* hotels__detail */
.hotels__detail {
	padding: 1.5em 0;
	text-align: center;
}

.hotels__detail .hotels__copy {
	margin-bottom: 1rem;
	color: #5FBEE1;
	font-size: 18px;
	font-weight: bold;
}

.hotels__detail .hotels__name {
	font-size: 14px;
}

@media screen and (max-width: 1000px) {
	.hotels__detail .hotels__copy {
		font-size: 1.8vw;
	}

	.hotels__detail .hotels__name {
		font-size: 1.4vw;
	}
}

@media screen and (max-width: 768px) {
	.hotels__detail .hotels__copy {
		font-size: 3.73333vw;
	}

	.hotels__detail .hotels__name {
		font-size: 3.2vw;
	}
}

/* ---------------------------------------------------
	banner
---------------------------------------------------- */
.lp_banner {
	background: #3E3A39;
	padding: 110px 0;
	color: #fff;
	text-align: center;
}

.lp_banner__title {
	margin-bottom: 1em;
	font-family: var(--mincho);
	font-size: 32px;
}

.lp_banner__lead {
	margin-bottom: 4em;
}

.lp_banner__list {
	margin: 0 auto;
	max-width: 637px;
}

.lp_banner__list li:not(:last-of-type) {
	margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
	.lp_banner {
		padding: 16vw 6.4vw;
	}

	.lp_banner__title {
		font-size: 6.4vw;
	}

	.lp_banner__lead {
		margin-bottom: 2em;
	}

	.lp_banner__list li:not(:last-of-type) {
		margin-bottom: 1em;
	}
}

/*==================================================
ギャラリーのためのcss
===================================*/
/*＝＝＝並び替えボタンチェックマークのCSS*/

.sort-btn {
	background: #fff;
	padding: 40px 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
}

.sort-btn dt {
	font-weight: bold;
	margin: 0 0 10px 0;
}

.sort-btn dd {
	margin: 0 0 10px 0;
}

.sort-btn ul {
	display: flex;
	flex-wrap: wrap;
}

.sort-btn li {
	margin: 0 10px;
	list-style: none;
}

.sort-btn ul li {
	position: relative;
	cursor: pointer;
	padding: 0 0 0 30px;
	margin: 0;
}

/*横幅が810px以下になった際の指定*/
@media only screen and (max-width: 810px) {
	.sort-btn {
		padding: 32px 16px;
	}

	.sort-btn li {
		width: 100%;
		margin: 0;
	}

	.sort-btn ul li {
		width: auto;
	}
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
	
    position:static;
    height: auto !important;
	/*並び替えの基準点を指定*/
}
/*各画像の横幅などの設定*/
.item {
	display: block;
	position:static;
	width: 33%;
	/*横並びで3つ表示*/
	z-index: 1;
	list-style: none;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-content h4 {
    color: #008D43;
    font-size: 1.4rem;
	text-align: left;
	line-height: 1.6;
	font-weight: 600;
}
.text-line{
    font-size: 1rem !important;
    background: linear-gradient(transparent 0%, #fff39c 0%);
    display: inline-block;
    padding: 4px 10px;
    margin: 6px 0;
    letter-spacing: -0.3px;
}
.item-content .attention {
    color: #fff !important;
    background-color: #ff8278 !important;
    font-weight: 400 !important;
}
.item-content .area-color {
    background-color: #d6e5bc!important;
}
.item-content .yellow-tag {
    background-color: #fff39c!important;
}
.enjoy-text {
    color: #000;
    padding: 0.5rem;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid #588ee4;
}
.enjoy-text strong {
    color: #588ee4;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
}
.item-content .top-tag {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
}

.item-content .top-tag li {
	color: #000;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    background: var(--bg_blue);
    padding: 4px 16px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*画像の横幅を100%にしてレスポンシブ化*/
.grid img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	/*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
	.grid {
        position:static;
        margin: 0 16px 40px!important;
        height: auto !important;
        gap: 16px!important;
    }
	.item {
        width: 47.6%!important;
		padding: 0;
        position:static;
	}
	.item-content {
		margin: 0;
	}
    .item-content .top-tag li {
        font-size: 14px;
    }
    .grid > li {
        margin-bottom: 16px!important;
        transform: none!important;
    }
    .enjoy-text strong {
        font-size: 18px;
    }
    .item-content h4 {
        font-size: 1.3rem;
    }
}


/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
.fancybox-thumbs {
	background: transparent !important;
}

.fancybox-thumbs__list a:before {
	border: 6px solid #FA999B;
}

/* --------------------------------------------------
	もっと見る
-----------------------------------------------------*/
.wrapper {
	height: auto !important;
}

.grid-container {
	background: #FAF9F6;
	padding-top: 80px;
}

.grid-inner {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	height: auto !important;
}

.grid {
	flex-wrap: wrap;
	display: flex;
    gap:0 30px;
}

.grid muuri {
	height: 300px;
}

.grid > li {
	box-sizing: border-box;
	text-align: center;
	opacity: 1;
	height: auto;
	width: 31.4%;
	transform: none!important;
	transition: all .4s ease 0s;
	display: flex;
	margin-bottom: 40px;
	gap: 30px;
}

.grid li img {
	border-radius: 3px;
	height: 222px;
	max-height: 222px;
	object-fit: cover;
}

.grid li.is-hidden {
	visibility: hidden;
	opacity: 0;
	height: 0;
	margin: 0 10px;
	padding: 0;
}

.grid-button {
	display: flex;
	width: 340px;
	height: 60px;
	padding: 10px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	background: #3D2604;
	margin: 0 auto;
}

.grid-button button {
	background: #3D2604;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
}

@media only screen and (max-width: 768px) {
	.grid-container {
		padding-top: 40px;
	}

	.grid li img {
		height: 110px;
		max-height: 150px;
	}

	.grid-inner {
		padding-bottom: 40px;
	}
}

.footer-copy {
	text-align: center;
	font-size: 12px;
}

.footer-copy > p {
	margin: 16px 0;
}

/* item-slide slick arrows */
.item-slide {
	position: relative;
}
.item-slide .slick-prev,
.item-slide .slick-next {
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.45);
	border-radius: 50%;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
}
.item-slide .slick-prev {
	left: 8px;
}
.item-slide .slick-next {
	right: 8px;
}
.item-slide .slick-prev:before,
.item-slide .slick-next:before {
	font-size: 36px;
	line-height: 1.15;
	opacity: 1;
	color: #fff;
}