@charset "UTF-8";
.hammenu-ctr {
  display: block !important;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  margin: 0 0 0 auto;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .hammenu-ctr {
    display: none !important;
  }
}

.hammenu-area {
  background: var(--bgcolor8);
  height: 50px;
  position: absolute;
  right: 0;
  z-index: 2;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.hammenu-area .mobile-btn,
.hammenu-area .more-vertical-solid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.hammenu-area .mobile-btn {
  line-height: 30px;
  padding: 22px 27px 28px 23px;
  text-align: right;
}
.hammenu-area .mobile-btn .more-vertical-solid {
  width: 50px;
  height: 50px;
  position: absolute;
}
.hammenu-area .mobile-btn .more-vertical-solid.icon {
  text-indent: unset;
  padding: 0;
  color: var(--fontcolor1);
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: solid 1px currentColor;
  background-color: currentColor;
}
.hammenu-area .mobile-btn .more-vertical-solid.icon:nth-of-type(1) {
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hammenu-area .mobile-btn .more-vertical-solid.icon:nth-of-type(2) {
  top: calc(50% - 15px);
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
.hammenu-area .mobile-btn .more-vertical-solid.icon:nth-of-type(3) {
  top: calc(50% + 15px);
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
.hammenu-area .mobile-btn.open {
  -webkit-animation: menu-close 0.6s;
          animation: menu-close 0.6s;
}
.hammenu-area .mobile-btn.close {
  -webkit-animation: menu-open 0.6s;
          animation: menu-open 0.6s;
}
.hammenu-area .mobile-btn.close .more-vertical-solid {
  position: absolute;
  left: 0;
  width: 70%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.hammenu-area .mobile-btn.close .more-vertical-solid:nth-of-type(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.hammenu-area .mobile-btn.close .more-vertical-solid:nth-of-type(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.hammenu-area .mobile-btn.close .more-vertical-solid:nth-of-type(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@-webkit-keyframes menu-close {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(320deg);
            transform: rotate(320deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes menu-close {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(320deg);
            transform: rotate(320deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes menu-open {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(320deg);
            transform: rotate(320deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes menu-open {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(320deg);
            transform: rotate(320deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}

#hammenuInner {
  background: rgba(50, 50, 50, 0.9);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 18vw 5vw 3vw;
  position: absolute;
  top: 0;
  left: 0;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  width: 100%;
  z-index: 1;
}
#hammenuInner.slide-in {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #hammenuInner {
    padding-top: 9vw;
  }
}
#hammenuInner .accessibility {
  display: block;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  #hammenuInner .accessibility {
    margin-bottom: 8vw;
  }
}
#hammenuInner .accessibility img {
  display: none;
}
#hammenuInner .accessibility section {
  background-color: var(--bgcolor1);
  border-radius: 5px;
  margin-bottom: 10vw;
  padding: 3vw 2vw;
}
@media screen and (min-width: 768px) {
  #hammenuInner .accessibility section {
    margin-bottom: 5vw;
  }
}
#hammenuInner .accessibility section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
#hammenuInner .accessibility section .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
}
#hammenuInner .accessibility section .option li {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
#hammenuInner .accessibility section .option li button {
  border-radius: 5px;
  color: var(--fontcolor2);
  font-size: 120%;
  font-weight: 600;
  height: 10vw;
  max-height: 40px;
  text-align: center;
  width: 100%;
}
#hammenuInner .accessibility section.fontsize button {
  background-color: var(--bgcolor7);
}
#hammenuInner .accessibility section.bg-select .bg-white {
  background-color: #fff;
  border: 1px solid #333;
  color: #000;
}
#hammenuInner .accessibility section.bg-select .bg-black {
  background-color: #333;
  color: #ff0;
}
#hammenuInner .accessibility section.bg-select .bg-blue {
  background-color: #00f;
  color: #ff0;
}
#hammenuInner .accessibility .languagectl {
  padding: 0;
}
#hammenuInner .accessibility .languagectl .title-language {
  margin: 0;
}
#hammenuInner .accessibility .languagectl .title-language a {
  color: var(--fontcolor2);
  display: block;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  padding: 1.5vh;
}
#hammenuInner .accessibility .languagectl img {
  display: inline-block;
}

.acc_pc {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .acc_pc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--fontcolor2);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 100px;
    width: 100%;
    z-index: 1;
  }
  .acc_pc .accessibility {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .acc_pc .accessibility section {
    border-right: 1px solid var(--bgcolor9);
    padding-right: 5px;
  }
  .acc_pc .accessibility section:last-child {
    border-right: none;
  }
  .acc_pc .accessibility section h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 5px 3px 0 0;
  }
  .acc_pc .accessibility section .option {
    margin-right: 1%;
  }
  .acc_pc .accessibility section .option li {
    display: inline-block;
    text-align: center;
    vertical-align: bottom;
  }
  .acc_pc .accessibility section .option li button {
    background-color: var(--bgcolor7);
    border-radius: 25%;
    font-size: 1.4rem;
    text-align: center;
    height: 20px;
    width: 20px;
  }
  .acc_pc .accessibility section .option li button.bg-black, .acc_pc .accessibility section .option li button.bg-blue {
    color: #ffe100;
  }
  .acc_pc .accessibility section input {
    text-align: center;
  }
  .acc_pc .accessibility section input:hover {
    background-color: var(--bgcolor3);
  }
  .acc_pc .accessibility .fontsize,
  .acc_pc .accessibility .bg-select,
  .acc_pc .accessibility .languagectl {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .acc_pc .accessibility .fontsize img,
  .acc_pc .accessibility .bg-select img,
  .acc_pc .accessibility .languagectl img {
    margin-right: 5px;
    vertical-align: middle;
  }
  .acc_pc .accessibility .fontsize {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #1b2a27;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 36%;
        flex-basis: 36%;
    margin-right: 1%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .acc_pc .accessibility .fontsize .flarge {
    font-weight: 600;
  }
  .acc_pc .accessibility .fontsize .flarge .btn-large {
    font-size: 120%;
    height: 30px;
    width: 30px;
  }
  .acc_pc .accessibility .fontsize .fmedium {
    font-weight: 500;
  }
  .acc_pc .accessibility .fontsize .fmedium .btn-medium {
    font-size: 100%;
    height: 25px;
    width: 25px;
  }
  .acc_pc .accessibility .fontsize .fsmall {
    font-weight: 400;
  }
  .acc_pc .accessibility .fontsize .fsmall .btn-small {
    font-size: 80%;
    height: 20px;
    width: 20px;
  }
  .acc_pc .accessibility .bg-select {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 33.5%;
        flex-basis: 33.5%;
    max-width: 170px;
    margin-right: 1%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .acc_pc .accessibility .bg-select .bg-white {
    background-color: #fff;
    border: 1px solid #666;
    font-weight: 500;
  }
  .acc_pc .accessibility .bg-select .bg-black {
    background-color: #000;
    font-weight: 500;
  }
  .acc_pc .accessibility .bg-select .bg-blue {
    background-color: #00f;
  }
  .acc_pc .accessibility .languagectl {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 150px;
    margin-right: 0;
    text-align: right;
  }
  .acc_pc .accessibility .languagectl .title-language {
    height: 22px;
  }
  .acc_pc .accessibility .languagectl .title-language a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 5px;
    color: var(--fontcolor2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    letter-spacing: 0.05rem;
    padding: 3px 0 3px 3px;
  }
  .acc_pc .accessibility .languagectl .title-language .title-text {
    margin-bottom: 3px;
  }
}

.top .sitelogo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  position: absolute;
  top: -75px;
}
@media screen and (min-width: 1024px) {
  .top .sitelogo {
    height: 65px;
    max-width: 160px;
    margin-left: calc((100% - 1024px) / 2);
    top: 0;
    width: 16%;
  }
}
@media screen and (min-width: 1400px) {
  .top .sitelogo {
    margin-left: 0;
  }
}
.top .symbol-uki {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  margin-left: 5px;
  width: 100px;
}
@media screen and (min-width: 768px) {
  .top .symbol-uki {
    margin-left: 10px;
    width: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .top .symbol-uki {
    width: 150px;
  }
}
@media screen and (min-width: 1400px) {
  .top .symbol-uki {
    margin-left: 0;
  }
}

.top nav,
.sub nav {
  background-repeat: repeat;
  color: var(--fontcolor2);
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top nav,
  .sub nav {
    margin: 0 0 5vw;
  }
}
@media screen and (min-width: 1024px) {
  .top nav,
  .sub nav {
    background-color: initial;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 2vw auto 0;
    overflow: visible;
    width: 100%;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .top nav,
  .sub nav {
    max-width: 1200px;
  }
}
.top .nav-list,
.sub .nav-list {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1vw;
}
@media screen and (min-width: 1024px) {
  .top .nav-list,
  .sub .nav-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .top .nav-list::before,
  .sub .nav-list::before {
    border-right: 1px solid var(--fontcolor2);
    content: "";
    display: block;
    max-width: 160px;
    width: 16%;
    height: 65px;
  }
}
@media screen and (min-width: 1400px) {
  .top .nav-list,
  .sub .nav-list {
    max-width: 1200px;
  }
}
.top .nav-list .nav-menu,
.sub .nav-list .nav-menu {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  text-align: center;
  height: 50px;
}
.top .nav-list .nav-menu:nth-child(1), .top .nav-list .nav-menu:nth-child(2), .top .nav-list .nav-menu:nth-child(3),
.sub .nav-list .nav-menu:nth-child(1),
.sub .nav-list .nav-menu:nth-child(2),
.sub .nav-list .nav-menu:nth-child(3) {
  border-bottom: 1px solid var(--fontcolor2);
}
.top .nav-list .nav-menu:nth-child(1), .top .nav-list .nav-menu:nth-child(2), .top .nav-list .nav-menu:nth-child(4), .top .nav-list .nav-menu:nth-child(5),
.sub .nav-list .nav-menu:nth-child(1),
.sub .nav-list .nav-menu:nth-child(2),
.sub .nav-list .nav-menu:nth-child(4),
.sub .nav-list .nav-menu:nth-child(5) {
  border-right: 1px solid var(--fontcolor2);
}
.top .nav-list .nav-menu:nth-child(1),
.sub .nav-list .nav-menu:nth-child(1) {
  background: url(/assets/img/icon/gmenu_home.png) no-repeat 0 center;
  background-size: calc(30px + 3vw);
}
.top .nav-list .nav-menu:nth-child(2),
.sub .nav-list .nav-menu:nth-child(2) {
  background: url(/assets/img/icon/gmenu_kosodate.png) no-repeat 0 center;
  background-size: calc(30px + 3vw);
}
.top .nav-list .nav-menu:nth-child(3),
.sub .nav-list .nav-menu:nth-child(3) {
  background: url(/assets/img/icon/gmenu_heart.png) no-repeat 1% center;
  background-size: calc(30px + 3vw);
}
.top .nav-list .nav-menu:nth-child(4),
.sub .nav-list .nav-menu:nth-child(4) {
  background: url(/assets/img/icon/gmenu_gyosei.png) no-repeat 3% 50%;
  background-size: calc(20px + 3vw);
}
.top .nav-list .nav-menu:nth-child(5),
.sub .nav-list .nav-menu:nth-child(5) {
  background: url(/assets/img/icon/gmenu_bag.png) no-repeat 2% 45%;
  background-size: calc(30px + 3vw);
}
.top .nav-list .nav-menu:nth-child(6),
.sub .nav-list .nav-menu:nth-child(6) {
  background: url(/assets/img/icon/gmenu_camera.png) no-repeat 1% 55%;
  background-size: calc(30px + 3vw);
}
.top .nav-list .nav-menu a,
.sub .nav-list .nav-menu a {
  color: var(--fontcolor2);
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.top .nav-list .nav-menu a span,
.sub .nav-list .nav-menu a span {
  display: block;
  font-size: calc(1rem + 1.2vw);
  font-weight: 500;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top .nav-list .nav-menu:nth-child(1),
  .sub .nav-list .nav-menu:nth-child(1) {
    background-position: 0 center;
    background-size: calc(20% - 0.5vw);
  }
  .top .nav-list .nav-menu:nth-child(2),
  .sub .nav-list .nav-menu:nth-child(2) {
    background-position: 0 center;
    background-size: calc(20% - 0.5vw);
  }
  .top .nav-list .nav-menu:nth-child(3),
  .sub .nav-list .nav-menu:nth-child(3) {
    background-position: 0.5vw center;
    background-size: calc(20% - 0.5vw);
  }
  .top .nav-list .nav-menu:nth-child(4),
  .sub .nav-list .nav-menu:nth-child(4) {
    background-position: 1vw 60%;
    background-size: calc(15% - 0.5vw);
  }
  .top .nav-list .nav-menu:nth-child(5),
  .sub .nav-list .nav-menu:nth-child(5) {
    background-position: 0.5vw 50%;
    background-size: calc(20% - 0.5vw);
  }
  .top .nav-list .nav-menu:nth-child(6),
  .sub .nav-list .nav-menu:nth-child(6) {
    background-position: 0.5vw 50%;
    background-size: calc(20% - 0.5vw);
  }
}
@media screen and (min-width: 1024px) {
  .top .nav-list .nav-menu,
  .sub .nav-list .nav-menu {
    -ms-flex-preferred-size: 14%;
        flex-basis: 14%;
    max-height: none;
    height: 65px;
  }
  .top .nav-list .nav-menu:nth-child(1), .top .nav-list .nav-menu:nth-child(2), .top .nav-list .nav-menu:nth-child(3),
  .sub .nav-list .nav-menu:nth-child(1),
  .sub .nav-list .nav-menu:nth-child(2),
  .sub .nav-list .nav-menu:nth-child(3) {
    border-bottom: none;
  }
  .top .nav-list .nav-menu:nth-child(1),
  .sub .nav-list .nav-menu:nth-child(1) {
    background: url(/assets/img/icon/icon_home.png) no-repeat 5px center;
    background-size: 40px;
  }
  .top .nav-list .nav-menu:nth-child(2),
  .sub .nav-list .nav-menu:nth-child(2) {
    background: url(/assets/img/icon/icon_kosodate.png) no-repeat 5px center;
    background-size: 40px;
  }
  .top .nav-list .nav-menu:nth-child(3),
  .sub .nav-list .nav-menu:nth-child(3) {
    background: url(/assets/img/icon/icon_heart.png) no-repeat 5px center;
    background-size: 40px;
    border-right: 1px solid var(--fontcolor2);
  }
  .top .nav-list .nav-menu:nth-child(4),
  .sub .nav-list .nav-menu:nth-child(4) {
    background: url(/assets/img/icon/icon_gyousei.png) no-repeat 10px center;
    background-size: 32px;
  }
  .top .nav-list .nav-menu:nth-child(5),
  .sub .nav-list .nav-menu:nth-child(5) {
    background: url(/assets/img/icon/icon_bag.png) no-repeat 5px center;
    background-size: 40px;
  }
  .top .nav-list .nav-menu:nth-child(6),
  .sub .nav-list .nav-menu:nth-child(6) {
    background: url(/assets/img/icon/icon_camera.png) no-repeat 5px center;
    background-size: 40px;
  }
  .top .nav-list .nav-menu:hover,
  .sub .nav-list .nav-menu:hover {
    background-color: var(--bgcolor6);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .top .nav-list .nav-menu:hover .childmenu-list,
  .sub .nav-list .nav-menu:hover .childmenu-list {
    visibility: visible;
    opacity: 1;
  }
  .top .nav-list .nav-menu p,
  .sub .nav-list .nav-menu p {
    height: 100%;
    width: 100%;
  }
  .top .nav-list .nav-menu > a,
  .sub .nav-list .nav-menu > a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 0 45px;
  }
  .top .nav-list .nav-menu > a span,
  .sub .nav-list .nav-menu > a span {
    font-size: 1.4rem;
    font-weight: 500;
    left: auto;
    position: static;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1400px) {
  .top .nav-list .nav-menu,
  .sub .nav-list .nav-menu {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }
  .top .nav-list .nav-menu > a span,
  .sub .nav-list .nav-menu > a span {
    font-size: 1.6rem;
  }
}
.top .nav-list .childmenu-list,
.sub .nav-list .childmenu-list {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .top .nav-list .childmenu-list,
  .sub .nav-list .childmenu-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    background: var(--bgcolor17);
    border-top: 5px solid var(--bgcolor7);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    left: 0;
    opacity: 0;
    padding: 5px;
    position: absolute;
    top: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: left;
    visibility: hidden;
    width: 100%;
    z-index: 150;
  }
  .top .nav-list .childmenu-list::before,
  .sub .nav-list .childmenu-list::before {
    content: "";
    display: block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 33%;
    height: 0;
  }
  .top .nav-list .childmenu-list::after,
  .sub .nav-list .childmenu-list::after {
    content: "";
    display: block;
    width: 33%;
    height: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top .nav-list .childmenu-list .childmenu,
  .sub .nav-list .childmenu-list .childmenu {
    border-right: 1px solid var(--bgcolor3);
    border-bottom: 1px solid var(--bgcolor3);
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    height: 50px;
  }
  .top .nav-list .childmenu-list .childmenu:nth-child(3n),
  .sub .nav-list .childmenu-list .childmenu:nth-child(3n) {
    border-right: none;
  }
  .top .nav-list .childmenu-list .childmenu:nth-last-child(1), .top .nav-list .childmenu-list .childmenu:nth-last-child(2):nth-child(3n+1), .top .nav-list .childmenu-list .childmenu:nth-last-child(2):nth-child(3n+2), .top .nav-list .childmenu-list .childmenu:nth-last-child(3):nth-child(3n+1),
  .sub .nav-list .childmenu-list .childmenu:nth-last-child(1),
  .sub .nav-list .childmenu-list .childmenu:nth-last-child(2):nth-child(3n+1),
  .sub .nav-list .childmenu-list .childmenu:nth-last-child(2):nth-child(3n+2),
  .sub .nav-list .childmenu-list .childmenu:nth-last-child(3):nth-child(3n+1) {
    border-bottom: none;
  }
  .top .nav-list .childmenu-list .childmenu a,
  .sub .nav-list .childmenu-list .childmenu a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .top .nav-list .childmenu-list .childmenu a::before,
  .sub .nav-list .childmenu-list .childmenu a::before {
    content: url(../img/icon/icon_arrow_right.png);
    height: 24px;
    vertical-align: middle;
  }
  .top .nav-list .childmenu-list .childmenu a:hover,
  .sub .nav-list .childmenu-list .childmenu a:hover {
    background-color: var(--bgcolor7);
    color: var(--fontcolor1);
  }
  .top .nav-list .childmenu-list .childmenu a:hover::before,
  .sub .nav-list .childmenu-list .childmenu a:hover::before {
    background-color: var(--bgcolor1);
    border-radius: 50%;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .top .nav-list .childmenu-list .childmenu span,
  .sub .nav-list .childmenu-list .childmenu span {
    font-size: 1.4rem;
    left: auto;
    padding-left: 10px;
    position: relative;
    top: auto;
    -webkit-transform: none;
            transform: none;
    vertical-align: middle;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1400px) {
  .top .nav-list .childmenu-list .childmenu span,
  .sub .nav-list .childmenu-list .childmenu span {
    font-size: 1.6rem;
  }
}

#goog-gt-tt {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

.goog-te-menu-value:hover {
  text-decoration: none !important;
}

html {
  font-size: 62.5%;
}

a {
  color: var(--fontcolor6);
  text-decoration: underline;
}
a:visited {
  color: var(--fontcolor10);
}

.u-visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a[href*="tel:"] {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    color: var(--fontcolor2);
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  a[href*="tel:"]:focus-visible {
    outline: none;
  }
}

::-webkit-input-placeholder {
  color: var(--fontcolor13);
}

::-moz-placeholder {
  color: var(--fontcolor13);
}

:-ms-input-placeholder {
  color: var(--fontcolor13);
}

::-ms-input-placeholder {
  color: var(--fontcolor13);
}

::placeholder {
  color: var(--fontcolor13);
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: var(--fontcolor13);
}

/* IE対応 */
:-ms-input-placeholder {
  color: var(--fontcolor13);
}

.skiplink {
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 1px;
}
@media screen and (min-width: 1024px) {
  .skiplink {
    height: auto;
    left: calc((100% - 1000px) / 2);
    top: 10px;
    visibility: visible;
    width: auto;
    z-index: 100;
  }
}
.skiplink a {
  background: url(../img/icon/icon_update.png) no-repeat center left;
  background-size: 24px;
  color: var(--fontcolor2);
  text-decoration: underline;
  padding-left: 34px;
  vertical-align: middle;
}
.skiplink .skiplink-text {
  font-size: 1.4rem;
  vertical-align: top;
}

@media print {
  .no-print {
    display: none;
  }
}
body {
  background-color: var(--bgcolor2);
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  top: 0 !important;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.2;
  letter-spacing: -0.03rem;
  overflow-y: scroll;
  width: 100vw !important;
  -webkit-print-color-adjust: exact;
}
@media screen and (min-width: 1024px) {
  body {
    width: 100% !important;
  }
}
body#onlord {
  visibility: hidden;
}

#wrapper {
  height: 100%;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  #wrapper {
    width: 100%;
  }
}

footer {
  position: relative;
  background: url(/assets/img/nishikou.svg) no-repeat center bottom, var(--bgcolor26);
  background-blend-mode: lighten;
  background-size: cover;
  bottom: 0;
  margin: 10vw 0 0;
  max-height: 750px;
  height: 130vw;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  footer {
    background-size: 130%;
    height: 60vw;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  footer {
    background-position: center top;
    background-size: cover;
    max-height: 650px;
    margin-top: 100px;
  }
}

.fmenu-ctr {
  font-size: calc(1rem + 1.2vw);
}
.fmenu-ctr .fmenu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 550px;
  margin: 0 auto;
  width: 98%;
}
.fmenu-ctr .fmenu-list::after {
  content: "";
  width: 30%;
  margin: 1vw 1vw;
  min-width: 130px;
}
.fmenu-ctr .fmenu-list .fmenu {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin: 2vw 1vw;
  min-width: 130px;
}
.fmenu-ctr .fmenu-list .fmenu:nth-child(2n) {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
.fmenu-ctr .fmenu-list a::before {
  content: "";
  background: url(../img/icon/icon_arrow.png) no-repeat center/cover;
  display: block;
  float: left;
  height: 14px;
  margin-right: 5px;
  width: 14px;
}
@media screen and (min-width: 768px) {
  .fmenu-ctr .fmenu-list {
    font-size: 1.4rem;
  }
  .fmenu-ctr .fmenu-list::after {
    margin: 1vw 0.5vw;
  }
  .fmenu-ctr .fmenu-list .fmenu {
    margin: 1vw 0.5vw;
  }
}
@media screen and (min-width: 1024px) {
  .fmenu-ctr .fmenu-list {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin-top: 30px;
  }
  .fmenu-ctr .fmenu-list::after {
    margin: 2% 1%;
  }
  .fmenu-ctr .fmenu-list .fmenu {
    margin: 2% 1%;
  }
}

.footer-area {
  background-color: var(--bgcolor27);
  bottom: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-area section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 2vw;
  }
}
@media screen and (min-width: 1024px) {
  .footer-area section {
    margin: 0 auto 0 calc((100% - 1000px) / 2);
    width: 1000px;
  }
}
@media screen and (min-width: 1400px) {
  .footer-area section {
    margin-left: calc((100% - 1200px) / 2);
    width: 1200px;
  }
}
.footer-area .f-sitelogo {
  margin: 1vw auto;
  max-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .footer-area .f-sitelogo {
    margin: 0;
    text-align: center;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 170px;
  }
}
@media screen and (min-width: 1024px) {
  .footer-area .f-sitelogo {
    max-width: 130px;
    margin-right: 2vw;
  }
}
.footer-area .f-sitelogo a {
  display: block;
  height: 100%;
  padding: 5px;
  text-decoration: none;
}
.footer-area .f-sitelogo .townlogo {
  display: inline-block;
  height: 15vw;
  margin-right: 10px;
  max-height: 58px;
  vertical-align: middle;
  width: auto;
}
@media screen and (min-width: 768px) {
  .footer-area .f-sitelogo .townlogo {
    margin: 0 0 10px;
  }
}
.footer-area .f-sitelogo span {
  display: block;
}
.footer-area .f-sitelogo .townname {
  color: var(--fontcolor2);
  display: inline-block;
  vertical-align: middle;
}
.footer-area .f-sitelogo .townname .name1 {
  font-size: 2.2rem;
  font-weight: 600;
}
.footer-area .f-sitelogo .townname .name2 {
  font-size: 1rem;
  font-weight: 500;
}

address {
  color: var(--fontcolor2);
  font-size: calc(0.6rem + 1.5vw);
  font-style: normal;
  font-weight: 500;
  margin: 3vw auto;
  width: 98%;
}
@media screen and (min-width: 1024px) {
  address {
    font-size: 1.6rem;
    margin: 20px 0;
  }
}
address p {
  margin: 1.2vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  address p {
    margin: 1vw;
  }
}
@media screen and (min-width: 1024px) {
  address p {
    margin: 10px;
  }
  address p:nth-child(1), address p:nth-child(2) {
    margin-bottom: 0;
  }
  address p:nth-child(3), address p:nth-child(4) {
    float: left;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  address p:nth-child(5) {
    clear: both;
  }
  address p:nth-child(6) br {
    display: none;
  }
}

.copyright {
  background-color: var(--bgcolor7);
  color: #1b2a27;
  font-size: 1.2rem;
  padding: 5px 0;
  text-align: center;
}

/***追従するトップへ戻るボタン***/
.page-top-btn {
  background: var(--bgcolor25);
  border: solid 2px var(--bgcolor7);
  bottom: 30px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  position: fixed;
  height: 72px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 15px;
  width: 72px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .page-top-btn:hover {
    background: rgba(33, 116, 194, 0.6);
  }
}
.page-top-btn .page-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--fontcolor2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 2rem;
  text-shadow: 2px 2px 2px var(--bgcolor26), -2px 2px 2px var(--bgcolor26), 2px -2px 2px var(--bgcolor26), -2px -2px 2px var(--bgcolor26), 2px 0px 2px var(--bgcolor26), 0px 2px 2px var(--bgcolor26), -2px 0px 2px var(--bgcolor26), 0px -2px 2px var(--bgcolor26); /* 文字の影 */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.page-top-btn .page-top .to_top_text {
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .page-top-btn .page-top .page-top {
    right: 30px;
    bottom: 30px;
    font-size: 1.6rem;
  }
}

/***トップへ戻るボタンここまで***/
*:focus-visible {
  outline: 4px solid #2174c2;
  outline-offset: -4px;
  z-index: 99;
}

:-moz-focusring {
  outline: 4px solid #2174c2;
}

.slick-dots li button:focus-visible {
  outline: 4px solid #2174c2;
  outline-offset: 0;
  z-index: 99;
}

@media all and (-ms-high-contrast: none) {
  :focus {
    outline: 4px solid #2174c2;
  }
}
.slick-slide a:-moz-focusring {
  outline: 4px auto #2174c2;
}

@media all and (-ms-high-contrast: none) {
  .slick-slide a:focus {
    outline: 4px auto #2174c2;
  }
}
/*-----キーボード操作用ここまで-----*/
@media all and (-ms-high-contrast: none) {
  /*objyect-coverIE11用*/
  .thumb {
    background: no-repeat center center/cover;
    height: 100%;
  }
}/*# sourceMappingURL=style1-common.css.map */