@charset "UTF-8";

* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: auto;
  color: #fdfdfd;
  background-color: #050505;
  transition: all 0.3s;
  text-align: justify;
  font-family: "Libre Caslon display", serif;
}

body.dark {
  color: #050505;
  background-color: #fdfdfd;
}

body a.dark {
  color: #050505;
}

.black_box {
  color: #fdfdfd;
  /* border: 1px solid #fff; */
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  background-image: url(./images/background/stone_5.jpg);
  background-position: center;
  background-size: cover;
  /* background-image: radial-gradient(circle at 24% 18%, rgba(20, 20, 20, 1), rgba(15, 15, 15, 1)), url(https://grainy-gradients.vercel.app/noise.svg); */
}

.black_box.dark {
  color: #050505;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background-image: url(./images/background/paper_2.jpg);
  background-position: center;
  background-size: cover;
  /* background-image: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 1), rgba(245, 245, 245, 1)); */
}

.border_area {
  width: 50px;
  height: 50px;
  margin: 130px auto 100px;
  /* border: 1px solid;
  border-radius: 50%;
  outline: 1px dashed;
  outline-offset: 5px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.border,
.border_center {
  width: 5px;
  height: 5px;
  border: 1px solid;
  margin: 1px;
  outline: 0.5px dashed;
  outline-offset: 3px;
  border-radius: 50%;
  background-color: rgba(110, 236, 234, 0.5);
  background-color: rgba(110, 236, 234, 0.5);
}

.border_center {
  width: 8px;
  height: 8px;
  outline-offset: 5px;
  background-color: #000;
  z-index: 10;
}

.border.dark {
  background-color: rgba(236, 179, 110, 0.5);
}

.border_center.dark {
  background-color: #fff;
}

.border_area_1,
.border_area_2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link_box span {
  letter-spacing: 0.1em;
}

.link_box a {
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  outline: 1px solid #fff;
  outline-offset: 3px;
  background: linear-gradient(120deg, rgba(110, 236, 234, 0.7) 5%, rgba(145, 219, 185, 0.6) 15%, rgba(97, 183, 153, 0.5) 33%, transparent 66%, transparent) 100% 0 / 300% 100%;
}

.link_box a:hover {
  outline: 1px dashed #fff;
  outline-offset: 10px;
  background-position: 0 0;
}

.link_box a.dark {
  color: #000;
  border: 1px solid #000;
  outline: 1px solid #000;
  background: linear-gradient(120deg, rgba(236, 179, 110, 0.5) 10%, rgba(230, 183, 175, 0.5) 20%, rgba(238, 193, 203, 0.5) 33%, transparent 66%, transparent) 100% 0 / 300% 100%;
}

.link_box a.dark:hover {
  outline: 1px dashed #000;
  background-position: 0 0;
}

.number {
  width: 10%;
  font-size: 1.5em;
  margin: auto;
  text-align: center;
  transform: rotate(-90deg);
}

.section_title {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.section_title h3 {
  width: 90%;
  font-size: 8em;
  transform: skewX(-30deg);
  letter-spacing: -0.18em;
  color: transparent;
  -webkit-text-stroke: 1px #fdfdfd;
}

.section_title h3.dark {
  color: transparent;
  -webkit-text-stroke: 1px #050505;
}

@media screen and (max-width: 768px) {
  .section_title {
    width: 60%;
  }

  .number {
    width: 50%;
    height: 30px;
    font-size: 1em;
    margin: auto -50px;
  }

  .section_title h3 {
    width: 100%;
    font-size: 5em;
  }
}

@media screen and (max-width: 480px) {
  .section_title {
    width: 80%;
    margin: 30px 10px;
  }

  .number {
    font-size: 0.7em;
    margin: auto -20px;
  }

  .section_title h3 {
    font-size: 3em;
  }
}

.fadeup {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeup_2 {
  -webkit-animation-name: fadeUpAnime_2;
  animation-name: fadeUpAnime_2;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeUpAnime_2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeUpAnime_2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeup_3 {
  -webkit-animation-name: fadeUpAnime_3;
  animation-name: fadeUpAnime_3;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeUpAnime_3 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeUpAnime_3 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeupTrigger {
  opacity: 0;
}

/* ====================================
index_door
==================================== */

.index_main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.door_area_index {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px auto;
}

.door_box_index {
  position: relative;
  width: 40%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.door_r_index {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.door_text_index {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.door_text_index h3 {
  width: 50%;
  text-align: center;
}

.door_text_index img {
  width: 25px;
  transform: rotate(90deg);
}

.front_door_index,
.back_door_index {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.back_door_index {
  z-index: -10;
  width: 55%;
}

.front_door_index {
  width: 50%;
  z-index: 10;
  transition: 2s;
  transform: translate(-50%, -50%);
  transform-origin: left;
}

@media screen and (max-width: 768px) {
  .door_area_index {
    margin: 100px auto;
    flex-direction: column;
    /* background-color: rgba(100, 0, 0, 0.2); */
  }

  .door_box_index {
    width: 80%;
    height: 600px;
    /* background-color: rgba(0, 100, 0, 0.2); */
  }

  .door_text_index {
    width: 100%;
    flex-direction: column;
  }

  .door_text_index img {
    width: 15px;
    transform: rotate(180deg);
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .door_box_index {
    height: 350px;
  }

  .door_text_index {
    font-size: 0.6em;
  }

  .door_text_index img {
    width: 15px;
  }
}

/* ====================================
Header
==================================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.dark {
  background-color: #fdfdfd;
}

.header_logo {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  transition: all.3s;
}

.header_logo:hover {
  transform: scale(0.9);
}

.header_logo img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

.g-nav {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 480px) {
  header img {
    height: 35px;
    margin-top: 10px;
  }
}

/* ====================================
Navigation 
==================================== */

.burger {
  position: absolute;
  z-index: 10;
  right: 10px;
  top: 13px;
  cursor: pointer;
  transform: rotateY(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger_patty {
  width: 25px;
  height: 2px;
  margin: 0 0 4px 0;
  background: white;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger_patty.dark {
  background: #000;
}
.burger_patty:last-child {
  margin-bottom: 0;
}
.burger--close {
  transform: rotate(180deg);
}
.burger--close .burger_patty:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.burger--close .burger_patty:nth-child(2) {
  opacity: 0;
}
.burger--close .burger_patty:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

.burger--close .burger_patty:nth-child(1).dark {
  transform: rotate(45deg) translate(4px, 4px);
  background-color: #fff;
}

.burger--close .burger_patty:nth-child(3).dark {
  transform: rotate(-45deg) translate(5px, -4px);
  background-color: #fff;
}

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  visibility: hidden;
}

.menu--active {
  visibility: visible;
}

.menu_brand,
.menu_list {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

.menu_list {
  list-style-type: none;
  transform: translate3d(0, -100%, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu_list--active {
  transform: translate3d(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}

.menu_list span {
  font-size: 0.5em;
  font-style: italic;
  margin-right: 10px;
}

.menu_brand {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate3d(0, 100%, 0);
}

.menu_brand--active {
  transform: translate3d(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}

.menu_item {
  transform: translate3d(500px, 0, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu_item--active {
  transform: translate3d(0, 0, 0);
}

.menu_link {
  display: inline-block;
  position: relative;
  font-size: 2em;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu_link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 1px;
  outline: 0.5px dashed;
  outline-offset: 3px;
  border-radius: 5px;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background-color: #fff;
}
.menu_link:hover:before {
  width: 100%;
}

.menu .menu_item:nth-child(1) {
  transition-delay: 0.1s;
}
.menu .menu_item:nth-child(2) {
  transition-delay: 0.2s;
}
.menu .menu_item:nth-child(3) {
  transition-delay: 0.3s;
}
.menu .menu_item:nth-child(4) {
  transition-delay: 0.4s;
}
.menu .menu_item:nth-child(5) {
  transition-delay: 0.5s;
}
.menu .menu_item:nth-child(6) {
  transition-delay: 0.6s;
}

@media screen and (max-width: 768px) {
  ul.menu_list,
  div.menu_brand {
    float: none;
    width: 100%;
    min-height: 0;
  }
  ul.menu_list--active,
  div.menu_brand--active {
    transform: translate3d(0, 0, 0);
  }

  .menu_brand {
    height: 25vh;
    transform: translate3d(100%, 0, 0);
  }

  .menu_list {
    height: 75vh;
    transform: translate3d(-100%, 0, 0);
  }

  .menu_link {
    font-size: 1.5em;
  }
}

.menu_brand img {
  width: 30%;
  height: auto;
}

@media screen and (max-width: 480px) {
  .menu_brand img {
    width: 40%;
    height: auto;
  }
}

/* ====================================
White night / dark
==================================== */

.white.dark {
  display: none;
}

.black {
  display: none;
}

.black.dark {
  display: inline-block;
}

.radio {
  position: relative;
  width: 40px;
  height: 40px;
}

.radio-btn {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 47%;
  transition: all 1s;
}

.radio-btn:hover {
  outline: 1px solid #fdfdfd;
  outline-offset: 3px;
  transform: scale(0.9);
}

.radio-btn.dark:hover {
  outline: 1px dashed #050505;
  outline-offset: 3px;
  transform: scale(0.9);
}

.radio-btn.dark {
  background-color: #fdfdfd;
}

.radio-inner {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.6s;
}

.radio-inner.dark {
  background-color: #050505;
}

.radio-btn .radio-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.6s;
  background-color: #fdfdfd;
}

.radio-btn .radio-inner.active::before {
  left: -5px;
  transform: scale(1);
}

/* ====================================
to Top
==================================== */

#to_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
}

#to_top img {
  width: 25px;
  transition: all 0.3s;
}

#to_top img:hover {
  transform: rotate(180deg) scale(1.2);
}

#to_top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#to_top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

@media screen and (max-width: 768px) {
  #to_top img:active {
    transform: rotate(0deg) scale(1.1);
  }

  #to_top img {
    transform: rotate(180deg);
  }
}

/* ====================================
footer
==================================== */

footer {
  width: 100%;
  height: 40vh;
  min-height: 400px;
  margin-top: 100px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./images/background/stone_2.jpg);
  background-position: center;
  background-size: cover;
}

.footer_area {
  width: 95%;
  height: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.footer_box_1 {
  width: 20%;
  height: 100%;
}

.footer_box_1-1 {
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
}

.footer_box_1-1 img {
  width: 80%;
}

.footer_box_1-2 {
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 1.1em;
}

.footer_box_1-2 ul {
  list-style: none;
}

.footer_box_1-2 ul a {
  position: relative;
  color: #fdfdfd;
  text-decoration: none;
}

.footer_box_1-2 span {
  font-size: 0.7em;
  font-style: italic;
  margin-right: 5px;
}

.footer_box_1-2 ul a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right;
  transform: scale(0, 1);
  transition: transform 0.6s;
  margin-bottom: -3px;
  background-image: linear-gradient(90deg, rgba(223, 168, 168, 1) 5%, rgba(193, 199, 197, 1) 19%, rgba(108, 199, 221, 1) 42%, rgba(177, 151, 223, 1) 73%, rgba(122, 197, 216, 1) 82%, rgba(223, 168, 168, 1));
}

.footer_box_1-2 ul a:hover::before {
  letter-spacing: 0.1em;
  transform-origin: left;
  transform: scale(1, 1);
}
.footer_box_1-3 {
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
}

.footer_box_1-3 img {
  width: 25px;
  transition: all 0.5s;
}

.footer_box_1-3 img:hover {
  transform: scale(1.1);
}

.footer_box_1-3 a {
  margin: 0 10px;
}

.footer_box_2 {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.footer_box_2.dark {
  visibility: visible;
}

.secret_door {
  position: relative;
  width: 50px;
  height: 100px;
  border: 0px solid;
  border-radius: 50px 50px 0 0;
}

.secret_door_front {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 95px;
  border: 0px solid;
  border-radius: 50px 50px 0 0;
  background-image: url(./images/background/stone_2.jpg);
  background-position: center;
}

.footer_box_2 a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transform: scale(0, 1);
  transition: transform 4s;
  border-radius: 50px 50px 0 0;
  background-image: linear-gradient(90deg, rgba(223, 168, 168, 1) 5%, rgba(193, 199, 197, 1) 19%, rgba(108, 199, 221, 1) 42%, rgba(177, 151, 223, 1) 73%, rgba(122, 197, 216, 1) 82%, rgba(223, 168, 168, 1));
}

.footer_box_2 a:hover::before {
  transform-origin: center;
  transform: scale(1, 1);
}

.footer_box_3 {
  width: 20%;
  display: block;
}

.footer_box_3-1 {
  width: 100%;
  height: 30%;
  font-size: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    height: 40vh;
    margin-top: 100px;
  }

  .footer_area {
    width: 95%;
    height: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }

  .footer_box_1 {
    width: 60%;
  }

  .footer_box_1-2 {
    font-size: 1.1em;
  }

  .footer_box_1-3 img:active {
    transform: scale(1.1);
  }

  .footer_box_2 a:active:before {
    transform-origin: center;
    transform: scale(1, 1);
  }

  .footer_box_3 {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .footer_box_1 {
    width: 60%;
  }

  .footer_box_1-1 img {
    width: 60%;
  }

  .footer_box_1-2 {
    font-size: 1em;
  }

  .footer_box_1-3 img {
    width: 20px;
  }

  .footer_box_2 {
    width: 30%;
  }
}

/* ====================================
Top
==================================== */

#top {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.top_logo {
  width: 100%;
  position: absolute;
  top: 20%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.top_logo img {
  width: 100%;
}

.top_text {
  width: 100%;
  position: absolute;
  top: 80%;
  font-size: 1em;
  letter-spacing: 0.6em;
  text-align: center;
  color: #fff;
}

.top_arrow {
  width: 100%;
  position: absolute;
  top: 90%;
  text-align: center;
}

.top_arrow img {
  width: 25px;
}

#video-area {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  border-radius: 0 0 100px 100px;
  background-image: url(./images/background/about_1.jpg);
  background-position: center;
  background-size: cover;
}

#video-area img {
  width: 100%;
}

#video-area::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  border-radius: 0 0 100px 100px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.2);
}

#video_top {
  position: absolute;
  z-index: -1;
  width: 180vh;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  #video-area {
    border-radius: 0 0 100px 100px;
  }

  .top_text {
    width: 100%;
    top: 80%;
    font-size: 0.9em;
    letter-spacing: 0.3em;
  }
}

@media screen and (max-width: 480px) {
  .top_text {
    font-size: 0.8em;
  }
}

/* ====================================
Contents
==================================== */
#contents {
  width: 100%;
  padding: 150px 0;
}
.contents_title {
  text-align: center;
  font-size: 2em;
  font-family: "Times New Roman", Times, serif;
}

.contents_area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  white-space: nowrap;
}

.contents_box_1 {
  width: auto;
  padding: 0 20px;
}

.contents_box_1 ul {
  list-style: none;
}

.contents_box_1 span {
  font-size: 0.8em;
  font-style: italic;
}

.contents_box_1 a {
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: 1.1em;
}

.contents_box_1 a.dark {
  color: #000;
}

.contents_box_1 a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right;
  transform: scale(0, 1);
  transition: transform 0.6s;
  margin-bottom: -3px;
  background-image: linear-gradient(90deg, rgba(223, 168, 168, 1) 5%, rgba(193, 199, 197, 1) 19%, rgba(108, 199, 221, 1) 42%, rgba(177, 151, 223, 1) 73%, rgba(122, 197, 216, 1) 82%, rgba(223, 168, 168, 1));
}

.contents_box_1 a:hover::before {
  letter-spacing: 0.1em;
  transform-origin: left;
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  .contents_title {
    font-size: 1.5em;
  }

  .contents_box_1 {
    width: auto;
    padding: 0 20px;
  }

  .contents_box_1 ul {
    list-style: none;
  }

  .contents_box_1 span {
    font-size: 0.8em;
    font-style: italic;
  }
  .contents_box_1 a {
    color: #fff;
    position: relative;
    text-decoration: none;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 480px) {
  #contents {
    padding: 100px 0;
  }
  .contents_title {
    font-size: 1.2em;
  }

  .contents_box_1 {
    width: auto;
    padding: 0 10px;
  }
  .contents_box_1 a {
    font-size: 1em;
  }
}

/* ====================================
Intro 1
==================================== */

.intro {
  width: 100%;
  height: auto;
  margin: 0 auto 100px;
  display: flex;
}

.intro_image {
  width: 55%;
  overflow: hidden;
  /* border-radius: 0 50px 50px 0; */
}

.intro_image img {
  width: 100%;
}

.intro_text {
  position: relative;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  /* font-family: "Zen Old Mincho", serif; */
}

.intro_text_1 {
  width: 85%;
  margin: 0 auto;
  font-size: 1.5em;
}

.intro_text_1 p {
  font-style: italic;
  letter-spacing: 0.1em;
  color: #999;
}

.intro_text_1 span {
  font-size: 0.8em;
}

.intro_text_2 {
  width: 85%;
  margin: 0 auto;
  font-size: 1.3em;
}

.intro_text_3 {
  width: 85%;
  margin: 0 auto;
  font-size: 0.9em;
  line-height: 1.75em;
  border-left: 1px solid;
  border-right: 1px solid;
  border-radius: 30px;
}

.intro_text_3_text {
  width: 90%;
  margin: 20px auto;
}

.intro_text_3 p {
  font-weight: 500;
  margin-bottom: 10px;
}

.intro_text_3 span {
  font-size: 0.8em;
  color: #999;
}

.intro_text_4 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.intro_text_4 img {
  width: 25px;
  transition: all 0.5s;
}
.intro_text_4 img:hover {
  transform: scale(1.1);
}

.intro_text_4 a {
  margin-left: 10px;
}

.more-about {
  width: 85%;
  display: flex;
  justify-content: flex-end;
}

.more-about a {
  color: #fff;
  text-decoration: none;
  padding: 10px 50px;
  border: 1px solid #fff;
  border-radius: 30px;
  transition: all 1s;
  background-color: #050505;
}

@media screen and (max-width: 768px) {
  .intro {
    width: 100%;
    flex-direction: column;
  }

  .intro_image {
    width: 90%;
  }

  .intro_text {
    width: 90%;
    margin-left: 0%;
    margin: auto;
    padding: 10px;
  }

  .intro_text_1 {
    width: 100%;
    font-size: 1em;
    margin-bottom: 20px;
  }

  .intro_text_2 {
    width: 100%;
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .intro_text_3 {
    width: 100%;
    margin-bottom: 50px;
  }

  .intro_text_3_text {
    width: 85%;
    margin: 30px auto;
  }

  .more-about {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .intro_image {
    width: 100%;
    border-radius: 0;
  }

  .intro_text {
    width: 90%;
    margin-left: 0%;
    margin: auto;
    padding: 10px;
  }

  .intro_text_1 {
    font-size: 1.1em;
  }

  .intro_text_2 {
    margin-bottom: 30px;
  }

  .intro_text_3 {
    width: 100%;
  }
}

.intro_text_5 {
  width: 75%;
  height: auto;
  margin: auto;
  padding: 30px;
  border-radius: 50px;
}

.intro_text_5_1,
.intro_text_5_2 {
  width: 90%;
  margin: 30px auto;
}

.intro_text_5_2 li {
  margin: 0 auto;
  list-style: none;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.intro_text_5_2 li span {
  margin: 0 10px;
  font-size: 1.5em;
}
.intro_text_6 {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 0;
}

.intro_text_6 img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .intro_text_5 {
    width: 90%;
    padding: 10px;
  }

  .intro_text_5 a:active:before {
    letter-spacing: 0.1em;
    transform-origin: left top;
    transform: scale(1, 1);
  }

  .intro_text_5_1,
  .intro_text_5_2 {
    display: flex;
    justify-content: space-evenly;
  }

  .intro_text_6 {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .intro_text_6 img {
    width: 200px;
  }
}

/* ====================================
News
==================================== */
.news {
  width: 100%;
  height: auto;
}

.circle {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 20px auto;
  font-family: "Arial", sans-serif;
  z-index: 10;
}

.circle_inner {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: rotateAnim 7s linear infinite;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.circle_text span {
  position: absolute;
  inset: 0;
}

.news_circle {
  position: absolute;
  top: -20%;
  left: -20%;
}

.circle_text_2.dark {
  /* color: transparent;
  -webkit-text-stroke: 1px #000; */
  color: skyblue;
}

.news_area {
  width: 80%;
  height: 45vh;
  position: relative;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.top_news_area {
  width: 30%;
  height: 100%;
  position: relative;
}

.top_news {
  width: 100%;
  height: 100%;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  background-image: url(./images/logo/top_news.png);
  background-position: center;
  background-size: cover;
  transition: all 0.5s linear;
}

.top_news.dark {
  border: 1px solid #000;
}

.top_news a {
  color: #fff;
  position: relative;
  text-decoration: none;
}

.top_news a::before {
  background-image: linear-gradient(90deg, rgba(223, 168, 168, 1) 5%, rgba(193, 199, 197, 1) 19%, rgba(108, 199, 221, 1) 42%, rgba(177, 151, 223, 1) 73%, rgba(122, 197, 216, 1) 82%, rgba(223, 168, 168, 1));
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.top_news a:hover::before {
  letter-spacing: 0.1em;
  transform-origin: center;
  transform: scale(1, 1);
}

.top_news::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.1);
}

.top_news_title {
  width: 100%;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

.top_news_text {
  width: 100%;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1em;
}

.news_box_area {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.news_box,
.news_box_link {
  width: 100%;
  height: 20%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 2s;
  background: linear-gradient(to right, rgba(110, 236, 234, 0.5) 15%, rgba(121, 123, 228, 0.5) 33%, transparent 66%, transparent) 100% 0 / 300% 100%;
}

.news_box_link:hover {
  background-position: 0 0;
}

.news_box.dark,
.news_box_link.dark {
  color: #000;
  border: 1px solid #000;
  background: linear-gradient(to right, rgba(230, 183, 175, 0.5) 15%, rgba(110, 236, 234, 0.5) 33%, transparent 66%, transparent) 100% 0 / 300% 100%;
}

.news_box_link.dark:hover {
  background-position: 0 0;
}

.news_box_title {
  width: 95%;
  height: 60%;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  border-bottom: 1px dashed;
}

.news_box_text {
  width: 95%;
  height: 40%;
  font-size: 0.8em;
  display: flex;
  align-items: center;
}

.news_tag {
  width: 15%;
  border: 1px solid;
  padding: 1px 10px;
  margin-left: 10px;
  border-radius: 20px;
  text-align: center;
  font-size: 0.9em;
}

.news_tag_top {
  width: 50%;
  border: 1px solid;
  margin-left: 10px;
  border-radius: 20px;
  text-align: center;
}

.more-past_news {
  width: 80%;
  height: 5vh;
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.more-past_news a {
  width: auto;
  padding: 10px 50px;
  border-radius: 30px;
  transition: all 1s;
}

@media screen and (max-width: 768px) {
  .news_circle {
    position: absolute;
    top: -20%;
    left: 90%;
  }

  .circle {
    width: 150px;
    height: 150px;
  }

  .circle_inner {
    position: relative;
    width: 20px;
    height: 20px;
    font-size: 0.8em;
    border-radius: 50%;
    animation: rotateAnim 7s linear infinite;
  }

  .news_circle {
    position: absolute;
    top: -30%;
    left: 80%;
  }

  .news_area {
    width: 70%;
    height: 60vh;
    flex-direction: column;
    justify-content: space-around;
  }

  .top_news_area {
    width: 100%;
    height: 40%;
  }

  .news_box_area {
    width: 100%;
    height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .news_box {
    width: 100%;
    height: 30%;
  }

  .news_box,
  .news_box_link {
    width: 100%;
    height: 20%;
  }

  .news_box_title {
    font-size: 1em;
  }

  .news_box_text {
    font-size: 0.8em;
  }

  .news_tag {
    width: 30%;
    font-size: 0.6em;
  }

  .more-past_news a {
    margin: auto;
  }
}

@media screen and (max-width: 480px) {
  .news_circle {
    position: absolute;
    top: -10%;
    left: 75%;
  }

  .circle {
    width: 150px;
    height: 150px;
  }

  .circle_inner {
    font-size: 0.8em;
  }

  .news_circle {
    top: -30%;
    left: 60%;
  }

  .news_area {
    width: 80%;
    height: 70vh;
  }

  .news_box_title {
    font-size: 0.9em;
  }

  .news_tag {
    width: 30%;
    font-size: 0.8em;
  }

  .more-past_news {
    width: 80%;
  }
}
/* ====================================
Doors
==================================== */

[type="radio"] {
  display: none;
}

#doors_slider {
  width: 100%;
  height: 40vw;
  color: #fff;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  overflow: hidden;
}

#doors_slider label {
  margin: auto;
  width: 70%;
  height: 98%;
  border: 5px solid #fff;
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.6s ease;
}

#doors_slider label.dark {
  outline: 1px solid #000;
}

/* 1 */
#s1:checked ~ #slide1,
#s2:checked ~ #slide2,
#s3:checked ~ #slide3 {
  transform: translate3d(0%, 0, 0);
  z-index: 10;
}

/* 2 */
#s1:checked ~ #slide2,
#s2:checked ~ #slide3,
#s3:checked ~ #slide1 {
  transform: translate3d(20%, 0, -100px);
  z-index: -10;
}

/* 3 */
#s1:checked ~ #slide3,
#s2:checked ~ #slide1,
#s3:checked ~ #slide2 {
  transform: translate3d(-20%, 0, -100px);
  z-index: -5;
}

#slide1 {
  background-image: url(./images/art/ophelia_1.jpg);
  background-position: center;
  background-size: cover;
}

#slide2 {
  background-image: url(./images/design/assignment-work/alphabet/alphabet_1.jpg);
  background-position: center;
  background-size: cover;
}

#slide3 {
  background-image: url(./images/tarot/tarot.jpg);
  background-position: center;
  background-size: cover;
}

#slide1::before,
#slide2::before,
#slide3::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  border-radius: 45px;
  z-index: -11;
  background-color: rgba(0, 0, 0, 0.8);
}

.section_title_slider {
  width: 90%;
  display: flex;
  justify-content: flex-start;
  margin: auto;
  border-bottom: 1px dashed;
}

.number_slider {
  width: 10%;
  font-size: 1.5em;
  margin: auto;
  text-align: center;
  transform: rotate(-90deg);
  color: #fff;
}

.section_title_slider h3 {
  width: 90%;
  font-size: 6em;
  transform: skewX(-30deg);
  letter-spacing: -0.18em;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.slider_box_area {
  width: 100%;
  height: 75%;
  display: grid;
  grid-template-columns: 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5%;
  grid-template-rows: 20% 20% 20% 20% 20%;
}

.slider_box_1 {
  grid-column: 2/8;
  grid-row: 1/6;
  /* background-color: rgba(0, 0, 50, 0.3); */
}
.slider_box_2 {
  grid-column: 8/14;
  grid-row: 1/6;
  /* background-color: rgba(50, 0, 0, 0.3); */
}
.slider_box_3 {
  grid-column: 14/20;
  grid-row: 1/6;
  /* background-color: rgba(0, 50, 0, 0.3); */
}

.slider_prev {
  grid-column: 1/2;
  grid-row: 1/6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_next {
  grid-column: 20/21;
  grid-row: 1/6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_next p {
  font-size: 0.9em;
  white-space: nowrap;
  transform: rotate(90deg);
}

.slider_prev p {
  font-size: 0.9em;
  white-space: nowrap;
  transform: rotate(-90deg);
}

.slider_box_1,
.slider_box_3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider_box_1-1 {
  width: 100%;
  height: 20%;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slider_box_1-2 {
  width: 80%;
  height: 50%;
  letter-spacing: 0.1em;
  line-height: 1.75em;
}

.slider_box_1-3 {
  width: 80%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_box_1-3 p {
  width: 60%;
  text-align: center;
}
.slider_box_1-3 img {
  width: 40px;
}

.slider_box_2 {
  position: relative;
  margin: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.slider_box_3-1 {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
}

.slider_box_3-1 p {
  font-size: 0.9em;
  padding: 0 15px;
}

.slider_box_3-2 {
  width: 80%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.slider_box_3-2-art {
  width: 100%;
  height: 25%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.slider_box_3-2-art::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.slider_box_3-2-art img {
  width: 100%;
}

.slider_box_3-2-art p {
  width: 100%;
  font-weight: bold;
  text-align: center;
  z-index: 5;
}

.slider_box_3-3 {
  width: 80%;
  height: 20%;
}

.slider_box_3-3 p {
  width: 60%;
  text-align: center;
}
.slider_box_3-3 img {
  width: 40px;
  transform: rotate(180deg);
}

.sba1 {
  background-image: url("./images/art/hikou.jpg");
}

.sba2 {
  background-image: url("./images/art/reign.jpg");
}

.sba3 {
  background-image: url("./images/art/legacy_1.jpg");
}

.sbd1 {
  background-image: url("./images/design/design-work/crecer/crecer_2.jpg");
}

.sbd2 {
  background-image: url("./images/design/assignment-work/alphabet/alphabet_2.jpg");
}

.sbd3 {
  background-image: url("./images/design/fukuro/fw_capture.png");
}

.sbt1 {
  background-image: url("./images/tarot/trt_main.jpg");
}

.sbt2 {
  background-image: url("./images/tarot/trt_21.jpg");
}

.sbt3 {
  background-image: url("./images/tarot/tarot_event_2.jpg");
}

.slider_box_3-3 {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doors_a,
.doors_d,
.doors_t,
.doors_r,
.doors_l {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.front_door_a,
.front_door_d,
.front_door_t,
.front_door_l,
.front_door_r,
.back_door {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73%;
  transform: translate(-50%, -50%);
}

.back_door {
  z-index: -10;
  width: 85%;
}

.front_door_a,
.front_door_d,
.front_door_t,
.front_door_l,
.front_door_r {
  z-index: 10;
  transition: 1.3s;
  transform: translate(-50%, -50%);
  transform-origin: left;
}

.enter {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 0px solid #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s;
}

.enter:hover {
  transform: scale(1.1);
  border: 1px solid #fff;
  outline: 0.8px dashed #fff;
  outline-offset: 10px;
}

@media screen and (max-width: 768px) {
  #doors_slider {
    width: 100%;
    height: 75vh;
  }

  #doors_slider label {
    width: 70%;
    height: 98%;
  }

  .section_title_slider {
    width: 90%;
    height: 10%;
    border-bottom: 1px dashed;
  }

  .number_slider {
    font-size: 1em;
    margin: 0px 10px;
  }

  .section_title_slider h3 {
    width: 90%;
    height: 100%;
    font-size: 3rem;
  }

  .slider_box_area {
    width: 100%;
    height: 90%;
    grid-template-columns: 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5%;
    grid-template-rows: 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5% 5%;
  }

  /* 1 */
  #s1:checked ~ #slide1,
  #s2:checked ~ #slide2,
  #s3:checked ~ #slide3 {
    transform: translate3d(0%, 0, 0);
    z-index: 10;
  }
  /* 2 */
  #s1:checked ~ #slide2,
  #s2:checked ~ #slide3,
  #s3:checked ~ #slide1 {
    transform: translate3d(110%, 0, -100px);
    z-index: -10;
  }
  /* 3 */
  #s1:checked ~ #slide3,
  #s2:checked ~ #slide1,
  #s3:checked ~ #slide2 {
    transform: translate3d(-110%, 0, -100px);
    z-index: -5;
  }

  .slider_box_1 {
    grid-column: 1/21;
    grid-row: 13/16;
    /* background-color: rgba(0, 0, 50, 0.5); */
  }
  .slider_box_2 {
    grid-column: 1/21;
    grid-row: 1/13;
    /* background-color: rgba(50, 0, 0, 0.5); */
  }
  .slider_box_3 {
    grid-column: 1/21;
    grid-row: 16/21;
    /* background-color: rgba(0, 50, 0, 0.5); */
  }
  .slider_prev {
    grid-column: 1/2;
    grid-row: 1/13;
  }

  .slider_next {
    grid-column: 20/21;
    grid-row: 1/13;
  }

  .slider_box_1-1 {
    font-size: 1.3em;
    height: 40%;
  }

  .slider_box_1-2 {
    width: 80%;
    height: 60%;
    line-height: 1.3em;
  }

  .slider_box_3 {
    display: flex;
    flex-direction: column;
  }
  .slider_box_3-1 {
    width: 90%;
    height: 15%;
    align-items: center;
    flex-direction: row;
  }
  .slider_box_3-2 {
    width: 100%;
    height: 60%;
    align-items: center;
  }

  .slider_box_3-2-art {
    width: 80%;
    height: 25%;
  }
  .slider_box_3-2-art img {
    width: 100%;
  }

  .slider_box_3-2-art p {
    width: 100%;
    text-align: center;
  }
  .slider_box_1-3,
  .slider_box_3-3 {
    display: none;
  }

  .doors_a,
  .doors_d,
  .doors_t,
  .doors_r {
    width: 50%;
  }

  .front_door_a,
  .front_door_d,
  .front_door_t,
  .front_door_r,
  .back_door {
    width: 38%;
  }

  .back_door {
    z-index: -10;
    width: 45%;
  }

  .enter:active {
    transform: scale(1.1);
    border: 1px solid #fff;
    outline: 0.8px dashed #fff;
    outline-offset: 10px;
  }
}

@media screen and (max-width: 480px) {
  .slider_box_area {
    height: 90%;
    grid-template-rows: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
  }
  #doors_slider {
    height: 70vh;
  }

  #doors_slider label {
    width: 70%;
    height: 95%;
    border-radius: 30px 30px 10px 10px;
  }

  #slide1::before,
  #slide2::before,
  #slide3::before {
    border-radius: 5px;
  }

  .section_title_slider {
    width: 100%;
    height: 10%;
    border-bottom: 1px solid;
  }

  .number_slider {
    font-size: 1em;
    margin: 0px 20px 0px;
  }

  .section_title_slider h3 {
    height: 100%;
    font-size: 2.2em;
    display: flex;
    align-items: center;
  }

  .section_title_slider {
    width: 90%;
    height: 10%;
    border-bottom: 1px dashed;
  }

  .slider_box_1 {
    grid-column: 2/20;
    grid-row: 8/11;
  }
  .slider_box_2 {
    grid-column: 1/21;
    grid-row: 1/8;
  }
  .slider_box_3 {
    /* grid-column: 1/21;
    grid-row: 8/11; */
    display: none;
  }

  .slider_prev {
    grid-column: 1/2;
    grid-row: 1/8;
  }

  .slider_next {
    grid-column: 20/21;
    grid-row: 1/8;
  }

  .slider_box_1-1 {
    height: 40%;
    font-size: 1.3em;
  }

  .slider_box_1-2 {
    width: 80%;
    height: 30%;
    font-size: 0.8em;
    line-height: 1.3em;
    display: flex;
    align-items: center;
  }

  .slider_box_1-3 {
    display: none;
  }
  /* 
  .slider_box_3 {
    font-size: 0.8em;
  }

  .slider_box_3-1 {
    height: 20%;
  }

  .slider_box_3-2 {
    width: 100%;
    height: 70%;
  }
  .slider_box_3-2-art {
    width: 70%;
    height: 20%;
  } */

  .slider_next p,
  .slider_prev p {
    font-size: 0.9em;
  }

  .front_door_a,
  .front_door_d,
  .front_door_t,
  .front_door_l,
  .front_door_r,
  .back_door {
    top: 50%;
    left: 50%;
    width: 50%;
  }

  .back_door {
    width: 60%;
  }

  .enter {
    width: 70px;
    height: 70px;
  }

  .enter:active {
    transform: scale(1.1);
    border: 1px solid #fff;
    outline: 0.8px dashed #fff;
    outline-offset: 10px;
  }
}
/* ====================================
------------------
Online Shop
------------------
==================================== */

.online {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.online_area {
  width: 100%;
  height: 50vh;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-image: url(./images/profile/rowld_4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.online_area::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.67);
}
.online_area p {
  color: #fff;
  font-size: 1.3em;
  z-index: 1;
}
.online_box {
  width: 20%;
  height: auto;
  position: relative;
  margin: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.doors_l {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .online_area {
    height: 40vh;
    align-items: center;
  }

  .online_box {
    display: none;
  }
}

/* ====================================
------------------
Instagram
------------------
==================================== */

.sns_area {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.sns_box {
  width: 45%;
  height: 100%;
  padding: 30px;
  border: 2px solid #fdfdfd;
  display: flex;
  justify-content: space-between;
  border-radius: 50px;
}

.sns_box.dark {
  border: 2px solid #050505;
}

.insta_box,
.yt_box {
  width: 50%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta_box img,
.yt_box img {
  width: 100%;
  margin: 0 auto;
  border: 2px solid #fdfdfd;
  outline: 0px dashed #fdfdfd;
  border-radius: 50%;
  transition: all 0.5s;
}

.insta_box img:hover,
.yt_box img:hover {
  outline: 1px dashed #fdfdfd;
  outline-offset: 10px;
}

.insta_box img:hover.dark,
.yt_box img:hover.dark {
  outline: 1px dashed #000;
}

.sns_text {
  width: 45%;
  line-height: 1.75em;
}

.sns_text_1 {
  width: 80%;
  height: 20%;
  margin: 0 auto;
  font-size: 1.2em;
  display: flex;
  justify-content: center;

  align-items: center;
  -webkit-text-stroke: 1px #fdfdfd;
  border-bottom: 1px dashed;
}

.sns_text_1 h2 {
  transform: skewX(-30deg);
  letter-spacing: -0.1em;
  color: transparent;
  -webkit-text-stroke: 1px #fdfdfd;
}

.sns_text_1 h2.dark {
  -webkit-text-stroke: 1px #050505;
}

.sns_text_1 img {
  width: 30px;
  margin-right: 20px;
}

.sns_text_2 {
  width: 90%;
  height: 40%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  font-size: 1.3em;
}

.sns_text_2 a {
  position: relative;
  color: #fdfdfd;
  text-decoration: none;
  transition: all 0.5s;
}

.sns_text_2 a.dark {
  color: #050505;
}

.sns_text_2 a:hover {
  transform: scale(1, 1);
}

.sns_text_2 a::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transform: scale(0, 1);
  transition: transform 0.5s;
  margin-bottom: -10px;
  background-image: linear-gradient(90deg, rgba(223, 168, 168, 1) 5%, rgba(193, 199, 197, 1) 19%, rgba(108, 199, 221, 1) 42%, rgba(177, 151, 223, 1) 73%, rgba(122, 197, 216, 1) 82%, rgba(223, 168, 168, 1));
}

.sns_text_2 a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.sns_text_3 {
  width: 90%;
  height: 40%;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;

  border-left: 1px solid;
  border-right: 1px solid;
  border-radius: 30px;
}

.sns_text_3 p {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sns_area {
    flex-direction: column;
  }

  .sns_box {
    width: 90%;
  }

  .sns_text_2 a:hover {
    letter-spacing: 0em;
  }
  .insta_area {
    margin-bottom: 50px;
  }

  .yt_area {
    flex-direction: row-reverse;
  }

  .sns_text_3 {
    width: 100%;
    height: 40%;
  }
}

@media screen and (max-width: 480px) {
  .sns_box {
    width: 80%;
    height: 70vh;
    border: 1px solid #fdfdfd;
    flex-direction: column;
    justify-content: space-around;
    margin: 0 auto;
  }

  .insta_area {
    margin-bottom: 50px;
  }

  .insta_box,
  .yt_box {
    width: 100%;
    height: 45%;
  }

  .insta_box a,
  .yt_box a {
    width: 80%;
    margin: 0 auto;
  }

  .sns_text {
    width: 100%;
    height: 45%;
  }

  .sns_text_1 {
    width: 100%;
    height: 20%;
  }

  .sns_text_2 {
    width: 100%;
    height: 30%;
    font-size: 1.1em;
  }

  .sns_text_3 {
    height: 50%;
    font-size: 0.9em;
    margin: 0 auto;
  }
}

/* ====================================
------------------
Contact
------------------
==================================== */

.contact_area {
  width: 90%;
  margin: 0 auto;
}

.contact_text {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.contact_mail {
  width: 80%;
  text-decoration: none;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_mail a {
  position: relative;
  color: #fdfdfd;
  font-size: 5em;
  text-decoration: none;
  transition: all 0.5s;
}

.contact_mail a.dark {
  color: #050505;
}

.contact_mail img {
  width: 80px;
  height: 100%;
  margin-right: 30px;
}

.contact_mail a:hover {
  letter-spacing: 0.01em;
  transform: scale(1, 1);
}

.contact_mail a::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transform: scale(0, 1);
  transition: transform 0.5s;
  margin-bottom: -3px;
  background-image: linear-gradient(90deg, rgba(223, 168, 168, 1) 5%, rgba(193, 199, 197, 1) 19%, rgba(108, 199, 221, 1) 42%, rgba(177, 151, 223, 1) 73%, rgba(122, 197, 216, 1) 82%, rgba(223, 168, 168, 1));
}

.contact_mail a:hover::before {
  letter-spacing: 0.1em;
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  .contact_area {
    height: 20vh;
  }
  .contact_mail {
    width: 90%;
  }

  .contact_mail a {
    font-size: 2em;
  }

  .contact_mail img {
    width: 40px;
    height: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contact_mail {
    width: 90%;
  }

  .contact_mail a {
    font-size: 1.3em;
  }

  .contact_mail img {
    width: 30px;
  }
}

/* ====================================
------------------
Art
------------------
==================================== */

#art_top,
#design_top,
#tarot_top {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .room_icon {
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
}

.room_icon img {
  width: 80%;
} */

.room_title {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.room_title img {
  width: 100%;
}

/* 
.room_icon {
  width: 300px;
  height: 300px;
  border: 10px double #fff;
  border-radius: 50%;
  outline: 2px dashed #fff;
  outline-offset: -20px;
  margin: 0 auto 50px;
  background-color: #000;
}

.room_icon img {
  width: 100%;
} */

.art_area {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.art_box {
  overflow: hidden;
  margin: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
  letter-spacing: 0.05em;
  background-position: center;
  background-size: cover;
}

.art_box:hover {
  outline: 2px solid #fff;
  outline-offset: 15px;
  font-size: 1.1em;
}

.art_box.dark {
  color: #fff;
}

.art_box.dark:hover {
  outline: 1.5px solid #000;
}

@media screen and (max-width: 768px) {
  #art_top,
  #design_top,
  #tarot_top {
    margin: 0px;
  }
}
@media screen and (max-width: 480px) {
  #art_top,
  #design_top,
  #tarot_top {
    margin: 50px 0;
  }

  .art_box {
    margin: 15px;
  }

  .art_box:hover {
    outline: 1px solid #fff;
    outline-offset: 10px;
  }

  /* .room_icon {
    width: 150px;
    height: 150px;
    border: 5px double #fff;
    border-radius: 50%;
    outline: 1px dashed #fff;
    outline-offset: -10px;
    margin: 0 auto 50px;
  } */
}

.art_box_left {
  width: 90%;
  height: 80%;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: end;
}

.art_box p {
  font-size: 0.6em;
}

.ab1 {
  width: 200px;
  height: 350px;
  border-radius: 130px;
  background-image: url(./images/art/hikou.jpg);
}

.ab2 {
  width: 250px;
  height: 350px;
  border-radius: 20px;
  background-image: url(./images/art/jt10000.jpg);
}

.ab3 {
  width: 500px;
  height: 300px;
  border-radius: 20px;
  background-image: url(./images/art/legacy_1.jpg);
}

.ab4 {
  width: 250px;
  height: 350px;
  border-radius: 20px;
  background-image: url(./images/art/reign.jpg);
}

.ab5 {
  width: 250px;
  height: 350px;
  border-radius: 20px;
  background-image: url(./images/art/memento-mori_1.jpg);
}

.ab6 {
  width: 500px;
  height: 300px;
  border-radius: 20px;
  background-image: url(./images/art/rohan_1.jpg);
}

.ab7 {
  width: 250px;
  height: 350px;
  border-radius: 20px;
  background-image: url(./images/art/年賀状_モックアップ\(2021-\).jpg);
}

.ab8 {
  width: 200px;
  height: 350px;
  border-radius: 130px;
  background-image: url(./images/art/ophelia_2.jpg);
}

@media screen and (max-width: 480px) {
  .ab1,
  .ab8 {
    width: 160px;
    height: 280px;
    border-radius: 100px;
  }

  .ab4 {
    width: 180px;
    height: 280px;
  }

  .ab2,
  .ab5,
  .ab7 {
    width: 180px;
    height: 300px;
  }

  .ab3,
  .ab6 {
    width: 350px;
    height: 200px;
  }
}

.hide-area {
  width: 80vw;
  display: none;
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal_box {
  width: 95%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modaal_box video {
  max-width: 500px;
}

.modaal_image {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.modaal_title {
  width: 100%;
  height: auto;
  padding: 20px;
}

.modaal_title h1 {
  border-bottom: 1px solid;
  margin-bottom: 10px;
}

.e-title {
  font-size: 0.5em;
  font-weight: bold;
  margin-left: 10px;
}

.modaal_text {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.moddal_detail {
  width: 100%;
  height: auto;
  margin-top: 10px;
  letter-spacing: 0.1em;
}

.moddal_detail ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.moddal_detail li {
  margin-right: 10px;
}

.moddal_detail span {
  font-size: 0.8em;
  font-weight: bold;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 25px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 5px;
  --swiper-navigation-color: rgb(155, 155, 155);
}

.swiper-pagination {
  --swiper-pagination-color: rgb(220, 220, 220);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 8px;
}

.art_button {
  width: 40%;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 10px;
  text-align: center;
  outline: 1px solid #fff;
  outline-offset: 3px;
  transition: 1s;
  margin: 20px 0;
}

.art_button a {
  color: #fff;
  text-decoration: none;
}

.art_button:hover {
  width: 45%;
  outline: 1px dashed #000;
  outline-offset: 5px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 780px) {
  .hide-area {
    width: 70vw;
  }

  .modaal_image {
    width: 90%;
    height: auto;
    max-width: 500px;
    margin: 0;
  }

  .moddal_detail {
    margin-top: 0px;
  }
}

@media screen and (max-width: 480px) {
  .modaal_box {
    width: 100%;
  }
  .modaal_image {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .modaal_title {
    width: 100%;
    height: auto;
    padding: 0px;
  }
  .modaal_title h1 {
    font-size: 1.2em;
    border-bottom: 1px solid;
  }
}

/* ====================================
------------------
Design
------------------
==================================== */

.section_title_container {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: first baseline;
  margin: 50px auto;
}

.section_title_design {
  font-size: 6em;
  transform: skewX(-30deg);
  letter-spacing: -0.18em;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.design_area {
  width: 100%;
  height: auto;
  margin: 0px auto;
}

.design_area.dark {
  color: #fff;
}

.design_tab_area {
  width: 90%;
  margin: auto;
}

.design_tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.design_tab li {
  list-style: none;
  text-decoration: none;
}

.design_tab li a {
  display: block;
  margin: 0 5px;
  padding: 10px 30px;
  text-decoration: none;
  color: #fff;
  border-radius: 20px;
  background-color: rgba(25, 25, 25, 0.7);
  transition: 0.5s;
}

.design_tab li a.dark {
  background-color: rgba(120, 120, 120, 0.7);
}

.design_tab li:hover {
  letter-spacing: 0.1em;
}

.design_tab li.active a {
  background-color: rgba(40, 40, 40, 0.7);
}

.design_tab li.active a.dark {
  background-color: rgba(160, 160, 160, 0.7);
}

.design_wall {
  width: 100%;
  height: auto;
  display: none;
  opacity: 0;
  border-radius: 50px;
  margin-bottom: 100px;
  background-color: rgba(40, 40, 40, 0.7);
}

.design_wall.dark {
  background-color: rgba(160, 160, 160, 0.7);
}

.design_wall.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .section_title_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section_title_design {
    font-size: 4em;
  }

  .design_area {
    width: 100%;
    height: auto;
    margin: auto;
  }

  .tab_area {
    width: 95%;
    margin: auto;
  }

  .design_tab {
    font-size: 0.8em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .design_tab li {
    list-style: none;
    text-decoration: none;
  }

  .design_tab li a {
    display: block;
    margin: 0 2px -1px;
    padding: 10px 30px;
    text-decoration: none;
    color: #fff;
  }

  .design_tab li.active a {
    color: #fff;
    outline: 1px solid #fff;
    outline-offset: 0px;
    letter-spacing: 0.1em;
  }

  /*エリアの表示非表示と形状*/
  .design_wall {
    width: 100%;
    height: auto;
    padding: 5px;
    border: 0px solid #fff;
    font-size: 0.8em;
  }
}

@media screen and (max-width: 480px) {
  .section_title_design {
    font-size: 3em;
  }

  .tab_area {
    width: 90%;
    margin: auto;
  }

  .design_tab li a {
    margin: 0 2px;
    padding: 10px 15px;
  }
}

.design_container_area {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.design_box,
.design_box_xl {
  width: 500px;
  height: 500px;
  border: 5px solid #fff;
  border-radius: 30px;
  overflow: hidden;
  outline: 1px solid #000000;
  margin: 0px 50px 100px;
  background-color: #050505;
}

.design_box_inner1 {
  width: 100%;
  height: 300px;
  display: flex;
  border-bottom: 2px solid #fff;
}

.design_box_inner1-1 {
  width: 60%;
  height: 100%;
  overflow: hidden;
  border-right: 2px solid #fff;
}

.design_box_inner1-2 {
  width: 40%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.design_box_inner1-2-1 {
  width: 100%;
  height: 50%;
  overflow: hidden;
  border-bottom: 2px solid #fff;
}

.design_box_inner1-2-2 {
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.design_box_inner2 {
  width: 100%;
  height: 40%;
}

.design_box_inner2-1 {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.design_box_inner2-1-1 {
  width: 60%;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  /* background-color: rgb(170, 181, 17); */
}

.design_box_inner2-1-2 {
  width: 30%;
  font-size: 0.8em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* background-color: rgb(128, 220, 145); */
}

.design_box_inner2-2 {
  width: 90%;
  height: 50%;
  font-size: 0.9em;
  margin: auto;
  /* background-color: rgb(53, 118, 118); */
}

.design_box_inner2-2 p {
  margin-bottom: 10px;
}
.design_box_inner2-3 {
  width: 90%;
  height: 20%;
  font-size: 0.8em;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* background-color: aqua; */
}

.design_box_inner1-1 img {
  width: 300px;
  height: 300px;
  transition: all 0.2s linear;
}

.design_box_inner1-2 img {
  width: 200px;
  height: 150px;
  transition: all 0.2s linear;
}

.design_box_inner1-1 img:hover,
.design_box_inner1-2 img:hover {
  transform: scale(1.1);
}

/* ///////////////////////// */

.design_box_xl {
  width: 1000px;
  height: 600px;
}

.design_box_inner1_xl {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
}

.design_box_inner2_xl {
  width: 100%;
  height: 200px;
}
.design_box_inner1-1_xl {
  width: 40%;
  height: 100%;
  overflow: hidden;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

.design_box_inner1-2_xl {
  width: 30%;
  height: 100%;
}

.design_box_inner1_xl {
  border-bottom: 2px solid #fff;
}

.design_box_inner1-2_xl {
  width: 30%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.design_box_inner1-2-1_xl,
.design_box_inner1-2-2_xl {
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.design_box_inner1-2-1_xl {
  border-bottom: 2px solid #fff;
}

.design_box_inner1-1_xl img {
  width: 400px;
  transition: all 0.2s linear;
}

.design_box_inner1-2_xl img {
  width: 300px;
  height: 200px;
  transition: all 0.2s linear;
}

.design_box_inner1-1_xl img:hover,
.design_box_inner1-2_xl img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .design_box,
  .design_box_xl {
    width: 300px;
    height: 400px;
    border: 2px solid #fff;
    outline: 0px dashed #fff;
    margin: 30px 20px;
  }

  .design_box_inner1 {
    width: 100%;
    height: 180px;
  }

  .design_box_inner2 {
    width: 100%;
    height: 50%;
  }

  .design_box_inner2-1 {
    width: 100%;
    height: 30%;
  }

  .design_box_inner2-1-1 {
    width: 60%;
    font-size: 1em;
  }

  .design_box_inner2-1-2 {
    width: 30%;
    font-size: 0.8em;
  }

  .design_box_inner2-2 {
    width: 90%;
    height: 55%;
  }

  .design_box_inner2-2 p {
    margin-bottom: 10px;
  }

  .design_box_inner2-3 {
    width: 90%;
    height: 15%;
    font-size: 0.8em;
  }

  .design_box_inner1-1 img {
    width: 180px;
    height: auto;
  }

  .design_box_inner1-2 img {
    width: 120px;
    height: auto;
  }

  .design_box_inner1-1 img:active,
  .design_box_inner1-2 img:active {
    transform: scale(1.1);
  }

  .design_box_xl {
    width: 500px;
    height: 500px;
  }

  .design_box_inner1_xl {
    width: 100%;
    height: 200px;
  }

  .design_box_inner2_xl {
    width: 100%;
    height: 300px;
  }

  .design_box_inner1-1_xl {
    width: 40%;
    height: 100%;
    overflow: hidden;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .design_box_inner1-2_xl {
    width: 30%;
    height: 100%;
  }

  .design_box_inner1_xl {
    border-bottom: 2px solid #fff;
  }

  .design_box_inner1-2_xl {
    width: 30%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .design_box_inner1-2-1_xl,
  .design_box_inner1-2-2_xl {
    width: 100%;
    height: 50%;
    overflow: hidden;
  }

  .design_box_inner1-1_xl img {
    width: 200px;
  }

  .design_box_inner1-2_xl img {
    width: 150px;
    height: 110px;
  }
}

@media screen and (max-width: 480px) {
  .design_box,
  .design_box_xl {
    width: 300px;
    height: 400px;
    outline-offset: 0px;
    margin: 0px 0px 100px;
  }

  .design_box_inner1 {
    height: 180px;
  }

  .design_box_inner1-1 {
    width: 60%;
  }

  .design_box_inner1-2 {
    width: 40%;
  }

  .design_box_inner2 {
    height: 220px;
  }

  .design_box_inner2-1 {
    height: 25%;
  }

  .design_box_inner2-1-1 {
    width: 75%;
  }

  .design_box_inner2-1-2 {
    width: 15%;
    font-size: 0.8em;
  }

  .design_box_inner2-2 {
    height: 60%;
    font-size: 0.9em;
  }

  .design_box_inner2-2 p {
    margin-bottom: 10px;
  }
  .design_box_inner2-3 {
    height: 15%;
    font-size: 0.8em;
  }

  .design_box_inner1-1 img {
    width: 180px;
    height: 180px;
  }

  .design_box_inner1-2 img {
    width: 120px;
    height: 90px;
  }

  /* ///////////////////////// */

  .design_box_xl {
    width: 300px;
    height: 800px;
  }

  .design_box_inner1_xl {
    width: 100%;
    height: 526px;
    display: flex;
    flex-direction: column;
  }

  .design_box_inner2_xl {
    width: 100%;
    height: 200px;
  }

  .design_box_inner1-1_xl {
    width: 100%;
    height: 300px;
    border-right: 0px solid #fff;
    border-left: 0px solid #fff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background-color: aqua;
  }

  .design_box_inner1-2_xl {
    width: 100%;
    height: 113px;
    flex-direction: row;
  }

  .design_box_inner1_xl {
    border-bottom: 2px solid #fff;
  }

  .design_box_inner1-2-1_xl,
  .design_box_inner1-2-2_xl {
    height: 100%;
  }

  .design_box_inner1-2-1_xl {
    border-right: 2px solid #fff;
  }

  .design_box_inner2_xl {
    width: 100%;
    height: 274px;
  }
  .design_box_inner1-1_xl img {
    width: 300px;
  }

  .design_box_inner1-2_xl img {
    width: 150px;
    height: 113px;
  }
}

/* ====================================
------------------
Project Fukuro
------------------
==================================== */

.fukuro_container_1 {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.fukuro_container_2 {
  width: 100%;
  height: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.project_fukuro_text {
  width: 55%;
  height: 900px;
  margin-right: 50px;
}

.project_fukuro_map {
  width: 35%;
  height: 900px;
  text-align: center;
  /* background-color: rgb(35, 35, 35); */
}

.project_fukuro_map img {
  width: 100%;
}

.project_fukuro_text_1 {
  width: 100%;
  height: 10%;
  /* background-color: rgb(20, 17, 17); */
}

.project_fukuro_text_1 h1 {
  font-size: 2em;
  margin-left: -20px;
}

.project_fukuro_text_2 {
  width: 100%;
  height: 40%;
  padding-top: 30px;
}
.project_fukuro_text_2 ol {
  width: 90%;
  margin: auto;
}

.project_fukuro_text_2 li {
  margin-bottom: 5px;
}

.project_fukuro_text_3 {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  outline: 1px solid #fff;
  outline-offset: 5px;
  border-radius: 10px;
}

.project_fukuro_text_3_1 {
  width: 45%;
}

.project_fukuro_text_3_1 img {
  width: 90%;
  border: 2px solid #fff;
  transition: all 0.5s;
}

.project_fukuro_text_3_1 img:hover {
  opacity: 0.8;
}

.project_fukuro_text_3_2 {
  width: 45%;
  font-size: 0.8em;
  list-style: 1.75;
}

.project_fukuro_text_3_2 h3 {
  font-size: 2em;
  margin-bottom: 10px;
}

.fukuro_container_box {
  width: 300px;
  height: 200px;
  margin: 50px 20px;
  display: flex;
  align-items: center;
  background-color: #000;
}

.fukuro_container_box img {
  width: 100%;
  border: 2px solid #fff;
  outline: 1px solid #fff;
  outline-offset: 5px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .fukuro_container_1 {
    width: 95%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }

  .fukuro_container_2 {
    width: 90%;
    height: auto;
    margin-bottom: 50px;
  }

  .project_fukuro_text {
    width: 90%;
    height: auto;
    margin-right: 0px;
    margin-top: 20px;
  }

  .project_fukuro_map {
    width: 50%;
    height: auto;
  }

  .project_fukuro_map img {
    width: 100%;
  }

  .project_fukuro_text_1 {
    width: 100%;
    height: 10%;
    text-align: center;
  }

  .project_fukuro_text_1 h1 {
    font-size: 2em;
    margin-left: 0px;
  }

  .project_fukuro_text_2 {
    width: 100%;
    height: 50%;
    padding: 20px 0px;
  }

  .project_fukuro_text_2 ol {
    width: 80%;
  }

  .project_fukuro_text_2 li {
    margin-bottom: 5px;
  }

  .project_fukuro_text_3 {
    width: 100%;
    height: 200px;
    margin-bottom: 50px;
  }

  .project_fukuro_text_3_2 {
    width: 45%;
    font-size: 0.8em;
  }

  .project_fukuro_text_3_2 h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }

  .fukuro_container_box {
    width: 200px;
    height: 100px;
    margin: 50px 20px;
  }
}

@media screen and (max-width: 420px) {
  .fukuro_container_1 {
    width: 100%;
    height: 100%;
    display: flex;
    margin-bottom: 50px;
  }

  .fukuro_container_2 {
    width: 100%;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }

  .project_fukuro_text {
    width: 100%;
    height: auto;
    margin-right: 0px;
  }

  .project_fukuro_map {
    width: 60%;
    height: auto;
    text-align: center;
  }

  .project_fukuro_map img {
    width: 100%;
  }

  .project_fukuro_text_1 {
    width: 90%;
    height: 10%;
    margin: auto;
  }

  .project_fukuro_text_1 h1 {
    font-size: 2em;
    margin-left: 0px;
  }

  .project_fukuro_text_2 {
    width: 90%;
    height: 40%;
    padding: 30px 0px;
    margin: auto;
  }

  .project_fukuro_text_2 ol {
    width: 90%;
    margin: auto;
  }

  .project_fukuro_text_3 {
    width: 90%;
    height: 350px;
    margin: auto;
    flex-direction: column;
    outline: 0px solid #fff;
  }

  .project_fukuro_text_3_1 {
    width: 90%;
    text-align: center;
    margin-bottom: 10px;
  }

  .project_fukuro_text_3_2 {
    width: 90%;
    font-size: 0.8em;
  }

  .project_fukuro_text_3_2 h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 10px;
  }

  .fukuro_container_box {
    width: 150px;
    height: 100px;
    margin: 30px 0px;
  }

  .fukuro_container_box img {
    border: 2px solid #fff;
    outline: 0px solid #fff;
    outline-offset: 0px;
  }
}

/* ====================================
------------------
Tarot
------------------
==================================== */

.tarot_area {
  width: 80%;
  margin: 200px auto 400px;
}

.tarot_area h1 {
  width: 100%;
  text-align: center;
  font-size: 3em;
}

/* ====================================
------------------
KG
------------------
==================================== */

.secret_body {
  color: #fff;
  background-color: #000;
  text-align: center;
}

.secret_area {
  width: 100%;
  height: auto;
  letter-spacing: 0.6em;
  margin: 50px 0;
}

.secret_area p {
  letter-spacing: 0.3em;
}

.secret_area img {
  width: 30%;
  height: 100%;
}

/* ====================================
------------------
About me
------------------
==================================== */

#about_me {
  width: 100%;
  height: auto;
}

.about_area {
  width: 100%;
  margin: 40px auto 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.room_title_2 {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;

  transform: rotate(-90deg);
}

.room_title_2 img {
  width: 100%;
}

.room_title_left {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.room_title_left img {
  width: 100%;
}

.about_box,
.ab_reverse {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-around;
  letter-spacing: 0.1em;
  padding: 50px 0;
  margin: 150px auto;
}

.ab_reverse {
  flex-direction: row-reverse;
}

.about_box_1 {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ab_reverse > .about_box_1 img {
  flex-direction: row-reverse;
  width: 90%;
  margin: 0 auto;
  transform: rotate(2deg);
}

.about_box_1 img {
  width: 90%;
  margin: 0 auto;
  transform: rotate(-2deg);
  border: 1px solid #050505;
}

.about_box_2 {
  width: 65%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.about_box_2-1 {
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
}

.about_box_2-1 p {
  width: 90%;
  font-size: 4em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;

  border-bottom: 1px dashed;
}

.about_box_2-2 {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about_box_2-2 p {
  font-size: 0.9em;
  letter-spacing: 0.1em;
  line-height: 2em;
}

.about_box_2-2 p::first-letter {
  font-size: 2em;
}

.about_box_2-2 span {
  font-size: 0.8em;
}

.about_box_2 img {
  width: 30%;
}

.about_box_3 {
  width: 1%;
  border: 1px solid;
}

.about_cover {
  width: 50%;
  display: flex;
  margin: 0 auto;
}

.about_title {
  width: 90%;
  margin: 50px auto;
}

.about_title p {
  width: 100%;
  font-size: 4em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.about_image {
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

.about_image img {
  width: 80%;
  border: 1px solid #000;
}

.strength_container {
  width: 80%;
  margin: 50px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.strength_box {
  width: 30%;
  height: 100%;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strength_box_image {
  width: 50%;
  margin: 0 auto;
}

.strength_box_image img {
  width: 100%;
  border: 1px solid;
  border-radius: 50%;
}

.strength_box_title {
  width: 90%;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}

.strength_box_text {
  width: 80%;
  padding-bottom: 30px;
  margin: 0 auto;
  font-size: 0.9em;
  line-height: 2em;
}

.strength_link {
  justify-content: center;
}

.strength_link span {
  font-size: 0.8em;
  font-style: italic;
}

.favorite_container {
  width: 90%;
  margin: 50px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  border-bottom: 1px solid;
}

.favorite_box {
  width: 22%;
  padding: 30px 0px;
  display: flex;
  border-top: 1px solid;
}

.favorite_box_1 {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: nowrap;
}

.favorite_box_1 h3 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  transform: rotate(-90deg);
}

.favorite_box_2 {
  width: 80%;
  display: flex;
  align-items: center;
  border-left: 1px dashed;
}

.favorite_box_2 li {
  list-style: none;
  font-size: 0.8em;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .about_area {
    width: 100%;
    margin: 40px auto 50px;
    flex-direction: column-reverse;
  }

  .room_title_2 {
    width: 100%;
    transform: rotate(0deg);
  }

  .room_title_2 img {
    width: 100%;
  }

  .room_title_left {
    width: 100%;
  }

  .about_box,
  .ab_reverse {
    margin: 50px auto 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .ab_reverse {
    flex-direction: column;
  }

  .about_box_1 {
    width: 50%;
    padding: 20px 0;
  }

  .about_box_1 img {
    width: 90%;
  }

  .about_box_2 {
    width: 80%;
    padding: 0px;
  }

  .about_box_2 img {
    width: 80%;
    padding-top: 20px;
    margin: auto;
  }

  .about_box_2-1 {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
  }

  .about_box_2-1 p {
    width: 100%;
    font-size: 3em;
    text-align: center;
  }

  .about_box_2-2 {
    height: 100%;
    padding-top: 20px;
  }

  .about_box_2-2 p {
    font-size: 0.9em;
    letter-spacing: 0em;
  }

  .about_box_3 {
    width: 0%;
    border: 0px solid;
  }

  .about_cover {
    width: 70%;
  }

  .about_title {
    width: 90%;
    margin: 50px auto;
  }

  .about_title p {
    width: 70%;
    margin: 0 auto;
    font-size: 3em;
    text-align: center;
    border-bottom: 1px dashed;
  }

  .strength_container {
    width: 80%;
    margin: 50px auto;
    flex-direction: column;
  }

  .strength_box {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px auto 100px;
  }

  .strength_box:nth-child(3) {
    margin: 0px auto 0px;
  }

  .strength_box_image {
    width: 50%;
  }

  .strength_box_title {
    width: 80%;
    padding: 30px 0;
  }

  .strength_box_text {
    width: 90%;
    letter-spacing: 0em;
  }

  .strength_link {
    width: 100%;
    justify-content: center;
  }

  .favorite_box {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .about_area {
    margin: 40px auto 0px;
  }
  .favorite_box {
    width: 90%;
  }
}

/* ====================================
  ------------------
  News / Blog
  ------------------
  ==================================== */

#news-blog {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -50;
  background-image: url(./images/about/garden.jpg);
  background-position: center;
  background-size: cover;
}
