@charset "UTF-8";

/*===============================
base
================================*/
html {
font-size: 62.5%;
font-weight: 400;
letter-spacing: 1px;
line-height: 2.8em;
color: #555;
font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body {
position: relative;
z-index: 100;
font-size: 1.4rem;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 400;
}
img {
width: 100%;
}
a {
transition: .3s;
}

.stix-two-text {
font-family: "STIX Two Text", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
letter-spacing: .1em;
font-size: 16px;
}
.dc_css_js_dsp {
position: fixed;
bottom: 10px;
right: 10px;
z-index: 500;
padding: 30px;
background: #fff;
border: 1px solid #555;
}
.dc_css_js_dsp .scripts {
margin-top: 20px;
}
.dc_css_js_dsp dd ul {
margin-top: 15px;
}
.dc_css_js_dsp dd ul li {
position: relative;
padding-left: 20px;
}
.dc_css_js_dsp dd ul li:before {
content: "・";
position: absolute;
top: 0;
left: 0;
}
.dc_css_js_dsp dd ul li:not(:first-child) {
margin-top: 10px;
}
.wrap {
width: 100%;
margin-inline: auto;
}
.wrap-s, .wrap-m, .wrap-l {
width: calc(100% - 60px);
margin-inline: auto;
}
.wrap-s {
max-width: 1000px;
}
.wrap-m {
max-width: 1200px;
}
.wrap-l {
max-width: 1500px;
}
.palmtop {
display: block !important;
}
.laptop {
display: none !important;
}
.sclNone {
overflow-y: hidden;
}


.pc-hidden {
display: none !important
}

@media only screen and (max-width: 1023px) {
.tbsp-hidden {
	display: none !important
}
}

@media only screen and (max-width: 767px) {
.sp-hidden {
	display: none !important
}
.pc-hidden {
	display: block !important
}
br.pc-hidden {
	display: inline-block !important
}
.hbg_btn_line span {
	width: 20px;
}
}


/*========= ローディング画面のためのCSS ===============*/
#splash {
position: fixed;
width: 100%;
height: 100%;
background: #fff;
z-index: 9999999;
text-align: center;
top: 0;
}
#splash_logo {
display: none;
width: 24%;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}


/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/

.splashbg {
display: none;
}


/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
display: block;
content: "";
position: fixed;
z-index: 999;
width: 100%;
height: 100vh;
top: 0;
left: 0;
transform: scaleX(0);
background-color: #fff;
/*伸びる背景色の設定*/
animation-name: PageAnime;
animation-duration: 1.2s;
animation-timing-function: ease-in-out;
animation-fill-mode: forwards;
/* visibility: hidden; */
}

@keyframes PageAnime-fadeout {
0% {
transform: scaleX(1);
}
100% {
	transform: scaleX(1);
}
}
@keyframes PageAnime {
0% {
transform-origin: left;
transform: scaleX(0);
}
50% {
transform-origin: left;
transform: scaleX(1);
}
50.001% {
transform-origin: right;
}
100% {
transform-origin: right;
transform: scaleX(0);
}
}


/*画面遷移の後現れるコンテンツ設定*/
#header {
opacity: 0;
}
#header_nav {
opacity: 0;
}
#main_wrapper {
opacity: 0;
}
#footer {
opacity: 0;
}
/* #reserve_btn {
opacity: 0;
} */


/*bodyにappearクラスがついたら出現*/
body.appear #header {
animation-name: PageAnimeAppear;
animation-duration: 1s;
animation-delay: 0.8s;
animation-fill-mode: forwards;
opacity: 0;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
body.appear #header_nav {
animation-name: PageAnimeAppear;
animation-duration: 1s;
animation-delay: 0.8s;
animation-fill-mode: forwards;
opacity: 0;
}
body.appear #main_wrapper {
animation-name: PageAnimeAppear;
animation-duration: 1s;
animation-delay: 0.8s;
animation-fill-mode: forwards;
opacity: 0;
}
body.appear #footer {
animation-name: PageAnimeAppear;
animation-duration: 1s;
animation-delay: 0.8s;
animation-fill-mode: forwards;
opacity: 0;
}
/* body.appear #reserve_btn {
animation-name: PageAnimeAppear;
animation-duration: 1s;
animation-delay: 0.8s;
animation-fill-mode: forwards;
opacity: 0;
} */

@keyframes PageAnimeAppear {
0% {
	opacity: 0;
}
100% {
	opacity: 1;
}
}

/*
animations
================================*/
.fade-anim {
opacity: 0;
-webkit-transform: translateY(10px);
		transform: translateY(10px);
-webkit-transition: all 0.5s cubic-bezier(0, 0.8, 0.2, 1);
transition: all 0.5s cubic-bezier(0, 0.8, 0.2, 1);
}

.is-fade-anim {
opacity: 1;
-webkit-transform: translateY(0);
		transform: translateY(0);
}


/*===============================
layout
================================*/
/*
header
================================*/
.l-header {
position: fixed;
z-index: 100;
top: 0;
left: 0;
width: 100%;
-webkit-transition: top 0.3s ease;
transition: top 0.3s ease;
}
.l-header_ctr {
padding: 30px 30px;
text-align: center;
height: 90px;
background: rgb(255 255 255 / 80%);
}
.l-header_ctr_logo a {
position: relative;
display: inline-block;
/* opacity: 0; */
transition: .5s;
}
#header.scroll .l-header_ctr_logo a {
margin-top: 0px;
opacity: 1;
display: inline-block;
}
.l-header_ctr h1 {
	line-height: 36px;
}
.l-header_ctr_logo a img {
	width: 26%;
	height: auto;
	min-width: 200px;
}
.is-hide {
top: -100%;
}
.is-header-bg {
background: #fff;
}

/*
main
================================*/
.l-main--home {
padding-top: 0;
}
.l-main {
padding-top: 164px;
}


/*
footer
================================*/
.l-footer {
border-top: 1px solid #ccc;
padding-top: clamp(60px, 10vw, 120px);
}

.l-footer_link-list_item {
margin-top: 30px;
}
.l-footer_link-list_item:first-child {
margin-top: 0;
}
.l-footer_link-list_item_img img {
border: 1px solid #212121;
}
.l-footer_link-list_item_txt {
margin-top: 15px;
}
.l-footer_logo {
text-align: left;
margin-top: 0px;
margin-bottom: 20px;
}
.l-footer_logo img {
width: 200px;
}
.l-footer_info {
margin-bottom: 20px;
}
.l-footer_copyright {
margin-top: 100px;
font-size: 1.2rem;
text-align: center;
margin-bottom: 30px;
letter-spacing: 0;
}
.l-footer--home {
margin-top: clamp(60px, 10vw, 200px);
}

.l-footer-wrap {
width: 90%;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.l-footer_left {
width: 45%;
}
.l-footer_right {
width: 45%;
}
.l-footer_nav .dw_inner_list_item {
margin-top: 15px;
}
.l-footer_nav .dw_inner_list_item a {
display: flex;
justify-content: flex-start;
align-items: center;
font-size: 16px;
text-decoration: none;
}
.l-footer_nav .dw_inner_list_item a span {
color: #555;
position: relative;
}
.l-footer_nav .dw_inner_list_item a span small {
font-size: 14px;
}
.l-footer_sns .dw_inner_sns_linkbn {
display: flex;
justify-content: flex-start;
align-items: center;
}
.l-footer_sns .dw_inner_sns_linkbn a {
display: block;
width: 26px;
height: 26px;
background: url(../images/icon_ig_black.png) no-repeat;
background-size: 26px;
}

.more_btn {
width: 300px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
display: block;
margin: 0 auto;
}
.more_btn a {
display: inline-block;
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
background: linear-gradient(to right, #998f58 50%, #fff 50%);
background-size: 200% auto;
border: 2px solid #fff;
color: #fff;
text-decoration: none;
width: 100%;
}

#reserve_btn {
position: fixed;
width: 300px;
bottom: 10px;
right: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
#reserve_btn a {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
background: linear-gradient(to right, #998f58 50%, #fff 50%);
background-size: 200% auto;
border: 2px solid #fff;
color: #fff;
text-decoration: none;
}
#page_top {
position: fixed;
bottom: 90px;
right: 10px;
font-size: 77%;
z-index: 10;
}
#page_top a {
background-color: rgba(255, 255, 255, 0.8);
text-decoration: none;
color: #fff;
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
display: block;
background-image: url(../images/up_arrow_black.png);
background-position: center;
background-size: 15px;
background-repeat: no-repeat;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


/*
hamburger
================================*/
.hbg {
position: fixed;
z-index: 120;
top: 31px;
right: 30px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.hbg_btn {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
	-ms-flex-align: center;
		align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		padding: 18px 8px;
}
.hbg_btn span {
display: block;
}
.hbg_btn_line {
position: relative;
width: 25px;
height: 14px;
}
.hbg_btn_line span {
position: absolute;
width: 25px;
height: 1px;
background: #212121;
transition: .5s
}
.hbg_btn.active .hbg_btn_line span {
background: #fff;
}
.hbg_btn_line span:first-child {
top: 0;
}
.hbg_btn_line span:nth-child(2) {
top: 14px;
}
.hbg_btn.active .hbg_btn_line span:first-child {
top: 0px;
left: 0px;
transform: translateY(6px) rotate(-45deg);
width: 25px;
}
.hbg_btn.active .hbg_btn_line span:nth-child(2) {
top: 12px;
left: 0px;
transform: translateY(-6px) rotate(45deg);
width: 25px;
}
.hbg_btn_text {
-webkit-transform: translateY(1px);
		transform: translateY(1px);
margin-right: 10px;
color: #212121;
transition: .5s;
}
.hbg_btn.active .hbg_btn_text {
color: #fff;
}
.is-hide {
top: -100%;
}

.is-hbg-bg .hbg_btn_line span {
background: #212121;
}
.is-hbg-bg .hbg_btn_text {
color: #212121;
}

/*
drawer
================================*/
.dw {
position: fixed;
z-index: 110;
top: 0;
right: 0;
width: 100%;
height: 100vh;
height: 100dvh;
background: rgb(33 33 33 / 90%);
opacity: 0;
visibility: hidden;
/* -webkit-transform: scale(0.95);
		transform: scale(0.95);
pointer-events: none;
-webkit-transition: all 0.3s cubic-bezier(0, 0.8, 0.2, 1);
transition: all 0.3s cubic-bezier(0, 0.8, 0.2, 1);
overflow-y: auto; */
transition: .5s;
}
.dw.active {
opacity: 1;
visibility: visible;
overflow-y: scroll;
}
.dw_inner_list {
padding: 50px 30px 50px;
border-top: 1px solid rgb(255 255 255 / 25%);
border-bottom: 1px solid rgb(255 255 255 / 25%);
margin: 50px auto 50px;
width: 90%;
max-width: 700px;

}
.dw_inner_list_item {
margin-top: 40px;
text-align: center;
}
.dw_inner_list_item a {
font-size: 3rem;
text-decoration: none;
}

.dw_inner_list_item:first-child {
margin-top: 0;
}
.dw_inner_list_item a {
display: flex;
justify-content: center;
align-items: center;
}
.dw_inner_list_item a span {
display: block;
}
.dw_inner_list_item a span small {
font-size: 1.5rem;
}
.dw_inner_list_item a .dw_inner_list_item_en img {
height: 18px;
}
.dw_inner_list_item a .dw_inner_list_item_ja {
color: #fff;
margin-top: 15px;
position: relative;
}
.dw .close-btn {
position: absolute;
top: 30px;
right: 27px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
	-ms-flex-align: center;
		align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
}
.dw .close-btn span {
display: block;
}
.dw .close-btn_line {
position: relative;
width: 25px;
height: 14px;
}
.dw .close-btn_line span {
position: absolute;
width: 25px;
height: 3px;
background: #fff;
}
.dw .close-btn_line span:first-child {
-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg);
}
.dw .close-btn_line span:nth-child(2) {
opacity: 0;
}
.dw .close-btn_line span:nth-child(3) {
-webkit-transform: translateY(6px) rotate(-45deg);
		transform: translateY(6px) rotate(-45deg);
}
.dw .close-btn_text {
-webkit-transform: translateY(1px);
		transform: translateY(1px);
margin-right: 10px;
font-weight: bold;
color: #fff;
}
.dw_logo {
padding: 30px 30px;
text-align: center;
height: 90px;
}
.dw_logo img {
width: 200px;
}
.dwActive {
opacity: 1;
-webkit-transform: scale(1);
		transform: scale(1);
pointer-events: auto;
}
.dw_inner_reserve {
width: 90%;
max-width: 700px;
margin: 0 auto 50px;
padding-bottom: 50px;
border-bottom: 1px solid rgb(255 255 255 / 25%);
}
.dw_inner_reserve_title {
color: #fff;
text-align: center;
font-size: 2rem;
margin-bottom: 20px;
}
.dw_inner_reserve_linkbn {
width: 96%;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
}
.dw_inner_reserve a {
width: calc(100% / 2 - 10px);
display: block;
background: #fff;
padding: 10px 15px;
height: 54px;
}
.dw_inner_sns {
width: 90%;
max-width: 500px;
margin: 0 auto;
padding-bottom: 50px;
}
.dw_inner_sns_linkbn {
display: flex;
justify-content: center;
align-items: center;
}
.dw_inner_sns_linkbn a {
display: block;
width: 30px;
height: 30px;
background: url(../images/icon_ig.png) no-repeat;
background-size: 30px;
}

/*===============================
module
================================*/
/*
h-style
================================*/
.h-style1 {
text-align: center;
margin-bottom: 35px;
padding-bottom: 20px;
}
.h-style1_en {
font-size: 7rem !important;
line-height: 1em;
}
.h-style1_en, .h-style1_ja {
text-align: center;
}
.h-style1_en img {
height: 25px;
}
.h-style1_ja {
margin-top: 10px;
font-size: 16px;
}

.p-h_en, .p-h_ja {
text-align: center;
}
.p-h_en img {
height: 25px;
}
.p-h_ja {
margin-top: 20px;
}

/*
btn-style
================================*/
.btn-style1 {
text-align: center;
margin-top: 35px;
}
.btn-style1 a {
position: relative;
text-align: center;
display: inline-block;
color: #212121;
padding: 20px 40px;
background: #fff;
border: 1px solid #212121;
}
.btn-style1 a:before {
content: "";
display: block;
position: absolute;
top: 17px;
right: 10px;
background-image: url("../../images/common/btn-arrow-icon.svg");
background-repeat: no-repeat;
background-size: 100% auto;
width: 18px;
height: 18px;
}

/*
p-style
================================*/
.p-ctn {
background: #fff;
padding: 30px 0;
}
.p-ctn--notfound {
padding: 0;
}

/*
news-style
================================*/
.news-style_item {
margin-top: 35px;
}
.news-style_item:first-child {
margin-top: 0;
}
.news-style_item_thumb {
position: relative;
aspect-ratio: 1000/680;
}
.news-style_item_thumb img {
position: absolute;
width: 100%;
height: 100%;
-o-object-fit: cover;
	object-fit: cover;
}
.news-style_item .noimg img {
border: 1px solid #212121;
}
.news-style_item_date {
margin: 20px 0 15px;
}
.news-style_item_h {
line-height: 1.6em;
}


/*
space
================================*/
.mar-t {
margin-top: clamp(60px, 10vw, 120px);
}

.mar-tb {
margin: clamp(60px, 10vw, 120px) 0;
}

.pad-t {
padding-top: clamp(60px, 10vw, 120px);
}

.pad-tb {
padding: clamp(100px, 10vw, 200px) 0 0;
}

/*
align
================================*/
.left {
text-align: left;
}

.center {
text-align: center;
}

.right {
text-align: right;
}

/*
font-weight
================================*/
/*
color
================================*/
/*
paragraph
================================*/
.paragraphs p {
line-height: 1.4em;
max-width: 90%;
}
.paragraphs p:not(:first-child) {
margin-top: 10px;
font-size: 16px;
}

/*
pagination
================================*/
.pagination {
margin-top: 30px;
}
.pagination .page-numbers {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.pagination .page-numbers li:not(:first-child) {
margin-left: 8px;
}
.pagination .page-numbers li span, .pagination .page-numbers li a {
display: block;
padding: 10px 12px;
}
.pagination .page-numbers li a {
border: 1px solid #ccc;
-webkit-transition: background 0.3s ease, color 0.3s ease;
transition: background 0.3s ease, color 0.3s ease;
}
.pagination .page-numbers li .current {
color: #fff;
background: #000;
border: 1px solid #000;
}








#js-kv {
padding-top: 90px;
position: relative;
}
#mainvisual{
height: calc( 100vh - 180px );
}
.kv_img {
opacity: .7;
width: 40%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
.vegas-overlay {
opacity: .5;
}

.h-concept_column {
display: flex;
justify-content: space-between;
align-items: center;
}
.h-concept_column_img {
width: 60%;
}
.h-concept_column_content {
width: 30%;
margin-right: 5%;
}
.h-concept_column_img1 {
width: 70%;
margin: 0 auto 0 0;
}
.h-concept_column_img2 {
width: 40%;
margin: -300px 0 0 auto;
}
.h-concept_column_img3 {
width: 60%;
margin: -80px 18% 0 auto;
}
.h-concept_column_content_txt_l {
font-size: 4rem;
margin-bottom: 20px;
}

.h-feature_column {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 100px;
}
.h-feature_column_content {
width: 100%;
margin: 0 auto 0 10%;
}
.h-feature_column_content_txt_l {
font-size: 4rem;
margin-bottom: 20px;
}
.h-feature_column_img {
width: 45%;
margin: 0 10% 0 auto;
}
.h-feature_detail {
margin-bottom: 100px;
}
.h-feature_detail_desc {
width: 98%;
max-width: 1200px;
margin: 0 auto;
border-top: 1px solid #333;
border-bottom: 1px solid #333;
padding: 40px 20px;
}
.h-feature_detail_desc_dl {
display: flex;
justify-content: flex-start;
align-items: flex-start;
margin-bottom: 20px;
border-bottom: 1px solid #ccc;
padding: 0 2% 20px;
		font-size: 16px;
		line-height: 1.8;
}
.h-feature_detail_desc_dl:last-child {
margin-bottom: 0px;
border-bottom: none;
padding-bottom: 0px;
}
.h-feature_detail_desc_dl dt {
width: 22%;
margin-right: 2%;
box-sizing: border-box;
display: flex;
justify-content: flex-start;
align-items: baseline;
}
.h-feature_detail_desc_dl dt i {
width: 20px;
font-size: 14px;
margin-right: 6px;
text-align: center;
}
.h-feature_detail_desc_dl dd {
width: 76%;
box-sizing: border-box;
}
.h-feature_desc_box {
margin-bottom: 100px;
}
.h-feature_desc_box:last-child {
margin-bottom: 0!important;
}
.h-feature_desc_box_title {
font-size: 3rem;
width: 90%;
margin: 0 auto 50px;
display: flex;
justify-content: flex-start;
align-items: center;
line-height: 1.2em;
}
.h-feature_desc_box.right .h-feature_desc_box_title {
justify-content: flex-end;
}
.h-line {
width: 200px;
height: 1px;
background: #999;
margin: 0 30px;
}
.h-feature_desc_box_slider_left {
width: 90%;
margin: 0 auto 20px 0;
}
.h-feature_desc_box_slider_right {
width: 90%;
margin: 0 0 20px auto;
}
.left .h-feature_desc_box_title {
text-align: left;
}
.right .h-feature_desc_box_title {
text-align: right;
}
.h-feature_desc_box_slider_left {
position: relative;
margin-bottom: 20px;
}
.h-feature_desc_box_slider_left:before {
content: "";
position: absolute;
width: 20%;
height: 100%;
top: 0;
right: 0;
background: linear-gradient(90deg, rgb(255 255 255 / 0%), #fff);
z-index: 1;
}
.h-feature_desc_box_slider_right {
position: relative;
margin-bottom: 20px;
}
.h-feature_desc_box_slider_right:before {
content: "";
position: absolute;
width: 20%;
height: 100%;
top: 0;
left: 0;
background: linear-gradient(-90deg, rgb(255 255 255 / 0%), #fff);
z-index: 1;
}
.h-feature_desc_box_slider_left div {
transition: none;
}
.h-feature_desc_box_slider_left .slick-slide {
margin: 0 2px;
}
/* .h-feature_desc_box_slider_left .slick-prev {
left: 50px;
} */
.h-feature_desc_box_slider_right div {
transition: none;
}
.h-feature_desc_box_slider_right .slick-slide {
margin: 0 2px;
}
/* .h-feature_desc_box_slider_right .slick-next {
right: 50px;
} */
.h-feature_desc_box_text {
width: 88%;
max-width: 1000px;
margin: 0 auto;
text-align: center;
font-size: 16px;
}

.h-access_map {
margin-bottom: 50px;
}
.h-access_map iframe {
width: 100%;
height: 450px;
}
.h-access_desc {
width: 84%;
max-width: 900px;
margin: 0 auto 50px;
}
.h-access_desc_dl {
display: flex;
justify-content: flex-start;
align-items: flex-start;
margin-bottom: 20px;
}
.h-access_desc_dl:last-child {
margin-bottom: 0px;
}
.h-access_desc_dl dt {
width: 22%;
margin-right: 2%;
box-sizing: border-box;
display: flex;
justify-content: flex-start;
align-items: center;
}
.h-access_desc_dl dt i {
width: 20px;
font-size: 14px;
margin-right: 6px;
text-align: center;
}
.h-reserve_column_comment {
text-align: center;
margin-bottom: 30px;
}
.h-reserve_linkbn {
width: 96%;
max-width: 800px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.h-reserve_linkbn a {
width: calc(100% / 2 - 10px);
display: block;
background: #fff;
padding: 20px 40px;
border: 1px solid #ccc;
height: 80px;
max-width: 390px;
}

.h-neighborhood_column {
width: 88%;
margin: 0 auto;
}
.h-neighborhood_column_item {
display: flex;
justify-content: space-between;
align-items: flex-start;
width: 100%;
margin: 0 auto 0 0;
}
.h-neighborhood_column_item:nth-child(2n) {
/*margin: 0 0 5vw auto;*/
}
.h-neighborhood_column_item:nth-child(n+2) {
margin-top: 42px;
margin-bottom: 124px;
}
.h-neighborhood_column_item_image {
width: 50%;
}
.h-neighborhood_column_item_text {
width: 42%;
}
.h-neighborhood_column_item_text_title {
font-size: 2.5rem;
padding-left: 10px;
border-left: 1px solid #ccc;
margin-bottom: 10px;
padding-top: 4px;
line-height: 1.3em;
}
.h-neighborhood_column_item_text_comment {
margin-bottom: 16px;
font-size: 16px;
line-height: 1.8;
}
.h-neighborhood_column_item_text_info2 {
padding-left: 20px;
background: url(../images/icon_pin.png) no-repeat;
background-size: 15px;
background-position: left top 8px;
margin-bottom: 16px;
font-size: 16px;
}
.h-neighborhood_column_item_text_info {
padding-left: 20px;
background: url(../images/cal.png) no-repeat;
background-size: 15px;
background-position: left top 8px;
margin-bottom: 16px;
font-size: 16px;
}

.link_btn a {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
max-width: 300px;
margin: 0 auto;
padding: 1.5em 1.0em;
border: 1px solid #999;
background: linear-gradient(to right, #ffffff 50%, #999 50%);
background-size: 200% auto;
box-sizing: border-box;
color: #555;
font-size: 14px;
text-decoration: none;
text-align: center;
transition: .3s;
position: relative;
}
.link_btn a:before {
transition: .3s;
content: "";
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
width: 20px;
height: 20px;
background: url(../images/icon_external.png) no-repeat;
background-size: 100%;
}

.link_btn_small a {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
max-width: 240px;
margin: 0 auto 0 0;
padding: .3em .5em;
border: 1px solid #999;
background: linear-gradient(to right, #ffffff 50%, #999 50%);
background-size: 200% auto;
box-sizing: border-box;
color: #555;
font-size: 14px;
text-decoration: none;
text-align: center;
transition: .3s;
position: relative;
}
.link_btn_small a:before {
transition: .3s;
content: "";
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
width: 20px;
height: 20px;
background: url(../images/icon_external.png) no-repeat;
background-size: 100%;
}




@media only screen and (min-width: 1187px) {
a:hover {
	opacity: .7;
}
.dw_inner_list_item a .dw_inner_list_item_ja:after {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	content: "";
	width: 0%;
	height: 1px;
	background: #ccc;
	right: 0;
	bottom: -5px;
	position: absolute;
}
.dw_inner_list_item a:hover .dw_inner_list_item_ja:after {
	width: 100%;
	left: 0;
}

.l-footer_nav .dw_inner_list_item a span:after {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	content: "";
	width: 0%;
	height: 1px;
	background: #ccc;
	right: 0;
	bottom: 0px;
	position: absolute;
}
.l-footer_nav .dw_inner_list_item a:hover span:after {
	width: 100%;
	left: 0;
}
.link_btn a:hover {
	color: #ffffff;
	background-position: -100% 0;
	opacity: 1;
}
.link_btn a:hover:before {
	background: url(../images/icon_external_white.png) no-repeat;
	background-size: 100%;
}
.link_btn_small a:hover {
	color: #ffffff;
	background-position: -100% 0;
	opacity: 1;
}
.link_btn_small a:hover:before {
	background: url(../images/icon_external_white.png) no-repeat;
	background-size: 100%;
}

#reserve_btn a:hover {
	color: #998f58;
	background-position: -100% 0;
	opacity: 1;
}
}





@media only screen and (max-width: 1186px) {
html {
	line-height: 2em;
}
body {
	font-size: 16px;
}
#splash_logo {
	width: 60%;
}
#js-kv {
	padding-top: 60px;
}
.kv_img {
	width: 80%;
}
.l-header_ctr {
	padding: 10px 10px;
	height: 60px;
}
#header.scroll .l-header_ctr_logo a {
	height: 40px;
	display: inline-block;
}
.l-header_ctr_logo a img {
	width: 54%;
	height: auto;
	max-height: 68px;
}
.hbg {
	top: 0;
	right: 0;
}

.dw_logo {
	padding: 10px 10px;
	height: 60px;
}
.dw_logo img {
	width: 50%;
	padding: 12px 0;
}
.dw_inner_list {
	padding: 10vw 6vw 10vw;
	margin: 10vw auto;
}
.dw_inner_list_item {
	margin-top: 4vw;
}
.dw_inner_list_item a {
	font-size: 2.5rem;
}
.dw_inner_list_item a .dw_inner_list_item_ja {
	margin-top: 10px;
}
.dw_inner_list_item:first-child a .dw_inner_list_item_ja {
	margin-top: 0px;
}
.dw_inner_list_item a span small {
	font-size: 1rem;
}
.dw_inner_reserve_title {
	font-size: 1.5rem;
	margin-bottom: 4vw;
}
.dw_inner_reserve a {
	padding: 8px 10px;
	height: 50px;
	display: block;
	min-width: 300px;
}
.dw_inner_reserve_linkbn {
	justify-content: center;
	flex-wrap: wrap;
}

#mainvisual {
	height: calc( 80vh - 0px );
}
.h-style1 {
	margin-bottom: 25px;
	padding-bottom: 10px;
}
.h-style1_en {
	font-size: 4rem !important;
}
.h-concept_column {
	flex-wrap: wrap;
}
.h-concept_column_img {
	width: 100%;
	margin: 0 auto 10vw;
}
.h-concept_column_img2 {
	width: 40%;
	margin: -20vw 0 0 auto;
}
.h-concept_column_img3 {
	width: 60%;
	margin: -12vw 20% 0 auto;
}
.h-concept_column_content {
	width: 90%;
	margin: 0 auto;
}
.h-concept_column_content_txt_l {
	font-size: 3rem;
	margin-bottom: 8vw;
	line-height: 1.5 !important;
}

.h-feature_column {
	flex-wrap: wrap;
	margin-bottom: 14vw;
}
.h-feature_column_content {
	width: 88%;
	margin: 0 auto 5vw;
}
.h-feature_detail {
	margin-bottom: 8vw;
}
.h-feature_detail_desc {
	padding: 8vw 2vw;
}
.h-feature_detail_desc_dl {
	flex-wrap: wrap;
	margin-bottom: 4vw;
	border-bottom: 1px solid #ccc;
}
.h-feature_detail_desc_dl dt {
	width: 100%;
	margin-right: 0;
	margin-bottom: 2vw;
}
.h-feature_detail_desc_dl dd {
	width: 99%;
	margin-left: 5%;
}
.h-feature_desc_box_text {
	text-align: left;
}
.h-feature_column_content_txt_l {
	font-size: 3rem;
	line-height: 1.5 !important;
}
.h-feature_desc_box {
	margin-bottom: 15vw;
}
.h-feature_column_img {
	width: 100%;
	margin: 0 auto;
}
.h-feature_desc_box_title {
	font-size: 2rem;
	width: 90%;
	margin: 0 auto 8vw;
}
.h-line {
	width: 30%;
	margin: 0 3vw;
}

.h-access_map {
	margin-bottom: 8vw;
}
.h-access_map iframe {
	width: 100%;
	height: 90vw;
}
.h-access_desc {
	margin: 0 auto 8vw;
}
.h-access_desc_dl {
	flex-wrap: wrap;
	margin-bottom: 4vw;
}
.h-access_desc_dl dt {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 2vw;
}
.h-access_desc_dl dd {
	width: 98%;
	margin-left: 2%;
}

.h-neighborhood_column_item {
	width: 100%;
	margin: 0 auto 10vw;
	flex-wrap: wrap;
}
.h-neighborhood_column_item_image {
	width: 100%;
	margin-bottom: 5vw;
}
.h-neighborhood_column_item_text {
	width: 100%;
}
.h-neighborhood_column_item_text_title {
	font-size: 5vw;
	padding-left: 10px;
}
.h-neighborhood_column_item:nth-child(n+2) {
	margin-top: 0px;
}
.h-neighborhood_column_item:nth-child(2n) {
	margin: 0 auto 14vw;
}
.h-neighborhood_column_item_text_info2 {
	padding-left: 22px;
	background: url(../images/icon_pin.png) no-repeat;
	background-size: 16px;
	background-position: left top 5px;
}
.h-neighborhood_column_item_text_info {
	padding-left: 22px;
	background: url(../images/cal.png) no-repeat;
	background-size: 16px;
	background-position: left top 5px;
}

.h-reserve_linkbn {
	width: 84%;
	flex-wrap: wrap;
}
.h-reserve_linkbn a {
	width: 90%;
	margin: 0 auto 4vw;
	padding: 20px 40px;
}

.l-footer-wrap {
	width: 84%;
	flex-wrap: wrap;
}
.l-footer_left {
	width: 100%;
	margin-bottom: 8vw;
}
.l-footer_logo {
	margin-bottom: 3vw;
}
.l-footer_info {
	margin-bottom: 3vw;
}
.l-footer_right {
	width: 100%;
}
.l-footer_nav .dw_inner_list_item a {
	font-size: 16px;
}
.l-footer_nav .dw_inner_list_item a span small {
	font-size: 14px;
}
.l-footer_copyright {
	margin-bottom: 80px;
}

.link_btn a {
	font-size: 16px;
}
.link_btn_small a {
	padding: .6em .5em;
}
#reserve_btn {
	width: 54%;
}
#reserve_btn a {
	padding: 15px;
}
#page_top {
	position: fixed;
	bottom: 70px;
	right: 10px;
	font-size: 77%;
	z-index: 10;
}


}



	.eb_sponsors_box {
		width: 84%;
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;

	}
	.eb_sponsors_box a {
		width: 33%;
		padding: 8px 4px 16px;
		text-decoration: unset;
		color: unset;
		font-size: 16px;
	}
	.eb_sponsors_box a .sponsor_title {
		margin-bottom: 4px;
	}
	.eb_sponsors_box a img {
		border: 1px solid #7f7f7f;
	}


	@media only screen and (max-width: 1186px) {
		.eb_sponsors_box a {
			width: 50%;
		}
	}
	@media only screen and (max-width: 778px) {
		.eb_sponsors_box a {
			width: 100%;
		}
		.stix-two-text {
			font-size: 16px;
		}
		.hbg_btn_text {
			font-size: 12px !important;
		}
	}


.no_separate {
	margin-bottom: 0;
	border-bottom: unset;
}
@media only screen and (max-width: 778px) {
	.h-feature_detail_desc_dl dd {
		margin-left: 10%;
	}
}


a:hover {
	text-decoration: none !important;
}



.skiptranslate iframe {
	left: unset;
	top: unset;
	bottom: 0;
}


.date_title {
	font-size: 3rem !important;
	text-align: center;
	font-family: "STIX Two Text", serif;
	margin: 50px auto 20px;
}
@media only screen and (min-width: 1187px) {
	.date_title {
		font-size: 5rem !important;
		line-height: 1em;
	}
}

.h-feature_desc_box_slider_inner a {
	display: inline-block;
}

.datebox {
	font-size: 80%;
}


#chairmans_remarks .h-feature_column {
	align-items: flex-start;
}
#chairmans_remarks .h-feature_column_img {
	width: 35%;
	margin: 0;
	padding: 0 5%;
}
#chairmans_remarks .h-feature_column_content {
	margin: 0 auto 0 0;
}
#chairmans_remarks .h-feature_column_img1 {
	text-align: center;
}
#chairmans_remarks .h-feature_column_img1 img {
	max-width: 200px;
}
.chairmans_name {
	text-align: center;
	margin-top: 12px;
}
@media only screen and (max-width: 1186px) {
	.h-feature_column_content {
		width: 62%;
	}
}
@media only screen and (max-width: 767px) {
	.h-feature_column_content {
		width: 100%;
		padding: 8%;
	}
	#chairmans_remarks .h-feature_column_img {
		width: 100%;
	}
}





