@charset "UTF-8";
html{
  height:100%;
}
header {
    width: 100%;
    height: 100%;
}
/*------------------------------------------------------------mainphoto*/
#mainimage {
    width: 100%;
    height: calc(100% - 70px);
    background: url("../img/index_img/bg_mainimage.jpg") center center no-repeat;
    background-size: cover;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}
#mainimage h2 {
    position: absolute;
    bottom: 30px;
    right: -15px;
}
#mainimage h2 img {
    width: 335px;
    height: auto;
}
a.scroll_anim {
    position: absolute;
    left: 50%;
    bottom: 35px;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
}
a.scroll_anim span {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 99;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-10px, 10px);
    opacity: 0;
  }
}
@media print, screen and (min-width:576px) {
    #mainimage h2 img {
        width: 390px;
    }
}
@media print, screen and (min-width:768px) {
    #mainimage {
        height: calc(100% - 104px);
        margin-top: 82px;
    }
    #mainimage h2 {
        bottom: 35px;
        right: -15px;
    }
    #mainimage h2 img {
        width: 489px;
    }
    a.scroll_anim {
        bottom: 50px;
    }
    a.scroll_anim span {
      width: 20px;
      height: 20px;
      margin-left: -10px;
    }
}
@media print, screen and (min-width:992px) {
    #mainimage {
        height: calc(100% - 94px);
        margin-top: 72px;
    }
    #mainimage h2 {
        bottom: 35px;
        right: -15px;
    }
    #mainimage h2 img {
        width: 652px;
    }
}
@media print, screen and (min-width:1200px) {
    #mainimage {
        height: calc(100% - 114px);
        margin-top: 92px;
    }
    #mainimage h2 {
        bottom: 35px;
        right: -15px;
    }
}
/*------------------------------------------------------------content*/
/* greeting */
#greeting {
    background: #f0e093;
}
#greeting .container {
    background: radial-gradient(circle, rgba(255,252,220,1) 0%, rgba(240,224,147,1) 100%);
    padding: 40px 15px;
}
#greeting h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
#greeting h3 .style01 {
    font-size: 1.2em;
}
#greeting h3 .style02 {
    color: #fdb00a;
    font-size: 1.4em;
}
#greeting p {
    text-align: left;
}
@media print, screen and (min-width:768px) {
    #greeting .container {
        padding: 60px 15px;
    }
    #greeting h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    #greeting p {
        text-align: center;
        line-height: 2;
    }
}
@media print, screen and (min-width:992px) {
    #greeting .container {
        padding: 80px 15px;
    }
    #greeting h3 {
        font-size: 36px;
        margin-bottom: 24px;
    }
    #greeting p {
        font-size: 18px;
    }
}
@media print, screen and (min-width:1200px) {
    #greeting h3 {
        font-size: 40px;
    }
}
/* pickup */
#pickup {
}
#pickup ul {
}
#pickup ul li {
    position: relative;
    overflow: hidden;
}
#pickup ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 40px 0;
    position: relative;
}
#pickup ul li:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    transition: all .5s;
}
#pickup ul li:nth-child(1):before {
    background: url("../img/index_img/bg_pickup01.jpg") no-repeat center;
    background-size: cover;
}
#pickup ul li:nth-child(2):before {
    background: url("../img/index_img/bg_pickup02.jpg") no-repeat center;
    background-size: cover;
}
#pickup ul li:hover:before {
    -ms-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}
#pickup ul li a h3 {
    font-size: 15px;
    line-height: 1.1;
    margin-bottom: 30px;
}
#pickup ul li a h3 span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
}
#pickup ul li a .btn {
    width: 260px;
    height: 42px;
    line-height: 42px;
    border: 1px solid #fff;
    border-radius: 50px;
    margin: 0 auto;
}
#pickup ul li a:hover .btn {
    color: #fdb00a;
    background: #fff;
}
@media print, screen and (min-width:768px) {
    #pickup ul {
        display: flex;
    }
    #pickup ul li {
        width: 50%;
        min-height: 342px;
    }
    #pickup ul li a {
        padding: 80px 0;
    }
    #pickup ul li a h3 {
        font-size: 21px;
        margin-bottom: 40px;
    }
    #pickup ul li a h3 span {
        font-size: 60px;
    }
    #pickup ul li a .btn {
        height: 48px;
        line-height: 48px;
    }
}

/* news */
#news {
    padding: 35px 0;
}
#news .link {
    text-align: right;
}
#news .link a {
    color: #292725;
}
#news .link a:hover {
    color: #fdb00a;
}
@media print, screen and (min-width:768px) {
    #news {
        padding: 52px 0;
    }
}
@media print, screen and (min-width:992px) {
    #news {
        padding: 70px 0;
    }
}
@media print, screen and (min-width:1200px) {
    #news {
        padding: 70px 0 40px;
    }
    #news .inner {
        display: flex;
        justify-content: space-between;
    }
    #news .link {
        display: flex;
        align-items: flex-end;
    }
    #news .link a {
        -ms-transform: translateY(-26px);
        -webkit-transform: translateY(-26px);
        transform: translateY(-26px);
    }
}
/*更新プログラム(連動)フォーマット*/
#news01 {
    width: 100%;
    overflow: hidden;
}
#news01 dl {
    text-align: left;
    padding: 0 0 10px 0;
}
#news01 dl dt {
    color: #9f9f9e;
}
#news01 dl dd div.newstitle {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#news01 dl dd div.newstitle:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fdb00a;
    font-size: 1.125em;
    margin-right: 8px;
}
#news01 dl dd div.newstitle a {
    color: #292725;
    text-decoration: none;
}
#news01 dl dd div.newstitle a:hover {
    text-decoration: underline;
}
@media print, screen and (min-width:768px) {
    #news01 dl dt {
        float: left;
        margin-top: 3px;
    }
    #news01 dl dd {
        padding: 0 0 0 102px;
    }
    #news01 dl dd div.newstitle:before {
        margin-right: 16px;
    }
}
@media print, screen and (min-width:1200px) {
#news01 {
    width: 813px;
}
}
/*更新プログラム(TOP完結)フォーマット*/
#news02 {
    width: 100%;
    height: 300px;
    border: 1px solid #ccc;
    padding: 15px;
    overflow-y: auto;
}
#news02 .newsbox {
    overflow: hidden;/* for modern browser */
}
#news02 .newsbox .news_text_area {
    zoom: 1;/*ie6*/
    overflow: hidden;
}
#news02 .newsbox .news_text {
    line-height: 1.5;
}
#news02 .newsbox img {
    margin-bottom: 10px;
}
#news02 .newsbox a:hover img {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha( opacity=60 )";
}
#news02 .newstitle {
    font-size: 16px;
    font-weight: bold;
    color: #6D6D6D;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #6D6D6D;
}
#news02 .newstitle span {
    font-size: 12px;
}
#news02 .pdf_link {
    margin-top: 10px;
}
#news02 .pdf_link li {
    margin-bottom: 5px;
    text-align: left;
}
#news02 .pdf_link li a {
    padding: 2px 0 2px 28px;
    display: inline-block;
    line-height: 1.4;
    text-decoration: underline;
    background: url(../img/common_img/icon_pdf.png) left top no-repeat;
    background-size: auto 22px;
}
#news02 .pdf_link li a:hover {
    text-decoration: none;
}
@media print, screen and (min-width:768px) {
    #news02 {
        height: 400px;
        padding: 30px;
    }
    #news02 .newstitle br {
        display: none;
    }
}
/*Googlemap*/
#googlemap iframe {
    display: none;
}
.mapbtn {
    background: #666;
    border-radius: 4px;
    margin: 0 auto;
    text-align: center;
    width: 100px;
}
.mapbtn a {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 10px;
}
.mapbtn a:hover {
    text-decoration: underline;
}
@media print, screen and (min-width:768px) {
    #googlemap iframe {
        display: block;
    }
    .mapbtn {
        display: none;
    }
}