@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap&display=swap");
@media screen and (min-width: 360px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 480px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1040px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1240px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1439px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1239px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1199px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1039px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 479px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 359px) {
  body {
    margin: 0;
  }
}

@media screen and (max-width: 991px) {
  .hidden-md-down {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hidden-sm-down {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hidden-xs-down {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .hidden-lg-up {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .hidden-ipad-up {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .hidden-md-up {
    display: none;
  }
}

@media screen and (min-width: 480px) {
  .hidden-sm-up {
    display: none;
  }
}

@media screen and (min-width: 360px) {
  .hidden-xs-up {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  height: 100%;
  word-break: break-all;
  color: #000;
}

section {
  padding: initial;
}

.contents {
  overflow: visible;
}

ul,
ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ol {
  padding-left: 1.4em;
  list-style: none;
}

dl {
  margin-bottom: 0;
}

dl dt {
  margin-bottom: 0;
}

dl dd {
  margin-bottom: 0;
}

a:link {
  color: initial;
  text-decoration: none;
}

a {
  transition: 0.3s all;
  color: #333;
  opacity: 1;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

i, em {
  font-style: normal;
}

h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin-bottom: 0;
}

h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 0;
}

button, input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  color: inherit;
  background: 0 0;
  border: none;
  margin: 0;
  padding: 0;
}

#header,
#footer {
  position: relative;
  margin-top: 0;
  z-index: 100;
}

.share-sns-column,
.menu-column {
  margin-top: 0;
  position: relative;
  background: #fff;
  z-index: 100;
}

.content-inner {
  max-width: 1335px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pageGuide {
  z-index: 1;
}

/* ------------------------------------------
  component
--------------------------------------- */
.is-open {
  overflow: hidden;
}

.fadein {
  transform: translateY(50px);
  opacity: 0 !important;
  transition: 0.4s linear;
}
.fadein.is-scroll {
  transform: translateY(0);
  opacity: 1 !important;
}

/* ------------------------------------------
  animation
--------------------------------------- */
@-webkit-keyframes slideInBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}
/* 上からぽよん */
@-webkit-keyframes customBounceInUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  60% {
    opacity: 1;
    transform: translateY(-2.5%);
  }
  80% {
    transform: translateY(2%);
  }
  90% {
    transform: translateY(1%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes customBounceInUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  60% {
    opacity: 1;
    transform: translateY(-2.5%);
  }
  80% {
    transform: translateY(2%);
  }
  90% {
    transform: translateY(1%);
  }
  100% {
    transform: translateY(0);
  }
}
/* -------------------------------------- */
#renovation {
  position: relative;
  font-family: "Noto Sans JP", Meiryo, メイリオ, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#renovation .btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0.2em 2em;
  padding-right: 3em;
  background: #fff;
  border: 1px solid #000000;
  transition: all 0.2s ease;
}
#renovation .btn span {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #renovation .btn:hover {
    background: #EDB61A;
  }
}
#renovation .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-left: 0.6em solid #000000;
  border-right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #renovation .btn-more:hover {
    color: #fff;
    background: #ebe7e1;
    border-color: #ebe7e1;
  }
  #renovation .btn-more:hover::after {
    border-left-color: #fff;
  }
}
#renovation .btn-round {
  position: relative;
  display: block;
  color: #FCECF4;
  text-align: center;
  background: #fff;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
#renovation .btn-round::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-left: 0.6em solid #FCECF4;
  border-right: 0;
  transition: color 0.2s ease;
  transform: translateY(-50%);
}
#renovation .btn-round span {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4em;
}
#renovation .btn-round span img {
  width: 80%;
  transition: all 0.2s ease;
}
@media screen and (min-width: 769px) {
  #renovation .btn-round.is-active, #renovation .btn-round:hover {
    color: #000000 !important;
    background: #EDB61A;
    opacity: 1;
  }
  #renovation .btn-round.is-active img, #renovation .btn-round:hover img {
    filter: brightness(0);
  }
  #renovation .btn-round.is-active::after, #renovation .btn-round:hover::after {
    border-left-color: #000000 !important;
  }
}
#renovation .btn-about {
  margin: 0 auto;
  display: block;
  width: 176px;
  height: 32px;
}
#renovation .btn-about span {
  margin-right: 1em;
  font-weight: bold;
}
#renovation .btn-about.present {
  width: 164px;
  height: 32px;
  background: url(/umedamise/250826renovation/assets/img/link_about_pre_bg.png) no-repeat;
  background-size: 100% auto;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #renovation .btn-about.present:hover {
    color: #295BA5;
    background: url(/umedamise/250826renovation/assets/img/link_about_pre_bg_h.png) no-repeat;
    background-size: 100% auto;
  }
}
#renovation .btn-about.card {
  width: 200px;
  height: 32px;
  background: url(/umedamise/250826renovation/assets/img/link_about_card_bg.png) no-repeat;
  background-size: 100% auto;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #renovation .btn-about.card:hover {
    color: #EDB61A;
    background: url(/umedamise/250826renovation/assets/img/link_about_card_bg_h.png) no-repeat;
    background-size: contain;
  }
}
#renovation .btn-about.apri {
  width: 164px;
  height: 32px;
  background: url(/umedamise/250826renovation/assets/img/link_point_apri_bg.png) no-repeat;
  background-size: 100% auto;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #renovation .btn-about.apri:hover {
    color: #E65095;
    background: url(/umedamise/250826renovation/assets/img/link_point_apri_bg_h.png) no-repeat;
    background-size: 100% auto;
  }
}
#renovation .indent {
  padding-left: 1em;
  text-indent: -1em;
}
#renovation .mv {
  position: relative;
  height: 350px;
  background: #c8dce6;
}
@media screen and (max-width: 768px) {
  #renovation .mv {
    height: auto;
    min-height: 300px;
    padding: 0;
  }
}
#renovation .mv-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 350px;
  background: url(/umedamise/250826renovation/assets/img/mv_01.png) no-repeat bottom center;
  background-size: 1467px 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #renovation .mv-wrapper {
    background: url(/umedamise/250826renovation/assets/img/mv_01_sp.png) no-repeat bottom center;
    background-size: 601px 305px;
    width: 100%;
    height: 300px;
    padding: 0;
  }
}
#renovation .mv-inner {
  position: relative;
  margin: 0 auto;
  padding-bottom: 35px;
  width: 770px;
}
@media screen and (max-width: 768px) {
  #renovation .mv-inner {
    width: 100%;
    padding: 0;
  }
}
#renovation .mv-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -90px;
  display: inline-block;
  width: 308px;
  height: 250px;
  background: url(/umedamise/250826renovation/assets/img/mv_daimaru.png) no-repeat bottom center;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  #renovation .mv-inner::after {
    right: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 150px;
    height: 130px;
  }
}
#renovation .mv-ttl {
  position: relative;
  font-size: 4.5rem;
  color: #005c64;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #renovation .mv-ttl {
    font-size: 2.5rem;
    max-width: 300px;
    margin: 0 auto 135px;
  }
}
#renovation .intro {
  padding: 80px 0 65px;
}
@media screen and (max-width: 768px) {
  #renovation .intro {
    padding: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  #renovation .intro-inner {
    padding: 0 5%;
  }
}
#renovation .intro h3 {
  margin-bottom: 35px;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #renovation .intro h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }
}
#renovation .intro h3 span {
  position: relative;
  display: inline-block;
  padding: 0 60px;
  background-color: #c8dce6;
}
#renovation .intro h3 span::before, #renovation .intro h3 span::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 36.5px;
  height: 100%;
}
#renovation .intro h3 span::before {
  background: url(/umedamise/250826renovation/assets/img/notice_ttl_bg.png) no-repeat;
  background-size: 100% auto;
  left: 0;
}
#renovation .intro h3 span::after {
  background: url(/umedamise/250826renovation/assets/img/notice_ttl_bg.png) no-repeat;
  background-size: 100% auto;
  transform: scaleX(-1) scaleY(-1);
  right: 0;
}
#renovation .intro p {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #renovation .intro p {
    font-size: 1.6rem;
    text-align: left;
  }
}
#renovation .intro p + p {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  #renovation .intro p + p {
    margin-top: 1em;
  }
}
#renovation .main-contents {
  padding: 45px 0 80px;
  background-color: #ebe7e1;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents {
    padding: 45px 0 50px;
  }
}
#renovation .main-contents-box .inner {
  margin: 0 auto;
  width: 790px;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents-box .inner {
    padding: 0 5%;
    width: 100%;
  }
}
#renovation .main-contents-box + .main-contents-box {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents-box + .main-contents-box {
    margin-top: 55px;
  }
}
#renovation .main-contents .ttl-box {
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .ttl-box {
    margin-bottom: 30px;
  }
}
#renovation .main-contents .ttl-box h2 {
  margin-bottom: 35px;
  font-size: 3rem;
  color: #005c64;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .ttl-box h2 {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
}
#renovation .main-contents .ttl-box h3 {
  margin-bottom: 35px;
  font-size: 2.8rem;
  color: #005c64;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #renovation .main-contents .ttl-box h3 {
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .ttl-box h3 {
    margin-bottom: 25px;
    font-size: 2.2rem;
    text-align: left;
  }
}
#renovation .main-contents .ttl-box p {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .ttl-box p {
    font-size: 1.6rem;
    text-align: left;
  }
}
#renovation .main-contents .ttl-box p + p {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .ttl-box p + p {
    margin-top: 1em;
  }
}
#renovation .main-contents .ttl-box.ttl-box-sub {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .ttl-box.ttl-box-sub {
    margin-bottom: 22px;
  }
}
#renovation .main-contents .table-box {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  #renovation .main-contents .table-box {
    justify-content: space-between;
  }
}
#renovation .main-contents .table-box table {
  width: 385px;
  border-collapse: separate;
  border-spacing: 5px 10px;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table:not(:first-of-type) {
    margin-top: -10px;
  }
}
#renovation .main-contents .table-box table tr:not(:last-of-type) {
  margin-bottom: 10px;
}
#renovation .main-contents .table-box table tr th, #renovation .main-contents .table-box table tr td {
  padding: 0 0.5em;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table tr th, #renovation .main-contents .table-box table tr td {
    font-size: 1.6rem;
  }
}
#renovation .main-contents .table-box table tr th {
  margin-right: 5px;
  width: 70px;
  background-color: #c8dce6;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table tr th {
    max-width: 70px;
    width: 20%;
  }
}
#renovation .main-contents .table-box table tr td {
  width: 350px;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table tr td {
    width: 80%;
  }
}
#renovation .main-contents .table-box table tr td span.num {
  padding: 0 0.1em;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table tr td span.num {
    font-size: 1.8rem;
  }
}
#renovation .main-contents .table-box table tr td.w100 {
  width: 100%;
  display: block;
}
#renovation .main-contents .table-box table tr td.bluebox {
  padding: 0.3em 0em;
  background-color: #e9eff3;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table tr td.bluebox {
    font-size: 1.2rem;
  }
}
#renovation .main-contents .table-box table tr td.bluebox.f12 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table tr td.bluebox.f12 {
    font-size: 1.1rem;
  }
}
#renovation .main-contents .table-box table.table-sub tr th {
  width: 70px;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table.table-sub tr th {
    max-width: 70px;
    width: 20%;
  }
}
#renovation .main-contents .table-box table.table-sub tr td {
  width: 140px;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box table.table-sub tr td {
    max-width: 100%;
    width: 40%;
  }
}
#renovation .main-contents .table-box-grid {
  display: grid;
}
@media screen and (min-width: 769px) {
  #renovation .main-contents .table-box-grid .grid_02 {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 769px) {
  #renovation .main-contents .table-box-grid .grid_03 {
    margin-top: -10px;
  }
}
#renovation .main-contents .table-box-2 table {
  width: 100%;
}
#renovation .main-contents .table-box-2 table tr td {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box-2 table tr td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box-2 table tr td:nth-of-type(2) {
    margin-top: 10px;
  }
}
#renovation .main-contents .table-box-2 table.w55 {
  margin-top: -10px;
  width: 55%;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .table-box-2 table.w55 {
    width: 100%;
  }
}
#renovation .main-contents .table-caution {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
#renovation .main-contents .latest-info {
  position: relative;
  display: block;
  margin: 60px auto 0;
  padding: 30px 25px 30px 25px;
  width: 600px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .latest-info {
    width: 100%;
    max-width: 320px;
    padding: 20px 15px 40px;
  }
}
#renovation .main-contents .latest-info-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .latest-info-box {
    flex-wrap: nowrap;
    justify-content: center;
  }
}
#renovation .main-contents .latest-info-box::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 22px;
  background: url(/umedamise/250826renovation/assets/img/arrow.png) no-repeat;
  background-size: 100% auto;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .latest-info-box::after {
    width: 32px;
    height: 22px;
    right: 0;
    bottom: -30px;
  }
}
#renovation .main-contents .latest-info .bach {
  margin-right: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #005c64;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .latest-info .bach {
    margin-bottom: 20px;
    margin-right: 5%;
    width: 60px;
    height: 60px;
  }
}
#renovation .main-contents .latest-info .bach span {
  padding: 0 0.6em;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .latest-info .bach span {
    font-size: 1.5rem;
  }
}
#renovation .main-contents .latest-info h4 {
  font-size: 2rem;
  color: #005c64;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .latest-info h4 {
    width: 80%;
    font-size: 1.5rem;
  }
}
#renovation .main-contents .latest-info h4 span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 768px) {
  #renovation .main-contents .latest-info h4 span {
    font-size: 1.1rem;
  }
}
#renovation .bottombox {
  padding: 15px 0;
  background-color: #005c64;
}
@media screen and (max-width: 768px) {
  #renovation .bottombox {
    padding: 15px 5%;
  }
}
#renovation .bottombox p {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #renovation .bottombox p {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=styles.css.map */