@charset "utf-8";
/* PC表示 */
html {
    color: #452929;
    font-size: 12px;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
header {
    z-index: 100;	
    position: relative;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.706);
    border-bottom: 8px solid rgb(63, 155, 83)!important;
}
.logo {
    position: absolute;
    top: 5px;
    left: 15px;
}
header .logo img {
    display: inline;
    margin-left: 5px;
    padding: 0;
    font-size: inherit;
    width: 200px;
}
header nav {
    display: inline-block;
    position: absolute;
    top: 22px;
    right: 0;
    width: auto;
    height: auto;
    margin-right: 15px;
    font-size: 1.4rem;
    opacity: 1;
}
header nav ul {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
}
header nav ul li {
    display: inline-block;
    height: 35px;
    border-radius: 2px;
    line-height: 35px;
}
header nav ul li a {
    display: block;
    padding: 0 15px;
    color: #452929;
    font-size: 1.6rem;
    text-decoration: none;
    transition: color .3s;
}
header nav ul li:hover a {
    opacity: 0.4;
}

#drawer_toggle {
    display: none;
}
/* メイン */
main {
    font-size: 1.6rem;
}
.top-banner {
    position: relative;
}

.top-banner p {
    position: absolute;
    display: inline-block;
    z-index: 5;
    background-color: #ffffff;
    top: 75%
}

.header-img {
    width: 100%;
    text-align: center;
}

.header-img img {
    width: 100%;
    height: auto;
    display: inline-block;
}


/* 中身 */
article {
    margin: auto 20px;
    margin-bottom: 50px;
    text-align: center;
    background-color: rgb(255, 255, 255);
}

p {
    margin: 5px 0;
    line-height: 1.5;
}
h1 {
    font-weight: 600;
    font-size: 20px;
}
.welcome_sm {
    display: none;
}
.welcome {
    display: contents;
}
.welcome h1 {
    margin: 15px 0;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgb(167, 167, 167) ;
}
.gallary h1 {
    margin: 15px 0;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgb(167, 167, 167) ;
}
/* おしらせ */
#information {
    margin-bottom: 50px;
}
#information h2 {
    box-sizing: border-box;
    width: 100%;
    padding-left: 15px;
    margin-top: 25px;
    background-color: rgb(63, 155, 83);
    color: #fff;
    font-weight: normal;
    line-height: 40px;
}
#information h2 span {
    display: none;
}
#information ul {
    list-style: none;
    font-size: 1.2rem;
}
#news {
	height: 120px;/*スクロールの高さ*/
	overflow-y: scroll;
}
#information ul li {
    padding: 5px 10px;
    text-align: left;
}
#information ul li:nth-child(even) {
    background-color: #e2f3d5;
}
#information ul li time {
    display: inline-block;
    padding-right: 10px;
    margin: 5px 0;
    font-size: 1.2rem;
}
.news_item {
    display: inline-block;
    background: #f6d5a2;
    border-radius: 14px;
    width: 6em;
    /* 親要素の文字サイズを基準 */
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }
#information ul li a {
    color:inherit;
    text-decoration: none;
}
#information ul li .news_content {
    display: inline-block;
    line-height: 1;
    border-bottom: dashed 1px #452929;
}

#information ul li .news_content::before {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 1.2rem;
    vertical-align: top;
    border-bottom: none!important;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
    text-align: center;
    padding: 0;
}


.slider img {
    width:40vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.7;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 40%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 5px solid rgb(248, 247, 247);/*矢印の色*/
    border-right: 5px solid rgb(255, 255, 255);/*矢印の色*/
    filter: drop-shadow(0 0 0.48rem rgb(0, 0, 0));
    height: 30px;
    width: 30px;
    z-index: 99;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: 25%;
    transform: rotate(-135deg);
    
}

.slick-next {/*次へ矢印の位置と形状*/
    right: 25%;
    transform: rotate(45deg);
}

/* ドットナビゲーションの設定 */

.slick-dots {
    text-align:center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 0;
}

.slick-dots li {
    display:inline-block;
    margin: 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:15px;/*ドットボタンのサイズ*/
    height:15px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:100vh;
    border: none;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
/* SNSの埋め込みを中央に揃えるコード */
.video-container, 
.instagram-container, 
.instagram-media {
    margin: 30px auto !important;
}

/* アクセス */
.map h1 {
    margin: 15px 0;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgb(167, 167, 167) ;
}
#access {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}
#access .access-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: unset;
    background:#fff;
    box-shadow: 0 2px 6px #ccc;
    width:90%;
    margin: 20px auto 20px auto;
}

#access .access-area .access-block{
    width:50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

#access .access-area .access-block h3{
    font-size: 18px;
    margin: 0 0 20px 0;
}

#access .access-area .access-block p{
    margin: 0 0 20px 0;
    line-height: 1.8;
}

#access .access-map{
    width:50%;
}

#access .iframe-wrap {
  position: relative;
  padding-bottom: 51.65%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  z-index: 2;
}

#access .iframe-wrap iframe,
#access .iframe-wrap object,
#access .iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:1040px) {
    #access .access-area .access-block,
    #access .access-map{
        width:100%;
    }   
    #access .access-area .access-block{
        padding:40px 20px;
    }
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* フッター */
footer {
    height: auto;
    background: linear-gradient(151.35deg, #84BB58 -1.17%, #EFC761 99.17%);
    font-size: large;
    margin-top: auto;
}
.footer-logo{
    text-align: center;
}
.footer-logo img{
    position: relative;
    text-align: center;
    width: 25%;
    margin: 10px;
}
.footer-contact {
    text-align: center;
    position: relative;
    height: auto;
}
.footer-contact_inner {
    text-align: center;
    display: inline-block;
    padding: 10px 20%;
    margin: 10px;
    margin-bottom: 20px;
    border-radius: 100vh;
    background-color: #fff;
    box-shadow: 0 0 4px #54514c;
}
.footer-contact_inner h4 {
    font-weight: normal;
}
.telnum {
    display: inline-block;
    margin-top: 10px;
    text-align: center
}
.footer-contact_inner dt {
    display: inline-block;
    vertical-align: middle;
}
.TEL {
    display: inline-block;
    vertical-align: middle;
    font-size: 3.5rem;
    font-weight: bold;
}

/* フッターナビ */
.FooterNav {
    text-align: center;
}

.FooterNav li {
    list-style: none;
    display: inline-block;
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 1.5;
    border-right: 1px solid #fff;
    text-decoration: none;
}
.FooterNav a {
    text-decoration: none;
    color: #fff;
}

/* コピーライト */
footer p {
    text-align: center;
}
footer p small {
    font-size: 1rem;
    line-height: 3em;
    color: #fff;
}

/* トップへ戻るボタン */
#page_top {
    width: 80px;
    position:fixed;
    right:20px;
    bottom:20px;
    cursor:pointer;
    z-index: 10;
    filter: drop-shadow(0px 2px 3px rgb(112, 112, 112));
}

/***************************************/
/****************スマホ表示*****************/
@media screen and (max-width: 767px) {
    html {
        font-size: 10px;
        width: 100%;
    }
    body {
        width: 100%;
    }
    header {
        z-index: 100;	
        position: fixed;
        width: 100%;
        height: 80px;
        background-color: rgba(255, 255, 255, 0.706);
        border-bottom: 8px solid rgb(63, 155, 83)!important;
    }
    .logo {
        position: absolute;
        top: 5px;
        left: 15px;
    }
    header .logo img {
        width: 50%;
        padding-top: 5px;
    }
    header nav {
        box-sizing: border-box;
        position: fixed;
        top: 80px;
        display: none;
        width: 100%;
        height: calc(100% - 60px);
        background: #fff;
        opacity: 0.9;
        /* 3. スライドメニューの場合 */
        display: block;
        right: -200%;
        transition: right .5s;
        /* ここまで */
        z-index: 998;
    }
    /* 3. スライドメニューの場合 */
    header nav.sp_open {
        right: 0;
        margin: 0;
    }
    /* ここまで */
    header nav ul {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    header nav ul li a {
        display: block;
        padding: 25px;
        border-radius: 5px;
        color: #452929;
        font-size: 1.8rem;
        text-align: center;
        text-decoration: none;
    }
    #drawer_toggle {
        z-index: 200;
        box-sizing: border-box;
        position: absolute;
        top: 10px;
        right: 0;
        display: inline-block;
        width: 70px;
        height: 60px;
    }
    #drawer_toggle span {
        position: absolute;
        top: 19px;
        left: 17px;
        display: inline-block;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background-color: #452929;
        vertical-align: top;
    }
    #drawer_toggle span:nth-child(2) {
        margin-top: 10px;
    }
    #drawer_toggle span:last-child {
        margin-top: 20px;
    }
    #drawer_toggle.open span {
        top: 29px;
        left: 14px;
        width: 35px;
        margin: 0;
    }
    #drawer_toggle.open span:first-child {
        transform: rotate(45deg);
    }
    #drawer_toggle.open span:nth-child(2) {
        display: none;
    }
    #drawer_toggle.open span:last-child {
        transform: rotate(-45deg);
    }
    /* ヘッダー画像 */
    .header-img {
        padding-top: 80px;
    }
    /* welcome */
    .welcome_sm {
        font-size: 1.5rem;
        display: contents;
        line-height: 1.5;
    }
    .welcome_sm h1 {
        margin: 15px 0;
        text-align: center;
        border-bottom: 1px solid rgb(167, 167, 167) ;
    }
    .welcome {
        display: none;
    }
    /* お知らせ */
    #information ul {
        font-size: 1.2rem;
    }
    #information ul li time {
        display: block;
    }
    #information ul li p::before {
        margin-right: 5px;
    }
    /*矢印の設定*/
    /*戻る、次へ矢印の位置*/
    .slick-prev, 
    .slick-next {
        top: 30%;
        height: 20px;
        width: 20px;
    }
    /* アクセス */
    #access .access-area{
        flex-wrap: wrap;
    }
    .footer-contact_inner {
        display: block;
    }
    #page_top {
        width: 40px;
        right: 5px;
        bottom: 40px;
    }
    #page_top span {
        margin-right: 0;
    }
    #page_top img {
        text-align: right;
        width: 40px;
    }
    /* フッターロゴ画像 */
    .footer-logo img{
        width: 40%;
    }
    /* フッター */
    .footer-contact {
        font-size: 1.3rem;
    }
    .TEL {
        font-size: x-large;
    }
}



@media (min-width: 1000px) {
    main {
        width: 1000px;
        margin: 0 auto;
    }
}