@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: #82909A;
    
    --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;
}
footer {
    z-index: 1;
}
.navToggle {
    z-index: 1002;
}
.navArea {
    z-index: 999;
}
.open .navToggle {
    z-index: 1000;
}
#pageTop {
    z-index: 2;
}
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: 'Noto Sans JP', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--font-basic-color);
}
#page #pageNavi a{
  background-position: 100% 100%;
  background-size: 0 1px;
  opacity: 1;
  line-height: 60px;
}
#page #pageNavi a:hover{
  background-image: linear-gradient(var(--main-color), var(--main-color));
  color: var(--main-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);
  font-weight: bold;
}
#pageNavi ul li.current a{
  background-image: linear-gradient(var(--main-color), var(--main-color));
  background-size: 100% 1px !important;
}
#pageNavi ul li.current a:hover{
  background-size: 0 0 !important;
}
#main .txtArea a {
    background-image: linear-gradient(var(--main-color), var(--main-color));
    color: var(--main-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);
    font-weight: bold;
}
#main .txtArea a:hover,
#foot-area a:hover {
    background-position: 100% 100%;
    background-size: 0 1px;
    opacity: 0.7;
}
#foot-area a{
  background-image: linear-gradient(#FFF, #FFF);
  color: #FFF;
  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);
}
header {
    padding: 24px 180px 24px 20px;
    position: relative;
    position: fixed;
    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(--main-color);
    top: 0;
    left: 0;
}
.open header {
    margin-top: -100%;
}
.open header #siteTtl {
    opacity: 0;
}
header #siteTtl {
    position: relative;
    transition: 0.4s ease-in-out;
}
header #siteTtl a {
    font-size: 2.4rem;
    text-decoration: none;
    color: #fff;
    line-height: 1.3;
    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 #siteTtl a {
    font-size: 3rem;
}
.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 {
    transform: translateX(1.2);
    width:100%;
}
.navToggleIn {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    transition: transform 0.4s;
    box-sizing: border-box;
    cursor: pointer;
}
.navToggleIn::before {
    content: 'menu';
    font-size: 2rem;
    color: #FFF;
    position: absolute;
    top: -2px;
    left: -70px;
}
.navToggleIn span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #FFF;
}
.navToggle.open .navToggleIn span {
    background-color: #fff;
}
.navToggle.open .navToggleIn::before {
    content: '';
}
.navToggleIn span:first-child {
    top: 0;
}
.navToggleIn span:nth-child(2) {
    top: 13px;
    width:70%;
}
.navToggleIn span:nth-child(3) {
    width:50%;
}
.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 .navToggleIn span:nth-child(2) {
    width:100%;
}
.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 {
  position: relative;
}
.bx-wrapper {
    margin-bottom: 0 !important;
}
.bx-wrapper .bx-controls {
    position: relative;
    margin-bottom: 40px;
}
.bx-wrapper .bx-pager{
    text-align: right !important;
    left: 0;
    bottom:-10px !important;
    height: 0px;
    display: inline;
}
.bx-wrapper .bx-pager-item {
    display: inline;
    padding: 0 5px;
}
.bx-wrapper .bx-pager-item a {
    background: #FFF;
    display: inline-block;
    width: 18px;
    height: 18px;
    text-indent: 200%;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #CCCCCC;
}
.bx-wrapper .bx-pager-item a:hover {
    background: var(--main-color);
}
.bx-wrapper .bx-pager-item a.active {
    background: var(--main-color);
    border: 2px solid #FFF;
    width: 15px;
    height: 15px;
}
.mainSlideIn .bx-wrapper .bx-viewport ul li img {
    top: 0px;
    height: 700px;
    width: 100%;
    object-fit: cover;
    z-index: 0;
    overflow: hidden;
}
.mainSlideIn .bx-wrapper .bx-pager{
    padding-right: calc(0% + 120px);
}
.mainSlideIn #leadTxt{
    position: absolute;
    color: #FFF;
    
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 0px 3px 6px rgb(0 0 0 / 50%);
    max-height: 530px;
    overflow: hidden;
}
.noSlide.fixed header {
    position: fixed !important;
}
.noSlide.fixed .mainImgIn {
    margin-top: 254px;
}
.noSlide .mainImgIn {
    margin: 180px 0 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;
}
#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: 1.4rem;
    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 {
  position: absolute;
  top: -40px;
  bottom: auto;
}
#content {
    position: relative;
}
#content #main {
    max-width: 980px;
    width: 100%;
    margin: 0 auto 180px;
}
#content #main .contTtl{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 100px;
    color: var(--main-color);
    font-size: 3.8rem;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 30px;
}
#content #main .articleIn {
    margin-bottom: 180px;
}
#page header #siteTtl img {
    max-height: 150px;
}
#top .articleIn {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: wrap;
}
#content #main .articleIn .articleBox {
    width: 100%;
    max-width: 470px ;
    margin-bottom: 50px;
}
#content #main .articleIn .articleBox .contTtl {
    font-size: 2.2rem;
    color: var(--font-basic-color);
    line-height: 1.4;
    margin-bottom: 20px;
    padding-left:inherit;
    margin-top: 20px;
}
#content #main .articleIn .articleBox .txtArea {
    font-size: 1.6rem;
    line-height: 1.875;
}
#content  #main .articleIn .articleBox .imgArea img {
    width: 100%;
    min-width: 470px;
    max-height: 264px;
    top: 0px;
    object-fit: cover;
    overflow: hidden;
}
#content  #main .articleIn .articleBox .imgArea span {
    display: none;
}
#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 figure img {
    width: 100%;
    min-width: 470px;
}
#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.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;
}
#page .pageTtl {
    font-size: 4rem;
    text-align: center;
    margin-top: 60px;
    line-height: 1.4;
    padding: 100px 0;
}
#page .pageTtl h2 {
    color: var(--font-basic-color);
}
#page #content {
    padding-top: 0;
}
#page #content #main {
  max-width:inherit;
}
#page #content #main .articleIn .articleBox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 980px;
    margin: 0px auto;
    padding:60px 0 ;
}
#page #content #main .articleIn .articleBox.noImg {
    display: block;
}
#page #content #main .articleIn .articleBox .contTtl {
    margin-top: inherit;
}
#page #content #main .articleIn .articleBox .contArea{
    max-width: 470px;
}
#page #content #main .articleIn .articleBox .imgArea{
    max-width: 470px;
}
#page #content #main .articleIn .articleBoxIn:nth-child(even){
  background-color:#F7F7F7;
}
#pageNavi {
    min-height: 16px;
    background-color: #F7F7F7;
    margin-bottom: 60px;
}
#pageNavi ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#pageNavi ul li a{
  font-size: 1.6rem;
  color: var(--main-color);
  font-weight: bold;
  margin: 0 16px;
}
#news {
    max-width: 980px;
    width: 100%;
    margin: 0 auto 60px;
    position: relative;
}
#news .contTtl {
    color: var(--main-color);
    font-size: 3.8rem;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 18px;
}
#news .inner ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: wrap;
}
#news ul li {
    max-width: 470px;
    width: 100%;
    padding-right: 55px;
    margin-bottom: 28px;
    position: relative;
    line-height: 1.8;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
#news ul li a{
   display: block;
}
#news ul li a::after {
   content: '';
   display: inline-block;
   width: 30px;
   height: 30px;
   margin: 0 10px;
   border-top: 3px solid var(--main-color);
   border-right: 3px solid var(--main-color);
   transform: rotate(45deg);
   position: absolute;
   top: 44px;
   right: 0;
   transition: .1s;
}
#news ul li a:hover::after {
    right: -5px;
}
#news ul li .day {
  display: block;
  font-size: 1.4rem;
  font-family: 'Open Sans', sans-serif;
  color: #999999;
  margin-bottom: 10px;
}
#news ul li a {
  color: var(--font-basic-color);
}
#news .list li.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
}
#news .more{
    text-align: center;
    margin-top:10px;
}
#news .more button{
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    transition: .4s;
    font-size: 16px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    color:#999999;
    width: 120px;
    padding:7px 0;
}
#news .more button:hover{
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: white;
}
#foot-area {
    font-size: 1.6rem;
    max-width: 1100px;
    width: 100%;
    margin: 20px auto 40px;
    line-height: 1.875;
    padding: 0 40px;
    color:#FFF;
}
footer {
    background-color: var(--main-color);
    position: relative;
    padding: 24px 20px;
}
footer .copy {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}
.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;
    height: 583px;
    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;
}
#main.form table .captchaArea {
    padding: 0 !important;
}
#main.form .captcha {
    border: 4px solid #CCCCCC;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    margin-top: -2px;
    margin-bottom: 26px !important;
}
#main.form .captchaWarning {
    font-size: 14px;
    margin-bottom: 20px;
}
#main.form .captcha .inputArea {
    width: 230px !important;
    margin: 0 auto 0!important;
}
@media screen and (max-width:768px) {
    
    header {
        padding: 25px 65px 25px 20px;
    }
    .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;
    }
    .navToggleIn::before {
        display: none;
    }
    
    .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 .bx-wrapper .bx-pager {
        padding-right:0;
    }
    
    .noSlide .mainImgIn {
        margin: 100px 0 80px;
    }
    .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;
    }
    
    #page header.scroll {
    }
    #page header #siteTtl img {
        max-height: 100px;
    }
    
    #pageNavi {
      min-height:16px;
      margin-bottom: inherit;
    }
    #pageNavi ul {
      display: none;
    }
    
    .mainSlideIn #leadTxt{
        font-size: 3rem;
        top:50%;
        width: calc(100vw - 40px);
    }
    
    #page .pageTtl {
        font-size: 2.4rem;
        margin-top: 0;
        display: block;
        padding: 30px 0 30px;
    }
    
    #content #main {
      padding: 0 20px;
      margin: 0 auto 180px;
    }
    #content #main .articleIn {
      margin-bottom: 100px;
    }
    #content #main .articleIn .articleBox:last-child {
        margin-bottom: 0;
    }
    #page #content #main {
      padding: 0;
    }
    #page  #content #main .articleIn {
      margin-bottom: inherit;
    }
    #page #content #main .articleIn .articleBoxIn{
        padding: 0 20px;
    }
    #page #content #main .articleIn .articleBox {
        padding:40px 0 ;
        margin-bottom: 40px;
    }
    #page #content #main .articleIn .articleBox,#page #content #main .articleIn .articleBox.Img{
      display: block;
    }
    
    .articleIn {
        display: block;
    }
    
    #content #main .articleIn .articleBox .contArea {
        margin: 0 auto;
    }
    #content #main .articleIn .articleBox .contTtl {
        font-size: 2.0rem;
        margin-bottom: 18px;
    }
    #content #main .articleIn .articleBox .imgArea figure {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    #content  #main .articleIn .articleBox .imgArea img {
        width: 100% !important;
        min-width: inherit !important;
        max-height: calc(265px * 0.75) !important;
    }
    #content  #main .articleIn .articleBox .imgArea .bx-wrapper .bx-controls{
        margin-bottom:inherit;
    }
    #page #content #main .articleIn .articleBox .txtArea {
        font-size: 1.4rem;
    }
    #page #content #main .articleIn .articleBox .imgArea{
        margin-top: 80px;
    }
    
    .articleBox .txtArea table tbody tr td {
        padding: 5px 10px;
    }
    
    #news {
        padding: 0 20px;
    }
    #news .contTtl {
        margin-bottom: 13px;
    }
    #news .inner ul {
        padding: 5px 0px;
    }
    #news ul li {
        font-size: 1.4rem;
        white-space: normal;
        position: relative;
        display: block;
    }
    #news ul li::after {
        margin:inherit;
    }
    #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;
        padding: 0 20px;
    }
    
    footer .copy {
        font-size: 1.0rem;
        text-align: center;
    }
    
    #page #content #main.map,  #page #content #main.profile,  #page #content #main.form{
      padding: 0 20px ;
      margin: 30px 0 100px;
    }
    
    .map {
        display: block;
        padding: 0 20px;
    }
    .map #frame {
        height: 65vw;
        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 {
        display: block;
        width: 100%;
        padding: 5px 0 30px 0;
    }
    
    .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;
    }
}
.required {
    margin-top: 15px;
}

