@charset "UTF-8";
* {
  vertical-align: top;
  margin: 0;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  color: #3a3a3a;
}
* a {
  text-decoration: none;
}

header {
  max-width: 1550px;
  margin: 0 auto;
  padding: 5vh 3%;
  line-height: 50px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 599px) {
  header {
    padding: 0 5%;
    line-height: 1.2;
    position: relative;
  }
}
header a:visited {
  color: #3a3a3a;
}
header .header_logo {
  display: inline-block;
}
header .header_logo a {
  padding: 14px 0;
}
@media screen and (max-width: 599px) {
  header .header_logo {
    padding-top: 5vw;
  }
}
header .header_logo.nav {
  position: fixed;
  top: 0;
  left: 5vw;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  header .header_logo.nav {
    top: 5vh;
    line-height: 50px;
    left: 3vw !important;
  }
}
header .header_logo.nav a {
  color: #e6e6e6;
}
header .header_logo.nav a:visited {
  color: #e6e6e6;
}
header .header_logo.nav::after {
  content: "© 2024 OBASANZ";
  position: fixed;
  bottom: 5vw;
  left: 5vw;
  color: #616161;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 500;
}
header .header_logo img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}
@media screen and (max-width: 599px) {
  header .header_logo img {
    width: 25px;
    height: 25px;
    border-radius: 7.5px;
    vertical-align: middle;
  }
}
header .header_logo a {
  letter-spacing: 0.075rem;
  padding-left: 1rem;
}
@media screen and (max-width: 599px) {
  header .header_logo a {
    padding-left: 0.5rem;
    line-height: 25px;
  }
}
header .header_logo a span {
  color: #b8b8b8;
  font-size: 0.75rem;
  letter-spacing: 0.075rem;
}
header .header_logo a span::before {
  content: "/";
  font-size: 1rem;
  padding: 0 0.75rem;
  color: #527d4f;
}
@media screen and (max-width: 599px) {
  header .header_logo a span {
    display: none;
    padding-top: 5vw;
  }
}
header .nav_wrapper {
  list-style: none;
  margin: -51px 0;
  padding-left: 0;
  text-align: right;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  header .nav_wrapper {
    display: none;
  }
}
header .nav_wrapper li {
  display: inline-block;
  letter-spacing: 0.075rem;
  position: relative;
  margin-left: 2em;
}
header .nav_wrapper li a {
  padding: 14px 0;
}
header .nav_wrapper li a::before {
  content: "●";
  line-height: 0.5rem;
  font-size: 0.45rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0);
}
header .nav_wrapper li.marked a::before, header .nav_wrapper li:hover a::before {
  color: #527d4f;
}
header .nav_wrapper li a:visited {
  color: #3a3a3a;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  header .nav_wrapper {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  header .nav_wrapper {
    display: none;
  }
}
header .menu_btn {
  height: 25px;
  width: calc(10px + 2.5vw + 34px);
  position: absolute;
  right: 5%;
  text-align: right;
  margin-top: -25px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  header .menu_btn {
    top: 42%;
    margin-top: 0;
  }
}
header .menu_btn span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #616161;
}
header .menu_btn span::before {
  content: "MENU";
  position: absolute;
  right: calc(10px + 2.5vw);
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: 0.05rem;
  font-weight: 500;
}
header .menu_btn span.active {
  animation: menu_in_anime 0.3s forwards;
  position: fixed;
  z-index: 100;
}
@keyframes menu_in_anime {
  0% {
    width: 10px;
    height: 10px;
    background: #3a3a3a;
    top: calc(5vw + 7.5px);
    right: 5vw;
  }
  100% {
    width: 500vw;
    height: 500vw;
    background: #3a3a3a;
    top: 25px;
    right: -255vw;
  }
}
@media screen and (min-width: 1025px) {
  header .menu_btn {
    display: none;
  }
}
header .nav_wrapper_sp {
  position: fixed;
  z-index: 1000;
  opacity: 0;
  padding-top: 5vh;
  pointer-events: none;
  margin: 0;
  width: 90vw;
  left: 5vw;
  height: 100dvh;
  padding-bottom: 20vh;
  overflow: scroll;
  line-height: 1;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  header .nav_wrapper_sp {
    width: 94vw;
    left: 3vw;
  }
}
header .nav_wrapper_sp.active {
  opacity: 100;
  transition: 0.2s 0.3s;
  pointer-events: all;
}
header .nav_wrapper_sp .nav_close {
  position: fixed;
  width: 25px;
  height: 25px;
  padding: 5vw 5vw 0;
  display: inline-block;
  right: 3vw;
  top: 0;
}
header .nav_wrapper_sp .nav_close .close1 {
  position: absolute;
  bottom: 12px;
  right: 3px;
  height: 1px;
  width: 21px;
  transform: rotate(45deg);
  background: #e6e6e6;
}
header .nav_wrapper_sp .nav_close .close2 {
  position: absolute;
  bottom: 12px;
  right: 3px;
  height: 1px;
  width: 21px;
  transform: rotate(-45deg);
  background: #e6e6e6;
}
header .nav_wrapper_sp .nav_close::before {
  content: "CLOSE";
  position: absolute;
  right: calc(21px + 2vw);
  top: calc(5vw + 12.5px);
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: 0.05rem;
  font-weight: 500;
  color: #e6e6e6;
}
header .nav_wrapper_sp .nav_line {
  width: 100%;
  height: 1px;
  margin: 10px 0;
  background: #2e2e2e;
  display: block;
}
header .nav_wrapper_sp .nav_link_btn_wrapper {
  display: block;
  width: 100%;
  position: relative;
}
header .nav_wrapper_sp .nav_link_btn_wrapper a {
  color: #e6e6e6;
  letter-spacing: 0.1rem;
  padding: 15px 0;
  width: 100%;
  display: inline-block;
}
header .nav_wrapper_sp .nav_link_btn_wrapper a span {
  font-size: 10px;
  vertical-align: middle;
  padding-left: 15px;
  display: inline-block;
  color: #ccc;
  z-index: 101;
}
header .nav_wrapper_sp .nav_link_btn_wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #759772;
}
header .nav_wrapper_sp .nav_sns {
  margin: 10vw 0 5vw;
}
header .nav_wrapper_sp .nav_sns a {
  color: #e6e6e6;
  letter-spacing: 0.075rem;
  font-size: 0.85rem;
  position: relative;
  padding: 13px 20px 10px 0;
  display: block;
  width: 75px;
}
header .nav_wrapper_sp .nav_sns a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #759772;
}
header .nav_wrapper_sp .nav_sns p {
  color: #e6e6e6;
  margin-bottom: 5vw;
  letter-spacing: 0.1rem;
}

.main_btn {
  padding: 20px 41px 20px 20px;
  line-height: 1rem;
  background: none;
  color: #3a3a3a;
  position: relative;
  border-radius: 60px;
  letter-spacing: 0.1rem;
  transition: 0.2s;
  border: solid 1px #e6e6e6;
  display: inline-block;
  margin: 0 0 15px;
}
.main_btn .fa-brands {
  padding-right: 16px;
}
.main_btn.list {
  background: none;
  padding-left: 0;
}
.main_btn.list:hover {
  background: none;
}
.main_btn::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  background: #527d4f;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation: btn_hover_out 0.2s;
}
.main_btn:hover {
  background: #e6e6e6;
  color: #3a3a3a;
  border: solid 1px #898989;
}
.main_btn:hover::after {
  width: 20px;
  height: 20px;
  right: 12.5px;
  animation: btn_hover_in 0.2s;
}
.main_btn:hover span::after {
  animation: btn_hover_arrow_in 0.4s forwards;
}
.main_btn span::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  z-index: 53;
  right: 30px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0);
}
.main_btn:active {
  background: #616161;
  color: #e6e6e6;
  transform: scale(0.95);
}
.main_btn:active i {
  color: #e6e6e6;
}
.main_btn:active::after {
  background: #97b195;
}
.main_btn:active::before {
  color: #616161;
}

@keyframes btn_hover_in {
  0% {
    width: 5px;
    height: 5px;
    right: 20px;
  }
  100% {
    width: 20px;
    height: 20px;
    right: 12.5px;
  }
}
@keyframes btn_hover_out {
  0% {
    width: 20px;
    height: 20px;
    right: 12.5px;
  }
  100% {
    width: 5px;
    height: 5px;
    right: 20px;
  }
}
@keyframes btn_hover_arrow_in {
  0% {
    right: 31px;
    color: rgba(255, 255, 255, 0);
  }
  50% {
    color: #fff;
  }
  100% {
    right: 16px;
    color: #fff;
  }
}
h2 {
  font-size: 2rem;
  position: relative;
  color: #3a3a3a;
  margin: 1rem 0;
}

h3 {
  color: #3a3a3a;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
}

footer {
  width: 100%;
  background: #3a3a3a;
  height: auto;
  border-radius: 50px 50px 0 0;
  padding: 50px 0;
}
@media screen and (max-width: 599px) {
  footer {
    border-radius: 25px 25px 0 0;
    padding: 25px 0;
  }
}
footer .footer_inner {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 3vw;
  position: relative;
}
@media screen and (max-width: 599px) {
  footer .footer_inner {
    padding: 0 5%;
  }
}
footer .footer_inner .footer_logo span {
  padding-top: 0.25rem;
  display: inline-block;
}
footer .footer_inner .footer_logo span img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-top: -0.25rem;
}
footer .footer_inner .footer_logo span::after {
  content: "";
  border: 6px solid transparent;
  border-top: 7px solid #97b195;
  background: none;
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 0.3rem;
}
footer .footer_inner .footer_logo p {
  display: inline-block;
  line-height: 40px;
  color: #fff;
  letter-spacing: 0.1rem;
  background: #97b195;
  position: relative;
  border-radius: 8px;
  margin-left: -0.2rem;
  padding: 0 1rem;
}
footer .footer_inner .says {
  display: inline;
}
footer .footer_inner .footer_copy {
  line-height: 40px;
  margin-top: 14px;
}
@media screen and (max-width: 599px) {
  footer .footer_inner .footer_copy {
    margin-top: calc(2rem + 160px);
  }
}
footer .footer_inner .footer_copy p {
  color: #e6e6e6;
  letter-spacing: 0.1em;
  font-size: 14px;
}
@media screen and (min-width: 600px) and (max-width: 1550px) {
  footer .footer_inner .footer_nav.pgtp_btn {
    margin-right: 70px;
  }
}
footer .footer_inner .footer_nav ul {
  list-style: none;
  padding-left: 0;
  line-height: 40px;
  text-align: right;
  margin-top: calc(-80px - 1rem);
}
@media screen and (max-width: 599px) {
  footer .footer_inner .footer_nav ul {
    text-align: left;
    margin-top: calc(-3rem - 160px);
  }
}
footer .footer_inner .footer_nav ul li {
  display: inline-block;
  margin-left: 1rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  footer .footer_inner .footer_nav ul li {
    display: block;
    margin-left: 0rem;
  }
}
footer .footer_inner .footer_nav ul li a {
  color: #e6e6e6;
  line-height: 40px;
  letter-spacing: 0.1rem;
  padding: 14px 0;
}
footer .footer_inner .footer_nav ul li a :active {
  color: #97b195;
}
footer .footer_inner .footer_nav ul li a:visited {
  color: #e6e6e6;
}
footer .footer_inner .footer_nav ul li a:hover::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #97b195;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  footer .footer_inner .footer_nav ul li a:hover::after {
    display: none;
  }
}
footer .footer_inner .footer_sns {
  margin-top: 1rem;
  text-align: right;
}
@media screen and (min-width: 600px) and (max-width: 1550px) {
  footer .footer_inner .footer_sns.pgtp_btn {
    margin-right: 75px;
  }
}
@media screen and (max-width: 599px) {
  footer .footer_inner .footer_sns.pgtp_btn {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  footer .footer_inner .footer_sns {
    text-align: right;
    margin-top: 8px;
  }
}
footer .footer_inner .footer_sns a {
  line-height: 40px;
  padding: 14px 0;
  margin-left: 1em;
  position: relative;
  color: #e6e6e6;
}
footer .footer_inner .footer_sns a:visited {
  color: #e6e6e6;
}
footer .footer_inner .footer_sns a i {
  line-height: 40px;
  color: #e6e6e6;
}

.top_wrapper {
  max-width: 1550px;
  margin: 0 auto;
  padding: 5vh 0 3% 5vh;
}
@media screen and (max-width: 599px) {
  .top_wrapper {
    padding: 5vh 5%;
  }
}
.top_wrapper h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  position: relative;
  color: #3a3a3a;
}
@media screen and (max-width: 599px) {
  .top_wrapper h1 {
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
  }
}
.top_wrapper h1 span {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  line-height: 1rem;
  display: block;
}
@media screen and (max-width: 599px) {
  .top_wrapper h1 span {
    font-size: 0.7rem;
  }
}

.content_wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3vw 3vw 5vw;
}
@media screen and (max-width: 599px) {
  .content_wrapper {
    padding: 0 5%;
  }
}

p a {
  border-bottom: solid 1px #527d4f;
  color: #527d4f;
}
p a:hover {
  border: none;
  color: #314b2f;
}
p a:visited {
  color: #527d4f;
}
p a:visited:hover {
  border: none;
  color: #314b2f;
}
p.small_notice {
  font-size: 0.8em;
  color: #898989;
}

.notice_wrapper {
  background: #e6e6e6;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  margin-bottom: 20px;
}
.notice_wrapper .notice_icon i {
  color: #c44933;
  padding-right: 20px;
  font-size: 20px;
}
.notice_wrapper div {
  letter-spacing: 1.25;
  line-height: 2;
}
.notice_wrapper div .title {
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
  font-size: 1em;
}

.menu_btn {
  margin-top: 0 !important;
}

html, body {
  height: 100%;
}

.page_wrapper {
  width: 100%;
  position: relative;
  min-height: 100%;
}

main {
  padding-bottom: 196px;
}

footer {
  position: absolute;
  bottom: 0;
}

.menu_btn {
  top: 5vw;
}

.gallery {
  max-width: 1550px;
  margin: 0 auto;
  padding: 5vh 3%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1vw;
}
@media screen and (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr;
    padding: 5vw;
  }
}
.gallery .gallery_info {
  grid-column: 1/4;
  padding: 1vw 1vw 1vw 0;
  border-right: solid 2px #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .gallery .gallery_info {
    grid-column: 1/2;
    border-right: none;
  }
}
.gallery .gallery_info .gallery_info_container {
  position: sticky;
  top: 50px;
}
.gallery .gallery_info .building_head {
  font-size: 3rem;
}
.gallery .gallery_info .building_head span {
  display: inline-block;
  font-size: 0.85rem;
  line-height: 1.5rem;
  padding: 0 1rem;
  border-radius: 50px;
  border: solid 1px #e6e6e6;
  letter-spacing: 0.05rem;
  vertical-align: middle;
  margin-left: 0.75rem;
}
.gallery .gallery_info .building_title {
  font-size: 2rem;
  line-height: 2.25rem;
  margin: 1rem 0;
}
.gallery .gallery_info .building_txt {
  letter-spacing: 0.075rem;
  line-height: 2rem;
}
.gallery .gallery_info table {
  margin-top: 2vw;
  line-height: 30px;
  letter-spacing: 0.075rem;
}
.gallery .gallery_info table th {
  text-align: left;
  padding-right: 3rem;
  font-weight: 400;
  width: 52px;
}
.gallery .gallery_info table td .small {
  font-size: 0.7em;
  line-height: 1.25;
  margin-bottom: 5px;
}
.gallery .gallery_info table td .small a {
  text-decoration: none;
  padding-right: 0px;
}
.gallery .gallery_info table td .small a::after, .gallery .gallery_info table td .small a::before {
  display: none !important;
}
.gallery .gallery_info table td a {
  color: #527d4f;
  position: relative;
  padding-right: 35px;
  text-decoration: underline;
}
.gallery .gallery_info table td a:hover {
  text-decoration: none;
}
.gallery .gallery_info table td a:hover::after {
  width: 20px;
  height: 20px;
  right: 7.5px;
  animation: tweet_link_in 0.2s forwards;
}
@keyframes tweet_link_in {
  0% {
    width: 4px;
    height: 4px;
    right: 15px;
  }
  100% {
    width: 20px;
    height: 20px;
    right: 7.5px;
  }
}
.gallery .gallery_info table td a:hover::before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.7rem;
  z-index: 51;
  animation: tweet_link_arrow 0.3s forwards;
}
@keyframes tweet_link_arrow {
  0% {
    right: 25px;
    z-index: -1;
  }
  50% {
    right: 25px;
    z-index: -1;
  }
  100% {
    right: 12px;
    z-index: 51;
  }
}
.gallery .gallery_info table td a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #527d4f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  animation: tweet_link_out 0.2s forwards;
}
@keyframes tweet_link_out {
  0% {
    width: 20px;
    height: 20px;
    right: 7.5px;
  }
  100% {
    width: 4px;
    height: 4px;
    right: 15px;
  }
}
.gallery .gallery_content {
  grid-column: 4/12;
  padding: 1vw 0;
}
@media screen and (max-width: 1024px) {
  .gallery .gallery_content {
    grid-column: 1/2;
  }
}
.gallery .gallery_content .img_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw;
}
@media screen and (max-width: 599px) {
  .gallery .gallery_content .img_grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.gallery .gallery_content .img_grid div img {
  width: 100%;
  border-radius: 10px;
  background-color: #e6e6e6;
  background-image: url("../assets/loading.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60px;
}
.gallery .gallery_content .next_prev_container {
  margin: 2vw -1vw 0 -1vw;
}
@media screen and (max-width: 599px) {
  .gallery .gallery_content .next_prev_container {
    margin: 5vw 0 calc(100px + 10vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
  }
}
.gallery .gallery_content .next_prev_container .prev_btn_wrapper, .gallery .gallery_content .next_prev_container .next_btn_wrapper {
  transition: 0.2s;
  border: solid 1px #e6e6e6;
  margin: 0 1vw;
}
.gallery .gallery_content .next_prev_container .prev_btn_wrapper:hover, .gallery .gallery_content .next_prev_container .next_btn_wrapper:hover {
  background: #e6e6e6;
  border: solid 1px #616161;
}
@media screen and (max-width: 599px) {
  .gallery .gallery_content .next_prev_container .prev_btn_wrapper, .gallery .gallery_content .next_prev_container .next_btn_wrapper {
    font-size: 0.9rem;
  }
}
.gallery .gallery_content .next_prev_container .prev_btn_wrapper {
  display: inline-block;
  border-radius: 10px;
}
.gallery .gallery_content .next_prev_container .prev_btn_wrapper .prev_btn {
  padding: 20px 25px 20px 45px;
  line-height: 60px;
  letter-spacing: 0.075rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  .gallery .gallery_content .next_prev_container .prev_btn_wrapper .prev_btn {
    padding: 0 0 0 30px;
    width: calc(100% - 30px);
    display: block;
  }
}
.gallery .gallery_content .next_prev_container .prev_btn_wrapper .prev_btn::before {
  content: "";
  background: #527d4f;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}
@media screen and (max-width: 599px) {
  .gallery .gallery_content .next_prev_container .prev_btn_wrapper .prev_btn::before {
    left: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .gallery .gallery_content .next_prev_container .prev_btn_wrapper .prev_btn::before {
    animation: prev_btn_out 0.2s forwards;
  }
  @keyframes prev_btn_out {
    0% {
      width: 20px;
      height: 20px;
      left: 15px;
    }
    100% {
      width: 4px;
      height: 4px;
      right: 25px;
    }
  }
}
@media screen and (min-width: 1025px) {
  .gallery .gallery_content .next_prev_container .prev_btn_wrapper .prev_btn:hover::before {
    animation: prev_btn_in 0.2s forwards;
  }
  @keyframes prev_btn_in {
    0% {
      width: 4px;
      height: 4px;
      right: 25px;
    }
    100% {
      width: 20px;
      height: 20px;
      left: 15px;
    }
  }
}
@media screen and (min-width: 1025px) {
  .gallery .gallery_content .next_prev_container .prev_btn_wrapper .prev_btn:hover::after {
    content: "\f060";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 37px;
    font-size: 0.7rem;
    color: #fff;
    animation: prev_btn_arrow 0.3s forwards ease-in-out;
  }
  @keyframes prev_btn_arrow {
    0% {
      right: 37px;
      z-index: -1;
    }
    50% {
      right: 37px;
    }
    100% {
      left: 21px;
    }
  }
}
.gallery .gallery_content .next_prev_container .next_btn_wrapper {
  display: inline-block;
  border-radius: 10px;
}
.gallery .gallery_content .next_prev_container .next_btn_wrapper .next_btn {
  padding: 20px 45px 20px 25px;
  line-height: 60px;
  letter-spacing: 0.075rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  .gallery .gallery_content .next_prev_container .next_btn_wrapper .next_btn {
    padding: 0 30px 0 0px;
    display: block;
    width: calc(100% - 30px);
    text-align: right;
  }
}
.gallery .gallery_content .next_prev_container .next_btn_wrapper .next_btn::before {
  content: "";
  background: #527d4f;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
@media screen and (max-width: 599px) {
  .gallery .gallery_content .next_prev_container .next_btn_wrapper .next_btn::before {
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .gallery .gallery_content .next_prev_container .next_btn_wrapper .next_btn::before {
    animation: next_btn_out 0.2s forwards;
  }
  @keyframes next_btn_out {
    0% {
      width: 20px;
      height: 20px;
      right: 15px;
    }
    100% {
      width: 4px;
      height: 4px;
      right: 25px;
    }
  }
}
@media screen and (min-width: 1025px) {
  .gallery .gallery_content .next_prev_container .next_btn_wrapper .next_btn:hover::before {
    animation: next_btn_in 0.2s forwards;
  }
  @keyframes next_btn_in {
    0% {
      width: 4px;
      height: 4px;
      right: 25px;
    }
    100% {
      width: 20px;
      height: 20px;
      right: 15px;
    }
  }
}
@media screen and (min-width: 1025px) {
  .gallery .gallery_content .next_prev_container .next_btn_wrapper .next_btn:hover::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 35px;
    font-size: 0.7rem;
    color: #fff;
    animation: next_btn_arrow 0.3s forwards;
  }
  @keyframes next_btn_arrow {
    0% {
      right: 35px;
      z-index: -1;
    }
    50% {
      right: 35px;
      z-index: -1;
    }
    100% {
      right: 19px;
    }
  }
}
.gallery h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  position: relative;
  color: #3a3a3a;
}
.gallery h1 span {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  line-height: 1rem;
  display: block;
}/*# sourceMappingURL=gallery.css.map */