@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
img{
    width: 100%;
    vertical-align: bottom;
}


/* common */
@media screen and (min-width:767px){
    .wrap{
        margin: 0 auto;
    }
}


/* index.html */
/* common */
@media screen and (min-width:767px){
    .wrap{
        margin: 0 auto;
    }
}

/* header ハンバーガーメニュー*/
.ham{
    width: 40px;
    height: 40px;
    border: 1px solid red;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 10px;
    right: 10px;
    border-radius: 5px;
}
@media screen and (min-width:767px) {
    .ham{
        display: none;
    }
}
.ham span{
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background-color: #000;
    transition: 1s;
    border-radius: 3px;
    
}
.menu-nav{
    background-color: #f2f8f8;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: 1s;
    pointer-events: none;
    

}
.menu-nav ul li{
    display: none;
    
}
@media screen and (min-width:767px) {
    .menu-nav ul li{
        display: block;
    }
}

.menu-nav.open{
    opacity: 1;
    pointer-events: all;
}
.ham.open span:first-child{
    transform: translateY(12px) rotate(45deg);
}
.ham.open span:nth-child(2){
    opacity: 0;
}
.ham.open span:last-child{
    transform: translateY(-11px) rotate(-45deg);
}



/* header */
header{


    padding: 10px 0;
    background-color: #f2f8f8;
}
@media screen and (min-width:767px) {
    header{

        padding: 10px 0;
    }
}
header .inner_header{
    width: 90%;
    margin: 0 auto;
}
@media screen and (min-width:767px) {
    header .inner_header{
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
}
header h1{
    text-align: center;
    font-size: 20px;
}
@media screen and (min-width:767px) {
    header h1{
        width: fit-content;
        font-size: 34px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
}
.inner_header h1 span{
    color: rgba(70, 184, 55, 0.692);
    
}
header .inner_header nav ul{
    display: flex;
    margin: 50px;
    justify-content:center;
    gap: 40px;
    padding: 5px;
}
@media screen and (min-width:767px) {
    header .inner_header nav ul{
        gap: 40px;       
    }
}



/* main */
.hero img{
    height: 90vh;
    object-fit: cover;
}
@media screen and (min-width:767px) {
    .sp-hero{
        display: none;
    }
}
.pc-hero{
    display: none;
}
@media screen and (min-width:767px) {
    .pc-hero{
        display: block;
    }
}
.section01{
    padding: 20px; 
}
.section01 h2{
    width: 80%;
    margin-bottom: 0 20px;
}
@media screen and (min-width:767px){
    .section01 h2{
        width: 80%;
        margin: 0 auto 20px;
        font-size: 30px;
    }

}
@media screen and (min-width:767px) {
    .flex_container{
        display: flex;
        justify-content: space-between;
        width: 80%;
        gap: 20px;
        margin: 50px auto;
    }
}
.flex_item{
    background-color: #ccc;
    padding: 10px;
    margin-bottom: 10px;
}
@media screen and (min-width:767px){
    .flex_item{
        min-width: 200px;

    }
}
.flex_item h3{
        font-size: 17em;
        font-weight: bold;
        padding: 20px;
        height: 18px;
}
@media screen and (min-width:767px){
    .flex_item h3{
        font-size: 20px;
        font-weight: bold;
        padding: 10px;
    }
}
.flex_item p{
        
        margin: 0 20px 0;
        padding: 0 10px;
        font-size: 0.8em;
        
    }
@media screen and (min-width:767px){
    .flex_item p{
        line-height: 1.5em;
        margin: 0 20px 0;
        padding: 0 10px;
        
    }
}
/* footer */
footer{

    font-size: 0.6em;
    padding: 5px;
    background-color: #f2f8f8;
    text-align: right;
}

@media screen and (min-width:767px){
    footer ul{
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
    }
}
@media screen and (min-width:767px){
    footer ul li{
        margin: 0 0 0 20px;
    }
}
footer ul li a,
footer ul li a:link,
footer ul li a:visited{
    transition: 0.7s;
    color: #000;
}
footer ul li a:hover{
    opacity: 0;
    color: #888;
}
@media screen and (min-width:767px){
    footer ul li a,
    footer ul li a:link,
    footer ul li a:visited{
    font-size: 1em;
}
}
footer p{
    margin: 1px;
    text-align: right;
    color: #888;
    padding-left: 2px;
}
@media screen and (min-width:767px){
    footer p{
        padding: 5px 2px;
        
    }

}



/* price.html */
/* common */
@media screen and (min-width:767px){
    .wrap{
        margin: 0 auto;
    }
}

/* header ハンバーガーメニュー*/
.ham{
    width: 40px;
    height: 40px;
    border: 1px solid red;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 10px;
    right: 10px;
    border-radius: 5px;
}
@media screen and (min-width:767px) {
    .ham{
        display: none;
    }
}
.ham span{
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background-color: #000;
    transition: 1s;
    border-radius: 3px;
    
}
.menu-nav{
    background-color: #f2f8f8;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: 1s;
    pointer-events: none;
    

}
.menu-nav ul li{
    display: none;
    
}
@media screen and (min-width:767px) {
    .menu-nav ul li{
        display: block;
    }
}

.menu-nav.open{
    opacity: 1;
    pointer-events: all;
}
.ham.open span:first-child{
    transform: translateY(12px) rotate(45deg);
}
.ham.open span:nth-child(2){
    opacity: 0;
}
.ham.open span:last-child{
    transform: translateY(-11px) rotate(-45deg);
}



/* header */
header{
    width: 375;
    padding: 10px 0;
    background-color: #f2f8f8;
}
@media screen and (min-width:767px) {
    header{

        padding: 10px 0;
    }
}

@media screen and (min-width:767px){
    header nav li::before{
    content: "★";
    
}
}

header .inner_header{
    width: 90%;
    margin: 0 auto;
}
@media screen and (min-width:767px) {
    header .inner_header{
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
}
header h1{
    text-align: center;
    font-size: 20px;
}
@media screen and (min-width:767px) {
    header h1{
        width: fit-content;
        font-size: 34px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
}
.inner_header h1 span{
    color: rgba(70, 184, 55, 0.692);
    
}
header .inner_header nav ul{
    display: flex;
    margin: 50px;
    justify-content:center;
    gap: 40px;
    padding: 5px;
}
@media screen and (min-width:767px) {
    header .inner_header nav ul{
        gap: 40px;       
    }
}



/* main */
.hero img{
    width: 100%;
    height: 90vh;
    object-fit: cover;
    border-radius: 25px;
}

.hero{
    position: relative;
}
.hero p{
    position: absolute;
    top: 15%;
    left: 20%;
    
    font-size: 3em;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 2px red;
    
}
@media screen and (min-width:767px){
    .hero{
    position: relative;
}
}
@media screen and (min-width:767px){
    .hero p{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-size: 4em;
        font-weight: bold;
        color: #fff;
        text-shadow: 5px 5px 5px red;
    }
}
@media screen and (min-width:767px) {
    .sp-hero{
        display: none;
    }
}
.pc-hero{
    display: none;
}
@media screen and (min-width:767px) {
    .pc-hero{
        display: block;
    }
}
.section01{
    padding: 20px; 
}
.section01 h2{
    width: 80%;
    margin-bottom: 0 20px;
    color: #73ea91;
    text-shadow: 2px 2px 3px #000;
}
@media screen and (min-width:767px){
    .section01 h2{
        width: 80%;
        margin: 0 auto 20px;
        font-size: 30px;
    }

}
@media screen and (min-width:767px) {
    .flex_container{
        display: flex;
        justify-content: space-between;
        width: 80%;
        gap: 20px;
        margin: 50px auto;
    }
}
.flex_item{
    background-color: #ccc;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid rgb(56, 146, 56);
    box-shadow: 5px 5px 5px #000;
    border-radius: 20px;
    
}
@media screen and (min-width:767px){
    .flex_item{
        width: 33%;

        

    }
}
.flex_item h3{
    color: rgb(162, 116, 31);
    text-shadow: 1px 1px 1px #000;
    font-weight: bold;
    font-size: 0.9em;
    padding: 0 0 20px 0;
    
}
@media screen and (min-width:767px){
    .flex_item h3{
        font-size: 20px;
        font-weight: bold;
        padding: 0 0 20px 0;
        margin-bottom: 10px;
        align-items: baseline;
        
    }
}
@media screen and (min-width:767px){
    .flex_item p{
        line-height: 1.5em;
        margin: 0 20px 0;
        padding: 0 10px;
        
    }
}
/* footer */
footer{

    font-size: 0.6em;
    padding: 5px;
    background-color: #f2f8f8;
    text-align: right;
}

@media screen and (min-width:767px){
    footer ul{
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
    }
}
@media screen and (min-width:767px){
    footer ul li{
        margin: 0 0 0 20px;
    }
}
footer ul li a,
footer ul li a:link,
footer ul li a:visited{
    transition: 0.7s;
    color: #000;
}
footer ul li a:hover{
    opacity: 0;
    color: #888;
}
@media screen and (min-width:767px){
    footer ul li a,
    footer ul li a:link,
    footer ul li a:visited{
    font-size: 1em;
}
}
footer p{
    margin: 1px;
    text-align: right;
    color: #888;
    padding-left: 2px;
}
@media screen and (min-width:767px){
    footer p{
        padding: 5px 2px;
        
    }

}




























/* contact.html */
/*  */
/* header ハンバーガーメニュー*/
.ham{
    width: 40px;
    height: 40px;
    border: 1px solid red;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    z-index: 999;
    top: 10px;
    right: 10px;
    border-radius: 5px;
}
@media screen and (min-width:767px) {
    .ham{
        display: none;
    }
}
.ham span{
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background-color: #000;
    transition: 1s;
    border-radius: 3px;
    
}
.menu-nav{
    background-color: #f2f8f8;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: 1s;
    pointer-events: none;
    

}
.menu-nav ul li{
    display: block;
    
}
@media screen and (min-width:767px) {
    .menu-nav ul li{
        display: block;
    }
}

.menu-nav.open{
    
    pointer-events: all;
    position: fixed;
    z-index: 99;
}
.ham.open span:first-child{
    transform: translateY(12px) rotate(45deg);
}
.ham.open span:nth-child(2){
    opacity: 0;
}
.ham.open span:last-child{
    transform: translateY(-11px) rotate(-45deg);
}


/* header */
header{
    padding: 10px 0;
    background-color: #f2f8f8;
}
.pc-nav{
    display: none;
}
@media (min-width:767px){
    .pc-nav{
    display: block;
}
.menu-nav{
    display: none;
}
}

header ul li a,
header ul li a:link,
header ul li a:visited{
    transition: 0.7s;
    color: #000;
}
header ul li a:hover{
    opacity: 0;
    color: #888;
}


@media screen and (min-width:767px) {
    header{
        
        padding: 10px 0;
        margin: 0 auto;
    }
}
header .inner_header{
    width: 90%;
    margin: 0 auto;
}
@media screen and (min-width:767px) {
    header .inner_header{
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        
    }
}
header h1{
    text-align: center;
    font-size: 20px;
    
}
@media screen and (min-width:767px) {
    header h1{
        width: fit-content;
        font-size: 70px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: center;
}
}
.inner_header h1 span{
    color: rgba(70, 184, 55, 0.692);
    
}
header .inner_header nav ul{
    display: flex;
    margin: 50px;
    justify-content:center;
    gap: 40px;
    padding: 5px;
}
@media screen and (min-width:767px) {
    header .inner_header nav ul{
        gap: 40px;       
    }
}
/* main */
dl{
    width: 100%;
    border-top:  1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
@media screen and (min-width:767px) {
    dl{
        width: 100%;
        margin: 0 auto;  
    }
}
dl dt{
    font-weight: bold;
    padding: 1px;
    color: #998484;
    margin-left: 5px;
}
@media screen and (min-width:767px){
    dl dt{
        float: left;
        margin-left: 30px;
    }
}
dl dd{
    padding-left: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
@media screen and (min-width:767px){
    dl dd{
        padding: 1em 1em 1em 18em;
        width: 100%;
    }
}

dl dt .must{
    color: #d23939;
    
}
@media screen and (min-width:767px) {
    input[type="email"]{
        width: 50%;
    }
}
input{
    padding: 1px;
    margin: 1px;
}
@media screen and (min-width:767px) {
    input{
        font-size: 1em;
        padding: 5px;
    }
}
label{
    margin-right: 1em;
}
@media screen and (min-width:767px){
    label{
        margin-right: 1em;
    }
}
@media screen and (min-width:767px){
    select{
        font-size: 1em;
    }
}
textarea{
    width: 20em;
    padding: 5px;
}
@media screen and (min-width:767px){
    textarea{
        width: 30em;
        font-size: 1em;
    }
}
P.submit{
    text-align: center;
    margin: 0 auto;
}
@media screen and (min-width:767px){
    P.submit{
        
        text-align: center;
    }

}

input[type="submit"]{
        padding: 5px 20px;
        background-color: #7f6666;
        color: #fff;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        margin: 10px;
    }
@media screen and (min-width:767px){
    input{
        margin: 10px;
        padding: 10px 10px;
        font-size: 1em;
    }
}

@media screen and (min-width:767px){
    dl{
        background-color: #ede5e5;
        margin: 0 auto;
        justify-content: center;
    }
}
/* footer */
footer{
    font-size: 0.6em;
    padding: 5px;
    background-color: #f2f8f8;
    text-align: right;
}
@media screen and (min-width:767px){
    footer{
       
        margin: 0 auto;
    }
}
@media screen and (min-width:767px){
    footer ul{
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
    }
}
@media screen and (min-width:767px){
    footer ul li{
        margin: 0 0 0 20px;
    }
}
footer ul li a,
footer ul li a:link,
footer ul li a:visited{
    transition: 0.7s;
    color: #000;
    font-weight: bold;
}
footer ul li a:hover{
    opacity: 0;
    color: #888;
}
@media screen and (min-width:767px){
    footer ul li a,
    footer ul li a:link,
    footer ul li a:visited{
    font-size: 1em;
}
}
footer p{
    margin: 1px 1px 0 0;
    text-align: right;
    color: #888;
    padding-left: 2px;
    margin: 5px;
}
@media screen and (min-width:767px){
    footer p{
        padding: 5px;
        
    }

}


/* access */
.map iframe{
    width: 375px;

}
@media screen and (min-width:767px){
    .map iframe{
    width: 100%;
    margin: 0 auto;
    
}
}




/* main */
main .title{
    padding: 20px;
    background-color: #f2f8f8;
}
@media screen and (min-width:767px){
    main .title{
        padding: 50px;

    }
    
}
.inner-access{
    padding: 10px;
    margin: 0 auto;
}
@media screen and (min-width:767px){

    .inner-access{
        width: 100%;
        padding: 50px;
    }
}
main .title h1{
    margin: 0 auto;
    
    font-size: 20px;
    color: #00b6bd;
}
@media screen and (min-width:767px){
    main .title h1{
        line-height: 1em;
        font-size: 40px;

    }

}
main .title ol{
    margin: 10px 0 0;
    padding: 0;
    display: flex;
}
@media screen and (min-width:767px){
    main .title ol{
        margin: 30px 0 0;

    }
    

}

@media screen and (min-width:767px){


    main .title ol li{
    font-size: 13px;
    }
}
main .title ol li::after{
    content: ">";
    margin: 0 5px 0 10px;
    
}
main .title ol li:last-child::after{
    content: none;
}
main .table{
    width: 100%;
    margin-bottom: 30px;

}
@media screen and (min-width:767px){
    main .table{
    
    margin-bottom: 30px;
}
}
main table,
main table th,
main table td{
    border: solid 1px #ccc;
    border-collapse: collapse;
}

main table th{
    background-color: #f2f8f8;
    color: #00b6bd;
}
main ul{
    margin: 0 0 60px;
    padding: 0 0 0 20px;
}
.map iframe{
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width:767px){
    .map iframe{
    width: 100%;
    height: 90vh;
    margin: 0 auto;
    }
}
.cat iframe{
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width:767px){
    .cat iframe{
    width: 100%;
    height: 90vh;
    margin: 0 auto;
    }
}
/* access */
.catcat iframe{
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width:767px){
    .catcat iframe{
    width: 100%;
    height: 90vh;
    margin: 0 auto;
    }
}



/* price */
/* main */





main .title{
    
    background-color: #f2f8f8;
}
@media screen and (min-width:767px){
    main .title{
        padding: 50px;

    }
    
}
main .title h1{
    margin: 0 auto;
    
    font-size: 20px;
    color: #00b6bd;
}
@media screen and (min-width:767px){
    main .title h1{
        line-height: 1em;
        font-size: 40px;

    }

}
main .title ol{
    margin: 10px 0 0;
    padding: 0;
    display: flex;
}
@media screen and (min-width:767px){
    main .title ol{
        margin: 30px 0 0;

    }
    

}

@media screen and (min-width:767px){


    main .title ol li{
    font-size: 13px;
    }
}
main .title ol li::after{
    content: ">";
    margin: 0 5px 0 10px;
    
}
main .title ol li:last-child::after{
    content: none;
}
main .table{
    width: 100%;
    margin-bottom: 30px;

}
@media screen and (min-width:767px){
    main table tr{
        width: 375px;
    }
}
main table,
main table th,
main table td{
    border: solid 1px #ccc;
    border-collapse: collapse;
    margin-bottom: 20px;
   
}
@media screen and (min-width:767px){
    main table,
    main table th,
    main table td{
    border: solid 1px #ccc;
    border-collapse: collapse;
    
}}
main table th,
main table td{
    padding: 6px;
    font-weight: bold;
}

@media screen and (min-width:767px){

    main table td{
    padding-left: 20px;
    padding-right: 20px;
}
}
main table th{
    background-color: #f2f8f8;
    color: #00b6bd;
    width: 30%;
}
@media screen and (min-width:767px){
    main table th{
    background-color: #f2f8f8;
    color: #00b6bd;
    width: 30%;
    padding:0 10px;
    margin: 0 2px 0 2px;
}
}

main ul{
    margin: 0 0 60px;
    padding: 0 0 0 20px;
}
.home main .price-box{
     
    padding: 10px;
    
    margin-top: 30px;
}
   
@media screen and (min-width:767px){
    .home main .price-box{
        
        display: flex;
        justify-content: space-evenly;
        margin-top: 50px;
        gap: 40px;
        padding: 50px;
    
    
    margin-top: 50px;
    }
}
@media screen and (min-width:767px){
    .price-box div{
    width: 400px;
    }
    
}

.img-item {
   width: 100%;
   object-fit: cover;
   border: 1px solid #111;

}    
@media screen and (min-width:767px){
    .img-item{

   width: 100%;

   height: 415px;

   object-fit: cover; 

   border: 1px solid #111;

} 

.img-item img{
    width: 100%;
   height: 415px;
   object-fit: cover; 
   background-size: cover;
    
}
}
@media screen and (min-width:767px){
   
    .img-item img{
   height: 415px;
   object-fit: cover; 
    width: 100%;

    
}
}

/* price */




/* アニメーション */
@keyframes translate{
    0%{transform: translateX(-100px) rotate(0deg);}
    100%{transform: translateX(50px) rotatex(360deg);}
}
@media screen and (min-width:767px){
    .flex_item{
    transition: 0.8s;
    }

}
@media screen and (min-width:767px){
    .flex_item:hover{
    transform: scale(1.3);
}
}
@media screen and (min-width:767px){
.sample img{
    transition: 0.8s;
    }
}
@media screen and (min-width:767px){
.sample img:hover{
    transform: scale(1.3);
}
}
/* body */
body{
    background-image: url(../img/body_bg.gif);
}

/* price */
h3{
    color: #6ed378;
    text-shadow: 1px 1px 2px #000;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    text-align: center;

}
.about ul{
    text-align: center;
}
.about ul li{
    font-size: 15px;
    font-weight: bold;
    color: #57785b;
}
@media screen and (min-width:767px){
    .about ul li{
        font-size: 20px;
    }
}
.about ul li::before{
    content: "****";
    margin: 0 5px 0 10px;
    
}
.about ul li::after{
    content: "****";
    margin: 0 5px 0 10px;
    
}
.pop01 h2{
    margin: 10px 0;
    color: rgb(142, 101, 27);
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    text-shadow: 1px 1px 1px #000;
}
.pop01 h2::before{
    content: ">>>";
    margin: 0 5px 0 10px;
    
}
.pop01 h2::after{
    content: "<<<";
    margin: 0 5px 0 10px;
    
}

.title ol li,
title ol li a{
    font-weight: bold;
    font-size: 0.8em;
}

@media screen and (min-width:767px){
    .title ol li a,
    .title ol li{
    font-weight: bold;
    
    }
}


.box01{
    width: 200px;
    height: 100px;
    background-color: skyblue;
    animation: rainbow 5s linear 3 forwards;
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
@keyframes rainbow{
    0%{width: 0px;}
    100%{width: 100%;}
}
@media screen and (min-width:767px){
    @keyframes rainbow{
    0%{width: 0px;}
    100%{width: 100%;}
}

}
.box01 h1 span{
    color: rgba(70, 184, 55, 0.692);
}

.sabu h1{
    font-size: 0.9em;
    text-align: center;
}
@media screen and (min-width:767px){
    .sabu h1{
        font-size: 2em;
        font-weight: bold;
    }
}
.sabu02 h2{
    font-size: 0.8em;
    

}

@media screen and (min-width:767px){
    .sabu02 h2{
        font-size: 1.5em;
        font-weight: bold;
    }
}
.sabu03 h4 a,
.sabu03 h4 a:link,
.sabu03 h4 a:visited{
    transition: 0.7s;
    color: #000;
}
.sabu03 h4 a:hover{
    opacity: 0;
    color: #888;
}

