
/* ROOT設定 */

:root {
    --main-color-a: #229CB2;
    --main-color-b: #BDD26A;
    --main-color-c: #72AC51;
    --text-color: #4d4d4d;
    --font-gothic: "Noto Sans JP", sans-serif;
    --font-mintyo: "Noto Serif JP", serif;
    --max-width: 1392px;
}
/* 全体の設定 */

::-moz-selection {
    background: var(--main-color-b);
    opacity: 0.5;
    color: fff;
    text-shadow: 1px 1px 0 var(--main-color-c);
}

::selection {
    background: var(--main-color-b);
    opacity: 0.5;
    color: fff;
    text-shadow: 1px 1px 0 var(--main-color-c);
}
/* BODY */

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
body {
    font-family: var(--font-gothic);
    font-size: 16px;
    font-optical-sizing: auto;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: var(--text-color);
    background: linear-gradient(180deg, var(--main-color-a) 0%, var(--main-color-a) 98px, #fff 98px, #fff 100%);
}

/* ヘッダ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--main-color-a);
    padding: 1rem 0;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    .logo {
        height: 66px;
        a{
            display: flex;
            gap:1rem;
            img.header_logo{
                max-height: 66px;
            }
        }
    }
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 20px;
    }

}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
}

/*　上に上がる動き　*/

#header.UpMove{
	-webkit-animation: UpAnime 0.5s forwards;
	        animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
	-webkit-animation: DownAnime 0.5s forwards;
	        animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

.main-navigation .menu {
    display: flex;
    gap: 2rem;
    li+li{
        position: relative;
        &::before{
            content: "";
            display: block;
            height: 1em;
            border-left: 1px solid #fff;
            position: absolute;
            top: 0;
            bottom: 0;
            left: -1rem;
            margin: auto;
            opacity: 0.5;
        }
    }
}
.main-navigation .menu a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

#main{
    display: flex;
    flex-direction: column;
    gap: 240px;
}



/* タップダウンアイコン */
.container_06 {
  height: 300px;
  background-color: #a9cbc5;
	display: none;
}

.scroll-down_06 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
	white-space: nowrap;
}

.circle-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom:12px;
  margin-inline: auto;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

.circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* パンくずリスト */
.breadcrumb{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 0;
    font-size: 14px;
    .breadcrumbs{
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    a{
        text-decoration: none;
        color: var(--main-color-a);
        &:hover{
            text-decoration: underline;
        }
    }
    .arrow{
        display: flex;
        align-items: center;
    }
}

@media all and (max-width: 768px) {
    .breadcrumb{
        font-size: 12px;
        padding: 1rem;
    }
}

/* Intro Section */
.intro {
    h2 {
        font-size: 36px;
        font-family: var(--font-mintyo);
        font-weight: bold;
        line-height: calc(1em + 24px);
        letter-spacing: .12em;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
                writing-mode: vertical-rl;
        -webkit-text-orientation: upright;
                text-orientation: upright;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero {
        background: var(--main-color-a);
        color: #fff;
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 71fr 217fr;
        align-items: center;
        min-height: 640px;
        .hero_image{
            height: 100%;
            img{
                height: 100%;
                -o-object-fit: cover;
                   object-fit: cover;
            }
        }
    }
    .lead {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr;
        min-height: 460px;
        .logoimage{
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: center;
            img{
                width: 223px;
            }
        }
    }
    .leadtext{
        background: var(--main-color-c);
        color: #fff;
        display: grid;
        grid-template-columns: 1fr 3fr;
        h3{
            font-size: 36px;
            font-family: var(--font-mintyo);
            font-weight: bold;
            line-height: calc(1em + 24px);
            letter-spacing: .12em;
            -ms-writing-mode: tb-rl;
            -webkit-writing-mode: vertical-rl;
                    writing-mode: vertical-rl;
            -webkit-text-orientation: upright;
                    text-orientation: upright;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .leadtext_content{
            display: flex;
            flex-flow: column;
            justify-content: center;
            padding-right: 72px;
            &::before{
                content: "VISION & VALUE";
                font-family: var(--font-mintyo);
                font-size: 12px;
                display: block;
                padding-bottom: 24px;
            }
        }
    }
    p{
        font-size: 16px;
    }
}

.section-title{
    font-family: var(--font-mintyo);
    font-size: 36px;
    font-weight: bold;
    line-height: calc(1em + 24px);
    letter-spacing: .12em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    &.title_c1{
        &::before{
            content: '';
            display: block;
            height: 24px;
            width: calc(24px * 5);
            background-image: repeating-linear-gradient(90deg, var(--main-color-a), var(--main-color-a) 24px, transparent 24px, transparent 48px);
        }
    }
    &.title_c2{
        &::before{
            content: '';
            display: block;
            height: 24px;
            width: calc(24px * 5);
            background-image: repeating-linear-gradient(90deg, var(--main-color-b), var(--main-color-b) 24px, transparent 24px, transparent 48px);
        }
    }
    &.title_c3{
        &::before{
            content: '';
            display: block;
            height: 24px;
            width: calc(24px * 5);
            background-image: repeating-linear-gradient(90deg, var(--main-color-c), var(--main-color-c) 24px, transparent 24px, transparent 48px);
        }
    }
    &::after{
        content: attr(data-subtitle);
        font-size: 12px;
        letter-spacing: 0.01em;
        border-top: 1px solid var(--text-color);
        max-width: calc(24px* 5);
        white-space: nowrap;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.activity-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    .activity-card-image{
        img{
            width: -webkit-fill-available;
            width: -moz-available;
            width: stretch;
            max-width: 100%;
            vertical-align: bottom;
        }
    }
    .activity-card{
        display: grid;
        grid-template-rows: auto auto 1fr auto;
		background-color: color-mix(in srgb, var(--main-color-a) 5%, transparent);
        h3{
            font-size: 18px;
            font-family: var(--font-gothic);
            font-weight: bold;
            line-height: calc(1em + 24px);
            letter-spacing: .12em;
            padding: 0 24px;
			position: relative;
            color: #fff;
            background-color: color-mix(in srgb, var(--main-color-a) 75%, transparent);
            width: 100%;
            top: -2rem;
            -webkit-backdrop-filter: blur(3px);
                    backdrop-filter: blur(3px);
        }
        p{
            font-size: 16px;
            padding: 0 22px 22px 22px;
        }
        .read-more{
           align-self: end;
        }
    }
}
.read-more{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background-color: var(--text-color);
    padding: .5rem;
    margin: 22px;
    border-radius: 2rem;
}
.cta_btn{
    width: 286px;
    margin: 22px auto 0;
    font-weight: bold;
}

.prof_body{
    display: grid;
    grid-template-columns: 3fr 2fr;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 24px;
}
/* Google Map */
.map {
  width: 100%;
  padding: 38px 0;
}
/* Google Mapのiframe */
.map iframe {
  width: 100%;
  height: 100%;
}
#speclist{
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    margin: 1em auto;
    border-collapse: separate;
    border-spacing: 0 22px;
    font-size: 16px;
    border: none;
    th{
        width: 330px;
        font-size: 20px;
        background: var(--main-color-c);
        vertical-align: middle;
        text-align: left;
        overflow: visible;
        position: relative;
        color: #fff;
        font-weight: 400;
        font-weight: bold;
        padding: 22px 20px;
        &::after{
            left: 100%;
            top: 50%;
            border: solid transparent;
            content: "";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(136, 183, 213, 0);
            border-left-color: var(--main-color-c);
            border-width: 10px;
            margin-top: -10px;
        }
    }
    td{
        background: #f8f8f8;
        width: auto;
        padding: 20px 20px 20px 42px !important;
        border: none;
    }
}

.prof_submenu{
    max-width: var(--max-width);
    background-color: var(--main-color-c);
    margin: 0 auto;
    padding: 44px;
    ul{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 22px;
        a{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            font-weight: bold;
            text-decoration: none;
            color: var(--text-color);
            background-color: #fff;
            padding: 0 2rem;
            border-radius: 2rem;
            width: -webkit-fill-available;
            width: -moz-available;
            width: stretch;
            height: 44px;
        }
    }
}
#info{
    .newsbox{
        max-width: var(--max-width);
        margin: 0 auto;
        #newsList{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            li{
                display: flex;
                gap: 1rem;
                align-items: center;
                width: -webkit-fill-available;
                width: -moz-available;
                width: stretch;
                padding: 24px 0 0 0;
                border-top: 2px dashed var(--main-color-b);
                &:last-child{
                    padding-bottom: 24px;
                    border-bottom: 2px dashed var(--main-color-b);
                }
                .news_ctg{
                    display: inline-block;
                    padding: .25rem .5rem;
                    border-radius: .25rem;
                    color: #fff;
                    background-color: var(--text-color);
                }
                .newMark {
                    position: relative;
                    background: var(--main-color-b);
                    color: #fff;
                    padding: .25rem .5rem;
                    border-radius: 1rem;
                    display: inline-flex;
                    font-weight: bold;
                    justify-content: center;
                    align-items: center;
                    font-size: .8rem;
                    text-shadow: 1px 1px color-mix(in srgb, var(--text-color) 50%, transparent);
                    &::after{
                        content: "";
                        position: absolute;
                        bottom: 10px;
                        left: -7px;
                        border-width: 4px;
                        border-style: solid;
                        border-color: transparent var(--main-color-b) transparent transparent;
                    }
                }
            }
        }
    }
}


/* すべてのサブメニューを非表示に */
.main-navigation .sub-menu {
  display: none;
  position: absolute;
  z-index: 1000;
	background: var(--main-color-a);
	padding: 24px;
	a{
		white-space: nowrap;
	}
}

/* 親メニューにマウスオーバーしたときに直下のサブメニューを表示 */
.main-navigation li:hover > .sub-menu {
  display: block;
}

/* サブメニュー内でさらに下層のメニューがある場合、親要素を相対位置に */
.main-navigation .sub-menu .menu-item-has-children {
  position: relative;
}

/* 下層のサブメニューは、親サブメニューの右側に表示（必要に応じて top や left の値を調整） */
.main-navigation .sub-menu .menu-item-has-children:hover > .sub-menu {
  top: 0;
  left: 100%;
}

/* Footer */
.site-footer {
    background: var(--text-color);
    color: #fff;
    padding: 24px 0;
    .logos{
        display: flex;
        justify-content: center;
        img{
            width: 146px;
        }
    }
    h3{
        font-size: 20px;
        margin-top: 60px;
    }
    h4{
        font-size: 20px;
    }
    .container{
        max-width: var(--max-width);
        margin: 0 auto;
    }
    .footer-menu-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr) 2fr;
        gap: 24px;
    }
    .footer-menu-shibu{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .footer-menu{
        ul{
            padding: 24px 0 0 1rem;
            display: flex;
            flex-direction: column;
            gap: .5em;
            font-size: .8rem;
            li{
                a{
                    color: #fff;
                    text-decoration: none;
                }
            }
        }
    }
}


/* 下層ページ */
.top_title{
    display: grid;
    grid-template-columns: 1fr 1fr;
    h1{
        font-family: var(--font-mintyo);
        font-size: 32px;
        font-weight: bold;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--text-color);
        background-color: color-mix(in srgb, var(--main-color-a) 30%, transparent);
        position: relative;
        text-align: center;
        padding: 0 4em;
    }
    .thumbnail{
        position: relative;
        img{
            display: block;
            aspect-ratio: 16 / 9;
            -o-object-fit: cover;
               object-fit: cover;
        }
    }
}
.content_body{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 44px 0;
    h2{
        font-size: 24px;
        font-family: var(--font-gothic);
        font-weight: bold;
        line-height: calc(1em + 24px);
        letter-spacing: .12em;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background: rgba(4, 155, 169, 0.1);
        padding: .8em 1em;
        margin: 44px 0;
        position: relative;
        &::before, &::after{
            content: '';
            position: absolute;
            width: 1.8em;
            height: 1.8em;
        }
        &::before{
            border-left: solid 3px;
            border-top: solid 3px;
            top: 0;
            left: 0;
        }
        &::after{
            border-right: solid 3px;
            border-bottom: solid 3px;
            bottom: 0;
            right: 0;
        }
        &:not(:first-of-type) {
            margin-top: 240px;
        }
    }
    .columun2{
        display: grid;
        gap: 24px;
        &.has-image {
            grid-template-columns: 1fr 1fr;
        }
        &.no-image{
            grid-template-columns: 1fr 1fr;
        }
    }
    .text_content{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}
aside#activities{
    margin: 240px 0;
}
.relation_nav{
    ul{
        display: flex;
        gap: 24px;
        flex-direction: row;
        flex-wrap: wrap;
        li{
            padding: 12px 0;
            a{
                text-decoration: none;
                color: #fff;
                background-color: var(--text-color);
                padding: 12px 48px;
                border-radius: 24px;
                white-space: nowrap;
            }
        }
    }
}


.page-template-park-list {

	h2{
		&::after,&::before{
			display: none;
		}
	}
	.park-list{
		position: relative;
		.gbimage{
			position: absolute;
			top: 0;
			right: 0;
			transform: scale(0.5);
			transform-origin: top center;
			img{
					-webkit-user-select: none;
					   -moz-user-select: none;
					    -ms-user-select: none;
					        user-select: none;
				}
		}
		h2,.activity-grid{
				max-width: 100%;
				margin: 24px 0 0;
				.read-more{
					background-color: #fff;
					color: var(--text-color);
				}
			}
		&.area1{
			h2,.activity-card,.p-postList__item a{
				background-color: rgb(34 156 178 / .3);
                .p-postList__body{
                    padding: 1em;
                }
			}
		}
		&.area2{
			h2,.activity-card,.p-postList__item a{
				background-color: rgb(189 210 106 / .3);
                                .p-postList__body{
                    padding: 1em;
                }
			}
		}
		&.area3{
			h2,.activity-card,.p-postList__item a{
				background-color: rgb(114 172 81 / .3);
                                .p-postList__body{
                    padding: 1em;
                }
			}
		}
	}
	&.park-branch{
		h2{
				max-width: 100%;
		}
		.activity-grid{
			max-width: 50%;
		}
	}
}

/*========= ぼかしのためのCSS ===============*/

.mainblur{
	-webkit-filter: blur(5px);
	        filter: blur(5px);
}


/*========= ナビゲーションのためのCSS ===============*/
.spnavi{
	display: none;
}
#g-nav{
    display: none;
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	left: 0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: rgb(34 156 178 / 50%);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
    display: block;
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	text-shadow: 0px 0px .5rem rgba(77, 77, 77, 1);
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:8px;
	right: 8px;
	cursor: pointer;
    width: 50px;
    height:50px;
}

/*×に変化*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


.maparea a:hover {
  opacity: 0.5;
}
.area1 .p-postList{
counter-reset: li-counter;
}
.area2 .p-postList{
counter-reset: li-counter 6;
}
.area3 .p-postList{
counter-reset: li-counter 15;
}
.p-postList__item {
  counter-increment: li-counter;
  position: relative;
}
.p-postList__item::before {
  content: counter(li-counter);
display: flex;
align-items: center;
justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: -.5rem;
    z-index: 1;
    color: #4d4d4d;
}
	.area1 .p-postList__item::before{
		border: 1px solid var(--main-color-a);
	}
	.area2 .p-postList__item::before{
		border: 1px solid var(--main-color-b);
	}
	.area3 .p-postList__item::before{
		border: 1px solid var(--main-color-c);
	}

/* 事業紹介ページ */
.business-page{
	position: relative;
}


/*--------------------------------------
    タブレット向けメディアクエリ
    max-width: 1024px を使用
---------------------------------------*/
@media screen and (max-width: 1024px) {
  
}

/*--------------------------------------
    スマホ向けメディアクエリ
     max-width: 768px を使用
---------------------------------------*/
@media screen and (max-width: 768px) {
			#info{
			.newsbox{
				#newsList{
					padding: 0 1rem;
					li{
						flex-direction: column;
						align-items: flex-start;
						position: relative;
						.news_ctg{
						position: absolute;
						right: 0;
					}
					.newMark {
						position: absolute;
						top: 1.5rem;
						left: 110px;
					}
					}
				}
			}
		}
	.content_body{
		padding: 0 1rem;
		h2{
			font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
			line-height: 1.5rem;
			text-wrap: auto;
		}
	}
	.section-title{
		font-size: clamp(1.875rem, 1.739rem + 0.68vw, 2.25rem);
	}
	.activity-grid{
		padding: 0 1rem;
	}
	.main-navigation{
		display: none;
	}
	.prof_body{
		grid-template-columns: 1fr;
		grid-template-rows: 3fr 2fr;
		gap: 1rem;
		padding-bottom: 1rem;
	}
	#speclist {
		margin: 0;
    border-spacing: 0 10px;
		padding: 0 1rem;
		th{
			width: 33vw;
			font-size: 12px;
			padding: 10px;
		}
		td{
			font-size: 10px;
			padding: 10px 10px 10px 20px;
		}
	}
	.map{
		padding: 0 1rem;
	}
	.spnavi{
		display: block;
	}
	.top_title{
		grid-template-columns: 1fr;
        position: relative;
		h1{
            position: absolute;
            order: 2;
            z-index: 1;
			font-size: 1.2rem;
            width: 100%;
			min-height: 100%;
            background-color: color-mix(in srgb, var(--main-color-a) 60%, transparent);
            color: #fff;
			&::before,&::after{
				display: none;
			}
		}
	}
	.site-header {
		.logo {
			height: 33px;
			a {
				img.header_logo {
					max-height: 33px;
				}
			}
		}
	}
	.prof_submenu {
		ul {
			grid-template-columns: 1fr;
		}
	}
		.intro {
			.hero {
				display: block;
				position: relative;
        height: 100vh;
			}
			.container{
				position: relative;
			}
			.container_06{
				position: absolute;
				bottom: 1rem;
				left: 50%;
				display: block;
				z-index: 9999;
			}
			h2 {
				position: absolute;
				top: 0;
				height: 100vh;
				z-index: 100;
				width: 100vw;
				background: rgb(34 156 178 / 50%);
				text-shadow: 0px 0px .5rem rgba(77, 77, 77, 1);
				font-size: clamp(1.875rem, 1.739rem + 0.68vw, 2.25rem);
				padding-top: 0;
				font-size: 1.1rem;
			}
			& .hero {
				.hero_image {
					height: 100%;
				}
			}
			.lead{
				grid-template-rows: 1fr;
				grid-auto-flow: row;
				grid-template-columns: 1fr;
				.logoimage{
					min-height: 50vh;
					img{
							width: 20vh;
					}
        }
				.leadtext{
					min-height: 50vh;
					h3{
						font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
					}
				}
			}
			p{
				font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
			}
		}
/* Footer */
.site-footer {
    background: var(--text-color);
    color: #fff;
    padding: 1rem 0;
    .logos{
        display: flex;
        justify-content: center;
        img{
            width: 96px;
        }
    }
    h3{
        font-size: 1.2rem;
        margin-top: 60px;
        padding-bottom: .5rem;
    }
    h4{
        font-size: 1rem;
    }
    .container{
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 1rem 1rem;
        p{
            text-align: center;
        }
    }
    .footer-menu-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 2rem;
    }
    .footer-menu-shibu{
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-menu{
        ul{
            padding: 24px 0 0 0;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: .5em 1rem;
            font-size: 0.8rem;
            li{
                position: relative;
                a{
                    color: #fff;
                    text-decoration: none;
                }
                &::before {
                    content: "";
                    position: absolute;
                    top: .3rem;
                    left: -.5rem;
                    width: 1px;
                    height: .8rem;
                    background: #fff;
                    opacity: .5;
                }
            }
        }
    }
}


/* 		事業紹介ページスマートフォン */
		.business-page,.park-page{
			.top_title{
				grid-template-columns: 1fr;
				h1{
					padding: 2rem 0;
					order: 2;
					font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
					&::after{
						display: none;
					}
					&::before{
						bottom: 1rem;
						height: 1px;
						width: calc(100vw - 2rem);
						opacity: 1;
					}
				}
			}
			h2{
				font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
				line-height: 1.5rem;
				text-wrap: auto;
			}
			.content_body{
				padding: 0 1rem;
			}
			.columun2{
				&.no-image, &.has-image{
					grid-template-columns: 1fr;
				}
			}
		}
/* 支部ページスマートフォン */

}


@media (min-width: 1000px) {
    [data-sidebar=on] .l-main {
        max-width: 100%;
        width: 100%;
    }
}

/* 画像のマージンを0にする */
figure.wp-block-image.size-full.is-style-default{
    margin-top: 0;
}