@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
:root {
    
    --main-color: #0E6EB8;
    
    --bg-color: #F7F7F7;
    
    --font-basic-color: #333333;
}
::selection {
    background: var(--main-color);
    color: #fff;
}
::-moz-selection {
    background: var(--main-color);
    color: #fff;
}
header {
    z-index: 1000;
}
header::before {
    z-index: 1001;
}
header #siteTtl {
    z-index: 1002;
}
.navToggle {
    z-index: 1002;
}
.navArea {
    z-index: 999;
}
.open .navToggle {
    z-index: 1000;
}
#pageTop {
    z-index: 2;
}
footer {
    z-index: 1;
}
#top #content {
    z-index: 1;
}
html {
    height: 100%;
    width: 100%;
    font-size: 62.5% !important;
}
body {
    width: 100%;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: normal;
    font-family: '筑紫A丸ゴシック','クレー','Yu Gothic', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #0E6EB8;
    background-color: var(--bg-color);
}
iframe,
table {
max-width: 100%;
}
#main .txtArea a,
#foot-area a {
    background-image: linear-gradient(var(--font-basic-color), var(--font-basic-color));
    color: var(--font-basic-color);
    background-position: 0% 100%;
    background-size: 100% 1px;
    background-repeat: no-repeat;
    transition: background-size 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#main .txtArea a:hover,
#foot-area a:hover {
    background-position: 100% 100%;
    background-size: 0 1px;
    opacity: 0.7;
}
header {
    padding: 48px 120px;
    position: relative;
    width: 100%;
    transition: 0.4s ease-in-out;
    transition: margin-top 1s cubic-bezier(.6, 0, .25, 1);
    top: 0;
}
header::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    opacity: 0.9;
    top: 0;
    left: 0;
}
.open header {
    margin-top: -100%;
}
header #siteTtl {
    text-align: left;
    position: relative;
    transition: 0.4s ease-in-out;
}
.open header #siteTtl {
    opacity: 0;
}
header #siteTtl a {
    font-size: 4.5rem;
    text-decoration: none;
    color: var(--main-color);
    line-height: 1.0;
    transition: 0.4s ease-in-out;
}
header #siteTtl a:hover {
    opacity: 0.7;
}
header #siteTtl img {
    max-height: 200px;
    transition: 0.4s ease-in-out;
}
header.scroll #siteTtl img {
    max-height: 100px;
}
header.scroll {
    padding: 30px 120px;
}
header.scroll #siteTtl a {
    font-size: 3.5rem;
}
.navToggle {
    display: flex;
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 29px;
}
.open .navToggle {
    position: fixed;
    top: 66px;
    bottom: auto;
}
.navToggle:hover .navToggleIn span:nth-child(2) {
    transform: scaleX(1.2);
}
.navToggleIn {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    transition: transform 0.4s;
    box-sizing: border-box;
    cursor: pointer;
}
.navToggleIn span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
}
.navToggle.open .navToggleIn span {
    background-color: #fff;
}
.navToggleIn span:first-child {
    top: 0;
}
.navToggleIn span:nth-child(2) {
    top: 13px;
}
.navToggleIn span:last-child {
    bottom: 0;
}
.navToggle.open .navToggleIn span:first-child {
    transform: translateY(20px) rotate(-45deg);
    top: -7px;
}
.navToggle.open:hover .navToggleIn span:first-child {
    transform: translateY(20px) rotate(-35deg);
}
.navToggle.open .navToggleIn span:nth-of-type(2) {
    transform: translateY(0) rotate(45deg);
}
.navToggle.open:hover .navToggleIn span:nth-of-type(2) {
    transform: translateY(0) rotate(35deg);
}
.navToggle.open .navToggleIn span:last-child {
    opacity: 0;
}
.navArea {
    position: fixed;
    top: 0;
    height: 0vh;
    width: 100%;
    -webkit-transition: 1s cubic-bezier(.6, 0, .25, 1);
    transition: 1s cubic-bezier(.6, 0, .25, 1);
    background-color: var(--main-color);
    transition-delay: 0.3s;
    visibility: hidden;
    padding: 0 40px;
}
.open .navArea {
    height: 100vh;
    -webkit-transition: 1s cubic-bezier(.6, 0, .25, 1);
    transition: 1s cubic-bezier(.6, 0, .25, 1);
    transition-delay: 0.3s;
    visibility: visible;
}
.navArea>.inner {
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease .5s;
    padding: 130px 0px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}
.open .navArea>.inner {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 1s cubic-bezier(.6, 0, .25, 1);
    transition: 1s cubic-bezier(.6, 0, .25, 1);
    transition-delay: 1.1s;
}
.navArea a {
    text-decoration: none;
}
.navArea ul {
    list-style: none;
}
.navArea ul li {
    display: block;
}
#mainNav {
    max-width: 500px;
    width: 100%;
    
    overflow-y: scroll;
    padding-bottom: 100px;
    margin-right: 30px;
    height: 100%;
}
#mainNav ul {
    font-weight: bold;
    list-style: none;
    padding-right: 30px;
}
#mainNav ul li.parent {
    margin-bottom: 35px;
}
#mainNav ul li.parent:last-child {
    margin-bottom: 0;
}
#mainNav ul li.parent a {
    color: #fff;
    transition: all 0.3s ease;
}
#mainNav ul li.parent a:hover {
    opacity: 0.7;
}
#mainNav ul li.parent>a {
    font-size: 2.8rem;
}
#mainNav ul li.parent .child {
    margin-top: 10px;
}
#mainNav ul li.parent .child li {
    margin-bottom: 7px;
}
#mainNav ul li.parent .child li:last-child {
    margin-bottom: 0;
}
#mainNav ul li.parent .child li a {
    font-weight: normal;
    font-size: 1.6rem;
}
#mainNav::-webkit-scrollbar {
    width: 14px;
}
#mainNav::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 9px;
}
.navArea .inner .rightArea {
    max-width: 330px;
    width: 100%;
    overflow-y: scroll;
    padding-right: 30px;
}
.navArea .inner .rightArea::-webkit-scrollbar {
    width: 14px;
}
.navArea .inner .rightArea::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 9px;
}
.navArea .inner .rightArea .headNav {
    margin-bottom: 16px;
}
.navArea .inner .rightArea .headNav li {
    margin-bottom: 16px;
    max-width: 300px;
}
.navArea .inner .rightArea .headNav li:last-child {
    margin-bottom: 0;
}
.navArea .inner .rightArea .headNav li a {
    font-size: 1.6rem;
    color: #fff;
    border: 1px solid #fff;
    width: 100%;
    display: block;
    text-align: center;
    padding: 17px;
    transition: all 0.3s ease-in-out;
}
.navArea .inner .rightArea .headNav li a:hover {
    color: var(--main-color);
    background-color: #fff;
}
.navArea .inner .rightArea #blog {
    max-width: 300px;
}
.navArea .inner .rightArea #blog a {
    font-size: 1.6rem;
    color: #fff;
    border: 1px solid #fff;
    width: 100%;
    display: block;
    text-align: center;
    padding: 17px;
    transition: all 0.3s ease-in-out;
}
.navArea .inner .rightArea #blog a:hover {
    color: var(--main-color);
    background-color: #fff;
}
.navArea .inner .rightArea #sns {
    margin: 60px 0 32px;
}
.navArea .inner .rightArea #sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.navArea .inner .rightArea #sns ul li {
    margin-right: 20px;
}
.navArea .inner .rightArea #sns ul li:last-child {
    margin-right: 0;
}
.navArea .inner .rightArea #sns ul li a {
    transition: all 0.3s ease-in-out;
}
.navArea .inner .rightArea #sns ul li a:hover {
    opacity: 0.7;
}
#mobile {
    margin-top: 32px;
}
#mobile .inner figure {
    width: 90px;
    margin: 0 auto;
}
#mobile .inner figure img {
    width: 100%;
    height: auto;
    padding: 10px;
}
#side-area {
    color: #fff;
    margin-top: 32px;
}
#side-area a {
    color: #fff;
    text-decoration: underline;
}
#side-area a:hover {
    text-decoration: none;
}
.mainSlideIn {
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0;
}
@supports (-webkit-touch-callout: none) {
    .mainSlideIn {
        
        height: -webkit-fill-available;
    }
}
.mainSlideIn .bx-wrapper {
    height: 100%;
}
.mainSlideIn .bx-wrapper .bx-viewport {
    height: 100% !important;
}
.mainSlideIn .bx-wrapper .bx-viewport ul li {
    height: 100%;
    z-index: 0;
}
.mainSlideIn .bx-wrapper .bx-viewport ul li img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}
.mainSlideIn .scrollSign {
    position: absolute;
    right: 36px;
    bottom: 0;
}
.mainSlideIn .scrollSign p {
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}
.mainSlideIn .scrollSign .bar {
    height: 210px;
    width: 2px;
    background-color: #fff;
    margin: 0 auto;
}
.mainSlideIn .scrollSign .bar .barIn {
    background-color: var(--main-color);
    height: 100%;
    width: 100%;
    -webkit-animation-name: a;
    animation-name: a;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes a {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
.bx-controls {
    position: absolute;
    bottom: 16px;
    left: 40px;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: static !important;
    bottom: auto !important;
    width: auto !important;
    padding-top: 0 !important;
    text-align: initial !important;
}
.bx-controls .bx-pager .bx-pager-item {
    margin-right: 10px;
}
.bx-controls .bx-pager .bx-pager-item:last-child {
    margin-right: 0;
}
.bx-controls .bx-pager .bx-pager-item .bx-pager-link {
    width: 40px;
    height: 20px;
    display: inline-block;
    overflow: hidden;
    text-indent: -9999px;
    position: relative;
}
.bx-controls .bx-pager .bx-pager-item .bx-pager-link::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    margin: auto;
}
.bx-controls .bx-pager .bx-pager-item .bx-pager-link.active::before {
    background-color: var(--main-color);
    width: 0;
    -webkit-animation-name: b;
    animation-name: b;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes b {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.noSlide header {
    position: relative;
}
.noSlide.fixed header {
    position: fixed !important;
}
.noSlide.fixed .mainImgIn {
    margin-top: 254px;
}
.noSlide .mainImgIn {
    margin-top: 100px;
}
.noSlide .mainImgIn .inner {
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.noSlide .mainImgIn .inner #mainImg {
    width: 365px;
}
.noSlide .mainImgIn .inner #leadTxt {
    width: calc(100% - 365px - 30px);
    font-size: 1.6rem;
    line-height: 1.875;
}
.leadTxtWrap {
    max-width: 1020px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
#pageTop {
    position: fixed;
    bottom: 30px;
    opacity: 0;
    transition: 0.2s ease-in-out;
    right: 20px;
}
#pageTop.show {
    opacity: 1;
}
#pageTop a {
    color: var(--main-color);
    font-size: 2.0rem;
    font-weight: bold;
    position: relative;
}
#pageTop a::before {
    content: '';
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(135deg);
    border-bottom: 4px solid var(--main-color);
    border-left: 4px solid var(--main-color);
    width: 35px;
    height: 35px;
    transition: all 0.2s ease-in-out;
}
#pageTop:hover a::before {
    top: -27px;
}
#pageTop.show.bottom {
    bottom: 50px;
}
#page header {
    
    
}
#page header.scroll {
    
}
#page header #siteTtl a {
    font-size: 3.5rem;
    max-height: 140px;
    display: block;
    overflow: hidden;
}
#page header #siteTtl img {
    max-height: 150px;
}
#page .pageTtl {
    font-size: 3.8rem;
    text-align: center;
    margin-top: 200px;
    line-height: 1.4;
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 490px)) 1fr;
    grid-column-gap: 40px;
    padding: 100px 0;
}
#page .pageTtl h2 {
    grid-column: 2 / 4;
    color: var(--main-color);
}
#top #content {
    margin-top: 100vh;
}
#top.noSlide #content {
    margin-top: 0;
}
#page #content {
    padding-top: 0;
}
#page #content #main .articleIn .articleBox:first-child {
    opacity: 1;
    transform: translateY(0);
}
#content {
    background-color: var(--bg-color);
    position: relative;
    padding: 50px 0 180px 0;
}
#content #main .articleIn {
    margin-bottom: 180px;
}
#top .articleIn {
    margin-top: 100px;
}
.articleIn {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 490px)) 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 180px;
}
.articleBox.Img {
    grid-column: 2 / 5;
}
.articleBox.Img.left {
    grid-column: 1 / 4;
}
.articleBox.noImg {
    grid-column: 2 / 4;
}
#content #main .articleIn .articleBox {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(300px, 630px) minmax(350px, auto);
    grid-template-rows: max-content;
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.7s;
}
#content #main .articleIn .articleBox .contTtl {
    font-size: 3.8rem;
    color: var(--main-color);
    line-height: 1.4;
    margin-bottom: 20px;
}
#content #main .articleIn .articleBox .txtArea {
    font-size: 1.6rem;
    line-height: 1.875;
}
#content #main .articleIn .articleBox .contArea,
#content #main .articleIn .articleBox .imgArea {
    grid-column: 1;
}
#content #main .articleIn .articleBox .firstImg {
    grid-column: 2;
    grid-row: 1 / 3;
}
#content #main .articleIn .articleBox .firstImg figure {
    width: 100%;
    position: relative;
}
#content #main .articleIn .articleBox .firstImg figure a {
    display: block;
}
#content #main .articleIn .articleBox .firstImg figure a:hover img {
    opacity: 0.7;
}
#content #main .articleIn .articleBox .firstImg figure img {
    width: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}
#content #main .articleIn .articleBox .firstImg figure span {
    display: none;
}
#content #main .articleIn .articleBox .firstImg figure::before {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 100%;
    background-color: var(--main-color);
    opacity: 0.1;
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}
#content #main .articleIn .articleBox .imgArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-row: 2;
}
#content #main .articleIn .articleBox .imgArea figure {
    margin-right: 6px;
    width: calc(100% / 3 - 4px);
}
#content #main .articleIn .articleBox .imgArea figure:last-child {
    margin-right: 0;
}
#content #main .articleIn .articleBox .imgArea figure img {
    width: 100%;
    transition: all 0.2s ease-in-out;
}
#content #main .articleIn .articleBox .imgArea figure span {
    display: none;
}
#content #main .articleIn .articleBox .imgArea figure a {
    display: block;
}
#content #main .articleIn .articleBox .imgArea figure a:hover img {
    opacity: 0.7;
}
#content #main .articleIn .articleBox.Img.left {
    grid-template-columns: minmax(350px, auto) minmax(300px, 630px);
}
#content #main .articleIn .articleBox.Img.left .firstImg {
    grid-column: 1;
}
#content #main .articleIn .articleBox.Img.left .contArea,
#content #main .articleIn .articleBox.Img.left .imgArea {
    grid-column: 2;
}
#content #main .articleIn .articleBox.Img.left .firstImg figure::before {
    right: -30px;
    left: auto;
}
#content #main .articleIn .articleBox.noImg {
    display: block;
}
.articleBox .txtArea table tbody tr td {
    border: 1px solid var(--font-basic-color);
    padding: 10px 15px;
}
.articleBox .txtArea hr {
    height: 1px;
    background-color: var(--font-basic-color);
}
.articleBox .txtArea ul {
    list-style-type: disc;
}
.articleBox .txtArea ol {
    list-style-type: decimal;
}
.articleBox .txtArea ul,
.articleBox .txtArea ol {
    margin-left: 2rem;
}
.articleBox .txtArea ul li,
.articleBox .txtArea ol li {
    margin-bottom: 5px;
}
.articleBox .txtArea ul li:last-child,
.articleBox .txtArea ol li:last-child {
    margin-bottom: 0;
}
#news {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.7s;
}
#news .contTtl {
    color: var(--main-color);
    font-size: 3rem;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 18px;
}
#news .inner {
    background-color: #fff;
    padding: 15px 15px 15px 40px;
}
#news .inner ul {
    max-height: 140px;
    overflow-y: scroll;
}
#news ul::-webkit-scrollbar {
    width: 14px;
    border-radius: 9px;
}
#news ul::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 9px;
}
#news ul::-webkit-scrollbar-track {
    background-color: var(--bg-color);
    border-radius: 9px;
    padding: 0 3px;
}
#news ul li {
    font-size: 1.6rem;
    position: relative;
    padding: 6px 0px 6px 90px;
    margin-right: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#news ul li .day {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: 8px;
}
#news ul li a {
    background-image: linear-gradient(var(--font-basic-color), var(--font-basic-color));
    color: var(--font-basic-color);
    background-position: 0% 100%;
    background-size: 100% 1px;
    background-repeat: no-repeat;
    transition: background-size 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#news ul li a:hover {
    background-position: 100% 100%;
    background-size: 0 1px;
    opacity: 0.7;
}
#foot-area {
    font-size: 1.6rem;
    max-width: 1100px;
    width: 100%;
    margin: 130px auto 0;
    line-height: 1.875;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.7s;
}
footer {
    background-color: var(--main-color);
    position: relative;
    padding: 6px 20px;
}
footer .copy {
    color: #fff;
    font-size: 1.2rem;
    text-align: right;
}
.map {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 490px)) 1fr;
    grid-column-gap: 40px;
}
.map #frame {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    margin-bottom: 50px;
}
.map #frame iframe { 
    width: 100%;
}
.map table,
.profile table {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    font-size: 1.6rem;
    line-height: 1.875;
    width: 100%;
}
.map table tr,
.profile table tr,
.form form table tr {
    border-bottom: 1px solid #CCC;
}
.map table tr:last-child,
.profile table tr:last-child,
.form form table tr:last-child {
    border-bottom: none;
}
.form form table tr:nth-last-of-type(2) {
    border-bottom: none;
}
.map table tr th,
.profile table tr th,
.form form table tr th {
    font-weight: bold;
    width: 180px;
    padding-right: 20px;
    padding: 46px 0;
    vertical-align: top;
}
.map table tr td,
.profile table tr td,
.form form table tr td {
    padding: 46px 0;
}
.profile {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 490px)) 1fr;
    grid-column-gap: 40px;
}
.profile .txtBox {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    font-size: 1.6rem;
    margin-bottom: 50px;
}
.profile table {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}
.form {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 490px)) 1fr;
    grid-column-gap: 40px;
    font-size: 1.6rem;
}
.form .requiredMark {
    color: red;
}
.form .txtBox {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    margin-bottom: 50px;
    font-size: 1.6rem;
    line-height: 1.875;
}
.form .thaks {
    font-size: 1.6rem;
    line-height: 1.875;
}
.form form {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}
.form form table {
    width: 100%;
}
.form .inputArea {
    background: #f1f1f1;
    line-height: 1;
    padding: 8px 15px;
    border-radius: 2px;
    width: 100%;
    border: 1px solid #ddd;
}
#main.form .inputArea.short {
    width: 200px;
    display: inline-block;
}
#main.form .inputArea textarea {
    width: 100%;
    height: 190px;
    padding: 10px 0;
    line-height: 1.5;
}
#main.form #submit td {
    text-align: center;
    padding-top: 40px;
}
#main.form #submit input {
    display: inline-block;
    width: 240px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    padding: 29px 0;
    cursor: pointer;
    margin: 0 10px;
    font-size: 2rem;
    transition: all 0.3s ease-in-out;
    border-radius: inherit;
    -webkit-border-radius: inherit;
}
#main.form #submit input.submitBtn {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}
#main.form #submit input.submitBtn:hover {
    color: var(--main-color);
    background: none;
}
#main.form #submit input.resetBtn {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background: inherit;
}
#main.form #submit input.resetBtn:hover {
    opacity: 0.7;
}
.profile .txtBox ul li,
#foot-area ul li,
.form .txtBox ul li,
.map #frame ul li {
    list-style-type: disc;
}
.profile .txtBox ol li,
#foot-area ol li,
.form .txtBox ol li,
.map #frame ol li {
    list-style-type: decimal;
}
@media screen and (max-width:768px) {
    
    header {
        padding: 25px 65px 25px 20px;
        position: absolute;
    }
    .open header {
        margin-top: -100%;
    }
    
    .noSlide.open header {
        position: absolute;
    }
    
    header #siteTtl {
        text-align: left;
    }
    header #siteTtl a {
        font-size: 2.0rem;
    }
    header #siteTtl img {
        max-height: 100px;
    }
    header.scroll #siteTtl img {
        max-height: 100px;
    }
    
    header.scroll {
        padding: 25px 65px 25px 20px;
    }
    header.scroll #siteTtl a {
        font-size: 2.0rem;
    }
    
    .navToggle {
        right: 20px;
        width: 30px;
        height: 16px;
        position: fixed;
        top: 30px;
        bottom: auto;
        right: 20px;
    }
    .open .navToggle {
        top: 30px;
    }
    .navToggleIn span {
        height: 2px;
    }
    .navToggleIn span:nth-child(2) {
        top: 7px;
    }
    .navToggle.open .navToggleIn span:first-child {
        top: -13px;
    }
    
    
    .navArea {
        padding: 0 30px;
        overflow-y: scroll;
    }
    .navArea>.inner {
        padding: 100px 0px;
        display: block;
        height: auto;
    }
    #mainNav {
        max-width: none;
        padding-bottom: 0px;
        overflow-y: initial;
        height: auto;
        margin: 0 30px 80px 0;
    }
    #mainNav ul li.parent {
        margin-bottom: 25px;
    }
    #mainNav ul li.parent>a {
        font-size: 2.5rem;
    }
    #mainNav ul li.parent .child li a {
        font-size: 1.2rem;
    }
    
    
    .navArea .inner .rightArea #sns {
        margin: 50px 0 0;
    }
    
    #mobile {
        display: none;
    }
    
    
    .mainSlideIn .scrollSign {
        right: 19px;
    }
    .mainSlideIn .scrollSign p {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .mainSlideIn .scrollSign .bar {
        height: 106px;
    }
    
    .bx-controls {
        bottom: 11px;
        left: 20px;
    }
    .bx-controls .bx-pager .bx-pager-item {
        margin-right: 10px;
    }
    .bx-controls .bx-pager .bx-pager-item .bx-pager-link {
        width: 25px;
        height: 20px;
    }
    
    .noSlide header {}
    .noSlide.fixed header {
        position: relative !important;
    }
    .noSlide.fixed .mainImgIn {
        margin-top: 0px;
    }
    .noSlide .mainImgIn {
        margin-top: 0px;
    }
    .noSlide .mainImgIn .inner {
        padding: 0 20px;
        display: block;
    }
    .noSlide .mainImgIn .inner #mainImg {
        width: 100%;
        margin-bottom: 30px;
    }
    .noSlide .mainImgIn .inner #leadTxt {
        width: 100%;
        font-size: 1.4rem;
    }
    .leadTxtWrap {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    #pageTop {
        bottom: 20px;
        right: 10px;
    }
    #pageTop a {
        font-size: 1.2rem;
    }
    #pageTop a::before {
        top: -16px;
        border-bottom: 2px solid var(--main-color);
        border-left: 2px solid var(--main-color);
        width: 25px;
        height: 25px;
    }
    #pageTop.show.bottom {
        bottom: 40px;
    }
    
    #page header {
        position: relative;
    }
    #page header.scroll {
    }
    #page header #siteTtl a {
        font-size: 2.0rem;
        max-height: none;
    }
    #page header #siteTtl img {
        max-height: 100px;
    }
    
    #page .pageTtl {
        font-size: 2.4rem;
        
        margin-top: 0;
        padding: 60px 20px;
        display: block;
    }
    #page .pageTtl h2 {}
    
    #top #content {
        padding: 30px 0 100px 0;
    }
    #page #content {
        padding: 0 0 80px;
    }
    #content #main .articleIn {
        margin-bottom: 100px;
    }
    #content #main .articleIn .articleBox {
        display: block;
        margin-bottom: 100px;
    }
    #content #main .articleIn .articleBox:last-child {
        margin-bottom: 0;
    }
    
    .articleIn {
        display: block;
    }
    #top #content #main .articleIn {
        margin-top: 50px;
    }
    
    #content #main .articleIn .articleBox .contArea {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    #content #main .articleIn .articleBox .contTtl {
        font-size: 2.0rem;
        margin-bottom: 18px;
    }
    #content #main .articleIn .articleBox .txtArea {
        font-size: 1.4rem;
    }
    
    #content #main .articleIn .articleBox .firstImg {
        margin: 40px 0 50px 60px;
    }
    #content #main .articleIn .articleBox .firstImg figure::before {
        width: calc(100% + 20px);
        bottom: -20px;
        left: -20px;
    }
    
    #content #main .articleIn .articleBox .imgArea {
        padding-left: 60px;
        column-count: 2;
        column-width: calc(100% / 2 - 2px);
        display: block;
    }
    #content #main .articleIn .articleBox .imgArea figure {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    
    #content #main .articleIn .articleBox.Img.left .firstImg {
        margin: 40px 60px 50px 0;
    }
    #content #main .articleIn .articleBox.Img.left .imgArea {
        padding: 0 60px 0 0;
    }
    #content #main .articleIn .articleBox.Img.left .firstImg figure::before {
        right: -20px;
    }
    
    #content #main .articleIn .articleBox.noImg .contTtl {
        width: calc(100% - 40px);
        margin: 0 auto 18px;
    }
    #content #main .articleIn .articleBox.noImg .txtArea {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    
    
    .articleBox .txtArea table tbody tr td {
        padding: 5px 10px;
    }
    
    #news {
        padding: 0 20px;
    }
    #news .contTtl {
        font-size: 2.0rem;
        margin-bottom: 13px;
    }
    #news .inner {
        padding: 10px 10px 10px 10px;
    }
    #news .inner ul {
        max-height: 140px;
        padding: 5px 0px;
    }
    #news ul::-webkit-scrollbar {
        width: 14px;
    }
    #news ul::-webkit-scrollbar-track {
        padding: 0 3px;
    }
    #news ul li {
        font-size: 1.4rem;
        padding: 7px 0px 7px 0px;
        margin-right: 10px;
        white-space: normal;
        position: relative;
        display: block;
        max-height: 58px;
        overflow: hidden;
        box-sizing: content-box;
    }
    #news ul li::before,
    #news ul li::after {
        position: absolute;
        background: #fff;
    }
    #news ul li::before {
        content: "･･･";
        bottom: 3px;
        right: 0;
    }
    #news ul li::after {
        content: "";
        width: 100%;
        height: 100%;
    }
    #news ul li .day {
        font-size: 1.0rem;
        position: static;
        display: block;
        margin-bottom: 4px;
    }
    #news ul li a {
        background-image: none;
        text-decoration: underline;
    }
    
    #foot-area {
        font-size: 1.4rem;
        margin: 80px auto 0;
        padding: 0 20px;
    }
    
    footer {
        padding: 8px 20px;
    }
    footer .copy {
        font-size: 1.0rem;
        text-align: center;
    }
    
    .map {
        display: block;
        padding: 0 20px;
    }
    .map #frame {
        margin-bottom: 30px;
    }
    .map table,
    .profile table {
        font-size: 1.4rem;
    }
    .map table tr th,
    .profile table tr th {
        min-width: 70px;
        padding-right: 10px;
        padding: 30px 0;
    }
    .map table tr td,
    .profile table tr td {
        width: 75%;
        padding: 30px 0;
    }
    
    .profile {
        display: block;
        padding: 0 20px;
    }
    .profile .txtBox {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    .profile table {
        width: 100%;
    }
    .profile table tr th {
        display: block;
        width: 100%;
        padding: 30px 0 5px 0;
    }
    .profile table tr td {
        width: 100%;
        padding: 5px 0 30px 0;
    }
    .profile > table tr td {
        display: block;
    }
    
    .form {
        font-size: 1.4rem;
        display: block;
        padding: 0 20px;
    }
    .form .txtBox {
        margin-bottom: 30px;
        font-size: 1.4rem;
    }
    .form .thaks {
        font-size: 1.4rem;
    }
    .form form table tr th {
        display: block;
        width: 100%;
        padding: 30px 0 5px 0;
    }
    .form form table tr td {
        display: block;
        padding: 5px 0 30px 0;
    }
    #main.form #submit input {
        display: block;
        padding: 20px 0;
        margin: 0 auto 15px;
        font-size: 1.4rem;
    }
    #main.form #submit input:last-child {
        margin-bottom: 0;
    }
}