@charset "UTF-8";

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--notosanJP: "Noto Sans JP", sans-serif;
	--jost: "Jost", sans-serif;

	/* color */
	--blk: 98, 95, 95;
	--wht: 255, 255, 255;
	--brw: 188, 130, 87;
	--lightBlue: 220, 241, 244;
	--mainColor: 193, 174, 137;
	--periodColor: 98, 95, 95;
	--textColor: 112, 112, 112;
}


/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
}

@media(max-width:768px) {
	html {
		scroll-padding-top: 16vw;
	}
}

/*
	#font
------------------------------ */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	background: rgb(var(--wht));
	line-height: 1.5;
	color: #343131;
	font-family: var(--notosanJP);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}

.mincho {
	font-family: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
	/* font-size: 16px; */
	font-size: min(1.6rem, 1.25vw);
}

@media(max-width:768px) {

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 4.06667vw;
	}
}

/*
	#reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
	word-wrap: break-word;
}

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

fieldset,
img {
	border: 0;
}

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

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}

a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

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

/*
	表示設定
------------------------------ */
section {
	padding: 0 50px;
	width: 100%;
}

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

.mt30 {
	margin-top: 30px;
}

.bk-color {
	background: #F9EDD7;
}

.note {
	font-size: min(1.4rem, 1.094vw);
	font-weight: 300;
}
.note::before {
	content: '※';
}

@media(max-width:768px) {
	section {
		padding: 0 20px;
	}
	.note {
		font-size: min(1.3rem, 3.467vw);
	}
}

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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
.normal li {
	display: flex;
}

/* note */
.list_style.note {
	font-size: 14px;
}

.list_style.note li {
	font-weight: 300;
}

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

@media(max-width: 768px) {
	.list_style.note {
		font-size: 3.2vw;
	}
}

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

.list_style.type1 li .note li::before {
	content: "※";
}

.list_style.type2 li::before {
	content: "・";
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ----------------------------------------------------
	fadeIn
---------------------------------------------------- */
/*
	共通初期設定
	パターン1：透明度が変化
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/*
	パターン2：下から
------------------------------ */
.fadeBottom {
	transform: translateY(100px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header__inner {
	overflow: hidden;
	position: relative;
}

.header .mainTitle {
	width: 46.39743%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header .date-period {
	background: #C25B3C;
	background: linear-gradient(87deg, #C25B3C 18.91%, #F5845B 121.13%);
	color: #fff;
	font-family: var(--jost);
	font-size: min(3.1rem, 2.422vw);
	text-align: center;
	font-weight: 500;
	line-height: 23.2px;
	letter-spacing: 2px;
	padding: 16px 0;
}

@media(max-width: 768px) {
	.header .mainTitle {
		width: 90%;
	}
	.header .logo {
		margin: 1rem auto;
		width: 95%;
	}
	.header .date-period {
		font-size: min(2rem, 5.333vw);
		font-weight: 500;
		letter-spacing: 1px;
		padding: 16px 0;
	}
}

/* ----------------------------------------------------
	anime
---------------------------------------------------- */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 3s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.delay {
	animation-delay: 0.5s;
}

/* ----------------------------------------------------
	member
---------------------------------------------------- */
.member a {
	background: #C25B3C;
	padding: 0 3.25rem;
	height: 70px;
	line-height: 1;
	color: rgb(var(--wht));
	font-size: calc(1em + 4px);
	font-weight: bold;
	border-right: solid 2px #C25B3C;
	border-bottom: solid 2px #C25B3C;
	border-radius: 0 0 1em 0;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.member a::before {
	margin-right: 8px;
	width: 10px;
	height: 10px;
	display: inline-block;
	border-top: solid 3px rgb(var(--wht));
	border-right: solid 3px rgb(var(--wht));
	transform: rotate(45deg);
	content: "";
}

.member a:hover {
	background: rgb(var(--wht));
	color: rgb(var(--mainColor));
	opacity: 1;
}

.member a:hover::before {
	border-top: solid 3px rgb(var(--mainColor));
	border-right: solid 3px rgb(var(--mainColor));
}

@media(max-width: 768px) {
	.member a {
		padding: 0 1em;
		height: 12vw;
		line-height: 1.5;
		font-size: 3.73333vw;
	}

	.member a::before {
		margin-right: 1em;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
	padding: 60px 20px 20px;
	text-align: center;
}

/* note */
.footer .note li {
	justify-content: center;
}

/* logo_list */
.footer .footer_logolist,
.footer .footer_logomain {
	margin: 0 auto;
	max-width: 690px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer .footer_logolist a,
.footer .footer_logomain a {
	display: block;
}

.footer .footer_logolist {
	margin-bottom: 60px;
}

.footer .footer_logolist li:nth-child(1) {
	width: 25.94203%;
}

.footer .footer_logolist li:nth-child(2) {
	width: 39.42029%;
}

.footer .footer_logolist li:nth-child(3) {
	width: 21.01449%;
}

.footer .footer_logomain {
	margin-top: 50px;
	margin-bottom: 20px;
}

.footer .footer_logomain a {
	margin: 0 auto;
	width: 46.5%;
}

.footer .list_style {
	text-align: center;
}

/* copy */
.footer .copy {
	color: #939393;
	font-size: min(1.2rem, 0.938vw);
	font-weight: bold;
}

@media (max-width: 768px) {
	.footer {
		padding: 50px 0 10px;
	}
	.footer .footer_logolist {
		display: block;
		margin-bottom: 30px;
	}
	.footer .footer_logolist li:nth-child(1) {
		width: 147px;
		margin: 0 auto 30px;
	}
	.footer .footer_logolist li:nth-child(2) {
		width: 216px;
		margin: 0 auto 30px;
	}
	.footer .footer_logolist li:nth-child(3) {
		width: 108px;
		margin: 0 auto;
	}
	.footer .footer_logomain {
		margin: 33px auto 30px;
	}
	.footer .footer_logomain a {
		width: 227px;
	}
	.footer .copy {
		font-size: min(1.2rem, 3.2vw);
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(194, 91, 60, 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 0.5em;
	bottom: 0.5em;
	z-index: 10;
	transform: rotate(-180deg);
}

#pageTop a svg {
	width: 20px;
	height: auto;
}

/*
	header
------------------------------ */
.contents__header {
	margin-bottom: 2rem;
}

.contents__header .text {
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	color: rgb(var(--textColor));
}

.header__title {
	margin: 0 auto;
	margin-top: 5rem;
	margin-bottom: 2rem;
	width: 80%;
	height: 229px;
	line-height: 1.25;
	font-size: 48px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.header__title .wrap {
	position: relative;
	z-index: 2;
}

.header__title::before {
	background: url(../img/bgDeco01.svg) left center no-repeat;
	background-size: auto 100%;
}

.header__title::after {
	background: url(../img/bgDeco02.svg) right center no-repeat;
	background-size: auto 100%;
}

.header__title .small {
	margin-bottom: 0.5rem;
	color: rgb(var(--mainColor));
	font-size: 18px;
	display: block;
}

.header__title .color {
	color: rgb(var(--mainColor));
	background: linear-gradient(transparent 60%, #FCEE21 40%);
}

@media (max-width: 768px) {
	.header__title {
		background-size: auto 100%;
		/* height: 26.66667vw; */
		height: auto;
		font-size: 6.13333vw;
		width: 100%;
	}
	.header__title::before,
	.header__title::after {
		width: 91px;
		height: 24.26667vw;
	}
	.header__title .small {
		font-size: 3.73333vw;
	}
	.contents__title .icon {
		width: 80px;
	}
}

/* .date .preiod */
.contents__header .date {
	margin-bottom: 2rem;
	line-height: 1;
	color: #B23535;
	font-size: 23px;
	font-weight: bold;
	text-align: center;
}

.contents__header .date span {
	padding: 1rem;
	border-top: solid 1px #B23535;
	border-bottom: solid 1px #B23535;
	display: inline-block;
}

.contents__header .period {
	margin-bottom: 1rem;
	font-size: 19px;
	font-weight: bold;
	text-align: center;
	color: rgb(var(--periodColor));
}

@media (max-width: 768px) {
	.contents__header .date {
		font-size: 4.8vw;
	}

	.contents__header .date span {
		padding: 1rem 0;
		width: 100%;
		display: inline-block;
		line-height: 1.5;
	}

	.contents__header .period {
		font-size: 4.26667vw;
	}
}

/* contents__detail */
.contents__detail {
	margin-bottom: 4rem;
	padding: 2rem 0 3rem;
	/* border: solid 2px rgb(var(--mainColor)); */
	/* border-radius: 15px; */
	background: #F0EBDB;
}

.contents__detail.noBtottom {
	padding-bottom: 2rem;
}

.contents__detail .detail .text .note li {
	display: block;
	color: #625F5F;
}

@media (max-width: 768px) {
	.contents__detail {
		margin-bottom: 2rem;
	}

	.contents__detail .detail .text .note li {
		font-size: 3.73333vw;
	}
}

/* present */
.presentTitle {
	/* color: #FCA8AB; */
	/* font-size: 23px; */
	text-align: center;
	margin-bottom: 20px;
}

.presentTitle img {
	width: 240px;
}

@media (max-width: 768px) {
	.presentTitle img {
		width: 60vw;
	}
}

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

.presentList__type1 .list-item {
	max-width: 377px;
	width: 42.45495%;
}

.presentList__type1 .list-item:not(:nth-child(even)) {
	margin-right: 4.84234%;
}

.presentList__type1 .list-item figure {
	margin-bottom: 1rem;
}

.presentList__type1 .detail .title {
	margin-bottom: 1rem;
	font-size: 20px;
	font-weight: 800;
}

.presentList__type1 .detail .text .set {
	margin-bottom: 1rem;
}

.presentList__type1 .detail .text .set span {
	background: #BEA77A;
	padding: 0.25rem 1rem;
	line-height: 1;
	color: rgb(var(--wht));
	font-weight: bold;
}

.presentList__type1 .detail .text .hotel-list {
	font-weight: bold;
}

.presentList__type1 .detail .text .copy {
	margin-bottom: 0.5rem;
}

.presentList__type1 .detail .text .copy img {
	max-width: 340px;
}

@media (max-width: 768px) {
	.presentList__type1 {
		padding: 0 4.8vw;
		display: block;
	}

	.presentList__type1 .list-item {
		max-width: 100%;
		width: 100%;
	}

	.presentList__type1 .list-item:not(:nth-child(even)) {
		margin-right: 0;
	}

	.presentList__type1 .list-item:not(:last-of-type) {
		margin-bottom: 2rem;
	}

	.presentList__type1 .detail .title {
		font-size: 5.33333vw;
	}

	.presentList__type1 .detail .text .copy img {
		max-width: 600px;
	}
}

/* presentList__type2 */
.presentList__type2 {
	margin: 0 auto 2rem;
	width: 87%;
}

.presentList__type2 .list-item {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.presentList__type2 .list-item figure {
	/* margin-right: 4.84234%; */
	width: 60%;
}

.presentList__type2 .list-item .detail {
	width: 37%;
}

.presentList__type2 .detail .title {
	margin-bottom: 1rem;
	font-size: 20px;
	font-weight: 800;
}

.presentList__type2 .detail .text .set {
	margin-bottom: 0.5rem;
}

.presentList__type2 .detail .text .set span {
	background: #BEA77A;
	padding: 0.25rem 1.4rem;
	line-height: 1;
	color: rgb(var(--wht));
	font-weight: bold;
	letter-spacing: 0;
}

.presentList__type2 .detail .text .hotel-list dt {
	font-weight: bold;
}

@media (max-width: 768px) {
	.presentList__type2 {
		padding: 0 4.8vw;
		width: 100%;
	}

	.presentList__type2 .list-item {
		display: block;
	}

	.presentList__type2 .list-item figure,
	.presentList__type2 .list-item .detail {
		margin: 0 auto 1rem;
		/* max-width: calc(100% - 3.2vw); */
		width: 100%;
	}

	.presentList__type2 .detail .title {
		font-size: 5.33333vw;
	}
}

/* grandOpen */
.grandOpen {
	background: rgb(var(--wht));
	margin: 0 auto 2rem;
	padding: 1.5rem 0;
	width: 87%;
	display: flex;
}

.grandOpen__contents {
	overflow: hidden;
	width: 48%;
	padding: 20px 34px 0;
}

.grandOpen__contents--title small {
	font-size: 16px;
}

.grandOpen__contents--detail dt {
	margin-bottom: 0.5em;
	color:#B23535;
	font-size: 20px;
	font-weight: 700;
}

.grandOpen__contents--detail dd {
	font-size: 15px;
}

.grandOpen__contents .link {
	margin-top: 0.5em;
}

.grandOpen__contents .link a {
	margin-top: 0.25rem;
	color: #000;
	text-decoration: underline;
	display: inline-flex;
	font-weight: bold;
}

.grandOpen__contents .link a::before {
	content: "＞";
}

.grandOpen__contents--image {
	width: 52%;
	order: 2;
}

.grandOpen__contents--image figure {
	width: 100%;
}



@media (max-width: 768px) {
	.grandOpen {
		margin: 0 auto;
		padding: 0 4.8vw 6.4vw;
		width: 95%;
		/* border-radius: 13px; */
		border-radius: 0;
		display: block;
		position: relative;
	}

	.grandOpen__contents {
		width: 100%;
		margin: 0;
		padding: 0 20px;
		display: block;
	}

	.grandOpen__contents--title {
		background: #BEA77A;
		width: 90%;
		height: auto;
		margin: 20px auto 0;
	}

	.grandOpen__contents--title small {
		font-size: 4.26667vw;
	}

	.grandOpen__contents--detail {
		margin-bottom: 1em;
		padding-top: 0;
		text-align: left;
	}

	.grandOpen__contents--detail .name {
		font-size: 4.8vw;
		letter-spacing: -0.005em;
	}

	.grandOpen__contents--image {
		width: 100%;
		display: block;
	}

	.grandOpen__contents--image figure {
		margin-bottom: 0.5em;
		width: 100%;
	}

	.grandOpen__contents--detail dt {
		margin: 1rem auto;
	}

	.grandOpen__contents--detail .link a {
		font-size: 4.26667vw;
		display: block;
		width: 100%;
		position: absolute;
		bottom: 5px;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		margin: 0;
	}
}

/* accordion */
.accordion {
	max-width: 900px;
	margin: 0 auto;
	font-size: min(1.5rem, 1.172vw);
}

.accordion .switch {
	background: #9A6E1E;
	margin: 0 auto 3rem;
	width: 368px;
	height: 76px;
	line-height: 1;
	color: rgb(var(--wht));
	font-size: min(2rem, 1.563vw);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.accordion .switch svg {
	margin-left: 1rem;
	width: 20px;
	transition: all 0.5s ease 0s;
}

.accordion .switch.active svg {
	transform: rotate(180deg);
}

.accordion .accordion__content {
	display: none;
}

.accordion dd .table {
	width: 100%;
}

.accordion dd .table tr {
	border-top: solid 1px #707070;
}

.accordion dd .table th,
.accordion dd .table td {
	padding: 1.5em 0;
	vertical-align: top;
}

.accordion dd .table th {
	width: 18%;
	font-size: min(1.6rem, 1.25vw);
	font-weight: 800;
}

.accordion dd .table td {
	padding: 1.5em 0;
}

.accordion dd .table td .txt {
	line-height: 27px;
}

@media (max-width: 768px) {
	.accordion .switch {
		margin-bottom: 1rem;
		width: 100%;
		height: 20.26667vw;
		font-size: 4.8vw;
	}
	.accordion dd .table {
		margin-top: 90px;
	}
	#coupon .accordion dd .table {
		margin-top: 40px;
	}
	#campaign .accordion dd .table tr,
	#coupon .accordion dd .table tr {
		display: block;
		padding: 30px 0;
	}
	.accordion dd .table th,
	.accordion dd .table td {
		display: block;
		font-size: min(1.4rem, 3.733vw);
		padding: 0;
	}
	.accordion dd .table th {
		width: 100%;
		font-size: min(1.6rem, 4.267vw);
		padding-bottom: 10px;
	}
}

/* accordion2+3 */
.accordion2 a.switch {
	background: #C2A975;
	margin: 3rem auto;
	margin-left: 0;
	width: 310px;
	height: 76px;
	line-height: 1;
	color: rgb(var(--wht));
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
	position: relative;
}

.accordion2 .switch svg {
	margin-left: 1rem;
	width: 20px;
	transition: all 0.5s ease 0s;
	transform: rotate(-90deg);
	position: absolute;
	right: 20px;
}

.accordion2 .switch.active svg {
	transform: rotate(180deg);
}

.accordion3 .accordion__content {
	display: block;
}

.accordion3 .accordion__content .icon {
	width: 40px;
	margin: 3rem auto;
}

.accordion3 .accordion__content ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.accordion3 .accordion__content ul li {
	width: 48.9%;
	background: #D6E0E2;
	color: #2A445B;
	text-align: center;
	padding: 30px 0;
	font-size: 20px;
	font-weight: 700;
}
.accordion3 .accordion__content ul li span {
	font-size: 30px;
}
.accordion3 .accordion__content ul li:first-child {
	width: 100%;
	margin-bottom: 1rem;
}
.accordion3 .accordion__content ul li:nth-child(3) {
	margin-left: 1rem;
	line-height: 1.1;
}

.accordion3 .accordion__content ul li a {
	display: block;
	color: #2A445B;
	font-weight: 400;
	padding-top: 10px;
	font-size: min(1.8rem, 1.406vw);
	text-decoration: underline;
}
.accordion3 .accordion__content ul li:nth-child(3) a {
	padding-top: 20px;
}

@media (max-width: 768px) {
	.accordion2 a.switch {
		width: 100%;
		height: 20.26667vw;
		font-size: 4.8vw;
		margin-bottom: 4rem;
	}
	.accordion3 .accordion__content .icon {
		width: 30px;
		margin: 2rem auto;
	}
	.accordion3 .accordion__content ul {
		display: block;
	}
	.accordion3 .accordion__content ul li {
		width: 100%;
		padding: 20px 0;
		font-size: 16px;
	}
	.accordion3 .accordion__content ul li span {
		font-size: 25px;
	}
	.accordion3 .accordion__content ul li:nth-child(3) {
		margin-left: 0;
		margin-top: 1rem;
	}
	.accordion3 .accordion__content ul li a {
		font-size: min(1.6rem, 4.267vw);
	}
}


/* list_style */
.accordion dd .table td .list_style.type1.md10 {
	margin-bottom: 10px;
}

.accordion dd .table td .list_style.type1 li,
.accordion dd .table td .list_style.note li {
	margin-left: 1em;
	text-indent: -1em;
	display: block;
	margin-bottom: 20px;
}
.accordion dd .table td .list_style.type1 li span.ml6 {
	margin-left: 6px;
}


/* type1 */
.accordion dd .table td .list_style.type1 li::before {
	color: #C25B3C;
}

/* period */
.accordion dd .table td .period {
	margin: 0.5rem 0;
	color: #C1AE89;
}

.accordion dd .table td p.period {
	color: rgb(var(--mainColor));
	font-weight: 800;
}

@media (max-width: 768px) {
	.accordion dd .table td .period {
		font-size: 3.73333vw;
	}
	.accordion dd .table td .list_style.type1 li {
		margin-bottom: 0;
	}
}

/* note */
.accordion dd .table td .list_style.note {
	margin: 1em 0;
}

.accordion dd .table td .list_style.type1 li .note {
	margin: 0.5em 0;
}

.accordion dd .table td .list_style.note li {
	font-weight: 300;
}

.accordion dd .table td .list_style.note li::before {
	color: #625F5F;
}

.accordion dd .table td .list_style.color li,
.accordion dd .table td .list_style.note.color li::before {
	color: #C25B3C;
	font-weight: 700;
}

.accordion dd .table td .list_style.note li.color,
.accordion dd .table td .list_style.note li.color::before {
	color: rgb(var(--mainColor));
	font-weight: bold;
}

.accordion dd .table td .list_style.mb20 {
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.accordion dd .table td .list_style.note li {
		font-size: 3.2vw;
	}
	.accordion dd .table td .list_style.note.color li,
	.accordion dd .table td .list_style.note.color li::before {
		font-size: 3.73333vw;
	}
	.accordion dd .table td .list_style.mb20 {
		margin-bottom: 10px;
	}
}

/* note-title */
.accordion dd .table td .note-title {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 800;
}

.accordion dd .table td .note-title+.note {
	margin-top: 0;
}

@media (max-width: 768px) {
	.accordion dd .table td .note-title {
		font-size: 3.2vw;
	}
}

/* linkBtn */
.accordion dd .table td .linkBtn {
	margin-top: 1rem;
}

.accordion dd .table td .linkBtn a {
	background: #9A6E1E;
	margin: 0;
	max-width: 350px;
	height: 45px;
	color: rgb(var(--wht));
	font-size: min(1.8rem, 1.406vw);
	text-decoration: none;
}

@media (max-width: 768px) {
	.accordion dd .table td .linkBtn a {
		max-width: 100%;
		height: 12.8vw;
		font-size: 4vw;
	}
}

/* link-list */
.accordion dd .table td .link-list {
	margin-top: 1rem;
}

/* ----------------------------------------------------
	renewal-open
---------------------------------------------------- */
.renewal-open {
	padding: 80px 0 100px;
}

.renewal-open h2 {
	color: #C25B3C;
	text-align: center;
	font-size: min(2.8rem, 2.188vw);
	font-weight: 600;
}

.renewal-open h2 .en {
	display: block;
	font-size: var(--jost);
	font-size: min(6rem, 4.688vw);
	font-weight: 400;
	line-height: 105%;
	margin-top: 16px;
}

.renewal-open h2 .date {
	display: block;
	font-size: min(2.4rem, 1.875vw);
	font-weight: 700;
	line-height: 137.5%;
	margin-top: 15px;
}

.renewal-open .img {
	width: 603.617px;
	height: 327.982px;
	margin: 27px auto 0;
}

.renewal-open h3 {
	color: #C25B3C;
	text-align: center;
	font-size: min(2.7rem, 2.109vw);
	font-weight: 700;
	line-height: 43.5px;
	margin-top: 63px;
}

.renewal-open .link {
	max-width: 950px;
	margin: 46px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.renewal-open .link a {
	width: 47.2%;
	margin: 0 13px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.renewal-open .link a.typeA {
	border: 1px solid #C25B3C;
	background: #fff;
	height: 176px;
	position: relative;
}
.renewal-open .link a.typeA::after {
	content: '';
	background: url(../img/arrow3.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 45px;
	height: 45px;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.renewal-open .link a.typeA .iconA {
	width: 89px;
	height: 57.695px;
}

.renewal-open .link a.typeA .iconB {
	width: 52px;
	height: 92.494px;
}

.renewal-open .link a.typeA p {
	color: #C25B3C;
	font-size: min(2.8rem, 2.188vw);
	font-weight: 600;
}

.renewal-open .link a.typeA p .txt01 {
	font-size: min(2.3rem, 1.797vw);
	line-height: 34.5px;
}

.renewal-open .link a.typeA p .txt02 {
	font-size: min(2.6rem, 2.031vw);
	line-height: 39px;
}

.renewal-open .link a.typeB {
	border: 3px solid #9A6E1E;
	background: #FFEBC8;
	margin-top: 75px;
	text-align: center;
	height: 143px;
	position: relative;
}
.renewal-open .link a.typeB::after {
	content: '';
	background: url(../img/arrow2.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 45px;
	height: 45px;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.renewal-open .link a.typeB p {
	color: #9A6E1E;
	font-size: min(3rem, 2.344vw);
	font-weight: 600;
}

.renewal-open .link a.typeB p .txt01 {
	color: #000;
	font-size: min(2rem, 1.563vw);
}

@media (max-width: 768px) {
	.renewal-open {
		padding: 74px 20px 100px;
	}
	.renewal-open h2 {
		font-size: min(2.4rem, 6.4vw);
	}
	.renewal-open h2 .en {
		font-size: min(4.6rem, 12.267vw);
		line-height: 136.957%;
		margin-top: 0;
	}
	.renewal-open h2 .date {
		font-size: min(2.4rem, 6.4vw);
		margin-top: 15px;
	}
	.renewal-open .img {
		width: 100%;
		height: auto;
		margin: 20px auto 0;
	}
	.renewal-open h3 {
		font-size: min(1.9rem, 5.067vw);
		line-height: 29.5px;
		margin: 52px 0 26px;
	}
	.renewal-open .link {
		margin: 0 auto;
		display: block;
	}
	.renewal-open .link a {
		width: 100%;
		margin: 0 auto 44px;
	}
	.renewal-open .link a.typeA {
		height: 132px;
	}
	.renewal-open .link a.typeA::after {
		width: 33px;
		height: 33px;
		bottom: -38px;
	}
	.renewal-open .link a.typeA .iconA {
		width: 66px;
		height: 43px;
	}
	.renewal-open .link a.typeA .iconB {
		width: 39px;
		height: 69px;
	}
	.renewal-open .link a.typeA p {
		font-size: min(2.1rem, 5.6vw);
	}
	.renewal-open .link a.typeA p .txt01 {
		font-size: min(1.7rem, 4.533vw);
		line-height: 25px;
	}
	.renewal-open .link a.typeA p .txt02 {
		font-size: min(1.9rem, 5.067vw);
		line-height: 29px;
	}
	.renewal-open .link a.typeB {
		border: 2px solid #9A6E1E;
		margin-top: 0;
		height: 107px;
	}
	.renewal-open .link a.typeB::after {
		width: 33px;
		height: 33px;
		bottom: -38px;
	}
	.renewal-open .link a.typeB p {
		font-size: min(2.2rem, 5.867vw);
	}
	.renewal-open .link a.typeB p .txt01 {
		font-size: min(1.5rem, 4vw);
	}
}

/* ----------------------------------------------------
	共通（campaign、）
---------------------------------------------------- */
.contents02 {
	background: url(../img/bg.webp) no-repeat;
	background-size: 100%;
	width: 100%;
	border-top: 5px solid #9A6E1E;
	padding-bottom: 150px;
}

.contents02 h4 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 382.77px;
	height: 69.204px;
	border-radius: 0 0 12px 12px;
	background: #9A6E1E;
	color: #fff;
	font-size: min(2.7rem, 2.109vw);
	font-weight: 600;
	line-height: 30px;
	margin: 0 auto;
}

.contents02 .campaign-ttl {
	max-width: 770px;
	text-align: center;
	margin: 65px auto 0;
	position: relative;
}

.contents02 .campaign-ttl__line{
	position: relative;
	display: block;
	color: #C25B3C;
	font-size: 47px;
	line-height: 59px;
	letter-spacing: 0.8px;
	text-shadow: 0 0 6px rgba(255,255,255,0.9);
	z-index: 1;
}
.contents02 .campaign-ttl__line::before{
	content: attr(data-text);
	position: absolute;
	inset: 0;
	z-index: -1;
	color: transparent;
	-webkit-text-stroke: 4px #FFF;
}

.contents02 .campaign-ttl__line--sp{
	display: none;
}

@media (max-width: 768px) {
	.contents02 {
		background: url(../img/bg_sp.webp) no-repeat;
		background-size: 100%;
		width: 100%;
		border-top: 3px solid #9A6E1E;
		padding-bottom: 95px;
	}
	.contents02 h4 {
		width: 283px;
		height: 51px;
		border-radius: 0 0 8px 8px;
		font-size: min(2rem, 5.333vw);
		line-height: 22px;
	}
	.contents02 .campaign-ttl {
		margin: 50px auto 0;
	}
	.contents02 .campaign-ttl__line{
		font-size: min(3.2rem, 8.533vw);
		line-height: 39px;
	}
	.contents02 .campaign-ttl__line::before{
		content: attr(data-text);
		position: absolute;
		inset: 0;
		z-index: -1;
		color: transparent;
		-webkit-text-stroke: 4px #FFF;
	}
	.contents02 .campaign-ttl__line--pc{
		display: none;
	}
	.contents02 .campaign-ttl__line--sp{
		display: block;
	}
}

/* ----------------------------------------------------
	campaign
---------------------------------------------------- */
#campaign .campaign-ttl::before {
	content: '';
	background: url(../img/item01.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 113.784px;
	height: 67.5px;
	position: absolute;
	top: -80px;
	left: 70px;
}
#campaign .campaign-ttl::after {
	content: '';
	background: url(../img/item02.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 93.979px;
	height: 133.207px;
	position: absolute;
	top: -30px;
	right: 30px;
}

#campaign .campaign-ttl img {
	width: 139px;
	height: 139px;
	position: absolute;
	top: -10px;
	left: 0;
}

#campaign h3 {
	background: url(../img/frame.svg) no-repeat;
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 470.632px;
	height: 49.953px;
	margin: 42px auto 0;
	color: #C25B3C;
	text-align: center;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 600;
	line-height: 30px;
}

#campaign .application-period {
	color: #707070;
	text-align: center;
	font-size: min(2rem, 1.563vw);
	font-weight: 700;
	line-height: 30px;
	margin-top: 27px;
}

#campaign .box {
	max-width: 900px;
	margin: 40px auto 0;
	padding: 8px;
	background: #F9EDD7;
}

#campaign .box .box-inner {
	border: 1px solid #C25B3C;
}

#campaign .box .box-inner .icon img {
	display: block;
	width: 38px;
	height: 40.003px;
	margin: 42px auto 0;
}

#campaign .box .box-inner .icon .text {
	color: #C25B3C;
	text-align: center;
	font-size: min(2.4rem, 1.875vw);
	font-weight: 700;
	line-height: 23px;
	margin-top: 6px;
}

#campaign .box .box-inner ul {
	display: flex;
	justify-content: center;
	margin: 25px 0 44px;
}

#campaign .box .box-inner ul li {
	width: 360px;
	margin: 0 10px;
}

#campaign .box .box-inner ul li.img .text {
	font-size: min(1.4rem, 1.094vw);
	font-weight: 300;
	line-height: 21px;
}

#campaign .box .box-inner ul li.txt .text1 {
	font-size: min(2rem, 1.563vw);
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 10px;
}

#campaign .box .box-inner ul li.txt .text2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 105px;
	height: 24px;
	background: #C2A975;
	color: #fff;
	font-size: min(1.6rem, 1.25vw);
	font-weight: 400;
	line-height: 16px;
	margin-bottom: 8px;
}

#campaign .box .box-inner ul li.txt .area_note {}

#campaign .box .box-inner ul li.txt .area_note .note {
	line-height: 21px;
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0;
}

#campaign .box .box-inner ul li.txt .area_note .note a {
	color: #3364EA;
	text-decoration: underline;
}

#campaign .accordion {
	margin-top: 60px;
}

#campaign .accordion dd .table tr:first-child {
	border-top: none;
}

@media (max-width: 768px) {
	#campaign .campaign-ttl::before {
		content: '';
		background: url(../img/item01_sp.webp) no-repeat;
		background-size: 100%;
		display: block;
		width: 55px;
		height: 28px;
		position: absolute;
		top: -30px;
		left: -40vw;
	}
	#campaign .campaign-ttl::after {
		content: '';
		background: url(../img/item02_sp.webp) no-repeat;
		background-size: 100%;
		display: block;
		width: 39px;
		height: 65px;
		position: absolute;
		top: -30px;
		right: -3vw;
	}
	#campaign .campaign-ttl img {
		width: 120px;
		height: 120px;
		position: absolute;
		top: 0px;
		left: -38vw;
	}
	#campaign .campaign-ttl {
		text-align: left;
		margin: 40px 0 0 40vw;
		width: 190px;
	}
	#campaign h3 {
		background: url(../img/frame_sp.svg) no-repeat;
		background-size: 100%;
		width: 330px;
		height: 35.026px;
		margin: 21px auto 0;
		font-size: min(1.6rem, 4.267vw);
	}
	#campaign .application-period {
		font-size: min(1.6rem, 4.267vw);
		margin-top: 18px;
	}
	#campaign .box {
		margin: 28px auto 0;
	}
	#campaign .box .box-inner .icon img {
		margin: 22px auto 0;
	}
	#campaign .box .box-inner .icon .text {
		font-size: min(2rem, 5.333vw);
	}
	#campaign .box .box-inner ul {
		display: block;
		margin: 25px 0 44px;
	}
	#campaign .box .box-inner ul li {
		width: 100%;
		margin: 0;
		padding: 0 14px;
	}
	#campaign .box .box-inner ul li.img .text {
		font-size: min(1.3rem, 3.467vw);
		line-height: 15px;
		margin-top: 3px;
	}
	#campaign .box .box-inner ul li.txt .text1 {
		font-size: min(1.8rem, 4.8vw);
		line-height: 27px;
		margin-top: 15px;
		margin-bottom: 10px;
		text-align: center;
	}
	#campaign .box .box-inner ul li.txt .text2 {
		font-size: min(1.6rem, 4.267vw);
		margin: 0 auto 16px;
	}
	#campaign .box .box-inner ul li.txt .area_note .note {
		line-height: 21px;
		padding-left: 1em;
		text-indent: -1em;
		margin-bottom: 0;
	}
	#campaign .accordion {
		margin-top: 42px;
	}
}


/* ----------------------------------------------------
	coupon
---------------------------------------------------- */
#coupon .campaign-ttl::before {
	content: '';
	background: url(../img/item03.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 77.6px;
	height: 141.375px;
	position: absolute;
	top: -30px;
	left: 40px;
}
#coupon .campaign-ttl::after {
	content: '';
	background: url(../img/item04.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 102.844px;
	height: 147.681px;
	position: absolute;
	top: -30px;
	right: 10px;
}

#coupon h3 {
	color: #707070;
	text-align: center;
	font-size: min(1.7rem, 1.328vw);
	font-weight: 700;
	line-height: 30px;
	margin-top: 29px;
}

#coupon .area-img {
	max-width: 900px;
	margin: 47px auto 62px;
	display: flex;
	justify-content: space-between;
}

#coupon .area-img li {
	width: 32.3333%;
}

#coupon .accordion dd .table tr:first-child {
	border-top: none;
}

#coupon .accordion p.note {
	margin-bottom: 0;
	padding-left: 1em;
	text-indent: -1em;
}

#coupon .accordion .area_note {
	border-top: solid 1px #707070;
	padding-top: 30px;
}

@media (max-width: 768px) {
	#coupon .campaign-ttl::before {
		content: '';
		background: url(../img/item01_sp.webp) no-repeat;
		background-size: 100%;
		display: block;
		width: 55px;
		height: 28px;
		position: absolute;
		top: -30px;
		left: 0;
	}
	#coupon .campaign-ttl::after {
		content: '';
		background: url(../img/item02_sp.webp) no-repeat;
		background-size: 100%;
		display: block;
		width: 39px;
		height: 65px;
		position: absolute;
		top: -30px;
		right: -3vw;
	}
	#coupon h3 {
		font-size: min(1.5rem, 4vw);
		margin-top: 24px;
	}
	#coupon .area-img {
		margin: 36px auto 44px;
		display: block;
	}
	#coupon .area-img li {
		width: 100%;
		margin-bottom: 16px;
		padding: 0 20px;
	}
}

/* ----------------------------------------------------
	renewal
---------------------------------------------------- */
#renewal {
	padding: 100px 0;
}

#renewal .box {
	max-width: 900px;
	margin: 0 auto;
	background: #FFF;
	border: 2px solid #937C4B;
	padding: 45px 0 56px;
}

#renewal .box h2 {
	color: #9A6E1E;
	text-align: center;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 600;
}

#renewal .box h2 .en {
	display: block;
	font-size: var(--jost);
	font-size: min(5.5rem, 4.297vw);
	font-weight: 400;
	line-height: 114%;
}

#renewal .box h2 .date {
	display: block;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 700;
	line-height: 150%;
	margin-top: 15px;
}

#renewal .box ul {
	display: flex;
	justify-content: space-evenly;
	margin: 24px auto 0;
}

#renewal .box ul .img {
	width: 50%;
}

#renewal .box ul .txt {
	width: 36%;
}

#renewal .box ul .txt h3 {
	color: #9A6E1E;
	font-size: min(2.4rem, 1.875vw);
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 10px;
}

#renewal .box ul .txt p {
	font-weight: 400;
	line-height: 27px;
}

#renewal .box ul .txt a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 310px;
	height: 76px;
	background: #9A6E1E;
	color: #fff;
	text-align: center;
	font-size: min(2rem, 1.563vw);
	font-weight: 600;
	line-height: 30px;
	margin-top: 60px;
	position: relative;
}

#renewal .box ul .txt a svg {
    margin-left: 1rem;
    width: 20px;
    transition: all 0.5s ease 0s;
    transform: rotate(-90deg);
    position: absolute;
    right: 20px;
}

@media (max-width: 768px) {
	#renewal {
		padding: 70px 25px;
	}
	#renewal .box {
		border: 1px solid #937C4B;
		padding: 45px 20px 56px;
	}
	#renewal .box h2 {
		font-size: min(2rem, 5.333vw);
		font-weight: 600;
	}
	#renewal .box h2 .en {
		font-size: min(4rem, 10.667vw);
		line-height: 53px;
	}
	#renewal .box h2 .date {
		font-size: min(2rem, 5.333vw);
		line-height: 33px;
		margin-top: 5px;
	}
	#renewal .box ul {
		display: block;
		margin: 17px auto 0;
	}
	#renewal .box ul .img {
		width: 100%;
	}
	#renewal .box ul .txt {
		width: 100%;
		margin-top: 14px;
	}
	#renewal .box ul .txt h3 {
		font-size: min(2.2rem, 5.867vw);
		margin-bottom: 5px;
	}
	#renewal .box ul .txt a {
		width: 100%;
		height: 76px;
		font-size: min(1.8rem, 4.8vw);
		margin-top: 25px;
	}
}

/* ----------------------------------------------------
	club
---------------------------------------------------- */
.club {
	background: #C25B3C;
	padding: 100px 50px;
}

.club__title {
	font-family: var(--jost);
	font-size: min(5.5rem, 4.297vw);
	font-weight: 400;
	text-align: center;
	color: #fff;
}

.club__title span {
	display: block;
	padding: 0 0 24px;
	font-size: min(2.2rem, 1.719vw);
	position: relative;
}

.club__point {
	margin: 3rem auto;
	width: 91.77778%;
	display: flex;
	justify-content: center;
}

.club__point li {
	width: 23%;
	margin: 0 20px;
}

.club__text {
	text-align: center;
	color: #fff;
	margin-bottom: 50px;
}

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

.club__charm .wrap .box {
	width: 49%;
	background: #fff;
	padding: 40px 60px;
}

.club__charm .wrap .box .icon1 {
	width: 100px;
	margin: 0 auto;
}

.club__charm .wrap .box .icon2 {
	width: 80px;
	margin: 1rem auto;
}

.club__charm .wrap .box .icon3 {
	width: 120px;
	margin: 2rem auto;
}

.club__charm .wrap .box h3 {
	color: #C25B3C;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 700;
	text-align: center;
}

.club__charm .wrap .box p {
	margin-top: 2rem;
	line-height: 27px;
}

.club__charm .wrap .box a.btn {
	display: block;
	background: #C2A975;
	color: #fff;
	font-size: min(1.8rem, 1.406vw);
	font-weight: 600;
	text-align: center;
	margin-top: 1rem;
	padding: 10px 0;
	text-decoration: none;
}

.club__charm .box2 {
	background: #fff;
	margin-top: 1rem;
	padding: 40px 60px;
}

.club__charm .box2 .wrap {
	display: flex;
	justify-content: space-around;
}

.club__charm .box2 .wrap .icon1 {
	width: 100px;
	margin: 0 auto;
}
.club__charm .box2 .wrap .icon2 {
	width: 100px;
	margin: 1.5rem auto;
}

.club__charm .box2 .wrap h3 {
	color: #C25B3C;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 700;
	margin-bottom: 1rem;
}

.club__charm .box2 .wrap p {
	line-height: 27px;
	margin-bottom: 1rem;
}

@media(max-width: 768px) {
	.club {
		padding: 50px 20px 60px;
	}
	.club__title {
		font-size: min(3.7rem, 9.867vw);
	}
	.club__title span {
		font-size: min(2rem, 5.333vw);
		padding-bottom: 15px;
	}
	.club__point {
		margin: 2rem auto 5rem;
		width: 100%;
	}
	.club__point li {
		width: 100%;
		margin: 0 5px;
	}
	.club__charm .wrap .box {
		width: 100%;
		padding: 30px 20px;
	}
	.club__charm .wrap .box:first-child {
		margin-bottom: 3rem;
	}
	.club__charm .box2 {
		margin-top: 3rem;
		padding: 30px 20px;
	}
	.club__charm .wrap,
	.club__charm .box2 .wrap {
		display: block;
	}
	.club__charm .wrap .box h3 {
		font-size: min(1.8rem, 4.8vw);
	}
	.club__charm .wrap .box a.btn {
		font-size: min(1.6rem, 4.267vw);
		margin-top: 21px;
		padding: 12px 0;
	}
	.club__charm .box2 .wrap h3 {
		font-size: min(1.8rem, 4.8vw);
		text-align: center;
		margin-bottom: 1rem;
	}
	.club__text {
		font-size: min(1.6rem, 4.267vw);
		font-weight: 700;
		line-height: 30px;
		margin-bottom: 35px;
	}
	.club__charm .box2 .wrap p {
		margin-top: 2rem;
	}
}


/* campaign */
.campaign {
	background: #D9CA9B;
	border-radius: 10px;
	margin: 2rem 0;
	padding: 3rem;
}

.campaign .img {
	width: 70%;
	margin: 0 auto;
	margin-bottom: 1.5rem;
}

.campaign .code,
.campaign .date {
	font-size: min(2rem, 1.563vw);
	font-weight: bold;
	color: #8B4806;
	text-align: center;
}
.campaign .code {
	margin-bottom: 0.5rem;
}

@media(max-width: 768px) {
	.campaign {
		margin: 2rem 0;
		padding: 1rem 10px;
	}
	.campaign .img {
		width: 100%;
	}
	.campaign .code, .campaign .date {
		font-size: 16px;
	}
}


/* app */
.app {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 87px;
}
.app li {
	width: 23%;
	color: #fff;
	font-size: min(2rem, 1.563vw);
	font-weight: bold;
}
.app li:first-child {
	width: 33%;
}
.app li:last-child {
	margin-left: 1rem;
}

@media(max-width: 768px) {
	.app {
		flex-wrap: wrap;
		margin-top: 34px;
	}
	.app li {
		width: 48%;
		color: #fff;
		font-size: min(2rem, 5.333vw);
		font-weight: bold;
	}
	.app li:first-child {
		width: 100%;
		text-align: center;
		margin-bottom: 1.8rem;
	}
	.app li:last-child {
		margin-left: 1rem;
	}
}