@charset "UTF-8";
/*
  layout.css
  01. Base / Common
  02. Header / Navigation
  03. Shared Components
  04. Page: Top
  05. Page: Overview
  06. Page: Equipment
  07. Page: Owner
  08. Page: Plan
  09. Page: Location
  10. Footer

  Page-specific rules are scoped by wrapper IDs: #top, #equipment, #owner, #plan, #location, #overview.
*/
/* 01. Base / Common */
body{
	font-size: 18px;
}
.bg01{
	background-color: #fff;
	width: 100%;
}
section{
	max-width:1000px;
	margin: auto;
}
.main-content .img_box,
.img_container .img_box{
	position: static;
	/*margin-bottom: 10px;*/
}
.main-content .img_box p.caption,
.img_container .img_box p.caption{
	position: absolute;
	right: 7px;
	bottom: 7px;
}

.title{
	font-size: 24px;
	position: relative;
	margin-top: 50px;
    margin-bottom: 10px;
}
.txt_caption{
	font-size: 12px;
	margin-top:24px;
	letter-spacing: 0.05em;
}
.txt_caption02{
	font-size: 16px;
	margin-top:5px;
	letter-spacing: 0.05em;
	font-family:
  "Hiragino UD Serif W4 JIS2004",
  "ヒラギノ明朝 ProN W3",
  "Hiragino Mincho ProN",
  "Hiragino Mincho Pro",
  "游明朝",
  "Yu Mincho",
  "YuMincho",
  "Noto Serif JP",
  "Sawarabi Mincho",
  "ＭＳ Ｐ明朝",
  "MS PMincho",
  "HG明朝E",
  serif;
}

.flex_container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.left_title {
	color: #000;
    font-size: 28px;
    text-align: left;
}

@media screen and (max-width:768px){
	.txt_box p{
		font-size: 16px;
	}
	.left_title {
    font-size: 20px;
	}
}
/* End: Base / Common */

/* 02. Header / Navigation */
#gnavi{
	width: 100%;
	margin: 1% auto 0;
	max-width: 800px;
}
#gnavi ul.nav{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	min-height: 40px;
	margin-bottom:0;
	width:100%;
	padding:0;
}

#gnavi ul.nav li{
	list-style: none;
	box-sizing: border-box;
	height: 40px;
	vertical-align: middle;
	text-align: center;
	font-size:15px;
}
#gnavi ul.nav li:first-child{
	border-left:none;
	padding-left: 0;
}
#gnavi ul.nav li.active a{
	border-bottom: 2px #bea449 solid;
	display:inline-block;
}
#gnavi ul.nav li:hover{
	opacity: .5;
}
#gnavi ul.nav li a{
	text-decoration: none;
	color: #000;
	font-weight: bold;
}

@media screen and (max-width:768px){
	#header{
		position: relative;
	}
	#header .fix_box{
		position: fixed;
		z-index: 10000;
		width: 100%;
		height: 66px;
		background:#bea449;
		top: 0;
	}
	#header .fix_box img{
		width: 80px;
	}
	#gnavi{
    box-sizing: border-box;
    width: 100%;
	overflow-y: auto;
	height: 100vh;
    position: fixed;		
    top: -110vh;
    left: 0;
    background: rgba(0,0,0,0.9);
	display: block;
	z-index: 10001;
	margin: 0;
	transition: 0.3s ease-out;
	}
	#gnavi.open{
	top: 0px;
	transition: 0.3s ease-out;	
	}
	#gnavi ul.nav{
	width: 100%;
	margin-top: 20px;	
	}
	#gnavi ul.nav li{
	margin-top: 0.5em;	
	display:block;	
	text-align: center;
	font-size: 30px;
	height: auto;
	width: 100%;	
	}
	#gnavi ul.nav li:nth-child(2){
	 padding-left: 0;
	}
	#gnavi ul.nav li a{
	color: #fff;
	font-size: 70%;	
	}
	#menu_link{
		position: absolute;
		z-index: 10002;
		content:'';
		width: 50px;
		height: 66px;
		top: 0;
		right: 0;
	}
	#menu_link span{
		transform: translate(0, -50%);
		transition-property: opacity;
	}
	#menu_link.open{
		opacity:0;
		pointer-events:none;
	}
	#menu_link::before{
		transform: translate3D(0, -15px, 0);
		transition-property: transform;
		content:'';
	}
	#menu_link::after{
		transform: translate3D(0, 10px, 0);
		transition-property: transform;
		content:'';
	}
	#menu_link::before, #menu_link::after, #menu_link span {
    display: block;
    width: 70%;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 0px;
    background: #000;
    transition: .2s;
	}
	#close_link{
		position: absolute;
		z-index: 10002;
		content:'';
		width: 60px;
		height: 100px;
		top: 0;
		right: 0;
	}
	#close_link span{
		transform: translate(0, -50%);
		transition-property: opacity;
		opacity: 0;
	}
	#close_link::before{
		transform: rotate(45deg);
		transition-property: transform;
		content:'';
	}
	#close_link::after{
		transform: rotate(-45deg);
		transition-property: transform;
		content:'';
	}
	#close_link::before, #close_link::after, #close_link span {
    display: block;
    width: 70%;
    height: 4px;
    position: absolute;
    top: 50px;
    left: 0px;
    background: #fff;
    transition: .2s;
	}
	
}
/* End: Header / Navigation */

/* 02. Header / Logo and Contact */

#logo_wrap{
	width: 100%;
	background-color:#bea449;
}

#logo{
	background-color:#bea449;
	padding:0px 0 10px;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	position: relative;
	height: 70px;
}
.logo_leftbox{
	position: absolute;
	left: 10px;
	top: 10px;
}
.logo_leftbox img{
	width: 100px;
}

.logo_rightbox{
	position: absolute;
	right: 0;
	top: 40px;
	text-align: right;
}
.contact_btn p{
	font-size:16px;
}
.contact_btn a{
	color: #bea449;
	background: #fff;
	padding:10px;
	text-decoration: none;
	border-radius: 8px;
	transition: .8s;
}
.contact_btn a:hover{
	opacity: .8;
	transition: .8s;
}

@media screen and (max-width:768px){
	#logo{
		height: 35px;
	}
	.logo_leftbox{
	top: 10px;
	width: 10%;	
	}
	.logo_rightbox{
	position: inherit;
	}
	.contact_btn{
	text-align: left;
	margin-top: 20px;
	}
	.contact_btn p{
	margin-top: 0px;
	}
	#logo a{
		width:35%;
	}
}
/* End: Header / Logo and Contact */

/* 04. Page: Top / Main Visual */

#mv{
	max-width: none;
	width:100%;
	margin: 0;
	background-color: #a38e7a;
}
#mv .mv_visual{
	position: relative;
	width: 100%;
}
#mv h1{
	margin: 0;
	padding: 0;
}
#mv img{
	display: block;
	width:100%;
	height: auto;
}
#mv .mv_text{
	width: 100%;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #bea449;
}
#mv .mv_text p{
	color: #fff;
	font-size:24px;
}

#mv .mv_text .stext{
	color: #fff;
	font-size:15px;
}

#mv .mv_text p sup{
	font-size: 14px; /* 好きなサイズに変更 */
}

@media screen and (max-width:768px){
	#mv{
		margin-top: 66px;
	}
	#mv .mv_text p{
		font-size:18px;
	}
}
	
/* End: Page: Top / Main Visual */

/* 03. Shared Components / Inquiry Buttons */
.btn_inqure{
	max-width:800px;
	margin:0 auto;
}

#top .btn_inqure00{
	max-width:500px;
	margin:0 auto 32px;
}
.btn_inqure img{
	width:100%;
}
.contact-banner{
	display:flex;
	position:relative;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	width:100%;
	min-height:68px;
	padding:14px 66px 14px 28px;
	border:2px solid #bea449;
	background:#bea449;
	color:#fff;
	font-family:"Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
	font-size:25px;
	font-weight:400;
	letter-spacing:0.08em;
	line-height:1.35;
	text-align:center;
	text-decoration:none;
	transition:background-color .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}
.contact-banner::after{
	content:"";
	position:absolute;
	right:28px;
	width:18px;
	height:18px;
	border-top:2px solid currentColor;
	border-right:2px solid currentColor;
	transform:rotate(45deg);
	transition:transform .35s ease, border-color .35s ease;
}
.contact-banner:hover{
	background:#bea449;
	border-color:#bea449;
	color:#fff;
	transform:translateY(-2px);
}
.contact-banner:hover::after{
	transform:translateX(5px) rotate(45deg);
}
.contact-banner__text{
	display:block;
}

.btn_inqure a:hover{
	opacity: 0.8;
	transition: .9s;
}

@media screen and (max-width:768px){
	.btn_inqure{
		width: 100%;
		margin-top: 20px;
	}
	
}

.btn_inqure02{
	max-width:500px;
	margin:90px auto 90px auto;
}
.overseas-banner {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 55px;
    padding: 12px 58px 12px 28px;
    border: 1px solid #8a6f24;
    background: #fff;
    color: #8a6f24;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    transition: background-color .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}
.overseas-banner::after{
	content:"";
	position:absolute;
	transition:transform .35s ease, border-color .35s ease;
	right:28px;
	width:14px;
	height:14px;
	border-top:1px solid currentColor;
	border-right:1px solid currentColor;
	transform:rotate(45deg);
}
.overseas-banner:hover{
	background:#8a6f24;
	border-color:#8a6f24;
	color:#fff;
	transform:translateY(-2px);
}
.overseas-banner:hover::after{
	transform:translateX(5px) rotate(45deg);
}
.overseas-banner__text{
	display:block;
}








.btn_inqure03{
	max-width:500px;
	margin:90px auto 90px auto;
}
.overseas-banner02 {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 55px;
    padding: 12px 28px 12px 28px;
   /* border: 1px solid #8a6f24;*/
    background: #bea449;
    color: #fff;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
    font-size: 20px;
    font-weight: 500;
    /* letter-spacing: 0.05em;
    line-height: 1.35;*/
    text-align: center;
    text-decoration: none;
    transition: background-color .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}

.overseas-banner02:hover{
	opacity: 0.8;
	color:#fff;
	/*transform:translateY(-2px);*/
}

.overseas-banner__text02{
	display:block;
}


@media screen and (max-width:768px){
	.btn_inqure02{
		width: 95%;
	}
	.overseas-banner{
		min-height:50px;
		padding:11px 46px 11px 18px;
		font-size:14px;
	}
	.overseas-banner::after{
		right:22px;
		width:11px;
		height:11px;
	}
	
	.btn_inqure03{
		width: 95%;
	}
	.overseas-banner02{
		min-height:50px;
		padding:11px 16px 11px 18px;
		font-size:14px;
	}
	
}
/* End: Shared Components / Inquiry Buttons */

/* 05. Page: Overview */
.page-title{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:192px;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    position:relative;
}
.page-title::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.18);
}
.page-title__text{
    display:inline-block;
    position:relative;
    z-index:1;
    color:#FFF;
    font-family:"Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
    font-size:34px;
    font-weight:400;
    letter-spacing:0.08em;
    line-height:1.4;
    text-align:center;
    text-shadow:0 0 6px rgba(0,0,0,0.55), 0 0 12px rgba(0,0,0,0.35);
}
.h1_common{
    background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/overview/ttl_overview.jpg");
}
.caption{
    color:#FFF;
    text-shadow: 0px 0px 5px #000, 0px 0px 5px #000;
    text-align:right;
    font-size:10px;
    position:absolute;
    right:10px;
    bottom:10px;
    z-index:2;
}

.img_title{
	 margin: 10px 0 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
}

@media screen and (max-width:768px){
.img_title{
	font-size: 15px;
}
}

.outline dl {
    display: flex;
    margin: 10px 0 0;
    border-bottom: 1px solid #ddd;
    line-height: 2;
    flex-wrap: wrap;
}
.outline dt,
.outline dd {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 0.8em;
}
.outline dt {
    box-sizing: border-box;
    width: 170px;
    padding:8px 0 8px 10px;
    border-left: 1px solid #ddd;
    background-color:#cccccc;
}
.outline dd {
    width: calc(100% - 181px);
    padding:8px 0 8px 10px;
}
.block01{
    margin-bottom: 20px;
}

@media screen and (max-width:768px){
	#top .caption{
        right:5px;
        bottom:10px;		
	}
	#top .txt_caption{
        width:95%;
		margin: 0 auto;		
	}
	#top .btn_inqure00{
		width:95%;
		margin-bottom:24px;
	}
	.contact-banner{
		min-height:56px;
		padding:12px 48px 12px 20px;
		font-size:22px;
	}
	.contact-banner::after{
		right:22px;
		width:13px;
		height:13px;
	}
	#top .btn_inqure{
		width:95%;
	}
    .caption{
        color:#FFF;
        text-shadow: 0px 0px 5px #000, 0px 0px 5px #000;
        text-align:right;
        font-size:12px;
        position:absolute;
        right:10px;
        bottom:10px;
    }
    .page-title__text{
        font-size:25px;
        line-height:1.5;
    }
    .outline dl {
        display: block;
        margin: calc(100vw * 12 / 640) 0 0;
        border-bottom: none;
        font-size: 10px;
        line-height: 1.5;
    }
    .outline dt,
    .outline dd {
        width: auto;
        border-top: none;
        padding: calc(100vw * 4 / 640) 0;
        padding-left: 0.5em!important;
        font-size: 1.5em;
        border: none;
    }
    .outline dt {
        padding-left: 0;
        background: #cccccc;
        
    }
	.h1_common{
		margin-top: 55px;
	}
}
/* End: Page: Overview */

/* 06. Page: Equipment */
#equipment .main-content{
	padding-bottom: 0;
}
.h1_equipment{
    background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/equipment/ttl_equipment.jpg");
}

#equipment .main-content .txt_box{
	margin-bottom: 50px;
}
#equipment .main-content img{
	width: 100%;
}

#equipment .left_title{
	color: #000;
	font-size: 29px;
}

#equipment .btn_inqure02{
	width:100%;
	max-width:500px;
	margin:40px auto 40px;
}

.img_container{
	width: 100%;
	padding-bottom: 10px;
}
.img_container img{
	width: 100%;
}
.img_container .flex_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.img_container .flex_box .img_box{
	width: 49.5%;
}

.img_container .flex_box .img_box .img{
	position: relative;
}

.img_box .img{
	position: relative;
}

/*//////////// youtube START ////////////*/
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  display: block;
  margin: auto;
}
/*//////////// //youtube END ////////////*/

#equipment .ttl_box{
	max-width: 200px;
	margin: 50px auto;
}

#equipment .img_container .flex_box,
#equipment .img_container .flex_box02 {
display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}

#equipment .img_container .flex_box .img_box img {
	width: 100%;
	height: auto;
}
#equipment .img_container .flex_box .img_box_l {
    width: 58.3%;
}

#equipment .img_container .flex_box .img_box_r {
    width: 40%;
}

#equipment .img_container .flex_box02 .img_box_l {
    width: 48%;
}

#equipment .img_container .flex_box02 .img_box_r {
    width: 48%;
}

@media screen and (max-width:768px){
	.img_container{
		width: 95%;
	}
	#equipment .main-content,
	#equipment .img_container{
		padding-bottom: 0;
	}
	.h1_equipment{
		margin-top: 55px;
	}
	#equipment .main-content .txt_box{
	margin-bottom: 25px;
	}
	.img_container .flex_box .img_box{
		width: 100%;
	}

	#equipment .img_container .flex_box .img_box_l,
	#equipment .img_container .flex_box .img_box_r,
	#equipment .img_container .flex_box02 .img_box_l,
	#equipment .img_container .flex_box02 .img_box_r{
    width: 100%;
}

#equipment .btn_inqure02{
	width:85%;
	margin:30px auto 30px;
}

#equipment .left_title{
	font-size: 20px;
}
	
.img_wrap{
    position: relative;
}

}
/* End: Page: Equipment */

/* 07. Page: Owner */
.h1_owner{
    background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/owner/ttl_owner.jpg");
}
#owner .logo_img_box{
	max-width: 250px;
	margin: 60px auto;
}
#owner .main-content{
	padding-bottom: 20px;
}
#owner .img_container{
	padding-bottom: 0px;
}
#owner .main-content img{
	width: 100%;
}
#owner .img_container .flex_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#owner .img_container .flex_box .img_box{
	width: 49%;
}
#owner .img_container .flex_box .img_box:nth-child(even){
	width: 49%;
}

/*#owner .flex_container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

#owner .flex_container .flex_box{
	width: 32.5%;
}*/

#owner .flex_container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 20px;
    align-items: center;
}

#owner .flex_container .flex_box {
    position: relative;
}

#owner .flex_container .flex_box .title_box{
	font-size:16px;
	margin:10px auto; 
}
#owner .flex_container .flex_box .text_box{
	font-size:13px;
}
#owner .flex_container .flex_box img{
	width: 100%;
}

#owner sup {
    font-size: 14px;
}

@media screen and (max-width:768px){
	#owner .img_container .flex_box{
		display: block;
		width: 100%;
	}
	.h1_owner{
		margin-top: 55px;
	}
	#owner .img_container .flex_box .img_box, 
	#owner .img_container .flex_box .img_box:nth-child(even){
		width: 100%;
		margin-bottom:10px;
	}
	#owner .flex_container .flex_box{
	width: 100%;
	margin-bottom:25px;
	}
#owner .flex_container{
	width:95%;
}
}

.txt_caption_r{
	font-size: 12px;
	text-align: right;
	margin-top:3px;
}

/* End: Page: Owner */

/* 08. Page: Plan */

.h1_plan{
    background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/plan/ttl_plan.jpg");
}
#plan .main-content{
	padding-bottom: 0px;
}
#plan .main-content img{
	width: 100%;
}
#plan_container{
	margin-top:40px;
}

#plan_container .ttls02{
	font-size: 18px;
	margin: 10px 0px 0px 0px;
	text-align: right;
	font-family: "ヒラギノUD明朝 W4 JIS2004", "Hiragino UD Serif W4", "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "HG明朝E", "serif";
}

@media screen and (max-width:768px){
#plan_container .ttls02{
	font-size: 12px;
	text-align: left;
}
}

#plan .pttl{
	background-color: #bea449;
	padding: 10px 0px 10px 20px;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 36px;
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
    position: relative;
    display: flex;
    justify-content: space-between;
}

#plan .pttl::after {
    position: absolute;
    content: " ";
    background-color: #fff;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 5px;
}

#plan .pttl .pttl-l {
}

#plan .pttl .pttl-r {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

.pttl-small-font {
    font-size: 16px;
}

#plan .pttls{
	color: #fff;
    font-size: 22px;
    text-align: right;
    float: right;
    margin: 10px 10px 0px 0px;
}

#plan .plan_btn .plan_btn-banner__text {
    font-size: 18px;
}

#plan .plan_btn .plan_btn-banner__text02 {
    font-size: 14px;
}


@media screen and (max-width:768px){
#plan .pttl{
	width: 97%;
	font-size: 18px;
	}
#plan .pttls{
	font-size: 12px;
	}
}


#plan_container .ttls02{
	font-size: 18px;
	margin: 10px 0px 0px 0px;
	text-align: right;
	font-family: "ヒラギノUD明朝 W4 JIS2004", "Hiragino UD Serif W4", "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "HG明朝E", "serif";
}

@media screen and (max-width:768px){
#plan_container .ttls02{
	font-size: 12px;
	text-align: right;
}
}


.plan_img{
	display: block;
	width: 100%;
	margin:50px 0 80px;
}

@media screen and (max-width:768px){
	#plan_container .flex_box .left_box,
	#plan_container .flex_box .right_box{
		width: 100%; 
		text-align: center;
	}
	#plan_container .flex_box .right_box{
		margin-top: 50px;
	}
	.h1_plan{
		margin-top: 55px;
	}
	.plan_img{
		display: block;
		width: 100%;
		margin:30px 0 50px;
	}

	#plan section {
        width: 95%;
        margin: auto;
    }
	#plan_container{
		margin-top:30px;
	}
}

/* End: Page: Plan */

/* 09. Page: Location */
.h1_location{
    background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/location/ttl_location.jpg");
}
#location .main-content{
	padding-bottom: 10px;
}
#location .img_box img{
	width: 100%;
}
#location .location-main-image{
	margin-top:40px;
}
#location .location-access-section{
	margin-top:40px;
}
#location  .p-f-size20{
	font-size: 20px;
}
#location .location_subtitle{
	    color: #556857;
	    font-size: 14px;
    text-align: left;
    margin-top: 0px;
	margin-bottom: 1em;
}

#location .btn_inqure02 {
    width:100%;
    max-width:500px;
    margin: 0px auto 100px auto;
}

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

#location .banner_container .flex_box img {
    margin-bottom:0px;
}

.ttl_route{
    display:flex;
    align-items:center;
    font-size:18px;
    font-family: serif;
    color:#222;
    letter-spacing:.08em;
	margin-bottom: 20px;
}

@media screen and (max-width:768px){
.ttl_route{
	font-size:16px;
}
}

.ttl_route::before{
    content:"";
    width:6px;
    height:46px;
    background:#b8a27b;
    margin-right:20px;
    flex-shrink:0;
}

@media screen and (max-width:768px){
	#location .flex_box .left_box{
		margin-bottom: 20px;
	}
	#location .flex_box .right_box{
		margin-bottom: 20px;
	}
	.h1_location{
		margin-top: 55px;
	}
	#location  .s-f-size16{
	font-size: 16px;
	}
	#location .btn_inqure02 {
		width: 80%;
		margin:70px auto 30px;
	}
}
/* End: Page: Location */

/* 03. Shared Components / Main Content */
#top .main-content{
	background:#fff;
}
.main-content{
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;

}
.main-content .title{
	color:#000;
	font-size: 45px;
	text-align:center;
	letter-spacing: 0.15em;
	margin: 0 0 20px 0;
}

@media screen and (max-width:768px){
	.main-content .title{
	font-size: 30px;
	}
}
/* End: Shared Components / Main Content */

/* 03. Shared Components / Banner Grid */
.banner_container{
	width: 100%;
	padding-bottom: 50px;
}
.banner_container img{
	width: 100%;
}
.banner_container .flex_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.banner_container .flex_box img{
	margin-bottom:10px;
}
.banner_container .flex_box .left_box,
.banner_container .flex_box .right_box{
	width: 49.5%;
}
.banner_container a{
	transition: .9s;
}
.banner_container a:hover{
	opacity: 0.8;
	transition: .9s;
}

.top-banner{
	display:block;
	position:relative;
	width:100%;
	aspect-ratio:1364 / 595;
	margin-bottom:10px;
	overflow:hidden;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	color:#fff;
	text-decoration:none;
}
.top-banner::before{
	content:"";
	position:absolute;
	inset:0;
	background:rgba(0,0,0,0.28);
}
.top-banner__title,
.top-banner__more{
	position:absolute;
	z-index:1;
	left:50%;
	transform:translateX(-50%);
}
.top-banner__title{
	top:39%;
	width:90%;
	font-family:"Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
	font-size:20px;
	font-weight:400;
	letter-spacing:0.08em;
	line-height:1.4;
	text-align:center;
	text-shadow:0 0 6px rgba(0,0,0,0.55), 0 0 12px rgba(0,0,0,0.35);
}
.top-banner__more {
    top: 71%;
    min-width: 140px;
    padding: 10px 12px;
    background: #fff;
    color: #111;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1;
    text-align: center;
    transition: background-color .35s ease, color .35s ease;
}
.top-banner:hover .top-banner__more{
	background:#bea449;
	color:#fff;
}
.top-banner__more::after{
	content:"";
	display:inline-block;
	width:0;
	height:0;
	margin-left:0.45em;
	border-top:0.35em solid transparent;
	border-bottom:0.35em solid transparent;
	border-left:0.45em solid currentColor;
	vertical-align:-0.04em;
}
.top-banner--equipment{
	background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/top/btn_01.jpg");
}
.top-banner--plan{
	background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/top/btn_02.jpg");
}
.top-banner--location{
	background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/top/btn_03.jpg");
}
.top-banner--owner{
	background-image:url("/content/dam/31sumai/lp/xelf-by-sansiri/img/top/btn_04.jpg");
}

@media screen and (max-width:768px){
	.banner_container{
	padding-bottom: 0px;
	}
	.top-banner__title{
		font-size:18px;
	}
	.top-banner__more{
		min-width:150px;
		padding:10px 10px;
		font-size:12px;
	}
	
	.banner_container .flex_box .left_box,
	.banner_container .flex_box .right_box{
	width: 100%;
	}
}
/* End: Shared Components / Banner Grid */

/* 10. Footer / Contact Block */
#footer_contact{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width:768px){
#footer_contact{
	margin: 0 auto;
	width:95%;
}
}

#footer_contact .contact_btn p{
	margin-bottom: 0;
}
#footer_contact .contact_btn a{
    display:block;
	color: #fff;
	background: #836b23;
	padding:10px;
	text-decoration: none;
	border-radius: 8px;
	transition: .8s;
    text-align:center;
}

@media screen and (max-width:768px){
#footer_contact .contact_btn a{
	width: 70%;
    margin: auto;
}
}

#footer_contact .contact_btn a:hover{
	opacity: .8;
	transition: .8s;
}
#footer_contact address{
    width: 75%;
    margin-bottom:40px;
    text-align: justify;
    font-family:
  "Hiragino UD Serif W4 JIS2004",
  "ヒラギノ明朝 ProN W3",
  "Hiragino Mincho ProN",
  "Hiragino Mincho Pro",
  "游明朝",
  "Yu Mincho",
  "YuMincho",
  "Noto Serif JP",
  "Sawarabi Mincho",
  "ＭＳ Ｐ明朝",
  "MS PMincho",
  "HG明朝E",
  serif;
}

@media screen and (max-width:768px){
#footer_contact address{
	width: 100%;
    margin-bottom: 40px;
    text-align: justify;
}
	}

#footer_contact > address > ul{
    margin:0 auto;
    padding-inline-start: 20px;
}
#footer_contact > address > ul > li{
    font-size:14px;
    margin-bottom:7px;
    list-style: disc;
}
#footer_contact > address > h4{
    font-size:18px;
    margin-bottom:20px;
}
#footer_contact > address > dl{
    margin-bottom:7px;
    margin-left:20px;
}
#footer_contact > address > dl > dt{
    font-size:14px;
    margin-left:-0.4em;
}
#footer_contact > address > dl > dd{
	font-size:14px;
}
@media all and (-ms-high-contrast: none) {
    #footer_contact > address > dl{
        margin-left:40px;
    }
}
/* End: Footer / Contact Block */

/* 10. Footer / Footer Navigation */
footer{
	background-color: #FFF;
    padding: 80px 0 0;
    border-top: solid 1px #FFF;
    border-bottom: none;
    border-left: none;
    border-right: none;
    color: #000;
    text-align: left;
}

@media screen and (max-width:768px){
footer{
	padding: 30px 0 0;
}
}

footer .footer_inner{
	text-align: center;
	background: #f6f6f6;
	padding:30px 0;
	margin-top: 30px;
}
footer p{
	margin-bottom:30px;
	font-size: 16px;
}
footer img{
	padding:0;
}
footer .footer_inner ul li{	
	display: inline-block;
	padding-right: 8px;
	margin-right: 8px;
	border-right:#4d4d4d 1px solid;
	list-style: none;
	font-size: 12px;
} 
footer .footer_inner ul li a{
	text-decoration: none;
	color: #333;
}
footer .footer_inner p {
    font-size: 10px;
	padding-top: 10px;
	margin-bottom: 0;
}

/* End: Footer / Footer Navigation */

/* 10. Footer / Responsive Adjustments */
footer #footer_contact .txt_caption{
	text-align: left;
}
#footer_contact .contact_btn{
	right:0;
	bottom: 0;
}
@media screen and (max-width:768px){
	footer #footer_contact #address{
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	
	footer #footer_contact .contact_btn{
	position:inherit;
	text-align:center;
	width: 100%;
	}
}

/* End: Footer / Responsive Adjustments */

@media screen and (max-width:768px){
	section{
		width:100%;
		margin: auto;
	}
	address{
		font-size: 1em;
		text-align: center;
	}
	footer a{
		font-size: 16px;
	}
	small{
		font-size: 11px;
	}
	.main-content{
		width: 95%;
		padding-top: 30px;
		padding-bottom: 30px;
	}
}