@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.noscroll{
    overflow: hidden;
}
html {
    color: #333;
    font-size: 16px;
    font-family: "ZenKakuGothicAntique-Regular", serif;
    letter-spacing: .025em;
}
a {
    text-decoration: none;
    color: #333;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
iframe {
    vertical-align: bottom;
}
main h1 {
    width: 90%;
    margin: .447em auto 0;
}
h1 {
    font-family: "KiwiMaru-Regular";
    vertical-align: initial;
    font-size: 2.375rem;
}
h2 {
    margin: 1.333em auto 1.667em;
    text-align: center;
    font-size: 1.875rem;
}
h2::after {
    border-radius: 1px;
    content: "";
    display: block;
    height: 2px;
    background-color: #4aacce;
    width: 60px;
    margin: 0.666em auto 0;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.25rem;
}
span.red {
	color: #ce0010;
}
span.blue {
	color: #4aacce;
}
.ttl {
    text-align: center;
    background: #ecf4f8;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ttl p {
    position: relative;
    font-family: "Jost-Regular";
    font-size: 1.5625rem;
    width: 90%;
    margin: 0 auto;
}
.ttl p::before {
    content: "";
    position: absolute;
    background-image: url(../images/top/dec-line.png);
    width: 60px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
main {
    margin-top: 100px;
}

/*ヘッダー*/
header {
    width: 100%;
    height: 100px;
    background-color: #ecf4f8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;


    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 100px;
    padding: 0 2.5vw;
    box-sizing: border-box;
}
header .logo_wrap a {
    display: flex;
    align-items: center;
}
header .logo_wrap h1 {
    width: 6.3vw;
    min-width: 50px;
}
header .logo_wrap img {
    vertical-align: initial;
    display: block;
}
header .logo_wrap p {
    font-size: 1.06rem;
    color: #0080cb;
    margin-left: .88em;
    font-family: "KiwiMaru-Medium";
    letter-spacing: -0.09em;
}
header nav.gnav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}
header nav.gnav li {
    padding-right: .5em;
}

/*スマホ共通*/
header .sp_menu {
    display: none;
}
header nav ul {
    font-family: "KiwiMaru-Regular";
    letter-spacing: -.07em;
}
header nav li {
    font-size: 1.06rem;
}
header nav ul:first-of-type  li a {
    position: relative;
    padding-left: calc(.38em + 22px);
}
header nav li a::before {
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
header nav ul:first-of-type li.i_news a::before {
    background-image: url(../images/header/news.png);
}
header nav ul:first-of-type li.i_r-c-room a::before {
    background-image: url(../images/header/r-conference-room.png);
}
header nav ul:first-of-type li.i_genre a::before {
    background-image: url(../images/header/genre.png);
}
header nav ul:first-of-type li.i_floor a::before {
    background-image: url(../images/header/floor.png);
}
header nav ul:first-of-type li.i_access a::before {
    background-image: url(../images/header/access.png);
}
header nav ul:first-of-type li.i_parking a::before {
    background-image: url(../images/header/car.png);
}
header nav ul:first-of-type li:nth-child(7) a::before {
    background-image: url(../images/header/bicycle.png);
}
header nav.gnav li:not(:last-child)::after {
    content: "｜";
    padding-left: .5em;
}
header #search_pc form {
    position: relative;
}
header #search_pc input {
    width: 11.51vw;
    min-width: 170px;
    height: 50px;
    border-radius: 25px;
    border: none;
    padding: 0px 45px 0px 15px;
    box-sizing: border-box;
}
header #search_pc form::after {
    position: absolute;
    content: "";
    background-image: url(../images/header/search.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    display: block;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
header #search_pc figure {
    display: none;
}
@media screen and (max-width: 468px) {
    header #search_pc form {
        display: none;
    }
    header #search_pc figure {
        position: absolute;
        background-size: contain;
        width: 22px;
        height: 22px;
        display: block;
        right: 3vw;
        top: 50%;
        transform: translateY(-50%);
    }
}
header #search_sp {
    display: none;
}
header #search_sp {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    padding: 1em 2em 2em;
    text-align: center;
    background-color: #ecf4f8;
}
#search_sp div {
    display: flex;
    justify-content: center;
}
#search_sp input#s {
    height: 50px;
    padding: .5em;
    width: 300px;
    margin: 0;
    border-radius: 25px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
#search_sp h3 {
    margin-bottom: 0.476em;
}
#search_sp #searchsubmit {
    display: block;
    text-indent: -9090px;
    border-style: none;
    width: 40px;
    padding: 0;
    margin: 0;
    background: url(../images/header/search.png) no-repeat center center;
    background-size: 30px;
    border-width: 0;
    border-radius: 0;
    box-sizing: border-box;
    margin-inline-start: 5px;
}


/*スマホメニュー*/
header .hamburger {
	width: 25px;
	height: 20px;
	position: relative;
}
header .hamburger span {
	display: inline-block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	background: #14335e;
    transition: transform .4s;
    border-radius: 4px;
}
header span:nth-of-type(1) {
	top: 0;
}
header span:nth-of-type(2) {
	top: 50%;
}
header span:nth-of-type(3) {
	top: 100%;
}
.hamburger.open span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
}
.hamburger.open span:nth-of-type(2) {
    opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
}
header .sp_menu nav ul {
    width: 70%;
    margin: 15px auto 0;
}
header .sp_menu nav ul:last-of-type {
    margin: 30px auto 0;
}
header .sp_menu nav li {
    line-height: 2.7em;
    border-bottom: .75px solid #ccc;
    font-size: .9375rem;
}
header .sp_menu nav ul:first-of-type li {
    border-bottom: .75px solid #4aacce;
    font-size: 1.06rem;
}
header .sp_menu nav div {
    width: 70%;
    margin: 0 auto;
}
header .sp_menu nav figure {
    margin-top: 30px;
    width: 120px;
}
header nav.drawer-nav {
    margin: 0 auto;
    height: 100vh;
    background-color: #ecf4f8;
    left: 0;
    position: fixed;
    top: 60px;
	transform: translateX(-100%);
	transition: transform .4s;
	width: 100vw;
    padding: 0 2.5vw;
    box-sizing: border-box;
    overflow: scroll;
    height: calc(100dvh - 60px);
    padding: 0px 0 60px;
}
header nav.drawer-nav.slide-in {
	transform: translateX(0);
}
header nav.drawer-nav .logo_wrap {
    height: 100px;
    display: flex;
    align-items: center;
}
header nav.drawer-nav ul {
    list-style: none;
}

/*パンくず*/
.breadcrumbs {
    width: 90vw;
    margin: 3.125em auto 5.625em;
}
.breadcrumbs ul {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    row-gap: 5px;
}
.breadcrumbs li {
    margin-right: 1em;
}
.breadcrumbs li:last-child {
    margin-right: 0;
}
.breadcrumbs li:after {
    content: '>';
    margin-left: 1em;
}
.breadcrumbs a {
    color: #333;
}
.breadcrumbs li:last-child:after {
    display: none;
}

/*ボタン*/
.btn {
    width: 300px;
    border: 1px solid #4aacce;
    border-radius: 5px;
    margin: 0 auto; 
    text-align: center;
    height: 70px;
    line-height: 70px;
    font-size: 1.125rem;
    font-family: "KiwiMaru-Regular";
    background-color: #fff;
}
.btn a {
    display: block;
    width: 300px;
    height: 70px;
    transition: .4s;
    border-radius: 5px;
}
.btn p {
    position: relative;
    display: inline-block;
    padding-left: .83em;
    color: #4aacce;
}
.btn p::before {
    content: "";
    background-image: url(../images/common/arrow_1.png);
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 7px;
    height: 7px;
    display: block;
    position: absolute;
    left: -.415em;
}
.btn:hover {
    border-radius: 5px;
}
.btn:hover p {
    color: #fff;
}
.btn:hover p::before {
    background-image: url(../images/common/arrow_2.png);
}
.btn:hover a {
    background-color: #4aacce;
}
#not-f .btn,
#search-r .btn {
    margin-top: 80px;
}

/*フッター*/
footer {
    background-color: #ecf4f8;
    padding: 65px 0;
    margin-top: 100px;
}
footer h1 {
    width: 27.41vw;
    min-width: 200px;
}
footer figure {
    width: 120px;
    margin-right: 0;
    margin-left: auto;
}
footer section {
    text-align: end;
}
footer section p {
    margin-top: 1.9em;
    font-size: .8125rem;
}
footer nav ul {
    display: flex;
    justify-content: end;
    list-style: none;
    font-size: 1.125rem;
    font-family: "KiwiMaru-Regular";
}
footer nav ul:last-of-type {
    margin-top: 2.6em;
    margin-bottom: 1.6em;
    font-size: .9375rem;
}
footer nav li:not(:first-child) {
    padding-left: .4em;
}
footer nav ul:last-of-type li:not(:first-child) {
    padding-left: 1em;
}
footer nav ul:first-of-type li:not(:last-child)::after {
    content: "｜";
    padding-left: .4em;
}
footer .inner {
    width: 95vw;
    margin: 0 auto;
}
footer .inner div {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

/*お知らせ*/
#news .inner {
    margin: 0 auto;
    text-align: center;
    max-width: 1344px;
    width: 90%;
}
#news li {
    border-bottom: .75px solid #ccc;
    list-style: none;
}
#news li a {
    display: flex;
    align-items: center;
    position: relative;
}
#news li a::after {
    position: absolute;
    content: "";
    background-image: url(../images/common/arrow_3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 7px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}
#news time {
    font-family: "Jost-Regular";
    font-weight: 300;
    font-size: .9375rem;
}
#news span {
    font-family: "ZenKakuGothicAntique-Medium";
    display: inline-block;
    min-width: 140px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: .9375rem;
    border-radius: 15px;
    margin: 20px 30px 20px;
}/*
#news span.cat_all {
    background-color: #003a6b;
}*/
#news span.cat_event {
    background-color: #89cff1;
}
#news span.cat_f_news {
    background-color: #5293bb;
}
#news span.cat_tenants {
    background-color: #6eb1d6;
}
#news span.cat_event_schedule {
    background-color: #3776a1;
}
#news span.cat_concert {
    background-color: #1b5886;
}
#news span.cat_others {
    background-color: #003a6b;
}
#news li a p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 3.125em;
}
/*
.readmore {
    position: relative;
    padding: 0 0 140px;
}

.readmore label {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;

    border: 1px solid #4aacce;
    text-align: center;
    line-height: 70px;
    font-size: 1.125rem;
    font-family: "KiwiMaru-Regular";
    background-color: #fff;
    
    display: block;
    width: 300px;
    height: 70px;
    transition: .4s;
    border-radius: 5px;

    display: none;
}*/
/* コンテンツが表示可能で「もっと見る」が必要な場合 */ /*
.readmore label.active {
    display: block;
  }
  
.readmore label::before{
    content: 'もっと見る';
    color: #4aacce;
}
.readmore input[type="checkbox"]:checked ~ label::before {
    content: '元に戻す';
    color: #fff;
}
.readmore input[type="checkbox"]:checked ~ label {
    background-color: #4aacce;
}
.readmore input[type="checkbox"] {
    display: none;
}

.readmore-content {
    position: relative;
    height: 711px;
    overflow: hidden;
    margin: 100px auto 0;
}
.readmore input[type="checkbox"]:checked ~ .readmore-content {
    height: auto;
}*/

/*施設案内*/
#f_info .inner {
    margin: 0 auto;
    text-align: center;
}
#f_info ul {
    list-style: none;
    margin-bottom: 70px;
    font-family: "ZenKakuGothicAntique-Medium";
    font-size: 1.125rem;
    letter-spacing: .075em;
    flex-wrap: wrap;
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));*/
    gap: 65px;
    width: fit-content;
    grid-auto-flow: column;
    margin: 0 auto 70px;
}
#f_info li a {
    display: block;
}
#f_info li {
    transition: all .4s;
}
#f_info li p {
    margin-top: 1.6em;
}
#f_info button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background-color: #efe5d8;
    border: .5px solid rgba(0,0,0,0.15);
    transition: all .4s;
    box-shadow: 9.75px 9.75px 19.5px -9.75px rgba(0,0,0,0.25), -9.75px -9.75px 19.5px -19.5px rgba(0,0,0,0.25);
    width: 130px;
    height: 130px;
    position: relative;
    cursor: pointer;
}
#f_info button:hover {
    box-shadow: inset 4px 4px 12px #e5d9c7, inset -4px -4px 12px #e5d9c7;
    border: 1px solid #e5d9c7;
}
#f_info li:hover {
    opacity: .7;
}
#f_info li button img {
    max-width: 74px;
    max-height: 65px;
}
#f_info li button::after {
    position: absolute;
    /* content: ""; */
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translate(-50%, -50%);
}
#f_info li:first-child button::after {
    background-image: url(../images/genre/r_conference_room.png);
    width: 65px;
    height: 56px;
}
#f_info li.restaurant button::after {
    background-image: url(../images/genre/restaurant.png);
    width: 44px;
    height: 65px;
}
#f_info li.shop button::after {
    background-image: url(../images/genre/shop.png);
    width: 65px;
    height: 56px;
}
#f_info li.healthcare button::after {
    background-image: url(../images/genre/healthcare.png);
    width: 65px;
    height: 65px;
}
#f_info li.education button::after {
    background-image: url(../images/genre/education.png);
    width: 74px;
    height: 51px;
}
#f_info li.service button::after {
    background-image: url(../images/genre/service.png);
    width: 65px;
    height: 51px;
}
#f_info li.finance button::after {
    background-image: url(../images/genre/finance.png);
    width: 65px;
    height: 48px;
}

/*ページトップ*/
.page-top {
    display: none;
    width: 50px;
    position: fixed;
    right: 13px;
    bottom: 13px;
    z-index: 999;
}

/*入居企業*/
.tenant ul {
    display: grid;
    gap: 30px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 770px;
}
.tenant li {
    font-size: 1.875rem;
    list-style: none;
    text-align: center;
}
.tenant li a {
    display: block;
    width: 130px;
    height: 70px;
    color: #fff;
    line-height: 70px;
    background: #14335e;
    border-radius: 5px;
    transition: .4s;
    box-sizing: border-box;
    border: 1px solid #14335e;
}
.tenant li:hover a {
    color: #14335e;
    background: #fff;
    border: 1px solid #14335e;
}

/*フロアから探す*/
#floor section.map figure {
    margin: 0 auto;
    width: 530px;
}
#floor section.map ul {
    list-style: none;
    font-size: 1.875rem;
    text-align: center;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: fit-content;
}
#floor section.map li {
    display: inline-block;
    border: solid .75px #e0c7aa;
    background: #efe5d8;
    transition: .4s;
    border-radius: 5px;
}
#floor section.map li:first-child {
    border: solid .75px #e0c7aa;
}

#floor section.map li a {
    padding: .5em 1em;
    display: block;
    transition: .4s;
    /*width: 160px;*/
}
#floor section.map li:hover {
    background: #e0c7aa;
}
#floor section.map li:hover a {
    color: #fff;
}


/*施設情報カテゴリー*/
span.cat {
    font-size: .9375rem;
    padding: .333em .5em;
    color: #fff;
    box-sizing: border-box;
    border-radius: 3%;
    display: inline-block;
}
/*レストラン・カフェ*/
span.cat_restaurant {
    background: #d66037;
}
/*ショップ*/
span.cat_shop {
    background: #d6c711;
}
/*ヘルスケア*/
span.cat_healthcare {
    background: #6ba858;
}
/*教育関連*/
span.cat_education {
    background: #0080cb;
}
/*サービス*/
span.cat_service {
    background: #19b2e2;
}
/*金融・郵便*/
span.cat_finance {
    background: #efa1a1;
}



/*テーブル*/
table.fixed-term,
.fixed-term table {
    overflow-x: scroll;
    white-space: nowrap;
}
.page .fixed-term table {
    overflow-x: scroll;
    white-space: nowrap;
    display: block;
}
/*
.fixed-term table th {
    border-right: 1px solid #FFF;
}*/
.fixed-term table tr:first-child th {
    border-bottom: 1px solid #FFF !important;
}

/*ページネーション*/
nav.pagination ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
nav.pagination li {
    border-bottom: none !important;
    text-align: center;
}
nav.pagination li::marker  {
    content: "";
}
nav.pagination a {
    display: block !important;
}
nav.pagination a::after {
    display: none !important;
}
#news nav.pagination span {
    font-family: "ZenKakuGothicAntique-Medium";
    display: inline-block;
    min-width: inherit;
    height: 30px;
    line-height: inherit;
    text-align: center;
    color: #fff;
    font-size: inherit;
    border-radius: inherit;
    margin: inherit;
    background-color: #003a6b;
    border: .75px solid #003a6b;
}
nav.pagination span {
    font-family: "ZenKakuGothicAntique-Medium";
    display: inline-block;
    min-width: inherit;
    height: 30px;
    line-height: inherit;
    text-align: center;
    color: #fff;
    font-size: inherit;
    border-radius: inherit;
    margin: inherit;
    background-color: #003a6b;
    border: .75px solid #003a6b;
}
.page-numbers {
    border: 0.75px solid #003a6b;
    width: 30px;
    height: 30px;
}
nav.pagination li a.prev,
nav.pagination li a.next {
    border: none;
    line-height: 30px;
    width: auto;
}
.pagination ul {
    list-style: none;
    -webkit-appearance: none;
}


/*固定ページテンプレート*/
.page #privacy-policy {
    /*margin-top: -100px;
    padding-top: 100px;*/
}
.page .contents a {
    position: relative;
    display: inline-block;
}
.page .contents a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #4aacce;
}


/*テーブルスクロールテンプレート*/
.table_scroll h2 {
    text-align: left;
}
.table_scroll h2::after {
    display: none;
}
.table_scroll .btn {
    margin-bottom: 60px;
}
.table_scroll .contents a {
    position: relative;
    display: inline-block;
}
.table_scroll .contents a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #4aacce;
}
.table_scroll .btn a::after {
    display: none;
}

/*検索結果*/
#search-r .contents h1 {
    margin: 1.333em auto 1.667em;
    text-align: center;
    font-size: 1.875rem;
    font-family: "ZenKakuGothicAntique-Regular", serif;
}
#search-r .contents h1::after {
    border-radius: 1px;
    content: "";
    display: block;
    height: 2px;
    background-color: #4aacce;
    width: 60px;
    margin: 0.666em auto 0;
}
#search-r .search-item:not(:last-of-type) {
    margin-bottom: 30px;
}
#search-r .search-item h2 {
    margin-top: 0;
}
#search-r .search-item a {
    width: 100%;
}
#search-r .search-item a::after {
    display: none;
}

/*お問い合わせ*/
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.2em 30px;
    text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #00a0d2;
}

/*固定ページの背景つけたとき*/
:root :where(p.has-background) {
    padding: 1.2em;
}

/*ブロックエディタ*/
.wp-block-file a {
    position: relative;
    display: inline-block;
}
.wp-block-file a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #4aacce;
}

.wp-block-file:not(.wp-element-button) {
    font-size: inherit;
}
.wp-block-file *+.wp-block-file__button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efe5d8;
    color: #333;
    font-size: .875rem;
    padding: 0;
    width: 150px;
    height: 40px;
    margin: .5em 0 0;
    border: none;
    background-color: none;
    line-height: 1;
    letter-spacing: normal;
    border-radius: 5px;
}
.wp-block-file *+.wp-block-file__button::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/common/icon-dl.svg) no-repeat center center;
    background-size: contain;
    margin-inline-start: .5em;
    position: relative;
}

/* Animation -------------------------------*/
.fadeup {
	opacity: 0;
}
.fadeup.active {
	animation-name: fadeUpAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


@media screen and (max-width: 1320px) {
    #parking .fixed-term table tr:first-of-type th:first-child {
        position: initial;
    }
    table.fixed-term,
    .fixed-term table {
        display: block;
    }
    /* .fixed {
        position: sticky;
        left: 0;
    } */
    table.fixed-term th:first-child,
    .fixed-term table th:first-child {
        position: sticky;
        left: 0;
    }
}
@media screen and (max-width: 520px) {
    table.fixed-term th, table.fixed-term td,
    .fixed-term table th, .fixed-term table td {
        display: table-cell;
        width: auto;
        text-align: revert;
    }
}

@media screen and (max-width: 1450px) {
    /*施設案内*/
    #f_info ul {
        grid-template-columns: repeat(4, 1fr);
        width: fit-content;
        grid-auto-flow: row;
        gap: 40px;
    }
}
@media screen and (max-width: 1400px) {
    /*ヘッダー*/
    header .logo_wrap a {
        flex-direction: column;
    }
    header .logo_wrap h1 {
        line-height: 45px;
        margin-right: auto;
    }
    header .logo_wrap p {
        margin-left: 0;
        margin-right: auto;
    }
}
@media screen and (max-width: 1200px) { /*ハンバーガー開始*/
    main {
        margin-top: 60px;
    }
    /*ヘッダー*/
    header {
        height: 60px;
        z-index: 1000;
    }
    header .gnav {
        display: none;
    }
    header #search_pc {
        display: block;
        margin-right: 0;
        margin-left: auto;
    }
    header #search_pc input {
        height: 30px;
    }
    header .logo_wrap {
        margin-left: 15px;;
    }
    header .logo_wrap a {
        flex-direction: row;
    }
    header .logo_wrap h1 {
        line-height: 60px;
    }
    header .logo_wrap p {
        line-height: 60px;
        margin-left: .3em;
    }

    /*スマホメニュー*/
    header .sp_menu {
        display: block;
    }
}

@media screen and (max-width: 1200px) {
    /*お知らせ*/
    #news li a {
        display: block;
        text-align: left;
    }
    #news li a p {
        padding-bottom: 1.25em;
        padding-right: 40px;
    }
    #news .pagination li a {
        text-align: center;
    }
    /*
    .readmore-content {
        height: 1150px;
        margin: 60px auto 0;
    }*/

    /*施設案内*/
    #f_info .inner {
        width: 90%;
    }

    /*フッター*/
    footer .inner div {
        flex-direction: column;
    }
    footer section li {
        display: inline-block;
    }
    footer div p {
        margin-top: 3.07em;
    }

    /*フロアから探す*/
    #floor section.map figure {
        width: 80%;
        max-width: 530px;
    }
    #floor section.map ul {
        font-size: 1.375rem;
    }
    #floor section.map li a {
        /*width: 120px;*/
    }

    /*固定ページテンプレート*/ /*
    .page #privacy-policy {
        margin-top: -60px;
        padding-top: 60px;
    }*/
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 2.0625rem;
    }
    h2,
    #search-r .contents h1 {
        font-size: 1.6875rem;
    }

    /*入居企業*/
    .tenant li {
        font-size: 1.6875rem;
    }

    /*フッター*/
    footer nav ul {
        display: block;
    }
    footer .inner {
        width: 90%;
    }
    footer {
        padding: 35px 0;
    }
    footer section {
        width: 100%;
    }
    footer section ul {
        text-align: left;
    }
    footer section li {
        display: block;
        margin-bottom: .3em;
    }
    footer nav ul:first-of-type li:not(:last-child)::after {
        content: "";
        padding-left: 0;
    }
    footer nav ul:last-of-type li:not(:first-child) {
        padding-left: 0;
    }
    footer nav li:not(:first-child) {
        padding-left: 0;
    }
    footer figure {
        margin-left: 0;
    }
    footer .inner div {
        align-items: flex-start;
    }
    footer h1 {
        margin-left: 0;
        margin-right: auto;
    }

}
@media screen and (max-width: 900px) {
    /*入居企業*/
    .tenant ul {
        grid-template-columns: 1fr 1fr 1fr;
        width: fit-content;
        gap: 20px;
    }
}
@media screen and (max-width: 715px) {
    /*施設案内*/
    #f_info ul {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 700px) {
    /*フロアから探す*/
    #floor section.map ul {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 auto 50px;
    }
}
@media screen and (max-width: 593px) {
    /*ヘッダー*/
    header .logo_wrap p {
        font-size: 0.875rem;
    }
    
    /*入居企業*/
    .tenant ul {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 520px) {
    /*施設案内*/
    #f_info ul {
        grid-template-columns: repeat(2, 1fr);
    }
    /*フロアから探す*/
    #floor section.map ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 468px) {
    html {
        font-size: .875rem;
    }

    /*パンくず*/
    .breadcrumbs {
        margin: 3.125em auto 30px;
    }

    /*入居企業*/
    .tenant li a {
        width: 110px;
        height: 60px;
        line-height: 60px;
    }

    /*お知らせ*/ /*
    .readmore-content {
        height: 1085px;
    }*/
}
