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


     facility


============================================================================= */
.submv-txt {
  font-size: 2rem;
  margin-top: 1.5em;
  text-align: center;
}

.link {
  padding: 60px 0;
}

.link-list {
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link-item a {
  background: #009bd2;
  border-radius: 0 1.5em 1.5em 0;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 2.8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
  padding: 0.5em 0.5em;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 260px;
}
.link-item a:hover {
  opacity: 0.7;
}
.link-item a span {
  background: #fff;
  border-radius: 50%;
  font-size: inherit;
  height: 1em;
  min-width: 20px;
  position: relative;
  width: 1em;
}
.link-item a span:before {
  background: #009bd2;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  content: "";
  height: 70%;
  left: 55%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
}

.map {
  padding: 60px 0;
}

.facility-ttl {
  font-size: 3rem;
  margin-bottom: 1em;
  text-align: center;
}
.facility-ttl > span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #009bd2;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4;
  padding: 0.25em 2em;
  position: relative;
  z-index: 1;
}
.facility-ttl > span:before {
  background: inherit;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  height: 15px;
  left: 50%;
  position: absolute;
  top: calc(100% - 1px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  z-index: -1;
}
.facility-ttl > span span {
  font-size: 1.6rem;
}

.map-span {
  font-size: 1.4rem;
  text-align: center;
}

.map-name {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #009bd2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  height: 100%;
  padding: 0 1em;
  width: 100%;
}

.map-namebox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 60px;
  position: relative;
}
.map-namebox span {
  background: #009bd2;
  border: 1px solid #009bd2;
  height: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
}
.map-namebox span:before, .map-namebox span:after {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 25px;
}
.map-namebox span {
  /* そのうち1本を縦にする */
}
.map-namebox span:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.map-namebox span {
  /* プラスアイコンクリック後、マイナスにする */
}
.map-namebox.on span:before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.map-figure {
  margin: auto;
  margin-top: 120px;
  max-width: 960px;
}

.map-container {
  margin: auto;
  max-width: 960px;
}

.map-link-contents {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  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;
  margin: 120px auto 0;
  max-width: 960px;
  width: 100%;
}

.map-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 25%;
}

.map-link-item {
  border: 1px solid #1e1e1e;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  width: 100%;
}
.map-link-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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.5em 0;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}
.map-link-item a:hover {
  background: #009bd2;
  color: #fff;
}
.map-link-item a:hover span {
  border-right: solid 1px #fff;
  border-top: solid 1px #fff;
}
.map-link-item span {
  border-right: solid 1px #1e1e1e;
  border-top: solid 1px #1e1e1e;
  height: 8px;
  position: absolute;
  right: 24px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 8px;
}
.map-link-item:nth-child(2n+1):hover {
  background: #009bd2;
}
.map-link-item:nth-child(2n):hover {
  background: #bd4c43;
}

.map-content {
  display: none;
  padding: 28px 0 28px 60px;
}

.map-figure {
  margin: 40px auto;
  max-width: 940px;
  position: relative;
}

.map-link {
  position: absolute;
}

.link01 {
  bottom: 0;
  height: 30%;
  left: 67.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 23%;
}

.link02 {
  height: 35%;
  left: 3.5%;
  top: 6%;
  width: 24%;
}

.link03 {
  height: 18%;
  left: 79%;
  top: 41%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20%;
}

.link04 {
  bottom: 0;
  height: 30%;
  left: 89%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7%;
}

.link05 {
  bottom: 0;
  height: 30%;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 17%;
}

.link06 {
  height: 23%;
  left: 46.5%;
  top: 18.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.8%;
}

.map-list {
  margin: 100px auto 0;
  max-width: 800px;
}

.map-item + .map-item {
  margin-top: 28px;
}

.map-label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #009bd2;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  height: 100%;
  min-width: 140px;
  padding: 0 2em;
}

.map-content-img {
  margin: auto;
  width: 100%;
}

.map-outline {
  margin-top: 20px;
}

.map-outline-name {
  font-size: 2rem;
}

.map-outline-table td,
.map-outline-table th {
  font-size: 1.8rem;
  padding: 0.5em 0;
  vertical-align: top;
}
.map-outline-table th {
  color: #009bd2;
  text-align: justify;
}
.map-outline-table td {
  gap: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0.5em;
}
.map-outline-table td p {
  width: 100%;
}
.map-outline-table td span {
  display: inline-block;
}

.btn-box {
  gap: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 28px auto 0;
}

.arrow-btn {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #009bd2;
  border-radius: 10px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.arrow-btn._ex {
  background: #999999;
}
.arrow-btn._ex span:before {
  background: #999999;
}
.arrow-btn:hover {
  opacity: 0.7;
}
.arrow-btn img {
  width: 24px;
}
.arrow-btn span {
  background: #fff;
  border-radius: 50%;
  height: 20px;
  min-width: 20px;
  position: relative;
  width: 20px;
}
.arrow-btn span:before {
  background: #009bd2;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  content: "";
  height: 70%;
  left: 55%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
}

.use {
  padding: 60px 0 120px;
}

.use-ex {
  margin: 40px auto;
  text-align: center;
}

.use-ex-txt {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.reserve-btn {
  display: inline-block;
  max-width: 280px;
}

.use-box {
  margin: auto;
  max-width: 880px;
  padding: 20px 0;
}

.use-boxttl {
  color: #009bd2;
  font-size: 1.8rem;
}
.use-boxttl span {
  border: 1px solid #009bd2;
  padding: 0.25em 0.5em;
}

.use-info {
  gap: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0;
}

.use-info-item {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 10px);
}

.use-info-itemttl {
  font-size: 1.8rem;
  margin-top: -0.15em;
  min-width: 5em;
  width: 5em;
}

.flow-list {
  margin-top: 40px;
}

.flow-item {
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.flow-item:before {
  background: #009bd2;
  content: "";
  height: calc(100% - 120px);
  left: 40px;
  max-height: 100%;
  position: absolute;
  top: 100px;
  width: 1px;
}

.flow-num {
  aspect-ratio: 1/1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #009bd2;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  width: 80px;
}
.flow-num span {
  font-size: 2.2rem;
}

.flow-item-box {
  padding: 0 0 40px;
  width: calc(100% - 100px);
}

.flow-item-ttl {
  font-size: 2.2rem;
  padding: 20px 0;
}

.flow-item-txt a {
  color: #009bd2;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.flow-item-txt a:hover {
  opacity: 0.7;
}

.flow-item-head {
  color: #009bd2;
}
.flow-item-txt + .flow-item-head {
  margin-top: 1em;
}

.table-scroll {
  margin: 20px auto 0;
  overflow-x: auto;
}

.use_table {
  border-collapse: collapse;
  border-spacing: 0;
  min-width: 600px;
  table-layout: auto;
}
.use_table th,
.use_table td {
  letter-spacing: 0px;
  padding: 10px 10px;
  text-align: center;
  vertical-align: middle;
}
.use_table th {
  background: rgba(0, 155, 210, 0.5);
  font-weight: normal;
}
.use_table tr + tr {
  border-bottom: 1px solid #000;
}

.flow-table-span {
  margin-top: 20px;
}

.flow-table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flow-table-item span {
  min-width: 2em;
}

.doc-list {
  border: 1px solid #1e1e1e;
  margin: 80px auto 0;
  max-width: 680px;
  padding: 28px 40px;
  text-align: center;
}

.doc-list-title {
  font-size: 2rem;
  text-align: center;
}

.doc-list-items {
  display: inline-block;
  margin-top: 40px;
}

.doc-item {
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 0;
  text-align: left;
}

.doc-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}

.doc-item-right {
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.doc-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  height: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.5px;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.doc-link img {
  width: 32px;
}
.doc-link:hover {
  opacity: 0.7;
}

.doc-link.is-empty {
  opacity: 0;
  visibility: hidden;
}

.doc-link.is-empty.none {
  display: none;
}

.salon-contents {
  margin: auto;
  max-width: 800px;
}

.salon-img {
  margin: 40px auto;
}

.salon-txt {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.salon-active-box {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin-top: 40px;
}

.salon-active-img figcaption {
  display: block;
  font-size: 1.8rem;
  margin-top: 0.5em;
  text-align: center;
}

.doc-link span {
  padding-right: 0.5em;
}

@media (max-width: 1128px){
  .link-list {
    gap: 30px;
  }
  .link-item a {
    font-size: 2.4rem;
    width: 200px;
  }
}

@media (max-width: 750px){
  .submv-txt {
    font-size: 1.6rem;
  }
  .link {
    padding: 40px 0;
  }
  .link-list {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-item a {
    font-size: 2rem;
    width: 160px;
  }
  .facility-ttl {
    font-size: 2rem;
  }
  .facility-ttl > span span {
    font-size: 1.4rem;
  }
  .map-span {
    font-size: 1.2rem;
  }
  .map-name {
    font-size: 1.6rem;
  }
  .map-namebox {
    height: 40px;
    padding-left: 48px;
  }
  .map-namebox span:before, .map-namebox span:after {
    width: 15px;
  }
  .map-namebox span {
    font-size: 1.6rem;
    width: 40px;
  }
  .map-link-contents {
    max-width: 600px;
  }
  .map-link-list:nth-child(1), .map-link-list:nth-child(4) {
    width: 100%;
  }
  .map-link-list {
    width: 50%;
  }
  .map-link-item {
    font-size: 1.4rem;
  }
  .map-content {
    padding-left: 0px;
  }
  .map-list {
    margin-top: 50px;
  }
  .map-label {
    min-width: 90px;
    padding: 0 1em;
  }
  .map-outline-name {
    font-size: 1.6rem;
  }
  .map-outline-table td,
  .map-outline-table th {
    font-size: 1.4rem;
  }
  .arrow-btn {
    padding: 8px 10px;
  }
  .arrow-btn img {
    width: 16px;
  }
  .arrow-btn span {
    height: 15px;
    min-width: 15px;
    width: 15px;
  }
  .use {
    padding: 40px 0 80px;
  }
  .use-ex-txt {
    font-size: 1.4rem;
  }
  .use-boxttl {
    font-size: 1.4rem;
  }
  .use-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .use-info-item {
    width: 100%;
  }
  .use-info-itemttl {
    font-size: 1.4rem;
  }
  .flow-item:before {
    height: calc(100% - 85px);
    left: 25px;
    top: 65px;
  }
  .flow-num {
    font-size: 1.2rem;
    width: 50px;
  }
  .flow-num span {
    font-size: 1.5rem;
  }
  .flow-item-box {
    width: calc(100% - 70px);
  }
  .flow-item-ttl {
    font-size: 1.6rem;
    padding-top: 5px;
  }
  .use_table {
    font-size: 1.2rem;
    min-width: 480px;
  }
  .flow-table-item {
    font-size: 1.2rem;
  }
  .doc-list {
    margin: 40px auto 0;
    padding: 28px 20px;
  }
  .doc-list-title {
    font-size: 1.6rem;
  }
  .doc-list-items {
    margin-top: 20px;
  }
  .salon-img {
    margin: 28px auto;
  }
  .salon-txt {
    font-size: 1.4rem;
  }
  .salon-active-box {
    gap: 15px;
  }
  .salon-active-img figcaption {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=facility.css.map*/