@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;
}

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

.topview_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  z-index: -1;
  background: #e6e7de;
}

.topview_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  height: calc(100dvh - 15vh - 50px);
  gap: 2rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .topview_container {
    display: block;
    position: relative;
    height: calc(100dvh - 50px - 1vh);
  }
}
.topview_container .topview_main_img {
  background: #e6e7de;
  grid-column: 3/8;
  grid-row: 1/5;
  border-radius: 20px;
  position: relative;
  box-shadow: 0px 0px 50px #ccc;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .topview_container .topview_main_img {
    grid-column: 1/5;
  }
}
@media screen and (max-width: 599px) {
  .topview_container .topview_main_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 360px);
    box-shadow: 0px 0px 20px #a8a8a8;
  }
}
.topview_container .topview_main_img span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  filter: grayscale(50%);
}
.topview_container .topview_main_img span img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.topview_container .topview_main_img span.img_1::before, .topview_container .topview_main_img span.img_2::before, .topview_container .topview_main_img span.img_3::before, .topview_container .topview_main_img span.img_4::before {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  color: #3a3a3a;
  z-index: 52;
  background: #e6e6e6;
  font-weight: 500;
  border-radius: 0 20px 0 20px;
  padding: 0.25rem 1.5rem;
  transition: 0.2s;
  opacity: 0;
}
.topview_container .topview_main_img span.img_1::after, .topview_container .topview_main_img span.img_2::after, .topview_container .topview_main_img span.img_3::after, .topview_container .topview_main_img span.img_4::after {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: #ccc;
  z-index: 52;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.topview_container .topview_main_img span.img_1 {
  animation: slide1 20s infinite;
}
.topview_container .topview_main_img span.img_1::after {
  content: "1";
}
.topview_container .topview_main_img span.img_2 {
  animation: slide2 20s infinite;
}
.topview_container .topview_main_img span.img_2::after {
  content: "2";
}
.topview_container .topview_main_img span.img_3 {
  animation: slide3 20s infinite;
}
.topview_container .topview_main_img span.img_3::after {
  content: "3";
}
.topview_container .topview_main_img span.img_4 {
  animation: slide4 20s infinite;
}
.topview_container .topview_main_img span.img_4::after {
  content: "4";
}
@keyframes slide1 {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide2 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide3 {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide4 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.topview_container .topview_greet_wrapper {
  grid-column: 1/3;
  grid-row: 1/6;
  border-radius: 20px;
  overflow-wrap: anywhere;
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .topview_container .topview_greet_wrapper {
    grid-column: 5/8;
  }
}
@media screen and (max-width: 599px) {
  .topview_container .topview_greet_wrapper {
    position: absolute;
    left: 0;
    bottom: 5vw;
    width: 100%;
    height: auto;
  }
}
.topview_container .topview_greet_wrapper p {
  letter-spacing: 0.1rem;
  line-height: 1.5;
  color: #3a3a3a;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .topview_container .topview_greet_wrapper p {
    letter-spacing: 0.075rem;
    line-height: 1.5;
    font-weight: 500;
    font-size: 1.2rem;
  }
}
.topview_container .topview_greet_wrapper .eigoheta {
  font-size: 0.7em;
  font-weight: 400;
  line-height: 4;
  color: #898989;
  padding: 0;
}
.topview_container .topview_scrolldown {
  background: #2e2e2e;
  grid-column: 1/2;
  grid-row: 5/6;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .topview_container .topview_scrolldown {
    grid-column: 1/3;
  }
  .topview_container .topview_scrolldown span {
    left: 5vw !important;
  }
  .topview_container .topview_scrolldown p {
    right: 5vw !important;
    font-size: 110% !important;
  }
}
@media screen and (max-width: 599px) {
  .topview_container .topview_scrolldown {
    display: none;
  }
}
.topview_container .topview_scrolldown span {
  position: absolute;
  height: calc(100% - 3rem);
  width: 5px;
  top: 1.5rem;
  left: 2.4vw;
  border-radius: 10px;
  transform: translateX(-40%);
  background: #3a3a3a;
}
.topview_container .topview_scrolldown span::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #97b195;
  display: inline-block;
  border-radius: 10px;
  animation: scrolldown 4s infinite;
}
@keyframes scrolldown {
  20% {
    height: 0;
    top: 0;
  }
  45% {
    height: 100%;
    top: 0;
  }
  55% {
    height: 100%;
    top: 0;
  }
  80% {
    height: 0;
    top: 100%;
  }
}
.topview_container .topview_scrolldown p {
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  color: #e6e6e6;
  font-weight: 500;
  font-size: 1.1vw;
  letter-spacing: 1.5;
}
.topview_container .topview_sns {
  grid-column: 4/8;
  grid-row: 5/6;
  position: relative;
}
@media screen and (max-width: 599px) {
  .topview_container .topview_sns {
    display: none;
  }
}
.topview_container .topview_sns span {
  bottom: 0;
  right: 0;
  position: absolute;
}
.topview_container .topview_sns span a {
  font-size: 1.1rem;
  letter-spacing: 0.075rem;
  padding: 20px 1.25em 20px 0;
  margin: 0 17.5px;
  color: #3a3a3a;
  position: relative;
}
.topview_container .topview_sns span a:visited {
  color: #3a3a3a;
}
.topview_container .topview_sns span a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #527d4f;
  animation: sns_hover_out 0.2s forwards;
}
@keyframes sns_hover_out {
  0% {
    width: 20px;
    height: 20px;
    right: -7.5px;
  }
  100% {
    width: 6px;
    height: 6px;
  }
}
.topview_container .topview_sns span a:hover {
  text-decoration: underline;
}
.topview_container .topview_sns span a:hover::before {
  animation: sns_hover_in 0.2s forwards;
}
@keyframes sns_hover_in {
  0% {
    width: 6px;
    height: 6px;
  }
  100% {
    width: 20px;
    height: 20px;
    right: -7.5px;
  }
}
.topview_container .topview_sns span a:hover::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  font-size: 0.7rem;
  animation: sns_hover_arrow 0.3s forwards;
}
@keyframes sns_hover_arrow {
  0% {
    color: rgba(236, 236, 236, 0);
    right: 15px;
    z-index: 0;
  }
  50% {
    color: rgba(236, 236, 236, 0);
    right: 15px;
    z-index: 0;
  }
  100% {
    color: #fff;
    right: -3px;
    z-index: 100;
  }
}

.margin_1rem {
  margin: 2rem 0rem;
}

.main_content {
  margin-bottom: 5vw;
}
.main_content p {
  margin-bottom: 14px;
  line-height: 2;
}

.gallery_scroll_wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 599px) {
  .gallery_scroll_wrapper {
    height: 500px;
  }
}
.gallery_scroll_wrapper .scroll_inner {
  display: inline-block;
  width: 7070px;
  animation: gallery_scroll 50s linear infinite;
  height: auto;
}
@media screen and (max-width: 599px) {
  .gallery_scroll_wrapper .scroll_inner {
    width: 100%;
    animation: gallery_scroll_sm 30s linear infinite;
  }
}
@keyframes gallery_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3535px);
  }
}
@keyframes gallery_scroll_sm {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1500px);
  }
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container {
  width: 500px;
  display: inline-block;
  border-left: 5px solid #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .gallery_scroll_wrapper .scroll_inner .scroll_img_container {
    width: 100%;
    border-bottom: 5px solid #fff;
    border-left: none !important;
  }
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container:hover a::after {
  opacity: 1;
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container:hover div {
  opacity: 100;
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  filter: grayscale(0.5);
  transition: 0.2s;
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(154, 39, 238, 0.03) 55%, rgba(0, 0, 0, 0.54));
  content: "";
  transition: 0.2s 0.1s;
  opacity: 0;
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container div {
  display: inline-block;
  position: absolute;
  z-index: 53;
  opacity: 0;
  bottom: 15px;
  left: 15px;
  transition: 0.2s 0.1s;
  width: calc(100% - 30px);
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container div span {
  border: solid 1px #e6e6e6;
  line-height: 1.5;
  font-size: 0.8rem;
  padding: 0 0.75em;
  border-radius: 50px;
  margin: 0 0.5em 10px 0;
  color: #e6e6e6;
  display: inline-block;
  letter-spacing: 1.1;
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container div p {
  color: #e6e6e6;
  font-size: 19px;
  letter-spacing: 1.25;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
}
.gallery_scroll_wrapper .scroll_inner .scroll_img_container div::after {
  content: "\f1df";
  font-family: "Material Icons";
  position: absolute;
  color: #fff;
  bottom: 0px;
  right: 0px;
}

#contact a i {
  padding-right: 16px;
}/*# sourceMappingURL=style.css.map */