@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
html {
	background: url("../images/bg_common.webp") no-repeat center top 80px;
	background-size: cover;
}
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.pc, .nobr {
	display: none!important;
}
@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
    cursor: default;
  }
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 80px;
	display: block;
    z-index: 10000;
	background: #fff;
}
header .header_bg {
	display: none;
}
header .inner {
	position: relative;
	width: 100%;
	height: 80px;
	display: flex;
		justify-content: space-between;
        align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    box-sizing: border-box;
}
header .logo {
	position: absolute;
    width: 12%;
    left: 1%;
	display: block;
}
header h1 {
	position: absolute;
    width: 44%;
    left: 15%;
	display: block;
}

/*アイコン付メニュー*/
ul.link_home,
ul.link {
    position: fixed;
	width: 50%;
	height: 80px;
	top: 0;
	right: 80px;
	display: flex;
		justify-content: flex-end;
		align-content: flex-end;
		align-items: center;
		flex-wrap: wrap;
	z-index: 10000;
    box-sizing: border-box;
}
ul.link_home li,
ul.link li {
	width: auto;
    display: block;
    margin: 0 10px;
}
ul.link_home li:nth-of-type(4),
ul.link li:nth-of-type(4) {
	display: none;
}
ul.link_home li a,
ul.link li a {
	position: relative;
	width: 100%;
	height: 80px;
    display: flex;
		justify-content: center;
        align-content: flex-end;
		align-items: flex-end;
		flex-wrap: wrap;
	padding-bottom: 17px;
    font-size: 0.9em;
    line-height: 1em;
	text-align: center;
	box-sizing: border-box;
}
ul.link_home li a::before,
ul.link li a::before {
	position: absolute;
	content: '';
    width: 36px;
    aspect-ratio: 1/1;
    top: 12px;
	display: block;
}
ul.link_home li.outline a::before,
ul.link li.outline a::before {
	background: url("../images/icon_outline.svg") no-repeat center center;
    background-size: contain;
}
ul.link_home li.map a::before,
ul.link li.map a::before {
	background: url("../images/icon_map.svg") no-repeat center center;
    background-size: contain;
}
ul.link_home li.entry a::before,
ul.link li.entry a::before {
	background: url("../images/icon_entry.svg") no-repeat center center;
    background-size: contain;
}
ul.link_home li.reserve a::before,
ul.link li.reserve a::before {
	background: url("../images/icon_reserve.svg") no-repeat center center;
    background-size: contain;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*メニューボタン*/
#input {
	display: none;
}
#btnMenu {
	position: fixed;
	width: 60px;
	height: 60px;
	top: 10px;
    right: 10px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	z-index: 30000;
	cursor: pointer;
	background: url("../images/btn_menu.png") no-repeat center center;
	background-size: contain;
	transition: all 300ms;
}
#btnMenu::before {
	content: 'MENU';
	width: 100%;
    font: 700 1.1em/1em Arial, Helvetica, sans-serif;
	text-align: center;
	color: #fff;	
}
.line1,.line2 {
	position: absolute;
	width: 30px;
	height: 1px;
	left: calc(50% - 15px);
	background-color: #fff;
	transform: rotate(0deg);
	transition: all 300ms;
	opacity: 0;
}
#input:checked ~ #btnMenu::before {
	opacity: 0;
	transition: all 300ms;
}
#input:checked ~ #btnMenu .line1,
#input:checked ~ #btnMenu .line2 {
	width: 36px;
	height: 1px;
	top: 30px;
	left: calc(50% - 18px);
	background-color: #fff;
	transform: rotate(-45deg);
	transition: all 300ms;
}
#input:checked ~ #btnMenu .line2 {
	transform: rotate(45deg);
}
nav.globalNavi {
	position: fixed;
	width: 600px;
    height: calc(100vh);
	top: 0;
    right: 0;
	display: block;
	z-index: 20000;
	overflow-y: auto;
	padding: 140px 80px 0;
	background: rgba(70,60,58,0.9);
	box-sizing: border-box;
	opacity: 1;
	transform: translateX(100%);
	transition: all 300ms;
}
#input:checked ~ nav.globalNavi {
	opacity: 1;
	transform: translateX(0%);
	transition: all 300ms;
}
nav.globalNavi ul.mainMenu {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	box-sizing: border-box;
}
nav.globalNavi ul.mainMenu li {
	position: relative;
    width: 100%;
	height: 80px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
    box-sizing: border-box;
	border-top: solid 1px rgba(255,255,255,0.2);
}
nav.globalNavi ul.mainMenu li:nth-last-of-type(1) {
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
nav.globalNavi ul.mainMenu li.sp {
	display: none;
}
nav.globalNavi ul.mainMenu li a {
    width: 100%;
	height: 80px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	padding: 0 20px 0 10px;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1em;
    color: #fff;
	background: rgba(255,255,255,0);
	box-sizing: border-box;
    opacity: 1;
	transition: all 300ms;
}
nav.globalNavi ul.mainMenu li a::after {
    position: absolute;
	content: '';
	width: 12px;
	aspect-ratio: 1/1;
	right: 10px;
	display: block;
    background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(159deg) brightness(104%) contrast(100%);
}
nav.globalNavi ul.mainMenu li a:hover {
	background: rgba(255,255,255,0.1);
	opacity: 1;
	transition: all 300ms;
}
nav.globalNavi ul.mainMenu li.new {
	padding-left: 50px;
}
nav.globalNavi ul.mainMenu li.new::after {
	position: absolute;
    content: 'NEW';
    width: 48px;
    height: 24px;
    left: 0;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin-right: auto;
    padding-top: 2px;
    font: 400 1em/1em "Times New Roman", Times, "serif";
    color: #fff;
    background: #9b003f;
    box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-top: 60px;
	padding-bottom: 60px;
}
.wrap {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
	padding: 60px 0;
	background: #fff;
	box-sizing: border-box;
}
.block {
	position: relative;
	width: 85.714%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
.reverse {
	flex-direction: row-reverse;
}
.bgc_blueGray {
	background-color: #e5e8ea;
}

/*【共通】ページタイトル*/
.pageTitle {
	position: relative;
    width: 100%;
    aspect-ratio: 4/1;
    display: flex;
		justify-content: center;
		align-content: flex-end;
		align-items: flex-end;
        flex-wrap: wrap;
}
.pageTitle .copy {	
    position: absolute;
    width: 90%;
	top: 50%;
    display: block;
    font-size: clamp(1.2em, 1.4vw, 1.6em);
	line-height: 1em;
    letter-spacing: 0.1em;
    text-align: center;
    box-sizing: border-box;
}
.pageTitle h2 {	
    position: absolute;
    width: 90%;
    max-width: 1400px;
	aspect-ratio: 35/3;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    font-size: clamp(1em, 1vw, 1.2em);
	line-height: 1em;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    background: url("../images/bg_design.webp") no-repeat center center;
	background-size: cover;
    box-sizing: border-box;
}
.pageTitle h2 span {
	width: 100%;
    display: block;
	margin-bottom: 5px;
    font: 400 1.6em/1em big-caslon-fb, serif;
    letter-spacing: 0.1em;
}
.pageTitle h2.large {
	font-size: 2em;
}

/*【共通】ボタン類*/
.btnBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
a.btnEntry {
	position: relative;
	width: 90%;
	max-width: 360px;
	display: block;
	overflow: visible;
	margin: 20px auto;
}
a.btnEntry img {
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: scale(1);
	transform: scale(1);
}
a.btnEntry:hover img {
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
	opacity: 0.9;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home {
	
}
#home .mainVisual {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
		flex-direction: row-reverse;
}
#home .mainVisual .title {
	position: relative;
	width: 50%;
    aspect-ratio: 8/9;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	align-self: stretch;
	background: #fff;
}
#home .mainVisual .title img.flower {
	position: absolute;
	width: 50%;
	top: 0;
	left: -20px;
	display: block;
}
#home .mainVisual .title img.copy {
	width: 66.666%;
    max-width: 640px;
	display: block;
    margin: 0 auto;
}
#home .mainVisual .title .bar {
  position: absolute;
  width: 1px;
  height: 80px;
  bottom: 40px;
  background: #666;
  transform-origin: top;
  animation: stretch 3s ease-in-out infinite;
}
@keyframes stretch {
  0% {
    transform: scaleY(0.2);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.2);
  }
}

/*スライド*/
#home .mainVisual .slide {
	width: 50%;
	aspect-ratio: 8/9;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#home .mainVisual .slide ul.bxslider li {
	position: relative;
}
#home .mainVisual .slide ul.bxslider li img.image {
	width: 100%;
	aspect-ratio: 8/9;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
/*
#home .mainVisual .slide ul.bxslider li:nth-of-type(2)::before {
	position: absolute;
	content: '';
	width: 120px;
	height: 100%;
	top: 0;
	right: 0;
	display: block;
	background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,0.5));
}
*/

/* PAGER */
#home .mainVisual .slide .bx-wrapper .bx-pager,
#home .mainVisual .slide .bx-wrapper .bx-controls-auto {
	position: absolute;
	width: auto;
    bottom: 50px;
    left: -60px;
    z-index: 2000;
	transform: rotate(90deg);
}
#home .mainVisual .slide .bx-wrapper .bx-pager {
	padding: 0;
	text-align: center;
}
#home .mainVisual .slide .bx-wrapper .bx-pager .bx-pager-item,
#home .mainVisual .slide .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}
#home .mainVisual .slide .bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 40px;
	height: 2px;
	margin: 0 5px;
	outline: 0;
}
#home .mainVisual .slide .bx-wrapper .bx-pager.bx-default-pager a:hover, 
#home .mainVisual .slide .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #aaa;
	opacity: 1;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【臨時】お知らせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home dl.info {
	width: 90%;
	max-width: 1200px;
	display: block;
	margin: 20px auto;
	padding: 30px 5%;
	text-align: center;
    border: solid 10px #eee;
	/*background: #f7f7f7;*/
	box-sizing: border-box;
}
#home dl.info dt {
	width: 100%;
	display: block;
	font-size: 2em;
	font-weight: bold;
    line-height: 1.2em;
	text-align: center;
	color: #101649;
}
#home dl.info dd {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    margin-top: 20px;
	padding-top: 20px;
	font-size: 1.6em;
    line-height: 1.8em;
    border-top: solid 1px #ccc;
}
#home dl.info dd a {
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
    text-decoration: underline;
    color: #06c;
}
#home dl.info dd a img {
	width: 18px;
    display: inline-block;
    margin-left: 5px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】行動定期
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.kodoBlock {
	width: 90%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 60px 0;
}
.kodoBlock figure {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
}
.kodoBlock figure img {
	width: 80%;
	display: block;
	margin: 0 auto;
}
.kodoBlock figure img.name {
	max-width: 800px;
}
.kodoBlock figure img.kodo {
	max-width: 600px;
	margin: 40px auto;
}
.kodoBlock p {
	width: 100%;
	display: block;
	font-size: 1.2em;
    line-height: 2em;
    text-align: center;
}
.kodoBlock .telBlock {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-top: 20px;
    padding: 40px 0;
	text-align: center;
    background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】特徴
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.featureBlock {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 60px 0;
	background: #fff;
}
.featureBlock .name {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-bottom: 30px;
}
.featureBlock .name img {
	position: relative;
    width: 80%;
	max-width: 400px;
	display: block;
    margin: 0 auto;
}
.featureBlock ul {
	position: relative;
    width: 90%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    margin: 0 auto;
	padding: 30px 0;
	border-top: solid 1px #ccc;
}
.featureBlock ul.center {
	justify-content: center;
	padding: 20px 0;
}
.featureBlock ul li {
	position: relative;
    width: auto;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    box-sizing: border-box;
}
.featureBlock ul li img {
	width: 90%;
	height: 50px;
	display: block;
	transition: all 200ms;
}
.featureBlock ul:nth-of-type(2) li img {
	height: 70px;
}
.featureBlock ul .line {
    width: 1px;
	display: block;
    align-self: stretch;
	background: #ccc;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】ニュース（お知らせ）
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.newsBlock {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
.newsBlock .inner {
	width: 90%;
    max-width: 1080px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.newsBlock h2 {
	width: 100%;
	display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
	font-size: 1.6em;
	line-height: 1.2em;
    text-align: center;
    border-bottom: solid 4px #000;
}
.newsBlock h2 span {
	width: 100%;
	display: block;
    margin-bottom: 5px;
	font-size: 2em;
	line-height: 1.2em;
    text-align: center;
}
.newsBlock dl.newsList {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		/*flex-wrap: wrap;*/
    padding: 10px 0;
}
.newsBlock dl.newsList+dl {
	border-top: solid 1px #ccc;
}
.newsBlock dl.newsList dt {
	width: 160px;;
	display: block;
	font-size: 1.4em;
	line-height: 1.6em;
}
.newsBlock dl.newsList dd {
	width: 100%;
	font-size: 1.4em;
	line-height: 1.6em;
}
.newsBlock dl.newsList dd a {
	color: #06c;
}
.newsBlock dl.newsList dd a:hover {
	text-decoration: underline;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】コンテンツ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeContents {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin: 100px auto 0;
    box-sizing: border-box;
}
#home .homeContents .title {
	position: absolute;
	top: -60px;
	left: 0;
	width: 160px;
	height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font: 400 1.4em/1em big-caslon-fb, serif;
    letter-spacing: 0.1em;
	color: #fff;
	background: #97805a;
    box-sizing: border-box;
}
#home .homeContents .contntsBlock {
    position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 30px auto;
	padding: 0;
    opacity: 0;
    transform: translate(0, 40px);
    transition: all 1s;
}
#home .homeContents .contntsBlock.scrollin {
	opacity: 1;
    transform: translate(0, 0);
    transition: all 1s;
    animation-timing-function: ease-out;
}
#home .homeContents .contntsBlock .en {
	position: absolute;
	width: auto;
	top: 0;
	right: 0;
    display: block;
    font: 400 1.4em/1em big-caslon-fb, serif;
    letter-spacing: 0.1em;
    box-sizing: border-box;
}
#home .homeContents .contntsBlock img.image {
    width: 46%;
	max-width: 640px;
	display: block;
}
#home .homeContents .contntsBlock .tate {
  	position: absolute;
	width: auto;
	top: 20px;
	left: 50%;
	display: block;
	font-size: clamp(1.2em, 1.2vw, 1.6em);
	line-height: 1.8em;
	letter-spacing: 0.1em;
	-webkit-writing-mode: vertical-rl;
  	writing-mode: vertical-rl;
}
#home .homeContents .contntsBlock .box {
	position: relative;
	width: 37.142%;
	max-width: 520px;
    display: flex;
		justify-content: flex-start;
		align-content: space-between;
		align-items: stretch;
        flex-wrap: wrap;
    align-self: stretch;
	padding: 0;
    box-sizing: border-box;
}
#home .homeContents .contntsBlock .yoko {
  	width: 100%;
	height: 64%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#home .homeContents .contntsBlock .yoko p {
  	width: 100%;
	display: block;
	font-size: clamp(1em, 1.2vw, 1.5em);
	line-height: 1.8em;
	letter-spacing: 0.1em;
}
#home .homeContents .contntsBlock .yoko.plan {
  	align-content: flex-end;
	align-items: center;
}
#home .homeContents .contntsBlock .plan ul {
  	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 20px 0;
}
#home .homeContents .contntsBlock .plan ul li {
  	width: 50%;
	display: inline-block;
	box-sizing: border-box;
}
#home .homeContents .contntsBlock .plan ul li+li {
  	border-left: solid 1px #aaa;
}
#home .homeContents .contntsBlock .box a.bnr {
	width: 100%;
    display: block;
	overflow: visible;
}
#home .homeContents .contntsBlock .box a.bnr img {
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#home .homeContents .contntsBlock .box a.bnr:hover img {
	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
	opacity: 0.9;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ポジション
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#position {
	background: url("../images/position/title_img.webp") no-repeat center top;
	background-size: 100%;
}
#position .pageTitle {
	aspect-ratio: 4/1.3;
}
#position .pageTitle .copy {	
    top: 15%;
}
#position .wrap {
	margin: 0 auto;
}
#position .mainCopy {	
    width: 100%;
    display: block;
	margin-bottom: 60px;
    font-size: clamp(1.2em, 1.4vw, 1.6em);
	line-height: 1.8em;
    letter-spacing: 0.1em;
    text-align: center;
    box-sizing: border-box;
}
#position .textBox {
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
}

/*グループ01*/
#position .group_01 .block+.block {
    margin: 60px 0 0;
}
#position .group_01 figure {
	width: 48%;
    display: block;
}
#position .group_01 .textBox {
	width: 48%;
    justify-content: center;
	align-content: center;
	align-items: center;
}
#position .group_01 .textBox .copy_tate_01 {
	width: 30%;
    display: block;
}
#position .group_01 .textBox .copy_tate_02 {
	width: 40%;
    display: block;
}
#position .group_01 .textBox p,
#position .group_03 .textBox p {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
	margin-top: 40px;
    font-size: 1.2em;
    line-height: 1.8em;
	text-indent: -0.5em;
}
#position .group_01 .textBox p br,
#position .group_03 .textBox p br {
	display: none;
}


/*グループ02*/
#position .group_02::before {
    position: absolute;
	content: '';
	width: 30%;
	aspect-ratio: 3/2;
	top: 0;
	right: 0;
	background: url("../images/position/leaves.webp") no-repeat center top;
	background-size: contain;
	mix-blend-mode: multiply;
}
#position .group_02 .block+.block {
    margin: 60px 0 0;
}
#position .group_02 figure.fukan {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#position .group_02 figcaption {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 1em;
    line-height: 1em;
}
#position .group_02 .textBox {
	width: 80%;
	margin: 20px auto;
}
#position .group_02 .textBox dl,
#position .group_02 .southview dl {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin-bottom: 20px;
}
#position .group_02 .southview dl {
	position: absolute;
	width: 60%;
	top: 10%;
	left: 35%;
}
#position .group_02 .textBox dl dt,
#position .group_02 .southview dl dt {
	width: 100%;
    display: block;
	margin-bottom: 10px;
    font-size: clamp(1.2em, 2vw, 1.8em);
    line-height: 1.6em;
}
#position .group_02 .textBox dl dd,
#position .group_02 .southview dl dd {
	width: 100%;
    display: block;
	font-size: 1em;
    line-height: 1.6em;
	text-align: justify;
}
#position .group_02 .southview dl dd br {
	display: none;
}
#position .group_02 figure.img_06 {
	width: 70%;
	display: block;
	margin: 0 auto;
}

/*グループ03*/
#position .group_03 .textBox {
	width: 36%;
    justify-content: center;
	padding-top: 5%;
}
#position .group_03 .textBox p {
	text-indent: 0;
}
#position .group_03 .textBox .copy_tate_03 {
	width: 24%;
    display: block;
}
#position .group_03 .textBox_r {
	width: 60%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#position .group_03 .textBox_r h3 {
	width: 100%;
    display: block;
	margin: 20px 0;
	font-size: 1.4em;
    line-height: 1.2em;
}
#position .group_03 .textBox_r p {
	width: 100%;
    display: block;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
}
#position .group_03 .textBox_r p span {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 0.8em;
    line-height: 1.4em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
プラン
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#plan {
	background: url("../images/plan/title_img.webp") no-repeat center top;
	background-size: 100%;
}
#plan .pageTitle {
	aspect-ratio: 4/1.1;
}
#plan .mainCopy {	
    width: 100%;
    display: block;
	margin-bottom: 20px;
    font-size: clamp(1.2em, 1.4vw, 1.6em);
	line-height: 1.8em;
    letter-spacing: 0.1em;
    text-align: center;
    box-sizing: border-box;
}

/*プラン一覧*/
#plan ul.planList {
	width: 90%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin: 0 auto;
}
#plan ul.planList li {
	position: relative;
	width: 46%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
    margin: 20px 2%;
    padding: 30px 30px 90px 30px;
    border: solid 1px #dbd7af;
    background: #fff;
    box-sizing: border-box;
}
#plan ul.planList li img.title {
    width: 100%;
	display: block;
}
#plan ul.planList li a.btnDetail,
#plan .btnBlock a.btnBack {
    width: 80%;
	max-width: 100%;
	height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 auto;
    padding-right: 10px;
	font-size: 1.2em;
    line-height: 1em;
    color: #fff;
	background: #3a322c;
    box-sizing: border-box;
}
#plan ul.planList li a.btnDetail {
    position: absolute;
    bottom: 20px;
}
#plan ul.planList li a.btnDetail::after {
    position: absolute;
	content: '';
	width: 12px;
	aspect-ratio: 1/1;
	right: 20px;
	display: block;
	background: url("../images/plan/arrow.svg") no-repeat center center;
    background-size: contain;
    box-sizing: border-box;
	filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(223deg) brightness(102%) contrast(100%);
}
#plan ul.planList li a.btnDetail:hover,
#plan .btnBlock a.btnBack:hover {
    transition: all 200ms;
    opacity: 0.7;
}

/*プラン詳細*/
#plan .detailBlock {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    box-sizing: border-box;
}
#plan .detailBlock .infoBlock {
	position: relative;
    width: 30%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    box-sizing: border-box;
}
#plan .detailBlock .infoBlock img.title {
    width: 100%;
	display: block;
    margin-bottom: 40px;
}
#plan .detailBlock .infoBlock .copy {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
}
#plan .detailBlock .infoBlock .copy p {
	width: auto;
    display: block;
    font-size: 1.3em;
    line-height: 2em;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
#plan .detailBlock .infoBlock .copy p span {
	display: inline-block;
    line-height: 1em;
    -ms-writing-mode: horizontal-tb;
	writing-mode: horizontal-tb;
}
#plan .detailBlock .madoriBlock {
    position: relative;
    width: 50%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-left: 5%;
    box-sizing: border-box;
}
#plan .detailBlock .madoriBlock img {
    width: 100%;
	display: block;
}
#plan .detailBlock .madoriBlock img.azimuth {
    position: absolute;
    width: 30px;
    bottom: 0;
    right: -30px;
	display: block;
}
#plan .detailBlock .storage {
    position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin-top: 20px;
}
#plan .detailBlock .storage img {
    width: 300px;
	display: block;
}
#plan .btnBlock {
	position: relative;
    width: 90%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 40px auto -20px;
}
#plan .btnBlock a.btnBack {
    width: 200px;
    margin: 0 auto;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ロケーション
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#location {
	background: url("../images/location/title_img.webp") no-repeat center top;
	background-size: 100%;
}
#location .pageTitle {
	aspect-ratio: 4/1.3;
}
#location .pageTitle .copy {	
    top: 14%;
}
#location .wrap {
	margin: 0 auto;
	padding: 40px 0;
}
#location .mainCopy {	
    width: 100%;
    display: block;
	margin-bottom: 30px;
    font-size: clamp(1.4em, 1.6vw, 2em);
	line-height: 1.8em;
    letter-spacing: 0.1em;
    text-align: center;
    box-sizing: border-box;
}
#location figure.banner {
	width: 86%;
	display: block;
	margin: 0 auto 40px;
}
#location .block {
	padding: 50px 0 30px;
	border-top: solid 5px #758b9e;
}
#location .block:nth-last-child(1) {
	padding: 50px 0 0;
}
#location .textBox {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: space-between;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
}
#location .textBox h3 {	
    width: 100%;
    display: block;
	margin-bottom: 20px;
    font-size: clamp(2.4em, 2vw, 3.6em);
	line-height: 1.2em;
    letter-spacing: 0.1em;
	color: #758b9e;
    box-sizing: border-box;
}
#location .textBox h3 span {	
    width: 100%;
    display: block;
	margin-bottom: 10px;
	font-family: "copperplate", serif;
    font-size: 0.8em;
	font-weight: 700;
	line-height: 1.2em;
    letter-spacing: 0;
    box-sizing: border-box;
}
#location .textBox dl {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-bottom: 20px;
}
#location .textBox dl dt {
	width: 100%;
    display: block;
	margin-bottom: 10px;
    font-size: clamp(1.4em, 2vw, 1.8em);
    line-height: 1.6em;
}
#location .textBox dl dd {
	width: 100%;
    display: block;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
}
#location .textBox figure {
	width: 100%;
	display: block;
	margin-bottom: 20px;
}
#location ul.listBox {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#location ul.listBox::after {
	content: '';
	width: 32%;
	display: block;
}
#location ul.listBox li {
	position: relative;
	width: 32%;
	display: block;
	padding-bottom: 50px;
}
#location ul.listBox li span {
	position: absolute;
	width: 100%;
	height: 2.8em;
	bottom: 15px;
    display: block;
	font-size: clamp(0.9em, 1vw, 1em);
    line-height: 1.4em;
	text-align: right;
}
#location .map {
	margin: 20px auto 0;
	padding: 20px;
}
#location .map figure {
	width: 100%;
    display: block;
}
#location ul.note {
	width: calc(90% - 2em);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 10px auto;
}
#location ul.note li {
	width: 100%;
    display: block;
    margin: 3px 0;
	font-size: 1em;
    line-height: 1.2em;
    text-indent: -1em;
}
#location ul.note li::before {
	content: '※';
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
サステナブル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#sustaineble {
	background: url("../images/sustaineble/title_img.webp") no-repeat center top;
	background-size: 100%;
}
#sustaineble .pageTitle {
	aspect-ratio: 4/1.5;
}
#sustaineble .pageTitle .mark {	
    position: absolute;
	width: 50%;
	top: 20%;
	display: block;
}
#sustaineble .pageTitle .copy {	
    top: 70%;
	color: #fff;
}
#sustaineble .wrap {
	margin: 0 auto;
}
#sustaineble .mainCopy {	
    width: 100%;
    display: block;
	margin-bottom: 30px;
    font-size: clamp(1.4em, 1.6vw, 2em);
	line-height: 1.8em;
    letter-spacing: 0.1em;
    text-align: center;
    box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
物件概要
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#outline {
	background: url("../images/outline/title_img.webp") no-repeat center top;
	background-size: 100%;
}
#outline .wrap {
	padding: 40px 0 60px;
}
#outline .inner {
	position: relative;
    width: 90%;
    display: flex;
		justify-content: space-between;
		align-content:  center;
		align-items:  center;
        flex-wrap: wrap;
	margin: 0 auto;
}
#outline .inner+.inner {
	margin-top: 60px;
}
#outline h3,
#outline h4 {
	position: relative;
    width: 100%;
	height: 40px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 0 10px;
	font-size: 1.4em;
	line-height: 1em;
	color: #fff;
	background: #0f8096;
	box-sizing: border-box;
}
#outline table {
	width: 100%;
	display: table;
	font-size: 1.2em;
	line-height: 1.6em;
}
#outline table.date {
	border-top: solid 2px #231f1c;
}
#outline table tr:nth-of-type(even) {
	background: #f7f7f7;
}
#outline table th,
#outline table td {
	display: table-cell;
	padding: 15px 10px;
	vertical-align: top;
}
#outline table th {
	width: 140px;
	text-align: left;
	vertical-align: top;
}
#outline .note {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto 40px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#outline h4 {
	background: #463c3a;
}
#outline .yokoku {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#outline hr {
	width: 100%;
	height: 1px;
	display: block;
	margin: 20px 0;
	border: none;
	background: #ccc;
}
#outline .update {
	width: auto;
	display: block;
	margin-left: auto;
	font-size: 1.2em;
	line-height: 1.6em;
}
#outline .update p {
	display: block;
	margin: 5px 0;
}
#outline .update p span {
	width: 9em;
	display: inline-block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
現地案内図
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#map {
	background: url("../images/outline/title_img.webp") no-repeat center top;
	background-size: 100%;
}
#map .wrap {
	padding: 20px;
}
#map figure {
	width: 100%;
    display: block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    padding-bottom: 20px;
    background: #fff;
}
footer #page-top{
	position: fixed;
	width: 70px;
	right: 20px;
	bottom: 70px;
	z-index: 30000;
	border-radius: 35px;
	background: rgba(0,0,0,0.25);
}

/*資料請求ボタン*/
footer .btnEnty_common {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 40px 0;
	background: #fff;
}
footer .btnEnty_common .copy_main {
	width: 100%;
	display: block;
    margin: 20px 0;
}
footer .btnEnty_common .copy_main img {
	width: 90%;
	max-width: 400px;

	display: block;
    margin: 0 auto;
}
footer .footerTel {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    padding: 60px 0;
	text-align: center;
    color: #fff;
    background: #463c3a;
}
#home .telBlock p,
footer .footerTel p {
	width: 100%;
	display: block;
	font-size: 1em;
	line-height: 1.6em;
}
#home .telBlock p span,
footer .footerTel p span {
	font-size: 1.4em;
}
#home .telBlock a,
footer .footerTel a {
	width: auto;
	height: 50px;
	display: block;
	margin: 10px 0;
}
#home .telBlock a img,
footer .footerTel a img {
	width: auto;
	height: 36px;
	display: block;
	margin: 10px 0;
}
footer .footerTel a img {
	filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(326deg) brightness(104%) contrast(101%);
}
footer .bottom {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 40px 0;
	background: url("../images/bg_design.webp") no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
}
footer .bottom .inner {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 40px 0;
	background: #fff;
	box-sizing: border-box;
}
footer .bottom .inner figure {
	width: 100%;
	display: block;
	margin: 20px 0;
}
footer .bottom .inner figure img {
	display: block;
	margin: 0 auto;
}
footer .bottom .inner figure img.nexus {
	width: 36%;
}
footer .bottom .inner figure img.hitachi {
	width: 50%;
}
footer .bottom .copyright {
	position: absolute;
	width: 100%;
	bottom: 1.2em;
	font-size: 1em;
    line-height: 1em;
    text-align: center;
	color: #fff;
}
footer ul.note {
	width: 90%;
	display: flex;
		justify-content: flex-start;
        flex-wrap: wrap;
	margin: 40px auto;
}
footer ul.note li {
	width: 100%;
    display: block;
    margin: 3px 0;
	font-size: 1em;
    line-height: 1.2em;
    text-indent: -1em;
}
footer ul.note li::before {
	content: '※';
}
