@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap");
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

:root {
  --stage-up-color: #54a9b5;
  --text-color-white: #fff;
  --text-color-black: #000;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

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

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

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

a {
  color: var(--text-color-black);
  text-decoration: none;
  transition: all 0.6s;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

/*======================================================================================*/
@media screen and (min-width: 768px) {
  body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transform-origin: top left;
    background-image: url(../myimg/hero-bg02.png);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  body::before {
    width: calc(100% - 490px);
    right: calc(50% - 350px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  body::before {
    width: calc(100% - 310px);
    right: calc(50% - 232px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  body::before {
    width: calc(100% - 407px);
  }
}

/*sp-fixmenu追加*/
div.sp-fix-menu {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 12;
  background-size: 50px;
}
@media screen and (min-width: 768px) {
  div.sp-fix-menu {
    display: none !important;
  }
}
div.sp-fix-menu div.sp-fix-menu-btn {
  display: flex;
  justify-content: center;
}
div.sp-fix-menu div.sp-fix-menu-btn button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  padding: 10px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(3% 0, 97% 0, 100% 100%, 0% 100%);
  background-color: #fff;
  width: 75%;
  margin: auto;
  font-size: 1.1em;
  transform: translate(0, 1px);
}
div.sp-fix-menu div.sp-fix-menu-btn button span {
  display: block;
  line-height: 1.2em;
}
div.sp-fix-menu div.sp-fix-menu-btn button span.icon {
  width: 1em;
  margin-right: 0.4em;
}
@media screen and (min-width: 768px) {
  div.sp-fix-menu div.sp-fix-menu-btn button span.icon {
    width: 1.4em;
  }
}
div.sp-fix-menu div.sp-fix-menu-btn button span.txt {
  font-weight: 600;
  color: var(--text-color-black);
  margin-top: 0.4em;
}
div.sp-fix-menu div.sp-fix-menu-btn button span.arrow {
  width: 0.8em;
  margin-left: 0.4em;
  transform-origin: center center;
  transform: translate(0, 25%) rotate(0deg);
}
div.sp-fix-menu div.sp-fix-menu-btn.active button span.arrow {
  transform: translate(0, 25%) rotate(180deg);
}
div.sp-fix-menu div.slide-menu {
  display: none;
  background: #fff;
  padding: 5% 0 3%;
}
div.sp-fix-menu.active div.slide-menu {
  display: block;
}
div.sp-fix-menu ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
div.sp-fix-menu ul li.osaka a {
  border: solid 1px #ffc9ca;
}
div.sp-fix-menu ul li.osaka a::before {
  background: #ffc9ca;
}
div.sp-fix-menu ul li.hyogo a {
  border: solid 1px #bee274;
}
div.sp-fix-menu ul li.hyogo a::before {
  background: #bee274;
}
div.sp-fix-menu ul li.kyoto a {
  border: solid 1px #cbc2db;
}
div.sp-fix-menu ul li.kyoto a::before {
  background: #cbc2db;
}
div.sp-fix-menu ul li.shiga a {
  border: solid 1px #d7eae6;
}
div.sp-fix-menu ul li.shiga a::before {
  background: #d7eae6;
}
div.sp-fix-menu ul li.nara a {
  border: solid 1px #d7c6b4;
}
div.sp-fix-menu ul li.nara a::before {
  background: #d7c6b4;
}
div.sp-fix-menu ul li.wakayama a {
  border: solid 1px #ffbf85;
}
div.sp-fix-menu ul li.wakayama a::before {
  background: #ffbf85;
}
div.sp-fix-menu ul li.is-none {
  opacity: 0.4;
  filter: grayscale(1);
  pointer-events: none;
}
div.sp-fix-menu ul li {
  text-align: center;
  margin-bottom: 3%;
  width: 48%;
}
div.sp-fix-menu ul li a {
  display: block;
  padding: 0.5em 0;
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  transform-origin: center;
  color: #000;
}
div.sp-fix-menu ul li a:hover {
  transform: scale(0.94);
}
div.sp-fix-menu ul li a:hover::after {
  transform: translate(0, -50%) scale(1.8);
}
div.sp-fix-menu ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  width: 0.5em;
  height: 0.5em;
  background: #000;
  transition: all 0.3s;
  transform-origin: center;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
div.sp-fix-menu ul li a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*sp-fixmenuここまで*/
div.hero-bg2 {
  position: absolute;
  top: 0;
  left: 0;
}

div.all-wrap {
  position: relative;
}
div.all-wrap div.pc-leftbox {
  width: calc(100% - 490px);
  position: fixed;
  top: 3%;
  left: 10px;
}
@media screen and (min-width: 1000px) {
  div.all-wrap div.pc-leftbox {
    top: 0;
  }
}
@media screen and (min-width: 1100px) {
  div.all-wrap div.pc-leftbox {
    width: calc(50% - 240px);
    left: 5px;
    top: 3%;
  }
}
@media screen and (min-width: 1280px) {
  div.all-wrap div.pc-leftbox {
    top: 0;
  }
}
div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
  width: 100%;
  margin: auto;
  max-width: 500px;
}
@media screen and (min-width: 1100px) {
  div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
    max-width: 550px;
  }
}
div.all-wrap div.pc-leftbox .list-wrap {
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 400px;
  z-index: 0;
  padding: 3% 3% 1.5% 3%;
  clip-path: polygon(18% 0, 82% 0, 85% 20%, 100% 20%, 100% 100%, 0 100%, 0 20%, 15% 20%);
}
div.all-wrap div.pc-leftbox .list-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #006D3F;
  /*				opacity: 0.7;*/
  z-index: -1;
  mix-blend-mode: color-burn;
}
div.all-wrap div.pc-leftbox p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  margin: 0 0 1em;
  font-size: clamp(10px, 1.6vw, 18px);
  color: #fff;
}
@media screen and (min-width: 1100px) {
  div.all-wrap div.pc-leftbox p {
    font-size: clamp(10px, 1.2vw, 18px);
  }
}
div.all-wrap div.pc-leftbox p span {
  display: inline-block;
  line-height: 1.2em;
}
div.all-wrap div.pc-leftbox p span.icon {
  width: 1.2em;
}
div.all-wrap div.pc-leftbox p span.txt {
  font-weight: 600;
}
div.all-wrap div.pc-leftbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
div.all-wrap div.pc-leftbox ul li.osaka a {
  border: solid 1px #ffc9ca;
}
div.all-wrap div.pc-leftbox ul li.osaka a::before {
  background: #ffc9ca;
}
div.all-wrap div.pc-leftbox ul li.hyogo a {
  border: solid 1px #bee274;
}
div.all-wrap div.pc-leftbox ul li.hyogo a::before {
  background: #bee274;
}
div.all-wrap div.pc-leftbox ul li.kyoto a {
  border: solid 1px #cbc2db;
}
div.all-wrap div.pc-leftbox ul li.kyoto a::before {
  background: #cbc2db;
}
div.all-wrap div.pc-leftbox ul li.shiga a {
  border: solid 1px #d7eae6;
}
div.all-wrap div.pc-leftbox ul li.shiga a::before {
  background: #d7eae6;
}
div.all-wrap div.pc-leftbox ul li.nara a {
  border: solid 1px #d7c6b4;
}
div.all-wrap div.pc-leftbox ul li.nara a::before {
  background: #d7c6b4;
}
div.all-wrap div.pc-leftbox ul li.wakayama a {
  border: solid 1px #ffbf85;
}
div.all-wrap div.pc-leftbox ul li.wakayama a::before {
  background: #ffbf85;
}
div.all-wrap div.pc-leftbox ul li.is-none {
  opacity: 0.4;
  filter: grayscale(1);
  pointer-events: none;
}
div.all-wrap div.pc-leftbox ul li {
  text-align: center;
  margin-bottom: 3%;
  width: 48%;
}
div.all-wrap div.pc-leftbox ul li a {
  display: block;
  padding: 0.6em 0;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  transform-origin: center;
  color: #222;
  background: #FFF;
}
div.all-wrap div.pc-leftbox ul li a:hover {
  transform: scale(0.94);
}
div.all-wrap div.pc-leftbox ul li a:hover::after {
  transform: translate(0, -50%) scale(1.8);
}
div.all-wrap div.pc-leftbox ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  width: 0.5em;
  height: 0.5em;
  background: #ffffff;
  transition: all 0.3s;
  transform-origin: center;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
div.all-wrap div.pc-leftbox ul li a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
div.all-wrap div.pc-rightbox {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(50% - 232px);
  height: 100vh;
  background: #fff;
}
div.all-wrap div.pc-rightbox div.slide02-noslide div.swiper-slide {
  position: relative;
}
div.all-wrap div.pc-rightbox div.slide02-noslide div.swiper-slide a {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 63%;
  height: 33.6%;
  opacity: 0.4;
}

div.sp-area {
  position: relative;
}
@media screen and (min-width: 768px) {
  div.sp-area {
    width: 465px;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1100px) {
  div.sp-area {
    margin: auto;
  }
}
div.sp-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../myimg/main-bg_sp.png);
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  div.sp-area::before {
    background-image: none;
  }
}

header.header01 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
header.header01 img {
  width: 55%;
  padding: 4% 0;
  margin-inline: auto;
}

header.header02 {
  width: 254px;
  position: fixed;
  top: 20px;
  left: 27px;
  z-index: 1;
}

section.sec-info {
  background-color: #fff;
}
section.sec-info div.sec-info-inner {
  padding: 17% 0 5%;
}
section.sec-info .all-title {
  text-align: center;
  position: relative;
  font-size: 1.8em;
  padding-bottom: 0.6em;
}
section.sec-info .all-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fcc800;
  width: 3em;
  height: 2px;
  border-radius: 50em;
}
section.sec-info div.info-box {
  padding-top: 15%;
  padding-bottom: 10%;
}
section.sec-info div.info-box.is-none {
  display: none;
}
section.sec-info div.info-box h2 {
  width: 80%;
  margin: auto;
  text-align: center;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.2em;
  padding: 0.32em 0 0.4em;
  clip-path: polygon(30% 0, 70% 0, 75% 60%, 100% 60%, 100% 100%, 0 100%, 0 60%, 25% 60%);
}
section.sec-info div.info-box h2.osaka {
  background: #ffc9ca;
}
section.sec-info div.info-box h2.hyogo {
  background: #bee274;
}
section.sec-info div.info-box h2.kyoto {
  background: #cbc2db;
}
section.sec-info div.info-box h2.shiga {
  background: #d7eae6;
}
section.sec-info div.info-box h2.nara {
  background: #d7c6b4;
}
section.sec-info div.info-box h2.wakayama {
  background: #ffbf85;
}
section.sec-info div.info-box ul {
  width: 76%;
  margin: auto;
}
section.sec-info div.info-box ul li {
  padding: 14% 0;
  border-bottom: dotted 2px #111;
}
section.sec-info div.info-box ul li:last-child {
  border: none;
}
section.sec-info div.info-box ul li div.info-img {
  height: 58vw;
  overflow: hidden;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  section.sec-info div.info-box ul li div.info-img {
    height: 270px;
  }
}
section.sec-info div.info-box ul li p {
  text-align: center;
  line-height: 1.6em;
}
section.sec-info div.info-box ul li p.info-txt01 {
  margin: 7% 0;
  font-weight: 500;
}
section.sec-info div.info-box ul li p.info-txt02 {
  margin-top: 4%;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  text-align: left;
}
section.sec-info div.info-box ul li p.info-txt02 span {
  display: inline-block;
}
section.sec-info div.info-box ul li p.info-txt02 span.txt01 {
  font-size: 0.8em;
  font-weight: 400;
  min-width: 5em;
}
section.sec-info div.info-box ul li p.info-txt02 span.txt02 {
  font-size: 0.94em;
  font-weight: 500;
}
section.sec-info div.info-box ul li a {
  display: block;
  background: #000;
  color: var(--text-color-white);
  align-items: center;
  padding: 1em 0;
  width: 90%;
  margin: 1.6em auto 0;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.sec-info div.info-box ul li a {
    transition: all 0.3s;
  }
  section.sec-info div.info-box ul li a:hover {
    background: #0075c1;
  }
  section.sec-info div.info-box ul li a:hover span.arrow {
    right: 5%;
  }
}
section.sec-info div.info-box ul li a span {
  display: block;
  text-align: center;
}
section.sec-info div.info-box ul li a span.txt {
  line-height: 1em;
}
section.sec-info div.info-box ul li a span.arrow {
  width: 1.2em;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}

a.top-btn {
  display: block;
  width: 30%;
  margin: 0 auto 10%;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  a.top-btn {
    transition: all 0.3s;
  }
  a.top-btn span.arrow {
    transition: all 0.3s;
  }
  a.top-btn svg {
    transition: all 0.3s;
  }
  a.top-btn:hover {
    color: #0075c1;
  }
  a.top-btn:hover span.arrow {
    transform: translate(0, -18%);
  }
  a.top-btn:hover svg {
    fill: #0075c1;
  }
}
a.top-btn span {
  display: block;
  width: 20%;
  margin: auto;
}

footer {
  padding: 10% 0 20%;
  background: #fff;
}
footer .ft-logo {
  display: block;
  width: 64.8%;
  margin: auto;
}
footer ul {
  text-align: center;
  font-weight: 300;
  margin: 7% 0;
}
footer ul li {
  margin-bottom: 3%;
}
footer p {
  text-align: center;
  font-size: 0.8em;
  font-weight: 300;
}

div.hero-area {
  position: relative;
  padding: 9% 0 10%;
}
div.hero-area h1 {
  max-width: 92%;
  margin-left: 3%;
}
@media screen and (min-width: 768px) {
  div.hero-area h1 img {
    max-width: 100%;
    margin-left: 0;
  }
}
div.hero-area span.stageup-icon {
  display: block;
  position: absolute;
  width: 33%;
  left: 7%;
  top: 56.6%;
}

section.sec-present {
  background: #F0EBD8;
  padding: 15% 0;
}
section.sec-present p.present-txt01 {
  text-align: center;
  line-height: 1.8em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.sec-present p.present-txt01 {
    font-size: 1.1em;
  }
}
section.sec-present a {
  background-color: #F26489;
  display: block;
  border: 2px solid #fff;
  border-radius: 50em;
  color: #fff;
  width: 70%;
  margin: 1.4em auto;
  box-sizing: border-box;
  padding: 0.3em 0.4em 0.3em 0.4em;
  position: relative;
  font-weight: bold;
  text-align: center;
}
section.sec-present a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  background-color: #FFFF00;
  width: 0.7em;
  height: 0.5em;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
section.sec-present p.present-txt02 {
  width: 95%;
  margin: auto;
}
section.sec-present p.present-txt03 {
  text-align: center;
  font-size: 0.94em;
  letter-spacing: 0;
  line-height: 1.8em;
  margin: 1.6em 0;
  font-weight: 500;
}
section.sec-present .more-btn {
  display: block;
  width: 78.6%;
  margin: auto;
  padding: 0.2em 0;
  position: relative;
  font-size: 0.9em;
  background-color: #fff;
  border: none;
  cursor: pointer;
  color: #000;
}
@media screen and (min-width: 768px) {
  section.sec-present .more-btn {
    font-size: 15px;
  }
}
section.sec-present .more-btn span.cross {
  display: block;
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
section.sec-present .more-btn span.cross::after, section.sec-present .more-btn span.cross::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
}
section.sec-present .more-btn span.cross::before {
  width: 1px;
  height: 100%;
}
section.sec-present .more-btn span.cross::after {
  width: 100%;
  height: 1px;
}
section.sec-present p.present-txt04 {
  color: #111;
  width: 78.6%;
  margin: auto;
  text-align: justify;
  word-break: break-all;
  font-size: 0.72em;
  line-height: 1.4em;
  margin-top: 1em;
}
section.sec-present div.present-img {
  margin-top: 6.2%;
  width: 90%;
  margin-inline: auto;
}
section.sec-present p.present-txt05 {
  text-align: center;
  font-size: 0.9em;
  margin: 5.3% 0 0;
}

section.stage-up {
  background: #57B983;
  padding: 11.2% 0;
}
@media screen and (min-width: 768px) {
  section.stage-up {
    padding: 80px 0 60px 0;
  }
}
section.stage-up h2 {
  width: 74%;
  margin: 0 auto;
  margin-bottom: 9.6%;
}
@media screen and (min-width: 768px) {
  section.stage-up h2 {
    max-width: 480px;
    margin-bottom: 35px;
  }
}
section.stage-up h3 {
  width: 84%;
  margin: 0 auto;
  margin-bottom: 11.8%;
}
@media screen and (min-width: 768px) {
  section.stage-up h3 {
    max-width: 900px;
    margin-bottom: 45px;
  }
}
section.stage-up p.stage-txt {
  width: 86%;
  margin: 0 auto;
  margin-bottom: 8%;
}
@media screen and (min-width: 768px) {
  section.stage-up p.stage-txt {
    width: 92%;
    max-width: 1100px;
    margin-bottom: 0;
    margin-top: 20px;
  }
}
section.stage-up p.note-stepup {
  width: 86%;
  margin: 2em auto 0;
  font-size: 0.77em;
  letter-spacing: 0;
  line-height: 1.5em;
  color: var(--text-color-white);
  text-align: justify;
}
section.stage-up p.note {
  text-align: center;
  font-size: 0.8em;
  color: var(--text-color-white);
  margin-top: 10%;
}
@media screen and (min-width: 768px) {
  section.stage-up p.note {
    margin-top: 30px;
  }
}
section.stage-up div.lnik-btn {
  width: 80%;
  margin: 0 auto;
  margin-top: 10%;
}
@media screen and (min-width: 768px) {
  section.stage-up div.lnik-btn {
    margin-top: 60px;
    margin-bottom: 10px;
  }
}
section.stage-up div.lnik-btn a {
  display: block;
  width: 100%;
  background: #FFF;
  line-height: 1.5em;
  font-weight: 600;
  text-align: center;
  color: var(--text-color-black);
  padding: 0.6em 0;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.stage-up div.lnik-btn a {
    max-width: 600px;
    margin: auto;
    font-size: 20px;
    padding: 0.4em 0;
  }
}
section.stage-up div.lnik-btn a span {
  display: inline-block;
  position: relative;
}
section.stage-up div.lnik-btn a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.6em;
  transform: translateY(-50%);
  border: 0.32em solid transparent;
  border-left: 0.8em solid var(--text-color-black);
}
section.stage-up div.lnik-btn.jiyuu a {
  background: #000;
  border: solid 2px var(--text-color-white);
}
section.stage-up div.lnik-btn.jiyuu a span {
  color: var(--text-color-white);
}
section.stage-up div.lnik-btn.jiyuu a span::after {
  border-left: 0.8em solid var(--text-color-white);
}
section.stage-up div.lnik-btn.night-attaka a {
  background: #000;
  border: solid 2px var(--text-color-white);
}
section.stage-up div.lnik-btn.night-attaka a span {
  color: var(--text-color-white);
}
section.stage-up div.lnik-btn.night-attaka a span::after {
  border-left: 0.8em solid var(--text-color-white);
}
section.stage-up {
  /*div.lnik-btn*/
} /*section.stage-up*//*# sourceMappingURL=style.css.map */