/* 67Greenレイアウト利用===========================*/
body{
    max-width: 1200px;
    margin: auto;
}
h1{
    color:green;
    font-size:250%;
}
/* div{
max-width:1200px;
margin-right:auto;
margin-left:auto;
} */
h1,h2,li,footer{
    text-align:center;
    font-family: "Kaisei Opti", serif;
    font-weight: 400;
}
/* li{
list-style:none;
width:33%;
float:left;
}
ul:after{
content:"";
display:block;
clear:both;
}
ul{
padding:0;
}
table{
width:100%;
}
th{
text-align:left;
}
.price{
text-align:right;
}
li a{
color:#000;
}
li a:hover{
text-decoration:none;
} */
/* header{
border-top:solid 10px #c2e08f;
} */
h2{
    background-image:url(../images/rose-s.jpg),url(../images/rose-s.jpg);
    background-repeat:no-repeat,no-repeat;
    background-position:left bottom,right bottom;
    height: 3rem;
    /* background-size:220px 28px; */
}
section{
    max-width: 80vw;
    box-shadow:0 0 10px 0 #ccc;
    margin:40px auto 0  auto;
    padding-top:10px;
    padding-right:20px;
    padding-bottom:10px;
    padding-left:20px;
    text-align: center;
}
/* th img{
border-radius:6px;
} */
#mainimg{
    display: block;
    margin: auto;
    border-radius: 43% 57% 51% 49% / 62% 41% 59% 38% ;
}

#map p{
    width: 50%;
    margin: 10px auto 10px auto;
    text-align: left;
}
img{
max-width:100%;
}
iframe{
max-width:100%;
}
/* @media(max-width:640px){
li{
width:auto;
float:none;
}
li a{
padding:1em;
margin-bottom:0.5em;
display:block;
background-color:#C2E08F;
border-radius:6px;
text-align:center;
text-decoration:none;
}
} */

/* ローディング(chapter4/02-demoより)==================*/
/* ローディング画面 */
#loading {
    transition: all 1s;
    background-color: #ddd;
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
}
.spinner {
    width: 200px;
    height: 200px;
}

/* ローディング完了したらローディング画面を隠す */
.loaded {
    opacity: 0;
    visibility: hidden;
}

/* コンテンツ部分 */
.gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
/* SLIDE MENU（chapter7/09-demoより）
================================================ */
/* 開閉ボタン */
.btn-menu {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 4;
    padding: .5rem 1rem;
    border: 1px solid #666;
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    transition: .4s;
    cursor: pointer;
}
.btn-menu svg {
    fill: #666;
    margin-top: .25rem;
    height: 2rem;
    width: 2rem;
}

/* 閉じるボタン */
#menu-close {
    border: 1px solid #666;
}
#menu-close svg {
    fill: #666;
}

/* スライドメニューパネル */
#menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4;
    padding: 8rem 2rem 2rem;
    width: max(32vw, 20rem);
    height: 100vh;
    background-color: #ddd;
    box-shadow: 0 0 2rem #ddd;
    /* font-family: var(--oswald-font); */
    translate: 100vw;
}
.menu-list {
    list-style: none;
}
.menu-list li {
    margin: 1.5rem 0;
    opacity: 0;
}
.menu-list a {
    color: var(--light-green);
    text-decoration: none;
    font-size: 2rem;
}

