/* リセット */
body, h1, h2, h3, h4, h5, h6, p, ul, figure {
    margin: 0;
    padding: 0;
    font-size: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    list-style-type:none;
    margin-block-start: 0em;
}

h1, a, ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

a:hover {
    /* opacity: 0.1; */
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* ボタン非表示設定（スクリーンリーダー対応用）（未使用） */
.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* 基本設定 */
:root {
    --menu-offset-x: ;  /* メニューの×ボタンのズレ調整 */
    --bgc-00: #ffffff00;
    --bgc-01: rgb(206, 219, 128);
    --bgc-02: rgba(255, 255, 255, 0.897);

    --empty-font:#808080;
    --empty-bg: rgb(59, 57, 57);
    
    --fill-font:#dfdfdf;
    --fill-bg: rgb(92, 193, 211);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    z-index: -1;
}


/* ヘッダー/メインコンテンツ/フッターはGridレイアウトで構築 */
.global-layout {
    display: grid;
    justify-items: center;
    align-items: center;

    grid-template:  "header" auto
                    "main" 1fr
                    "footer" auto
                    "footer-adjust" auto
                    /100%;
    min-height: 100vh;
}

.container {
    width: 94%;
    margin: 0 auto 100px;
    font-size: 5vw;
}


/* コンテンツ区切り罫線 */
.line {
    position: relative;
}
.line::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #c9c8c8bd;
    position: absolute;
    top: -40px;
    left: 0;
}

/*****************************/
/* ヘッダー部CSS */
.header {
    position: fixed;
    top: 0;
    left: 0;
    grid-area: header;

    z-index: 500;
    height: 74px;
    width: 100%;
    background-color: var(--bgc-02);
}

.header > div{
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 100%;
    width: 94%;
    margin: 0 auto;
}
.site {
    margin-right: 10px;
}

.header div h2 {
    font-size: 14px;
    font-weight: 500;
}
.header_img {
    vertical-align: middle;
    height: 20px;
    width: auto;
    margin-bottom: 8px;
}

@media (min-width: 900px) {
    .header {
        height: 90px;
    }
    .header > div {
        height: 100px;
        align-items: center;
        max-width: calc(1280px * 0.94);
    }
    .site {
        font-size: 26px;
        margin-right: 20px;
    }
    .header div h2 {
        font-size: 16px;
    }    
    .header_img {
        height: 30px;
        margin-bottom: 12px;
    }    
}
/*****************************/

/*****************************/
/* ヘッダー：ナビゲーションボタン */
.nav-button {
    box-sizing: border-box;
    margin-left: auto;
    padding: 0;
    outline: none;
    border: none;
    background: #00000000;

    width: 30px;
    height: 30px;
    cursor: pointer;
    color: #363636;
}

.nav-button::before,
.nav-button::after {
    content: '';
    display: block;
    height: 2px;
    background-color: currentColor;
    transform: translateY(9px);
    transition: 0.3s ease-in-out;
}

.nav-button::before {
    transform: translateY(-9px);
    box-shadow: 0 10px currentColor;
}

/* ヘッダー：ナビゲーションボタン（閉じるボタン） */
/* ナビゲーションメニュー（モバイル） */
@media (max-width: 899px) {
    
    .open .nav-button {
        z-index: 1000;
        transform: translateX(var(--menu-offset-x));
        color:rgb(235, 235, 235);
    }
    .open .nav-button::before {
        transform: translateY(1px) rotate(45deg);
        box-shadow: none;
    }
    .open .nav-button::after {
        transform: translateY(-1px) rotate(-45deg);
    } 
    /* ヘッダー：ナビゲーションメニュー */
    html.open, .open body {
        overflow: hidden;
    }
    .open .form {
        display: none;
    }
    .open nav {
        visibility: visible;
        opacity: 1;
    }
    .nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);

        color: #ffffff;
        transition: all 0.5s;
        visibility: hidden;
        opacity: 0;
    }
    .nav_list ul {
        font-weight: bold;
        text-align: center;
        height: 100%;

        display: flex;
        flex-flow: column;
        justify-content:space-between;
    }
    .nav_list ul li {
        width: 100%;
    }
    html, body {
        overflow-x: hidden;
    }

    /* ナビオーバーレイの領域分け - JSのタップ処理のために */
    .nav {
        display: grid;
        grid-template-columns: 30% 40% 30%;
        grid-template-rows: 25% 50% 25%;
    }
    .nav_grid_01 {
        grid-column: 1/4;
        grid-row: 1/2;
    }
    .nav_grid_02 {
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .nav_grid_03 {
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .nav_grid_04 {
        grid-column: 3/4;
        grid-row: 2/3;
    }
    .nav_grid_05 {
        grid-column: 1/4;
        grid-row: 3/4;
    }
}

/* ナビゲーションメニュー（PC） */
@media (min-width: 900px) {
    .nav-button {
        display: none;
    }
    .nav {
        margin-left: auto;
    }
    .nav_list ul {
        display: flex;
        align-items: center;

        margin-top: 3px;
        list-style: none;
        color: #333333;
    }
    .nav_list ul li {
        padding: 8px 8px;
        border: 3px solid #49494900;
    }
    .nav-list ul li a:hover {
        opacity: 1;
    }
    .nav_list ul li:hover {
        /* background-color: rgba(170, 170, 170, 0.4); */
        border: 3px solid #494949d7;
        /* font-weight: 600; */
        border-radius: 15px;
        transition: all 0.5s ease-in-out;
    }
    .nav_list li:not(last-child) {
        margin-right: 10px;
    }
    .nav_list li:last-child {
        margin-right: 6px;
    }

    .nav_list ul li:first-child {
        display: none;
    }
}
/*****************************/


/***************************************/
/* ページ内リンクの位置をヘッダー分だけ微調整 */
a.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
@media (min-width: 900px) {
    a.anchor {
        display: block;
        padding-top: 100px;
        margin-top: -100px;
    }
}
/***************************************/


/*****************************/
/* メインコンテンツ部基本設定 */
.main {
    background-color: var(--bgc-00);
    grid-area: main;

    margin-top: 74px;
    color: #494a5f;
}
.main h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 26px;
}
.main h2::before {  /* H2の前の装飾 */
    content: "";
    padding-right: 6px;
    border-left: 6px solid #9cb4a4;
}
@media (min-width: 900px) {
    .main {
        margin-top: 100px;
        max-width: 1280px;        
    }
    .main h2 {
        font-size: 22px;
    }
    .main h2::before {
        content: "";
        padding-right: 8px;
        border-left: 7px solid #9cb4a4;
    }
}
/*****************************/


/*****************************/
/* イメージボックス（駐車場画像） */
.image {
    background-color: var(--bgc-00);
    margin-bottom: 80px;
}

.image .imgbox {
    min-height: 350px;
    position: relative;

    /* イメージを画面いっぱいまで広げる処理 */
    margin: 0 calc(50% - 50vw);
	width: 100vw;
}
.image .imgbox img {
    position: absolute;
    opacity: 0;

    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.image ul {
    margin: 18px 0% 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: space-around;
    list-style: none;
}
.image li {
    width: calc((100% - 20%) / 5) ;
    list-style-type: none;
}
.image li label {
    display: block;
}
.image li img {
    width: 100%;
    height: auto;
    border-radius: 5%;
}

@media (min-width: 900px) {
    .image .imgbox {
        height: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .image li {
        width: 16%;
    }
}
/*ラジオボタンを非表示にする*/
#image1,#image2,#image3,#image4,#image5{
    display: none;
}
/*デフォルト、以下01～05のサムネイルをクリックしたときの指定*/
#image1:checked ~ .imgbox img:nth-child(5){
    opacity: 1;
}
#image2:checked ~ .imgbox img:nth-child(2){
    opacity: 1;
}
#image3:checked ~ .imgbox img:nth-child(3){
    opacity: 1;
}
#image4:checked ~ .imgbox img:nth-child(4){
    opacity: 1;
}
#image5:checked ~ .imgbox img:nth-child(1){
    opacity: 1;
}
 
/* 画像の上にテキスト帯 */
.imgbox > div {
    position: absolute;
    top: 70%;
    right: 0px;
    z-index: 10;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 15%;
    width: auto;
    padding-left: 34px;
    background-color: rgba(255, 255, 255, 0.6);
    clip-path: polygon(4% 100%, 0% 0%, 100% 0%, 100% 100%);
}
@media (min-width: 900px) {
    .imgbox > div {
        top: 280px;
        padding-left: 44px;
    }
}
.imgbox div p {
    font-size: min(28px, 4vw);  /* フォントサイズを通常値と最大値で */
    font-weight: 700;

    margin-right: 15px;
    color: #000000;
}

/***** パーキング情報との間のスペース *****/
.image.container {
    margin-bottom: 30px;
}
@media (min-width: 600px) {
    .image.container {
        margin-bottom: 40px;
    }
}
@media (min-width: 900px) {
    .image.container {
        margin-bottom: 50px;
    }
}

/* トップ下説明テキスト */
.lead_text_01,
.lead_text_02 {
    text-align: center;
}
.lead_text_01 {
    font-size: 0.75em;
    font-weight: 600;

    width: 80%;
    margin: 0 auto 25px;
    background-image: linear-gradient(transparent 60%, #ff99cc 0%);
}
.lead_text_02 {
    width: 100%;
    margin: 0 auto 10px;
}

.lead_text_02 ul {
    display: flex;
    justify-content: center;
}
.lead_text_02 ul li {
    font-size: 0.6em;
    font-weight: bold;
}
.lead_text_02 ul li:not(:last-child) {
    margin-right: 20px;
}
.btn-flat-simple {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.3em 0.6em;
    text-decoration: none;
    color: #00BCD4;
    background: #ECECEC;
    transition: .4s;
  }
  
/* パーキング情報したボタン情報 */
.btn-flat-simple:hover {
    background: #00bcd4;
    color: white;
}
@media (min-width: 600px) {
    .lead_text_01 {
        font-size: 0.6em;
        width: 70%;

        margin-bottom: 30px;
    }
    .lead_text_02 ul li {
        font-size: 0.5em;
    }
}
@media (min-width: 900px) {
    .lead_text_01 {
        font-size: min(36px, 0.55em);   /* フォントサイズを通常値と最大値で */
        width: 60%;

        margin-bottom: 40px;
    }
    .lead_text_02 ul li {
        font-size: min(30px, 0.4em);   /* フォントサイズを通常値と最大値で */
    }
    .lead_text_02 ul li:not(:last-child) {
        margin-right: 25px;
    }
}
/*****************************


/*****************************/
/* 空車情報 */
.empty_info {
    background-color: var(--bgc-00);
}

.map_container {
    width: 80%;
    max-width: 400px;
    height: 500px;
    margin: 0 auto 36px;
    background-color: #bbbbbb50;
    border-radius: 10px;

    position: relative;
    /* background-position: top left; */
}

.map_container img:nth-child(1)  {
    object-fit: fill;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.map_container img:nth-child(2)  {
    object-fit: contain;
    width: 9%;
    height: auto;

    position: absolute;
    top: 0;
    right: 1.5%;
}

.map_container span {
    font-size: 14px;
    color: #ffffff;
    position: absolute;
}
.map_container span:nth-child(3) {
    top: 40%;
    right: 14.0%;
    writing-mode: vertical-rl;
}

.map_container span:nth-child(4) {
    top: 90.5%;
    right: 55%;
}

@media (min-width: 460px) {
    .map_container {
        height: 600px;
    }
    .map_container span {
        font-size: 16px;
    }
    .map_container span:nth-child(3) {
        top: 40%;
        right: 14.5%;
    }
    
    .map_container span:nth-child(4) {
        top: 90%;
        right: 55%;
    }
}

@media (min-width: 900px) {
    .map_container span {
        font-size: 20px;
    }
    .map_container span:nth-child(3) {
        top: 40%;
        right: 15%;
    }
    
    .map_container span:nth-child(4) {
        top: 90%;
        right: 55%;
    }
    .map_container {
        width: 80%;
        max-width: 600px;
        height: 700px;
    }
}

/* Gridレイアウトで駐車場マップを構築 */
.park_map {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
    grid-template-columns: 47% 6% 47%;

    max-width: 500px;
    width: 74%;
    height: 88%;
    box-sizing: border-box;
    margin: 0;
    padding: 20px 0 12px 20px ;
}

.grid_base {
    margin: 1px;
    display: flex;
    flex-flow: column;
}

.grid_base p { /* Pタグ内テキスト設定02〜満車/空車*/
    /* writing-mode: vertical-rl; */
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: min(18px, 3.5vw);
}
.fill {     /* 満車カラー */
    color: var(--fill-font);
    background-color: var(--fill-bg);
}
.empty {    /* 空車カラー */
    color: var(--empty-font);
    background-color: var(--empty-bg);
}
@media (min-width: 900px) {
    .park_map {
        width: 72%;
        height: 86%;
        max-width: 800px;
        padding: 30px 0 12px 5vw ;
    }
    .grid_base p { /* Pタグ内テキスト設定02 */
        font-size: 20px;    
    }
}

/*****************************/
.empty_status {
    width: 150px;
    margin: 0 auto;
    padding: 0 30px;

    background-color: rgba(255, 255, 255, 0);
    border-radius: 10px;
    border: 3px solid #676767cd;
}

.empty_status dl{
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
}
.empty_status dl dt,
.empty_status dl dd {
    margin: 0;
    line-height: 30px;
    height: 30px;
}
.empty_status dl dt p,
.empty_status dl dd p {
    text-align: center;
    font-size: 14px;
}

.empty_status dl dt:first-of-type {
    background-color: #3b3939;

    width: 50%;
    margin-bottom: 5px;
}
.empty_status dl dt:last-of-type {
    background-color: #5cc1d3;

    width: 50%;
}

.empty_status dl dt p {
    font-weight: 400;
    color: #949494;
}
.empty_status dl dd {
    width: 50%;
}
.empty_status dl dd p {
    font-weight: 600;
}

.fill2 {
    color: rgb(0, 0, 0);
}
.empty2 {
    color: rgb(92, 193, 211);
}
@media (min-width: 900px) {
    .empty_status dl {
        max-width: 1080px;
    }
    .empty_status dl dt p,
    .empty_status dl dd p {
        font-size: 18px;
    }
    .empty_status dl dt:first-of-type {
        margin-bottom: 10px;
    }
}

/* 料金＆問い合わせ */
.charge {
    margin-bottom: 40px;
}
.charge > p > span {
    color: #ff6136;
    font-weight: 700;
    font-size: 20px;
    margin-right: 5px;
}
.charge p,
.inquiry p {
    color: #000000;
    font-weight: 500;
    background-color: #ffffff; /* rgba(223, 223, 213, 0.892); */

    border-radius: 5px;
    border: 3px solid #4f4f4f95;
    /* margin-right: 5%; */
    padding: 10px 20px 10px 20px;
    line-height: 2.5;
}
.charge p {
    font-size: 16px;
}
.inquiry p {
    font-size: 14px;
} 
.inquiry p span {
    font-size: 20px;
}
@media (min-width: 900px) {
    .charge p,
    .inquiry p {
        font-size: 16px;
        max-width: 1080px;

        margin-right: 5%;
    }
    .charge p {
        line-height: 76px;
    }
}

/*****************************/
/* 地図 */
.map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;

    margin-bottom: 50px;
}
.map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;

    /* filter: grayscale(); */
 }


/*****************************/
/* 駐車場情報で使用するdlの設定 */
.park_info_text {
    display: flex;
    flex-wrap: wrap;
    margin-left: 20px;
}
.park_info_text dt,
.park_info_text dd {
    margin: 0;
    height: auto;
    font-size: min(14px, 4vw);  /* フォントサイズを通常値と最大値で */
}    
.park_info_text dt {
    width: 25%;
    font-size: min(12px, 3.5vw);    /* フォントサイズを通常値と最大値で */
}
.park_info_text dt:not(:last-of-type),
.park_info_text dd:not(:last-of-type) {
    margin-bottom: 10px;
}
.park_info_text dt p {
    font-weight: 400;
    color: #757575;
    display: inline-block;
    vertical-align: top;
    margin-top: min(2px, 0.5vw);
}
.park_info_text dd {
    width: 75%;
}
.park_info_text dd p {
    font-weight: 500;

    display: inline-block;
    vertical-align: top;
}
@media (min-width: 900px) {
    .park_info_text {
        max-width: 1080px;
    }
    .park_info_text dt {
        width: 20%;
    }
    .park_info_text dd {
        width: 80%;
    }
    .park_info_text dt:not(:last-of-type),
    .park_info_text dd:not(:last-of-type) {
        margin-bottom: 25px;
    }
    .park_info_text dt p {
        font-size: 16px;
        line-height: 2;
    }
    .park_info_text dd p {
        font-size: 18px;
        line-height: 2;
    }
}

/* 会社概要 */
.company_logo {
    text-align: center;
    margin-left: calc(50% - 50vw);
}
.company_logo img {
    height: 70px;

    margin-bottom: 20px;
    text-align: center;
}
.text_decoration_01 {
    margin-bottom: 10px;
}
.text_decoration_01 span:nth-child(1) {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.text_decoration_01 span:nth-child(2) {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.15em;
}
.company_info_text p {
    font-size: 14px;
    margin-left: 20px;
}
.company_info.container {
    margin-bottom: 60px;
}

@media (min-width: 900px) {
    .company_logo{
        margin-left: 20px;
        text-align: left;
    }
    .text_decoration_01 span:nth-child(1) {
        font-size: 20px;
    }
    .text_decoration_01 span:nth-child(2) {
        font-size: 26px;
    }    
    .company_info_text p {
        font-size: 18px;
    }
    .company_info > h2 {
        margin-bottom: 50px;
    }
}

/*****************************/
/* フッター */
.footer {
    color: #ffffff;
    background-color: #9cb4a4;
    /* #767671;  rgb(123, 206, 188); */
    grid-area: footer;
    height: 55px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
.footer p {
    width: auto;
    font-size: 12px;
}
.footer p:first-child {
    font-size: 16px;
}
.footer-adjust {
    grid-area: footer-adjust;
    width: 100%;
    height: 55px;
    background-color: #9cb4a4;
}

@media screen and (min-width:900px){
	.footer{
        height: 85px;
        padding: 0;
    }
    .footer > p {
        font-size: 14px;
        line-height: 85px;
        text-align: center;
    }
}

/*****************************/
/* 下部固定問い合わせメニュー */
@media screen and (min-width:900px){
	.footer_area{
		display: none;
    }
    .footer-adjust {
        display: none;
    }
}
 
.footer_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.514);
	z-index: 400;
    text-align: center;
}
.footer_area .footer_area_inner {
    position: relative;
    margin: 0px auto;
    padding: 10px 0;
	margin-right: 0px;
}
.inquiry_btn {
    background-color: #ff6136;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
	width: auto;
    padding: 6px 15%;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
}
.inquiry_btn:link, .inquiry_btn:visited {
    color: #FFFFFF !important;
}
