@charset "UTF-8";
/* ///////////////////////////////////////////////

　サイト全般のスタイル

/////////////////////////////////////////////// */
/*
  FONT
----------------------------------------------- */
html {
  font-size: 1px;
}

@media screen and (max-width: 960px) {
  html {
    font-size: .875px;
  }
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16rem;
  letter-spacing: 0.05em;
}

p {
  line-height: 1.8;
}

li, dt, dd, th, td, address {
  line-height: 1.6;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

i, em {
  font-style: normal;
}

input, textarea, select {
  font-size: 16px;
}

/*
  LAYOUT
----------------------------------------------- */
#wrapper {
  overflow: hidden;
}

#contents {
  margin-top: 140px;
}

@media (max-width: 960px) {
  #contents {
    margin-top: 110px;
  }
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1240px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
  HEADER
----------------------------------------------- */
#header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 140px;
  padding: 25px 30px;
  background: #fff;
}

@media (max-width: 960px) {
  #header {
    flex-wrap: wrap;
    align-items: center;
    height: 110px;
    padding: 5px 10px;
  }
}

#header .logo {
  width: 260px;
  margin-bottom: 25px;
}

@media (max-width: 960px) {
  #header .logo {
    width: 220px;
    margin: 5px 0;
  }
}

#header .action_menu {
  margin-right: -20px;
  display: flex;
}

#header .action_menu li {
  position: relative;
}

#header .action_menu li::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  content: "";
  background: #DBDBDB;
}

#header .action_menu li:nth-child(1)::before, #header .action_menu li:nth-child(2)::before {
  display: none;
}

#header .action_menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 120px;
  height: 90px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}

#header .action_menu a path, #header .action_menu a line {
  stroke: #000;
  fill: #fff;
}

#header .action_menu a polyline, #header .action_menu a circle {
  stroke: #000;
  fill: none;
}

#header .action_menu .night a {
  width: 170px;
}

@media (max-width: 960px) {
  #header .action_menu {
    margin: 0 -3px;
    width: calc(100% + 6px);
  }
  #header .action_menu li {
    margin: 0 3px;
  }
  #header .action_menu li::before {
    display: none;
  }
  #header .action_menu a {
    flex-direction: row;
    justify-content: flex-start;
    width: inherit;
    height: 50px;
    padding: 0 5px;
    border-radius: 5px;
    font-size: 13px;
    text-align: left;
  }
  #header .action_menu a i {
    margin-right: 5px;
  }
  #header .action_menu .night a {
    width: 170px;
    font-size: 13px;
  }
  #header .action_menu .search {
    display: none;
  }
}

/*
  MENU
----------------------------------------------- */
@media (max-width: 960px) {
  #menu {
    position: fixed;
    z-index: 100;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 0 20px;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    transition: all .2s;
  }
  #menu.active {
    opacity: 1;
    pointer-events: inherit;
  }
}

#menu .search {
  display: none;
}

@media (max-width: 960px) {
  #menu .search {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    text-decoration: none;
  }
  #menu .search i {
    width: 20px;
    margin-right: 15px;
  }
}

#menu .gnav {
  display: flex;
  align-items: flex-start;
  margin-left: 30px;
  white-space: nowrap;
  position: relative;
}

@media (max-width: 960px) {
  #menu .gnav {
    margin: 0 0 30px;
    flex-direction: column;
    align-items: stretch;
  }
}

#menu .gnav > li {
  border-right: 1px solid #DBDBDB;
  padding: 0 5px;
  height: 30px;
  font-size: 18rem;
}

#menu .gnav > li:last-child {
  border: none;
}

#menu .gnav > li a {
  display: flex;
  align-items: center;
}

#menu .gnav > li > a {
  height: 100%;
  padding: 0 10px;
  text-decoration: none;
}

@media (min-width: 961px) {
  #menu .gnav > li:hover > a {
    border-radius: 4px;
  }
  #menu .gnav > li:hover dl {
    opacity: 1;
    pointer-events: inherit;
  }
}

@media (max-width: 960px) {
  #menu .gnav > li {
    border-right: none;
    padding: 0;
    height: inherit;
    position: relative;
  }
  #menu .gnav > li + li {
    margin-top: 8px;
  }
  #menu .gnav > li > a {
    height: 44px;
    padding: 0;
    border-bottom: 1px solid transparent;
  }
}

#menu .gnav .show_lower {
  display: none;
  position: absolute;
  top: 1px;
  right: 0;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

@media (max-width: 960px) {
  #menu .gnav .show_lower {
    display: block;
  }
}

#menu .gnav dl {
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 0;
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  padding: 40px 45px;
  margin: 0 -5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .4s;
}

#menu .gnav dl dt {
  width: calc(100% - 10px);
  margin: 0 5px;
  padding-bottom: .4em;
  border-bottom: 2px solid transparent;
  font-size: 26px;
}

#menu .gnav dl dd {
  width: calc(25% - 10px);
  margin: 5px;
}

#menu .gnav dl dd > a {
  height: 50px;
  padding: 10px;
  text-decoration: none;
}

#menu .gnav dl dd > a::before {
  width: 5px;
  margin-right: 10px;
  content: url(../img/mrk-right.svg);
  width: 5px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media (min-width: 961px) {
  #menu .gnav dl dd > a:hover {
    border-radius: 4px;
  }
}

@media (max-width: 960px) {
  #menu .gnav dl {
    position: static;
    width: inherit;
    box-shadow: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    pointer-events: inherit;
    display: none;
  }
  #menu .gnav dl.show {
    display: flex;
  }
  #menu .gnav dl dt {
    display: none;
  }
  #menu .gnav dl dd {
    width: 50%;
    margin: 0;
  }
  #menu .gnav dl dd > a {
    height: 44px;
    padding: 0px;
    border-bottom: 1px solid #DBDBDB;
    font-size: 16px;
  }
  #menu .gnav dl dd > a::before {
    margin-top: 4px;
  }
}

#menu .gnav .parent {
  width: inherit;
  display: flex;
  border-top: 1px solid #DBDBDB;
  padding-top: 5px;
  margin-top: 0;
}

#menu .gnav .parent > a {
  padding-right: 50px;
}

@media (max-width: 960px) {
  #menu .gnav .parent {
    width: 100%;
    display: block;
    margin-top: -1px;
  }
}

#menu .gnav .child {
  margin: 10px 0 0;
  -webkit-column-count: 3;
          column-count: 3;
}

#menu .gnav .child li {
  margin: 3px 15px;
}

#menu .gnav .child li a {
  height: 25px;
  font-size: 16px;
}

@media (max-width: 960px) {
  #menu .gnav .child {
    -webkit-column-count: 1;
            column-count: 1;
  }
  #menu .gnav .child li {
    margin: 3px 20px;
  }
  #menu .gnav .child li a {
    display: inline-flex;
    font-size: 14px;
  }
}

/*
  BUTTON MENU
----------------------------------------------- */
#btnMenu {
  display: none;
}

@media screen and (max-width: 960px) {
  #btnMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 28px;
    height: 17px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  #btnMenu span {
    width: 100%;
    height: 1px;
    background: #000;
    transition: all .2s;
  }
  #btnMenu span + span {
    margin-top: 7px;
  }
  #btnMenu::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "メニュー";
    margin-top: 5px;
    color: #000;
    font-size: 11px;
    white-space: nowrap;
  }
  #btnMenu.active span {
    background: #222;
  }
  #btnMenu.active span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-135deg);
            transform: translateY(8px) rotate(-135deg);
  }
  #btnMenu.active span:nth-child(2) {
    opacity: 0;
  }
  #btnMenu.active span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(135deg);
            transform: translateY(-8px) rotate(135deg);
  }
  #btnMenu.active::after {
    content: "閉じる";
  }
}

/*
  重要なお知らせ
----------------------------------------------- */
.important_info {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  margin-bottom: 100px;
}

@media screen and (max-width: 1240px) {
  .important_info {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 960px) {
  .important_info {
    margin-bottom: 60px;
  }
}

.important_info ul {
  background: #FCE6E7;
  border-radius: 10px;
  padding: 30px 0;
  padding-bottom: 40px;
}

.important_info ul li {
  margin: 1px 30px;
  margin-right: 0;
}

.important_info ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  padding-right: 50px;
  color: #E71C24;
  font-size: 18rem;
  position: relative;
  border-radius: 5px 0 0 5px;
  text-decoration: none;
}

.important_info ul li a::after {
  position: absolute;
  top: calc(50% - .75em);
  right: 40px;
  content: url(../img/mrk-right.svg);
  width: 5px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media (min-width: 961px) {
  .important_info ul li a:hover {
    background: #F8D4B0;
  }
}

@media (max-width: 960px) {
  .important_info ul {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  .important_info ul li {
    margin: 0 20px;
  }
  .important_info ul li a {
    justify-content: flex-start;
    padding: 10px 0;
    padding-right: 15px;
    font-size: 16rem;
  }
  .important_info ul li a::after {
    right: 0px;
  }
}

.important_info .btn_more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 50px;
  padding-bottom: 6px;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #4D4D4D;
  font-size: 14px;
  position: relative;
}

.important_info .btn_more svg {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 5.5px);
  width: 11px;
}

.important_info .btn_more:hover {
  background: #F5A2A5;
  color: #fff;
  text-decoration: none;
}

.important_info .btn_more:hover polygon {
  fill: #fff;
}

@media (max-width: 960px) {
  .important_info .btn_more {
    font-size: 13px;
  }
}

/*
  左側固定SNSボタン
----------------------------------------------- */
.sns_contents {
  position: fixed;
  z-index: 90;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sns_contents dl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sns_contents dl dt {
  position: absolute;
  top: 50%;
  left: -35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 3px;
  border-right: 1px solid transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}

.sns_contents dl dd {
  line-height: 1;
}

.sns_contents dl dd + dd {
  margin-top: 15px;
}

@media (max-width: 960px) {
  .sns_contents {
    position: relative;
    top: inherit;
    left: inherit;
    -webkit-transform: none;
            transform: none;
    margin: 40px 0 20px;
  }
  .sns_contents dl {
    flex-direction: row-reverse;
    justify-content: center;
    padding-bottom: 10px;
  }
  .sns_contents dl dt {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0 3px;
    border-right: none;
    -ms-writing-mode: inherit;
    -webkit-writing-mode: inherit;
            writing-mode: inherit;
  }
  .sns_contents dl dd + dd {
    margin: 0 20px 0 0;
  }
}

/*
  バナー
----------------------------------------------- */
.bottom_banner {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

@media screen and (max-width: 1240px) {
  .bottom_banner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.bottom_banner::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1540px;
  margin: auto;
  content: "";
  background: #EFEEEA;
}

@media (max-width: 960px) {
  .bottom_banner {
    padding: 20px 0;
  }
}

.bottom_banner .slider {
  max-width: 1100px;
  margin: auto;
}

.bottom_banner .slider a {
  margin: 10px;
}

.bottom_banner .slider.showAll {
  display: flex;
  flex-wrap: wrap;
}

.bottom_banner .slider.showAll a {
  width: calc(20% - 20px);
}

@media (max-width: 960px) {
  .bottom_banner .slider a {
    width: 200px;
    margin: 0 5px;
  }
  .bottom_banner .slider.showAll {
    flex-direction: column;
    align-items: center;
  }
  .bottom_banner .slider.showAll a {
    width: 200px;
  }
  .bottom_banner .slider.showAll a + a {
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  .bottom_banner .slider a {
    width: 150px;
  }
  .bottom_banner .slider.showAll a {
    width: 150px;
  }
}

.bottom_banner .slick-dots {
  bottom: -45px;
}

@media (max-width: 960px) {
  .bottom_banner .slick-dots {
    bottom: -35px;
  }
}

.bottom_banner .btn_more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  max-width: 100%;
  height: 50px;
  padding-bottom: 5px;
  margin: auto;
  margin-top: 75px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: #4D4D4D;
  font-size: 14px;
  position: relative;
}

.bottom_banner .btn_more::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: url(../img/mrk-right.svg);
  width: 5px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transform: translateY(calc(-50% - 2px));
          transform: translateY(calc(-50% - 2px));
}

.bottom_banner .btn_more:hover {
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 1px 1px #9DCCE2;
}

@media (max-width: 960px) {
  .bottom_banner .btn_more {
    margin-top: 60px;
    width: 320px;
  }
}

/*
  IMS（イムス）グループ 東北エリアリンク
----------------------------------------------- */
#area {
  margin-top: 100px;
  margin-bottom: 80px;
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
}

@media screen and (max-width: 1240px) {
  #area {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 960px) {
  #area {
    margin-top: 50px;
    padding-bottom: 0px;
    margin-bottom: 50px;
    position: relative;
  }
}

#area ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

#area ul li {
  width: 33.333%;
  padding: 10px;
  line-height: 1.4;
  border-top: 1px solid #DBDBDB;
}

#area ul li:nth-child(3n+1), #area ul li:nth-child(3n+2) {
  border-right: 1px solid #DBDBDB;
}

#area ul li:nth-child(1), #area ul li:nth-child(2), #area ul li:nth-child(3) {
  border-top: none;
}

#area ul li a {
  display: flex;
  padding: 15px 10px;
  border-radius: 6px;
}

#area ul li a img {
  width: 70px;
  height: 70px;
}

#area ul li a .text {
  width: calc(100% - 70px);
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}

#area ul li a .text strong {
  font-size: 18rem;
}

#area ul li a:hover {
  text-decoration: none;
}

#area ul li a:hover img {
  opacity: 1;
}

@media (max-width: 960px) {
  #area ul {
    margin: 0;
    position: relative;
  }
  #area ul::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    content: "";
    background: linear-gradient(transparent, #fff 80%);
    pointer-events: none;
  }
  #area ul li {
    width: 100%;
    padding: 0;
    border-top: none;
    border-bottom: 1px solid #DBDBDB;
  }
  #area ul li:nth-child(3n+1), #area ul li:nth-child(3n+2) {
    border-right: none;
  }
  #area ul li a {
    padding: 10px 0px;
  }
  #area ul li:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) {
    display: none;
  }
  #area ul.show::after {
    display: none;
  }
}

#area .btn_more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 50px;
  padding-bottom: 6px;
  margin: auto;
  color: #4D4D4D;
  font-size: 14px;
  position: relative;
  display: none;
}

#area .btn_more svg {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 5.5px);
  width: 11px;
}

@media (max-width: 960px) {
  #area .btn_more {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: flex;
    font-size: 13px;
  }
}

/*
  FOOTER
----------------------------------------------- */
#footer {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
}

@media screen and (max-width: 1240px) {
  #footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 960px) {
  #footer {
    padding: 30px 0;
  }
}


#footer .logo {
  border-top: 1px solid #DBDBDB;
  padding-top: 35px;
  margin-bottom: 30px;
  text-align: center;
}

#footer .logo img {
  width: 350px;
}

@media (max-width: 960px) {
  #footer .logo {
    padding: 30px 20px 0;
    margin-bottom: 25px;
  }
  #footer .logo img {
    width: 250px;
  }
}

/* #footer .logo {
  border-top: 1px solid #DBDBDB;
  padding-top: 35px;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 960px) {
  #footer .logo {
    padding: 30px 20px 0;
    margin-bottom: 25px;
  }
  #footer .logo img {
    width: 220px;
  }
} */

#footer .info {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 35px;
  margin-bottom: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .info .tel {
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}

#footer .info .tel::before {
  width: 35px;
  margin-right: 10px;
  content: url(../img/ico-contact.svg);
}

#footer .info .access {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0 15px 0 25px;
  background: #E8E8E8;
  border-radius: 20px;
}

#footer .info .access::after {
  margin-left: 20px;
  margin-top: 2px;
  content: url(../img/mrk-right.svg);
  width: 5px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media (max-width: 960px) {
  #footer .info {
    padding-bottom: 30px;
    margin-bottom: 30px;
    flex-direction: column;
  }
  #footer .info .tel {
    margin: 0 0 10px;
  }
  #footer .info .access {
    margin: 20px 0 0;
  }
}

#footer .menu {
  display: flex;
  justify-content: space-between;
}

#footer .menu ul {
  display: flex;
}

#footer .menu ul li {
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .menu ul li::after {
  content: url(../img/mrk-right.svg);
  width: 5px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  margin: 2px 0 0 10px;
}

#footer .menu .copyright {
  font-size: 14rem;
}

@media (max-width: 960px) {
  #footer .menu {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  #footer .menu ul {
    margin: 0 -35px;
  }
  #footer .menu ul li {
    margin: 0 35px;
  }
  #footer .menu .copyright {
    margin-top: 30px;
  }
}

/* #footer .pagetop {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 126px;
  height: 126px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-size: 14rem;
  line-height: 1.4;
} */

#footer .pagetop::after {
  position: absolute;
  top: 10px;
  left: calc(50% - 4px);
  width: 8px;
  content: url(../img/mrk-up.svg);
}

#footer .pagetop:hover {
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 1px 1px #9DCCE2;
}

@media (max-width: 960px) {
  #footer .pagetop {
    display: none;
  }
}

#footer .pagetop {
  position: fixed;
  bottom: 100px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 126px;
  height: 126px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-size: 14rem;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: .3s;
}

#footer .pagetop::after {
  position: absolute;
  top: 10px;
  left: calc(50% - 4px);
  width: 8px;
  content: url(../img/mrk-up.svg);
}

#footer .pagetop:hover {
  text-decoration: none;
}

#footer .pagetop.view {
  opacity: 1;
  pointer-events: inherit;
  -webkit-transform: none;
  transform: none;
}

@media (max-width: 960px) {
  #footer .pagetop {
    display: none;
  }
}

/*
  MODULES
----------------------------------------------- */
/* button */
.btn {
  display: inline-block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-decoration: none;
  transition: opacity .2s;
}

.btn:hover {
  text-decoration: none;
  opacity: .8;
}

.btn:hover img {
  opacity: 1;
}

/* slick */
.slick-dots li {
  margin: 0 10px;
}

/* .slick-dots li button {
  background: #C5E0ED;
  width: unset;
  height: unset;
  padding: 0;
} */
.slick-dots li.slick-active button:before {
  color: #0080B8;
  }
.slick-dots li.slick-active button {
  background: #0080B8;
}

@media (max-width: 960px) {
  .slick-dots li {
    margin: 0 5px;
  }
  .slick-dots li button {
    width: 7px;
    height: 7px;
  }
}
.wp_entry .elastic table td{
	background:#fff;
}

.nishisendai_only{
	display: none!Important;
}