/* ----------------------------------

#common

---------------------------------- */

body {
  width: 100%;
  height: 100%;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #534439;
  background-color: #fff6e9;
  margin: 0 auto;
}

header {
  position: relative;
  width: 100%;
}

main {
  position: relative;
  background-color: #fff6e9;
  width: 100%;
  margin: 0 auto;
}

section {
  background-color: #fff6e9;
  max-width: 1500px;
  padding: 3rem;
  margin: 0% auto 10%;
}

aside #page-top {
  position: fixed;
  bottom: 2rem;
  right: 0.5rem;
  z-index: 99;
}
aside #page-top a {
  position: relative;
  display: inline-block;
  background: rgba(255, 255, 255, 0);
  border: 1px rgba(213, 119, 39, 1) solid;
  border-radius: 50%;
  text-decoration: none;
  width: 4rem;
  height: 4rem;
  transition: all 1s ease;
}
aside #page-top a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  margin-top: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 1px #d57727 solid;
  border-right: 1px #d57727 solid;
  transform: rotate(-45deg);
  transition: all 1s ease;
}
aside #page-top a:hover {
  background: #d57727;
}
aside #page-top a:hover::before {
  border-top: 1px #fff solid;
  border-right: 1px #fff solid;
}

footer {
  background-color: #534439;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 2rem 3rem;
}

img {
  width: 100%;
  height: 100%;
}
.pc {
  display: block;
}
.sp {
  display: none;
}


/* ----------------------------------

#top

---------------------------------- */

#top header {
  position: relative;
  background: center / cover no-repeat;
  background-image: url("../img/top_bg.jpg");
  min-height: 800px;
  max-height: 1000px;
  margin: 0;
}

#top .pc_menu {
  position: fixed;
  top: 0;
  background: linear-gradient(rgba(83, 68, 57, 1), rgba(83, 68, 57, 0));
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  width: 100%;
  padding: 1.5% 0;
  transition: .5s;
  z-index: 999;
}
#top .pc_menu.hide{
  transform: translateY(-100%);
}

#top .pc_menu ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  column-gap: 1rem;
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-weight: 600;
}
#top .pc_menu li {
  display: inline-block;
}

#top .pc_menu li a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0);
  font-size: 1.5rem;
  font-weight: 100;
  border: 1px #fff solid;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  transition: 1s;
}
#top .pc_menu li a:hover {
  background-color: rgba(213, 119, 39, 0.6);;
}

#top .hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

#top .hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #534439;
  transition: all .6s;
}

#top .hamburger-overlay__line:nth-of-type(1) { top: 14px; }
#top .hamburger-overlay__line:nth-of-type(2) { top: 23px; }
#top .hamburger-overlay__line:nth-of-type(3) { top: 32px; }

#top .hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

#top .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
#top .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
#top .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

#top .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

#top .nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

#top .nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

#top .nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#top .nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

#top .nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

#top .nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
#top .nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
#top .nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
#top .nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

#top .nav-overlay__link {
  display: inline-block;
  padding: 1em;
  color: #fff;
  font-size: 2em;
  text-decoration: none;
  transition: color .5s;
}

#top .nav-overlay__link:hover {
  color: #d57727;
}

#top h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  font-family: "Monoton", sans-serif;
  font-size: 9rem;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

#top header .scroll {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, 3%);
  -webkit-transform: translate(-50%, 3%);
  width: fit-content;
}

#top header .scroll::before {
  animation: 2s scroll infinite;
  background: rgba(83, 68, 57, 0.7);
  border-radius: 3px;
  content: "";
  height: 0.7rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 4px;
}

#top header .scroll::after {
  border: 1px #fff solid;
  border-radius: 20px;
  content: "";
  display: block;
  height: 3rem;
  margin-inline: auto;
  width: 2rem;
}

@keyframes scroll {
  0% {
    opacity: 0;
    top: 10%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 60%;
  }
}

#top .wrapper {
  margin: 0 auto;
}

#top h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 5rem;
  font-weight: 600;
  color: #d57727;
  text-align: center;
  padding: 3% 0;
}

#top_works .works_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
justify-content: space-between;
  column-gap: 4rem;
  row-gap: 4rem;
}
#top_works .works_list li {
  background-color: #fff6e9;
  border: 1px #534439 solid;
  border-radius: 15px;
  box-shadow: 4px 5px 0 0 #534439;
  width: calc((100% - 8rem)/3);
}
#top_works .works_list a {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  padding: 3rem;
}
#top_works figure {
  border: 1px solid #d57727;
  width: 100%;
  overflow: hidden;
}
#top_works img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transition: all 1s ease;
  aspect-ratio: 16 / 9;
}
#top_works .works_list a:hover img {
  transform: scale(1.2);
}
#top_works .works_text {
  font-weight: 300;
  text-align: right;
  width: 100%;
}
#top_works .works_text dt {
  font-family: "BioRhyme Expanded", serif;
  color: #d57727;
  line-height: 1rem;
  border-bottom: 1px #d57727 solid;
  margin-bottom: 0.5rem;
}
#top_works .works_text dd {
  display: flex;
  column-gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff6e9;
}
#top_works .works_text span {
  background-color: #d57727;
  border-radius: 15px;
  padding: 0.1rem 0.5rem;
}

#top_profile {
  background: url("../img/top-profile_bg.jpg") right bottom / cover no-repeat;
  max-width: 100vw;
  padding: 0;
}
#top_profile .wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: center;
  max-width: 1500px;
  padding: 5rem 3rem;
}
#top_profile h2 {
  position: absolute;
  left: 0;
  bottom: 100%;
  rotate: 90deg;
  transform-origin: bottom left;
  font-size: 6rem;
  padding: 0 0 0 5rem;
}

#top_profile .inner {
  width: 85%;
  max-width: 800px;
}
#top_profile .profile_bg {
  display: block;
  border-right: 1px #534439 solid;
  width: 50%;
  height: 100%;
}

#top_profile .profile_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px #fff solid;
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5rem 3rem;
}

#top_profile .profile_img {
  display: flex;
  justify-content: center;
}
#top_profile .profile_img img {
  border-radius: 50%;
  border: 2px #fff solid;
  width: 150px;
}

#top_profile .profile_text {
  margin-top: 2rem;
}
#top_profile dt {
  font-size: 2rem;
  font-weight: 500;
}


#top_contact .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #bba89b;
  color: #534439;
  text-align: center;
  padding: 4rem;
  margin: 0 auto;
}
#top_contact a {
  font-size: 2.5rem;
  font-weight: 700;
  transition: all 1s ease;
}
#top_contact a:hover {
  color: #d57727;
}


/* ----------------------------------

#works

---------------------------------- */
#works main {
  max-width: 1500px;
}
#works header {
  background-color: #d57727;
  height: 100px;
}
#works header .wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 3rem;
}
#works h1 {
  font-family: "Cinzel Decorative", serif;
  font-size: 4rem;
  color: #fff;
}
#works h2 {
  position: relative;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  color: #d57727;
  text-align: center;
  padding-bottom: 3rem;
  margin-top: 4rem;
}
#works h2::before {
  content: "Works";
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cinzel Decorative", serif;
  font-size: 0.9em;
  font-style: italic;
  font-weight: 600;
  color: rgba(187, 168, 155, 0.5);
  border-bottom: 2px rgba(187, 168, 155, 0.5) solid;
}
#works h2 span {
  display: block;
  font-size: 0.7em;
}
#works section {
  text-align: center;
}
#works .works_gallery {
  display: inline-block;
}
#works .works_gallery li {
  margin-bottom: 1rem;
}
#works .works_gallery li:last-child {
  margin-bottom: 0;
}
#works .gallery_accordion {
  background-color: #534439;
}
#works .gallery_accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 1em 2em;
}
#works .gallery_accordion summary::before,
#works .gallery_accordion summary::after {
  position: absolute;
  right: 2em;
  content: '';
  background-color: #fff;
  width: 1px;
  height: 0.9em;
}
#works .gallery_accordion summary::before {
  rotate: 90deg;
}
#works .gallery_accordion summary::after {
  transition: rotate .5s;
}
#works .gallery_accordion[open] summary::after {
  rotate: 90deg;
}
#works .gallery_accordion figure {
  padding: 0.5rem;
}
#works .works_explanation {
  max-width: 1000px;
  border: 1px #534439 solid;
  padding: 2rem;
  margin: 3rem auto 10rem;
}
#works .explanation_wrapper {
  border-bottom: 1px #534439 solid;
  text-align: left;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
#works .explanation_wrapper:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
#works .explanation_wrapper dt {
  font-size: 1.2em;
  color: #bba89b;
  margin-bottom: 1rem;
}
#works .explanation_wrapper dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#works .explanation_wrapper a {
  display: inline-block;
  transition: all 1s ease;
}
#works .explanation_wrapper a:hover {
  color: #d57727
}
#works .explanation_wrapper span {
  font-size: 0.8em;
}
#works .back {
  display: inline-block;
  color: #d57727;
  background: rgba(255, 255, 255, 0);
  border: 1px #d57727 solid;
  border-radius: 30px;
  text-align: center;
  padding: 1rem 4rem;
  transition: all 1s ease;
}
#works .back:hover {
  color: #fff;
  background: #d57727;
}


/* ----------------------------------

media

---------------------------------- */

@media screen and (max-width: 1399px) {
  #top h1 {
    font-size: 8rem;
  }
	#top_works .works_list {
    column-gap: 1rem;
    row-gap: 1rem;
  }
  #top_works .works_list li {
    width: calc((100% - 2rem) / 3);
  }
  #top_works .works_list a {
    padding: 2rem;
  }
}
@media screen and (max-width: 959px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
    font-size: 14px;
  }
  section {
    padding: 2rem 1rem;
  }
  #top header {
    min-height: 400px;
  }
  #top h1 {
    font-size: 4rem;
  }
  #top h2 {
    font-size: 4rem;
  }
  #top_works .works_list li {
      width: calc((100% - 2rem) / 2);
  }
  #top_profile .wrapper {
    flex-direction: column;
    align-items: center;
    padding: 3rem 0 5rem;
  }
  #top_profile h2 {
    position: relative;
    rotate: 0deg;
    padding: 3% 0;
  }
  #top_profile .profile_text dd {
    text-align: left;
  }
  #top_profile .inner {
    width: 100%;
    padding: 0 1rem;
  }
  #top_contact .inner {
    width: 400px;
    height: 400px;
  }
  #top_contact a {
    font-size: 1.8rem;
  }
  #page-top a {
    width: 3rem;
    height: 3rem;
  }
  #page-top a::before {
    margin-top: 1.2rem;
    width: 1rem;
    height: 1rem;  
  }
  #works header {
    height: 70px;
  }
  #works header .wrapper {
    padding: 0 1rem;
  }
  #works h1 {
    font-size: 2rem;
  }
  #works section {
    padding: 2rem 1rem;
  }
  #works h2 {
    font-size: 1.8rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
  }
  #works h2::before {
    top: -2rem;
    font-size: 0.7em;
  }
}
@media screen and (max-width: 420px) {
  #top h1 {
    font-size: 2.8rem;
  }
  #top h2 {
    font-size: 2.5rem;
  }
  #top_works .works_list li {
    width: calc(100%);
    row-gap: 2rem;
  }
  #top_profile .profile_img img {
    width: 100px;
  }
  #top_contact .inner {
    width: 300px;
    height: 300px;
  }
  #top_contact a {
    font-size: 1.3rem;
  }
  #works header .wrapper {
    justify-content: center;
  }
}