@charset "UTF-8";
/* ----------------------------------------
	■ index.css
---------------------------------------- */
/* RESET
---------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	font-family: "noto sans cjk jp", sans-serif !important;
	font-weight: 400;
	font-style: normal;
	color: #000;
    background: #FAF6E6;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

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

/* Original */
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
a {
    color: #4d4d4d;
}

/* @media : SP
---------------------------------------- */
@media screen and (max-width: 768px) and (min-width: 481px) {
	html, body {
		font-size: 1.3020833333vw;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
}
@media screen and (max-width: 480px) {
}

/* ----------------------------------------------------
	toggle nav
---------------------------------------------------- */
header {
	height: 100px;
    background: #fff;
}

@media screen and (max-width: 768px) {
	header {
		height: 80px;
	}	
}

/*
	toggle
------------------------------ */
.toggle {
	padding: 0.5rem;
	position: fixed;
	top: 1.5rem;
	right: 1rem;
	z-index: 1000;
}

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

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

.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 {
	background: rgba(var(--wht), 0);
}

.is-open .toggle__inner span {
	background: rgb(var(--wht));
}

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

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

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

@media screen and (max-width: 768px) {
	.toggle {
		top: 1rem;
	}	
	.toggle__inner {
		max-width: 48px;
		width: 10.66667vw;
	}
}

/*
	nav_content
------------------------------ */
.gnav {
	background: #E2A55D;
	padding-top: calc(1rem + 32px);
	max-width: 400px;
	width: 100%;
	height: 100%;
	color: rgb(var(--wht));
    font-weight: 500;
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	transform: translateX(100%);
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gnav__list--item a {
	padding: 0.75rem 0 0.75rem 2rem;
	line-height: 1.25;
	color: rgb(var(--wht));
	font-family: var(--mr-eaves);
	text-decoration: none;
	display: block;
	transition: opacity 0.6s ease;
	font-weight: 500;
	font-style: normal;
	font-size: 20px;
}

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

@media screen and (max-width: 768px) {
	.gnav__list--item a {
		padding: 0.75rem 0 0.75rem 2rem;
		font-size: 5.33333vw;
	}
}

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

.is-open .gnav {
	z-index: 999;
	transform: translateX(0);
}

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

/* 画像フェードイン */
.slider {
	overflow: hidden;
	width: 100%;
	height: auto;
}
.slick-img img {
	width: 100%;
}

.slick-dots {
  text-align: center;
    margin-top: 3.5px;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots button {
  display: block;
  width: 15px;
  height: 15px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #fff;
	border: 1px solid #D57402;
  border-radius: 50%;
}
.slick-dots .slick-active button {
  background: #D57402;
}

#pool .slick-dots button {
	border: 1px solid #ABD5FF;
}
#pool .slick-dots .slick-active button {
  background: #ABD5FF;
}



/* 共通
---------------------------------------- */
.container {
    align-items: flex-end;
}
.flex01,.flex02,.flex03,.flex04 {
	display: flex;
    gap: 32px;
}
.flex01 {
	justify-content: center;
    gap: 6px!important;
}
.flex02 {
	justify-content: space-evenly;
}
.flex03 {
	justify-content: space-between;
}
.flex04 {
	justify-content: flex-start;
}
.flex05 {
    flex-direction: column;
}

.contents01,.contents02,.contents03,.contents04,.contents05,.contents06 {
	max-width: 1100px;
	margin: 0 auto;
	padding: 100px 0;
}

.contents02,.contents03,.contents04,.contents05{
	margin: 0 auto;
	padding: 100px 30px;
    margin-top: 160px;
}
.separator {
	width: 30%;
	margin: 50px auto;
}

.area_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.area_flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    margin-top: 40px;
}
.area_contents {
    background: #FFF;
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}
.area_contents .cnt_text {
    color: #D55913;
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.5px;
}
.area_contents .cnt_price{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    line-height: normal;
}
.area_contents .cnt_price_acc {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 32px;
    line-height: normal;
}
.area_contents .cnt_info {
    background: #FFF8ED;
    padding: 16px;
    line-height: normal;
}
.area_contents .cnt_info span {
    font-weight: 500;
}
.area_contents .cnt_price_list {
    width: 100%;
    display: flex;
    align-items: center;
    line-height: normal;
    gap: 16px;
}
.area_contents .cnt_price_box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 76%;
}
.area_contents .cnt_price_list p:last-child{
    margin-left: auto;
}
.tag {
    font-size: 12px;
    color: #fff;
    border-radius: 50px;
    background: #D55913;
    display: flex;
    width: 24%;
    padding: 4px 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}


@media screen and (max-width: 768px) {
	.flex01,.flex02,.flex03,.flex04 {
		display: block;
	}
	.separator {
		width: 60%;
		margin: 10px auto;
	}
	.contents02,.contents03,.contents04,.contents05 {
		padding: 50px 0;
		margin-top: 0;
	}
	.rel .item {
		display: none;
	}
    .area_contents {
        padding: 24px 16px;
        margin-bottom: 24px;
    }
    .area_flex {
        flex-direction: column;
    }
    .cnt_text,.cnt_price,.cnt_price_list,.cnt_price_acc{
        font-size: 14px!important;
    }
    .area_contents .cnt_price_list {
        gap:8px;
    }
    .area_contents .cnt_price_acc {
        gap:8px;
    }
    .tag {
        width: 24%;
    }
    .reverse-box {
        display: flex!important;
        flex-direction: column-reverse;
        margin-top: 24px;
    }
    .reverse-box_2 {
        display: flex!important;
        flex-direction: column;
        margin-top: 24px;
    }
}
a.btn {
    width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #4D4D4D;
    text-decoration: none;
    font-size: 18px;
    padding: 16px 0;
    position: relative;
}
a.btn:hover {
    background: #e7e7e7;
}
a.btn::before {
	content: "";
	background:none;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 20px 20px;
	border-color: transparent transparent #666 transparent;
	transform: rotate(0deg);
	position:absolute;
	bottom: 0;
	right: 0;
}

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

	MV

---------------------------------------- */
.mv {
	display: flex;
    flex-direction: row;
    align-items: center;
}

.mv h1 {
    position: relative;
	width: 50%;
    color: #3D1600;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 4rem;
    line-height: 120%;
    letter-spacing: 5px;
    font-weight: 400;
}
.mv h1 span {
    font-size: 40px;
    color: #D55913;
    font-weight: 600;
}
.mv h1::before {
    content: '';
    position: absolute;
    background-image: url(../img/mv_deco_01.webp);
    background-size: cover;
    width: 163px;
    height: 130px;
    top: -100%;
    left: 15%;
}
.mv h1::after {
    content: '';
    position: absolute;
    background-image: url(../img/mv_deco_02.webp);
    background-size: cover;
    width: 195px;
    height: 187px;
    top: 125%;
    right: 15%;
}
.mv .mv_img{
    width: 73%;
}
.mv p {
	position: absolute;
	font-size: 16px;
	color: #fff;
	bottom: 10px;
	left: 50px;
}

@media screen and (max-width: 768px) {
	.mv h1 {
        width: 45%;
        left: 0;
        font-size: 22px;
        letter-spacing: 3px;
	}
    .mv h1 span {
        font-size: 18px;
    }
    .mv .mv_img {
        width: 55%;
    }
	.mv p {
		display: inline-block;
		font-size: 12px;
		bottom: 10px;
		left: 20px;
		background-color: rgb(0, 0, 0, 0.3);
		padding: 2px;
		border-radius: 10px;
	}
    .mv h1::before {
        width: 63px;
        height: 50px;
        top: -78%;
        left: 5%;
    }
    .mv h1::after {
        width: 68px;
        height: 63px;
        top: 107%;
        right: 5%;
    }
}

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

	icon設置

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

#restauant02,#restauant04,#restauant06 {
    position: relative;
}
#restauant02::before{
    content: url(../img/restaurant_icon01.webp);
    position: absolute;
    top: -56%;
    left: 24px;
}
#restauant06::before{
    content: url(../img/restaurant_icon02.webp);
    position: absolute;
    top: -30px;
    right: 32px;
}
@media screen and (max-width: 768px){
    #restauant01, #restauant02, #restauant04, #restauant05, #restauant06 {
        padding: 32px 20px;
    }
    #restauant03 {
        padding: 0 20px 16px;
    }
    #restauant02::before,#restauant04::before,#restauant06::before {
        display: none;
    }
}
/* -------------------------------------

	contents01

---------------------------------------- */
.contents01 {
	max-width: 1100px;
	margin: 0 auto;
	padding: 120px 0 0;
}
.contents01 .text-box {
    width: 40%;
}
.contents01 h2 {
    color: #D55913;
    font-family: "Zen Old Mincho";
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
    line-height: 36px;
}
.contents01 .text {
    position: relative;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contents01 .text::after {
    content: '';
    position: absolute;
    background-image: url(../img/reaad_img.webp);
    background-size: cover;
    width: 323px;
    height: 250px;
    left: 0;
    top: 210%;  
}


@media screen and (max-width: 768px) {
	.contents01 {
		padding: 80px 16px 56px;
	}
    .contents01 h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .contents01 .text-box {
        width: 100%;
    }
	.contents01 .text {
		font-size: 14px;
        margin-bottom: 48px;
	}
    .contents01 .text::after {
        width: 110px;
        height: 80px;
        left: inherit;
        right: 0;
        top: -120%;
    }
}

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

	restauant contents02

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


.contents02 h2,.contents06 h2 {
    color: #D55913;
    font-family: "Zen Old Mincho";
    font-size: 48px;
    font-weight: 400;
    margin-left: 24px;
}
.contents02 h2 span,.contents06 h2 span {
	font-size: 36px;
}

.contents02 .flex03.contents,.contents06 .flex03.contents {
	position: relative;
	top: -58px;
    margin-bottom: -200px;
}
.contents02 .bg_color01 {
	background: #FFDDB3;
	color: #4D4D4D;
}

.contents02 .bg_color02 {
	background: #FFDDB3;
	color: #4d4d4d;
}

.contents02 .bg_color03 {
	background: rgb(249,235,206);
	background: linear-gradient(180deg, rgba(255,214,222,1)  0%, rgba(249,235,206,1) 100%);
	color: #4D4D4D;
	padding-bottom: 20px;
}

.contents02 .bg_color04 {
	background: #FFECD1;
	color: #4D4D4D;
}

.contents02 .icon {
    width: 23%;
    position: relative;
    top: -114px;
    right: 40px;
}

.contents02 .rel.contents {
	position: relative;
}

.contents02 .rel.contents .text01,
.contents02 .rel.contents .text02 {
	font-size: 22px;
	color: #4D4D4D;
	background: #fff;
	position: absolute;
	top: -30px;
	left: -30px;
	padding: 10px;
	padding-left: 30px;
}
.contents02 .rel.contents .text02 {
	top: 20px;
}

.contents02 .text-data {
	color: #4D4D4D;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	padding: 50px 0;
}

.contents02 .box, .contents06 .box{
	padding: 64px 32px;
}

.contents02 .box .flex03 .img,
.contents02 .box .flex03 .area_text {
	width: 50%;
}
.contents02 .box .flex03 div:first-child {
	order: 2;
}
.contents02 .box .flex03 div:last-child {
	order: 1;
}

.contents02 .box h3,.contents06 .box h3 {
    font-family: "DNP ShueiGoGinStd";
	font-size: 24px;
	font-weight: bold;
	line-height: 160%;
}

.contents02 .box .place {
	font-size: 14px;
	font-weight: bold;
}

.contents02 .box .category {
	display: flex;
	width: 100%;
	padding: 20px 0;
}

.contents02 .box .category p {
	border: 1px solid #4D4D4D;
	padding: 3px 5px;
}
.contents02 .box .category p:first-child {
	margin-right: 10px;
}

.contents02 .box .text,.contents06 .box .text {
	font-size: 16px;
	line-height: 1.5;
}
.contents02 .box .text.mt20 {
	margin-top: 20px;
}
.contents02 .box .text.mt20 span {
	font-size: 18px;
	font-weight: bold;
	padding-right: 10px;
}


.contents02 .price,
.contents02 .price2,
.contents02 .price3 {
	padding: 40px 0;
	font-size: 14px;
	padding-left:1em;
	text-indent:-1em;
	/* margin-left: 15px; */
}
.contents02 .price::before,
.contents02 .price2::before,
.contents02 .price3::before {
	content: '■';
	color: #DB9CAF;
	padding-right: 5px;
}
.contents02 .price2::before,
.contents02 .price3::before {
	padding-right: 1px;
}
.contents02 .price2.pl5::before {
	padding-right: 5px;
}

.contents02 .price2,
.contents02 .price3 {
	margin-left: 15px;
}
.contents02 .price2 span,
.contents02 .price3 span {
	padding-left: 6px;
}
.contents02 .price2 {
	padding: 0;
	padding-top: 20px;
	line-height: 1.5;
}
.contents02 .price3 {
	padding: 0;
	padding-top: 5px;
	line-height: 1.5;
}
.contents02 .price2.mb40,
.contents02 .price3.mb40 {
	margin-bottom: 40px;
}
.contents02 .price3.mb40::before {
	padding-right: 5px;
}
.contents02 .bg_color04 .box .flex03 div:first-child {
	order: 1;
}
.contents02 .bg_color04 .box .flex03 div:last-child {
	order: 2;
}

.contents02 .box.reverse .flex03 div:first-child {
	order: 2;
}
.contents02 .box.reverse .flex03 div:last-child {
	order: 1;
}

.contents02 .box.reverse2 .flex03 div:first-child {
	order: 1;
}
.contents02 .box.reverse2 .flex03 div:last-child {
	order: 2;
}

.contents02 .bg01 {
	background: rgb(255, 255, 255, 0.4);
	margin: 50px;
	padding: 30px;
}

.contents02 .flex04.mt-40 {
	margin-top: -40px;
}

.contents02 .flex04.mt-40 .img {
	width: 40%;
}

.contents02 .flex04.mt-40 .text {
	font-size: 14px;
	margin-left: 30px;
}

.contents02 .flex04.mt-40 .text .year-number span {
	padding-left: 48px;
}


@media screen and (max-width: 768px) {
    .contents02 {
        margin-top: 0px;
    }
	.contents02 .flex03 {
		display: flex;
	}
	.contents02 .flex03.contents {
    top: -34px;
    margin-bottom: 0;
	}
	.contents02 h2 {
		font-size: 32px;
	}
	.contents02 h2 span {
		font-size: 24px;
	}
	.contents02 .icon {
		width: 50%;
		top: -10px;
        right: 16px;
	}	
	.contents02 .rel.contents .text01,
	.contents02 .rel.contents .text02 {
		font-size: 12px;
		top: -10px;
		left: 0;
		padding: 8px;
		padding-left: 10px;
	}
	.contents02 .rel.contents .text02 {
		top: 23px;
	}
	.contents02 .text-data {
		font-size: 18px;
		padding: 20px 0;
	}
	.contents02 .box {
		padding: 0;
	}
	.contents02 .box .flex03 {
		display: block;
	}
	.contents02 .box .flex03 .img,
	.contents02 .box .flex03 .area_text {
		width: 100%;
	}
	.contents02 .box h3 {
		font-size: 18px;
	}
	.contents02 .box .place {
		font-size: 12px;
		margin-top: 6px;
	}
	.contents02 .box .category {
		font-size: 14px;
	}
	.contents02 .box .text {
		font-size: 14px;
	}
	.contents02 .price,
	.contents02 .price2,
	.contents02 .price3 {
    padding: 20px 0 30px;
    font-size: 13px;
		margin-left: 15px;
	}
	.contents02 .price2 {
    padding: 0;
    padding-top: 20px;
	}
	.contents02 .price3 {
    padding: 0;
    padding-top: 5px;
	}
	.contents02 .box .text.mt20 span {
		font-size: 16px;
		padding-right: 5px;
	}
	.contents02 a.btn {
		width: 100%;
		font-size: 15px;
		padding: 20px 0;
		margin: 0 auto;
	}
	.contents02 .bg01 {
		margin: 10px;
		padding: 15px 10px;
	}
	.contents02 .flex04.mt-40 {
		display: flex;
		margin-top: 0;
	}
	.contents02 .flex04.mt-40 .img {
		width: 40%;
	}
	.contents02 .flex04.mt-40 .text {
		width: 60%;
		margin-left: 15px;
		font-size: 12px;
	}
	.contents02 .flex04.mt-40 .text .year-number span {
		padding-left: 43px;
	}
    .contents06 h2 {
        font-size: 32px!important;
    }
    .contents06 h2 span {
        font-size: 20px!important;
        line-height: 1.1;
    }
    .contents06 .box h3 {
        font-size: 18px;
    }
    .contents06 .box {
        padding: 64px 16px 8px;
    }
}

.contents06{
	padding: 0px 32px;
    margin: 40px auto 80px;
}
.contents06 .bg_color01{
    background: #fff;
}

.contents06 h2{
    color: #D52802;
    font-family: "Zen Old Mincho";
    font-size: 48px;
    font-weight: 400;
}
.contents06 .area_contents {
    background: #FFF8ED;
}
.contents06 .bg_color04 .box .flex03 div:first-child {
	order: 1;
}
.contents06 .bg_color04 .box .flex03 div:last-child {
	order: 2;
}
.contents06 .bg_color04 {
	background: #fff;
    margin-top: 102px;
}

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

	contents07

---------------------------------------- */
.contents07 {
	background: url(../img/bg_01_60th.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	padding: 100px 0;
}

.contents07 .area_bg {
	background: url(../img/bg_02_60th.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 80%;
	margin: 0 auto;
	padding: 100px 0;
}

.contents07 .area_bg h2 {
	width: 20%;
	margin: 0 auto;
}

.contents07 .area_bg p {
	text-align: center;
	line-height: 1.5;
	padding: 40px 0;
}

.contents07 a.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 380px;
	background: #fff;
	border: 1px solid #4D4D4D;
	color: #4D4D4D;
	text-decoration: none;
	font-size: 14px;
	padding: 30px 0;
	position: relative;
	margin: 0 auto;
	margin-top: 30px;
}
.contents07 a.btn::before {
	content: "";
	background:none;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 20px 20px;
	border-color: transparent transparent #4D4D4D transparent;
	transform: rotate(0deg);
	position:absolute;
	bottom: 0;
	right: 0;
}

@media screen and (max-width: 768px) {
	.contents07 {
		background-size: cover;
		width: 100%;
		height: 100%;
		padding: 30px 0;
	}
	.contents07 .area_bg {
		background-size: cover;
		background-position: center;
		width: 90%;
		margin: 0 auto;
		padding: 30px 0;
	}
	.contents07 .area_bg h2 {
		width: 35%;
	}
	.contents07 .area_bg p {
		font-size: 14px;
		padding: 20px 0;
	}
	.contents07 a.btn {
		width: 90%;
		font-size: 15px;
		padding: 20px 0;
		margin: 0 auto;
	}
}

.contents08,footer,.bg_wh {
    background: #fff;
}

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

	contents08

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

.contents08 .w1100 {
	max-width: 1100px;
	margin: 50px auto;
}

.contents08 .w1100 .area_btn {
	display: flex;
	justify-content: space-evenly;
}

.contents08 .w1100 .area_btn li {
	width: 40%;
}

.contents08 .w1100 .area_btn li a.btn,
.contents08 .w1100 .sns .address a.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 380px;
	background: #fff;
	border: 1px solid #4D4D4D;
	color: #4D4D4D;
	text-decoration: none;
	font-size: 14px;
	padding: 30px 0;
	position: relative;
	margin: 0 auto;
}
.contents08 .w1100 .area_btn li a.btn::before,
.contents08 .w1100 .sns .address a.btn::before {
	content: "";
	background:none;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 20px 20px;
	border-color: transparent transparent #4D4D4D transparent;
	transform: rotate(0deg);
	position:absolute;
	bottom: 0;
	right: 0;
}

.contents08 .w1100 .img {
	width: 25%;
	margin: 0 auto;
	margin-top: 120px;
}

.contents08 .w1100 .sns h4 {
	font-family: "dnp-shuei-mincho-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	text-align: center;
	margin: 30px auto 10px;
}

.contents08 .w1100 .sns ul {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
	margin: 20px auto;
}
.contents08 .w1100 .sns ul li {
	width: 16%;
	margin: 0 20px;
}

.contents08 .w1100 .sns .address {
	text-align: center;
}

.contents08 .w1100 .sns .address p {
	line-height: 1.5;
}

.contents08 .w1100 .sns .address a.btn {
	width: 380px;
	margin-top: 50px;
}

.contents08 .w1100 ul.note {
	margin: 50px auto;
}

.contents08 .w1100 ul.note li {
	padding-left:1em;
	text-indent:-1em;
	line-height: 1.5;
	font-size: 12px;
}


@media screen and (max-width: 768px) {
	.contents08 .w1100 .area_btn {
		display: block;
	}
	.contents08 .w1100 .area_btn li {
		width: 80%;
		margin: 0 auto 20px;
	}
	.contents08 .w1100 .area_btn li a.btn,
	.contents08 .w1100 .sns .address a.btn {
		width: 90%;
		font-size: 15px;
		padding: 20px 0;
		margin: 0 auto;
	}
	.contents08 .w1100 .img {
		width: 40%;
		margin-top: 60px;
	}
	.contents08 .w1100 .sns h4 {
		font-size: 20px;
		margin: 20px auto 10px;
	}
	.contents08 .w1100 .sns ul li {
		width: 13%;
		margin: 0 20px;
	}
	.contents08 .w1100 .sns .address {
		padding: 0 20px;
	}
	.contents08 .w1100 .sns .address p {
		font-size: 14px;
	}	
	.contents08 .w1100 .sns .address a.btn {
		width: 80%;
		margin-top: 40px;
	}
	.contents08 .w1100 ul.note {
		margin: 30px 20px;
	}
	.contents08 .w1100 ul.note li {
		padding-left:1em;
		text-indent:-1em;
		line-height: 1.5;
		font-size: 10px;
	}	
}


/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding-top: 100px;
}

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

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	line-height: 1;
	color: rgb(var(--blk));
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	margin: 0 0 1rem;
	text-indent: 0;
	display: flex;
	position: relative;
}

.footer__hotelNav li:first-of-type::before,
.footer__hotelNav li::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.footer__hotelNav li:first-of-type::before {
	left: 0;
	content: "|";
}

.footer__hotelNav li::after {
	right: 0;
	content: "|";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: rgb(var(--blk));
	text-decoration: none;
	display: inline-block;
}

.footer__hotelNav li a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		text-align: center;
		display: block;
	}

	.footer__hotelNav li:first-of-type::before,
	.footer__hotelNav li::after {
		content: "";
	}

	.footer__hotelNav li {
		margin-bottom: 1rem;
		justify-content: center;
	}

	.footer__hotelNav li a {
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		content: "|";
	}

	.footer__hotelNav li a::before {
		left: 0;
	}

	.footer__hotelNav li a::after {
		right: 0;
	}
}

/*
	copy
------------------------------ */
.copy {
	padding: 2rem 0 3rem;
	color: rgba(var(--blk), 0.5);
	font-size: 13px;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	text-align: center;
}

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

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
: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;
	--mr-eaves: "mr-eaves-xl-modern", sans-serif;
	--shippori: "Shippori Mincho", serif;

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gry: 128, 128, 128;
	--red: 210, 30, 40;
	--yel: 172, 153, 60;
	--gry2: #4D4D4D;
}

.pageTop a {
	background: rgba(var(--wht), 0.8);
	border: 1px solid #4D4D4D;
	width: 64px;
	height: 64px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 10;
}

.pageTop a .arrow {
	width: 50%;
}
