@charset "UTF-8";
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.e-header-sp .logo svg {
  fill: #fff;
}
.e-header-pc .logo svg {
  fill: #fff;
}

.pen-marker {
  background: linear-gradient(transparent 75%, #9EAC3D 0%);
  border-radius: 3px;
}

.pen-marker-animation {
  display: inline;
  background-image: linear-gradient(90deg, #9EAC3D, #9EAC3D); /* マーカーの色を指定 */
  background-repeat: no-repeat;
  background-position: left bottom; /* マーカーの発生位置を左下に設定 */
  background-size: 0 30%; /* マーカーの横幅 / 縦幅 */
  transition: all 1s ease; /* マーカーを引く速度 */
  cursor: pointer; /* ホバー時のカーソルをポインターにする */
}
.pen-marker-animation.active {
  background-size: 100% 30%;
}

.pg-top-visual {
  position: relative;
  z-index: 100;
  height: 100vh;
}
.pg-top-visual-contents {
  position: absolute;
  z-index: 10;
  color: #fff;
  display: block;
  text-align: left;
  overflow-y: hidden;
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .pg-top-visual-contents {
    overflow-y: visible;
    text-align: right;
  }
}
.pg-top-visual-contents h1 {
  font-size: 1.875rem;
  letter-spacing: 0.625rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  width: 100%;
  margin-top: 110px;
  padding-right: 30px;
  white-space: nowrap;
}
@media print, screen and (min-width: 600px) {
  .pg-top-visual-contents h1 {
    font-size: 3.125rem;
  }
}
@media print, screen and (min-width: 960px) {
  .pg-top-visual-contents h1 {
    writing-mode: horizontal-tb;
    font-size: 3.125rem;
    font-weight: bold;
    margin-top: 200px;
    padding-right: 100px;
  }
}
@media print, screen and (min-width: 960px) {
  .pg-top-visual-contents span {
    color: transparent;
    -webkit-animation: catch_copy 7s ease-out infinite;
            animation: catch_copy 7s ease-out infinite;
  }
}
.pg-top-visual-contents span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.pg-top-visual-contents span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.pg-top-visual-contents span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.pg-top-visual-contents span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.pg-top-visual-contents span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.pg-top-visual-contents span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.pg-top-visual-contents span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
@-webkit-keyframes catch_copy {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
  5% {
    text-shadow: 0 0 90px #fff;
  }
  15% {
    opacity: 1;
  }
  20% {
    text-shadow: 0 0 0px #fff;
  }
  80% {
    text-shadow: 0 0 0px #fff;
  }
  85% {
    opacity: 1;
  }
  95% {
    text-shadow: 0 0 90px #fff;
  }
  100% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
}
@keyframes catch_copy {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
  5% {
    text-shadow: 0 0 90px #fff;
  }
  15% {
    opacity: 1;
  }
  20% {
    text-shadow: 0 0 0px #fff;
  }
  80% {
    text-shadow: 0 0 0px #fff;
  }
  85% {
    opacity: 1;
  }
  95% {
    text-shadow: 0 0 90px #fff;
  }
  100% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
}
.pg-top-visual-pic {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  background-size: cover;
}
@media print, screen and (min-width: 959px) {
  .pg-top-visual-pic {
    top: 105px;
  }
}
.pg-top-visual-pic img {
  width: 100%;
  height: auto;
}
.pg-top-visual-pic.disabled {
  display: none;
}

.pg-top-wrap {
  position: relative;
  z-index: 1000;
  background-color: #fff;
}
.pg-top-container {
  max-width: 1108px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 23.5px;
}

#youtube_main {
  padding-top: 40px;
  width: 100%;
  aspect-ratio: 16/9;
}
#youtube_main iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 600px) {
  #youtube_main {
    padding-top: 120px;
  }
}
#youtube_sub {
  padding-top: 14px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 600px) {
  #youtube_sub {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
#youtube_sub ul {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
  list-style: none;
}
#youtube_sub ul li {
  width: 33%;
}
#youtube_sub ul li img {
  width: 100%;
  height: auto;
}

.news {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 1.875rem;
}
@media print, screen and (min-width: 960px) {
  .news {
    transform: rotateZ(0.03deg);
  }
}
.news-list {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .news-list {
    width: 60%;
  }
}
.news-list h2 {
  font-weight: 500;
  letter-spacing: 0.5rem;
}
.news-list ul {
  list-style: none;
  margin-bottom: 1.5625rem;
}
.news-list ul li {
  border-top: 1px solid #CCCCCC;
}
.news-list ul li:hover {
  background: #F5F5F5;
}
.news-list ul li dl {
  padding: 1.25rem 0;
}
.news-list ul li dl dt span {
  margin-left: 10px;
  padding: 0 5px;
  border-radius: 16px;
  border: 1px solid #CCCCCC;
}
.news-list .waku a {
  text-decoration: none;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  border: 2px solid #F3F3CD;
  font-size: 0.875rem;
}
.news-list .waku a:hover {
  background-color: #F3F3CD;
}
.news-list .waku a:visited, .news-list .waku a:active {
  color: inherit;
}
.news .calendar {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .news .calendar {
    width: 35%;
  }
}

.xo-event-calendar {
  margin: 70px auto;
}
@media print, screen and (min-width: 600px) {
  .xo-event-calendar {
    margin: 20px auto;
  }
}
.xo-event-calendar table.xo-month caption {
  margin-bottom: 20px;
}
.xo-event-calendar table.xo-month thead tr th {
  font-weight: normal;
}

.about {
  background-image: url(../images/asa_gara_01.png);
  background-repeat: round;
  padding-bottom: 2.5rem;
}
@media print, screen and (min-width: 960px) {
  .about {
    transform: rotateZ(0.03deg);
  }
}
.about img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 960px) {
  .about img {
    border-radius: 10px;
    min-width: 450px;
    max-width: 450px;
  }
}
.about-list {
  padding-top: 3.125rem;
}
@media print, screen and (min-width: 600px) {
  .about-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
  }
}
.about-list-detail p {
  margin-top: 10px;
}
@media print, screen and (min-width: 960px) {
  .about-list-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 450px;
    width: 100%;
  }
}
.about-list-detail h2 {
  font-size: 1.5625rem;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .about-list-detail h2 {
    font-size: 2.25rem;
  }
}
.about-list-detail ul {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  list-style: none;
}
.about-list-detail ul dt {
  white-space: nowrap;
}
@media print, screen and (min-width: 600px) {
  .about-list-detail ul li dl dd {
    padding: 0 0.625rem;
  }
}
@media print, screen and (min-width: 960px) {
  .about-list-detail ul {
    line-height: 2.1875rem;
  }
  .about-list-detail ul li {
    font-size: 1.125rem;
  }
  .about-list-detail ul li dl {
    display: flex;
  }
  .about-list-detail ul li dl dd {
    padding: 0 0.625rem;
  }
}
@media print, screen and (min-width: 960px) {
  .about-list-detail .btn {
    padding-right: 1.25rem;
  }
}
.about-list-detail a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #F3F3CD;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 600px) {
  .about-list-detail a {
    margin-right: 0.625rem;
  }
}
@media print, screen and (min-width: 960px) {
  .about-list-detail a {
    margin-right: 0.625rem;
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.about-list-detail a:hover {
  background-color: #F3F3CD;
}
.about-list-detail a:link, .about-list-detail a:visited, .about-list-detail a:active {
  color: inherit;
}

.tower {
  background-image: url(../images/asa_gara_02.png);
  background-repeat: round;
  padding-bottom: 2.5rem;
}
@media print, screen and (min-width: 960px) {
  .tower {
    transform: rotateZ(0.03deg);
  }
}
.tower img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 960px) {
  .tower img {
    min-width: 450px;
    max-width: 450px;
    border-radius: 10px;
  }
}
.tower-info {
  padding-top: 3.125rem;
}
@media print, screen and (min-width: 600px) {
  .tower-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
  }
}
@media print, screen and (min-width: 960px) {
  .tower-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 450px;
    margin-left: 20px;
  }
}
@media print, screen and (min-width: 600px) {
  .tower-detail {
    margin-left: 20px;
  }
}
.tower-detail h2 {
  font-size: 1.5625rem;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .tower-detail h2 {
    font-size: 2.25rem;
  }
}
.tower-detail h4 {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: normal;
}
@media print, screen and (min-width: 960px) {
  .tower-detail h4 {
    font-size: 2.1875rem;
  }
}
.tower-detail p {
  margin-top: 1.25rem;
  line-height: 1.5625rem;
}
@media print, screen and (min-width: 960px) {
  .tower-detail p {
    font-size: 1.125rem;
    line-height: 2.1875rem;
    padding-right: 0.625rem;
  }
}
.tower-detail h3 {
  white-space: nowrap;
  margin: 1.25rem 0;
  text-align: center;
  font-size: 1.375rem;
}
@media print, screen and (min-width: 960px) {
  .tower-detail h3 {
    font-size: 1.875rem;
  }
}
@media print, screen and (min-width: 960px) {
  .tower-detail .btn {
    padding-top: 1.875rem;
    padding-right: 0.625rem;
  }
}
.tower-detail a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #98CE97;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 600px) {
  .tower-detail a {
    margin-right: 0.625rem;
  }
}
@media print, screen and (min-width: 960px) {
  .tower-detail a {
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.tower-detail a:hover {
  background-color: #98CE97;
}
.tower-detail a:link, .tower-detail a:visited, .tower-detail a:active {
  color: inherit;
}

.tour_access-container {
  max-width: 1108px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 23.5px;
}
.tour_access-wrap {
  padding: 50px 0;
}
@media print, screen and (min-width: 600px) {
  .tour_access-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
  }
}
.tour_access-wrap .tourism {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.tour_access-wrap .tourism img {
  display: block;
  max-width: 490px;
  border-radius: 10px;
  padding-right: 5px;
}
.tour_access-wrap .tourism-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.tour_access-wrap .tourism-container h2 {
  text-align: center;
  font-size: 2.1875rem;
  white-space: nowrap;
}
.tour_access-wrap .tourism-container .btn {
  margin-top: 250px;
}
@media print, screen and (min-width: 600px) {
  .tour_access-wrap .tourism-container .btn {
    margin-top: 200px;
  }
}
@media print, screen and (min-width: 960px) {
  .tour_access-wrap .tourism-container .btn {
    margin-top: 250px;
  }
}
.tour_access-wrap .tourism-container .btn a {
  color: #fff !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  background: none;
  border: 1px solid #fff;
}
@media print, screen and (min-width: 960px) {
  .tour_access-wrap .tourism-container .btn a {
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.tour_access-wrap .tourism-container .btn a:hover, .tour_access-wrap .tourism-container .btn a:active {
  background-color: #fff;
  color: #004537 !important;
}
.tour_access-wrap .tourism-container .btn a:visited {
  color: inherit;
}
.tour_access-wrap .access img {
  display: block;
  max-width: 490px;
  border-radius: 10px;
  padding-left: 5px;
}
.tour_access-wrap .access-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.tour_access-wrap .access-container h2 {
  text-align: center;
  font-size: 2.1875rem;
  white-space: nowrap;
}
.tour_access-wrap .access-container .btn {
  margin-top: 200px;
}
@media print, screen and (min-width: 600px) {
  .tour_access-wrap .access-container .btn {
    margin-top: 140px;
  }
}
@media print, screen and (min-width: 960px) {
  .tour_access-wrap .access-container .btn {
    margin-top: 200px;
  }
}
.tour_access-wrap .access-container .btn a {
  color: #fff !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  background: none;
  border: 1px solid #fff;
}
@media print, screen and (min-width: 960px) {
  .tour_access-wrap .access-container .btn a {
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.tour_access-wrap .access-container .btn a:hover, .tour_access-wrap .access-container .btn a:active {
  background-color: #fff;
  color: #004537 !important;
}
.tour_access-wrap .access-container .btn a:visited {
  color: inherit;
}

.tourism {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.tourism img {
  display: block;
  height: auto;
  width: 100%;
}
.tourism-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.tourism-container {
  max-width: 1108px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 23.5px;
}
.tourism h2 {
  padding-top: 100px;
  text-align: center;
  font-size: 1.5625rem;
  white-space: nowrap;
}
@media print, screen and (min-width: 600px) {
  .tourism h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .tourism h2 {
    padding-top: 80px;
    color: #fff;
  }
}
@media print, screen and (min-width: 960px) {
  .tourism h2 {
    padding-top: 100px;
    color: #fff;
  }
}
.tourism .btn {
  text-align: right;
  margin-top: 300px;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .tourism .btn {
    margin-top: 100px;
  }
}
@media print, screen and (min-width: 960px) {
  .tourism .btn {
    margin-top: 150px;
  }
}
.tourism a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  margin-top: 200px;
  font-size: 0.875rem;
  background: #98CE97;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #98CE97 100%);
  background-color: #F3F3CD;
}
@media print, screen and (min-width: 960px) {
  .tourism a {
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.tourism a:hover, .tourism a:active {
  background-color: #F3F3CD;
}
.tourism a:visited {
  color: inherit;
}

.access {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.access-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.access-container {
  max-width: 1108px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 23.5px;
}
.access h2 {
  color: #fff;
  padding-top: 100px;
  text-align: center;
  font-size: 1.5625rem;
  white-space: nowrap;
}
@media print, screen and (min-width: 600px) {
  .access h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .access h2 {
    padding-top: 80px;
    color: #fff;
  }
}
@media print, screen and (min-width: 960px) {
  .access h2 {
    padding-top: 100px;
    color: #fff;
  }
}
.access address {
  margin-top: 70px;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  white-space: nowrap;
  font-style: normal;
  text-shadow: 1px 1px 1px #004537;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .access address {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 600px) {
  .access address {
    font-size: 1.25rem;
    margin-top: 30px;
  }
}
.access .btn {
  text-align: right;
  margin-top: 200px;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .access .btn {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .access .btn {
    margin-top: 130px;
  }
}
@media print, screen and (min-width: 1200px) {
  .access .btn {
    margin-top: 250px;
  }
}
.access a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  bottom: 10%;
  right: 23.5px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, beige 100%);
  background-color: #98CE97;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 960px) {
  .access a {
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.access a:hover, .access a:active {
  background-color: #98CE97;
}
.access a:visited {
  color: inherit;
}
.access img {
  display: block;
  width: 100%;
  height: auto;
}

.guide {
  background-image: url(../images/asa_gara_01.png);
  background-repeat: round;
}
@media print, screen and (min-width: 960px) {
  .guide {
    transform: rotateZ(0.03deg);
  }
}
.guide-contents {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
}
@media print, screen and (min-width: 600px) {
  .guide-contents {
    flex-direction: row-reverse;
  }
}
.guide-contents img {
  width: 150px;
  height: auto;
}
@media print, screen and (min-width: 600px) {
  .guide-contents img {
    border-radius: 10px;
    width: 450px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .guide-contents img {
    width: 350px;
  }
}
.guide-detail {
  width: 100%;
  padding-left: 10px;
}
.guide-detail h2 {
  text-align: center;
  font-size: 1.25rem;
}
@media print, screen and (min-width: 600px) {
  .guide-detail h2 {
    font-size: 2.25rem;
  }
}
.guide-detail table {
  width: 100%;
  font-size: 0.75rem;
  margin-top: 60px;
}
@media print, screen and (min-width: 600px) {
  .guide-detail table {
    font-size: 1.25rem;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .guide-detail table {
    font-size: 1rem;
  }
}
.guide-detail table th {
  text-align: left;
  vertical-align: top;
}
.guide-detail table td {
  white-space: nowrap;
}
@media print, screen and (min-width: 600px) {
  .guide-detail table td .pc {
    display: inline-block !important;
  }
}
.guide-detail table td .sp {
  display: inline !important;
}
.guide-detail table tfoot td {
  padding-top: 10px;
  text-align: right;
}
.guide-detail a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  border: 1px solid #98CE97;
}
@media print, screen and (min-width: 960px) {
  .guide-detail a {
    font-size: 1.25rem;
    border-radius: 35px;
  }
}
.guide-detail a:hover, .guide-detail a:active {
  background-color: #F3F3CD;
}
.guide-detail a:visited {
  color: inherit;
}

._404-main {
  width: 100%;
}

/*　枠線＋テキストが出現 　*/
.lineText {
  position: relative; /*テキストの基点となる位置を定義*/
}
.lineText span.mask { /*線の設定*/
  position: relative;
  display: block; /*画像をくくるspanタグをブロック要素にする*/
  line-height: 0; /*行の高さを0にする*/
  font-size: 1.5625rem;
}

.lineText span.mask::before,
.lineText span.mask::after {
  position: absolute;
  top: 4%;
  right: 2.5%;
  bottom: 4%;
  left: 2.5%;
  z-index: 3;
  content: "";
  opacity: 0;
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.lineText span.mask::before {
  border-top: 1px solid #fff; /*枠線の色と太さを変更したい場合はこの数値を変更*/
  border-bottom: 1px solid #fff; /*枠線の色と太さを変更したい場合はこの数値を変更*/
  transform: scale(0, 1);
}

.lineText span.mask::after {
  border-right: 1px solid #fff; /*枠線の色と太さを変更したい場合はこの数値を変更*/
  border-left: 1px solid #fff; /*枠線の色と太さを変更したい場合はこの数値を変更*/
  transform: scale(1, 0);
}

.lineText:hover span.mask::before,
.lineText:hover span.mask::after { /*hoverした時の変化*/
  opacity: 1;
  transform: scale(1);
}

/*中央テキスト*/
.lineText span.cap {
  opacity: 0;
  transition: 0.5s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
  position: absolute;
  z-index: 3; /*テキストを前面に出す*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /*テキストの色を変えたい場合はここを修正*/
  line-height: 1.5; /*行の高さを1.5にする*/
  width: 200px;
  text-align: center;
}

.lineText:hover span.cap { /*hoverした時の変化*/
  opacity: 1;
}
/*# sourceMappingURL=page.css.map */