@charset "UTF-8";
html {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  line-height: 2rem;
  color: #4B4B4B;
}

@media screen and (max-width: 1025px) {
  body {
    font-size: 14px;
  }
}

.section_title {
  text-align: center;
}

.section_title h2 {
  font-family: 'EB Garamond', serif;
  font-size: 45px;
  padding-bottom: 8px;
  margin-bottom: 60px;
  display: inline-block;
  border-bottom: 2px solid #4B4B4B;
}

@media screen and (max-width: 1025px) {
  .section_title h2 {
    font-size: 30px;
  }
}

nav {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 1025px) {
  .container {
    max-width: 95%;
  }
}

.wrapper {
  padding: 129px 0 0;
}

@media screen and (max-width: 599px) {
  .wrapper {
    padding-top: 85px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #4B4B4B;
  cursor: pointer;
}

h3 {
  margin: 0;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.is-show {
  opacity: 1;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 599px) {
  .hamburger {
    display: block;
    width: 50px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 0;
    transition: all 1s;
  }
  .hamburger .bar {
    display: block;
    height: 2px;
    width: 50px;
    margin-bottom: 10px;
    background-color: #4B4B4B;
    transition: all 0.5s;
  }
  .hamburger .show:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .hamburger .show:nth-child(2) {
    transform: translateY(-5px) rotate(45deg);
  }
}

.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 100;
}

.header .container {
  max-width: 100%;
  margin: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1025px) {
  .header .container {
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .header .container {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .header .container {
    max-width: 95%;
    display: block;
    position: relative;
  }
}

.header .container .header_logo {
  width: 100px;
}

.header .container .header_logo img {
  width: 100%;
  transition: .3s;
}

.header .container .header_logo img:hover {
  opacity: .5;
}

@media screen and (max-width: 599px) {
  .header .container .header_nav {
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    padding-top: 100px;
    transition: all 0.5s;
    transform: translateX(100vw);
    position: absolute;
    margin-left: -2.5vw;
    z-index: 1000;
  }
}

.header .container .header_nav ul {
  display: flex;
}

@media screen and (max-width: 599px) {
  .header .container .header_nav ul {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
}

.header .container .header_nav ul li {
  padding-left: 72px;
}

@media screen and (max-width: 599px) {
  .header .container .header_nav ul li {
    padding-left: 0;
    margin-bottom: 50px;
  }
}

.header .container .header_nav ul li a {
  position: relative;
  transition: all .3s;
}

@media screen and (max-width: 599px) {
  .header .container .header_nav ul li a {
    font-size: 2rem;
  }
}

.header .container .header_nav ul li a:hover {
  color: #98A0BF;
}

.header .container .header_nav ul li a:hover::after {
  opacity: 1;
  bottom: -3px;
}

.header .container .header_nav ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #98A0BF;
  position: absolute;
  bottom: 1px;
  left: 0;
  opacity: 0;
  transition: all .3s;
}

.header .container .header_nav.show {
  opacity: 1;
  transform: translateX(0);
  animation-duration: 1s;
  animation-name: fade-in;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.fv {
  margin-top: 80px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .fv {
    height: 587px;
  }
}

.fv .slider {
  padding: 0;
  pointer-events: none;
  margin-bottom: 0;
}

.fv .slider .slider-item {
  width: 100vw;
  height: 650px;
}

.fv .slider .slider-item01 {
  background-image: url(img/fv.png);
  background-size: cover;
  background-position: center center;
}

.fv .slider .slider-item02 {
  background-image: url(img/fv2.png);
  background-size: cover;
  background-position: center center;
}

.fv .slider .slider-item03 {
  background-image: url(img/fv3.png);
  background-size: cover;
  background-position: center center;
}

.fv .slider .slick-prev, .fv .slider .slick-next {
  position: absolute;
  z-index: 10;
  top: 42%;
  cursor: pointer;
  outline: none;
  height: 25px;
  width: 25px;
}

.fv .slider .slick-prev {
  left: 2.5%;
  transform: rotate(-135deg);
}

.fv .slider .slick-next {
  right: 2.5%;
  transform: rotate(45deg);
}

.fv .fv_text {
  position: absolute;
  top: 100px;
  right: 100px;
  font-size: 3.125rem;
  font-family: 'EB Garamond', serif;
  color: #fff;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .fv .fv_text {
    right: 30px;
  }
}

.fv .fv_text p:nth-child(2), .fv .fv_text p:nth-child(3) {
  font-size: 1.5rem;
}

@media screen and (max-width: 599px) {
  .fv .fv_text p:nth-child(2), .fv .fv_text p:nth-child(3) {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 599px) {
  .fv .fv_text {
    font-size: 2rem;
    top: 100px;
    right: 20px;
  }
}

.fv .scroll {
  height: 100px;
  writing-mode: vertical-lr;
  position: absolute;
  bottom: 10px;
  left: 50%;
  font-family: 'EB Garamond', serif;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .fv .scroll {
    bottom: 5%;
    left: 0;
  }
}

.fv .scroll span {
  font-size: 1rem;
  /*高さ・位置・透過が変化して線が上から下に動く*/
}

.fv .scroll span::after {
  content: '';
  display: block;
  width: 1px;
  height: 70px;
  background-color: #fff;
  position: absolute;
  top: 0px;
  left: 13px;
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}

.about {
  position: relative;
  z-index: 50;
  background-color: #F7F9FC;
  padding-bottom: 100px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.about .about_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .about .about_inner {
    flex-direction: column;
  }
}

.about .about_inner .about_text {
  width: 44%;
}

@media screen and (max-width: 599px) {
  .about .about_inner .about_text {
    order: 2;
    width: 100%;
  }
}

.about .about_inner .about_text .more {
  text-align: right;
  position: relative;
}

@media screen and (max-width: 599px) {
  .about .about_inner .about_text .more {
    text-align: left;
  }
}

.about .about_inner .about_text .more:hover .btn {
  color: #98A0BF;
}

.about .about_inner .about_text .more:hover .btn::before {
  right: -50px;
}

.about .about_inner .about_text .more:hover .btn::after {
  right: -53px;
}

.about .about_inner .about_text .more .btn {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
}

.about .about_inner .about_text .more .btn::before {
  content: "";
  width: 120px;
  height: 20px;
  display: block;
  border-bottom: 0.5px solid #4B4B4B;
  position: absolute;
  top: 10px;
  right: -30px;
  transition: all .3s;
}

@media screen and (max-width: 599px) {
  .about .about_inner .about_text .more .btn::before {
    left: 0;
  }
}

.about .about_inner .about_text .more .btn::after {
  content: "";
  width: 100px;
  height: 20px;
  display: block;
  border-right: 0.5px solid #4B4B4B;
  position: absolute;
  right: -35px;
  transform: rotate(-35deg);
  bottom: -28px;
  transition: all .3s;
}

@media screen and (max-width: 599px) {
  .about .about_inner .about_text .more .btn::after {
    left: 25px;
  }
}

.about .about_inner .about_img {
  width: 38%;
}

@media screen and (max-width: 599px) {
  .about .about_inner .about_img {
    order: 1;
    width: 80%;
  }
}

.about .about_inner .about_img img {
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#work .work_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  #work .work_inner {
    flex-direction: column;
  }
}

#work .work_inner .work_item {
  width: 44%;
  margin-bottom: 100px;
}

#work .work_inner .work_item:nth-child(4) img {
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  #work .work_inner .work_item:nth-child(4) img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  #work .work_inner .work_item {
    width: 100%;
    margin-bottom: 70px;
  }
}

#work .work_inner .work_item span {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  border-bottom: 1px solid #4B4B4B;
}

#work .work_inner .work_item .img {
  overflow: hidden;
  margin-top: 5px;
}

#work .work_inner .work_item .img img {
  width: 100%;
  object-fit: cover;
  transition-duration: 1s;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#work .work_inner .work_item .img img:hover {
  transform: scale(1.1);
  opacity: .4;
}

#work .work_inner .work_item .work_item_text a {
  font-family: 'EB Garamond', serif;
  padding: 5px 17px;
  border: 0.5px solid #4B4B4B;
  transition: all 0.8s;
}

#work .work_inner .work_item .work_item_text a:hover {
  border: none;
  background-color: #98A0BF;
  color: #fff;
}

.contact {
  background-color: #F7F9FC;
  padding-bottom: 100px;
  box-shadow: -4px -4px 8px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.contact .wrapper .contact_btn {
  width: 300px;
  height: 60px;
  background-color: #fff;
  border: 0.5px solid #4B4B4B;
  text-align: center;
  margin: 60px auto;
  transition: all 1s;
}

.contact .wrapper .contact_btn:hover {
  background-color: #98A0BF;
  border: none;
}

.contact .wrapper .contact_btn:hover .btn {
  color: #fff;
  transition: all 0.8s;
}

.contact .wrapper .contact_btn .btn {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  line-height: 60px;
}

.footer {
  text-align: center;
  margin-top: 200px;
  font-family: 'EB Garamond', serif;
}

@media screen and (max-width: 599px) {
  .footer {
    margin-top: 120px;
  }
}

.footer_toppage {
  margin-top: 0;
  background-color: #F7F9FC;
}

#about .container {
  width: 46%;
}

@media screen and (max-width: 599px) {
  #about .container {
    width: 100%;
  }
}

#about .container .img {
  width: 71%;
  margin: 0 auto 60px;
}

#about .container .img img {
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#about .container .text_wrapper {
  margin-bottom: 65px;
}

#about .container hr {
  margin: 50px 0;
  height: 1px;
  border: none;
  background-color: #0b0b0b;
}

#about .container .cat_wrapper .cat_inner {
  display: flex;
}

#about .container .cat_wrapper .cat_inner .cat_title {
  width: 20%;
}

@media screen and (max-width: 599px) {
  #about .container .cat_wrapper .cat_inner .cat_title {
    margin-right: 20px;
  }
}

#about .container .cat_wrapper .cat_inner .cat_item {
  width: 38%;
}

@media screen and (max-width: 599px) {
  #about .container .cat_wrapper .cat_inner .cat_item {
    width: 80%;
  }
}

#about .container .cat_wrapper .cat_inner .cat_item ul {
  padding-left: 0;
  list-style: square;
}

#about .container .cat_wrapper .cat_inner .cat_item .style_off {
  list-style: none;
}

#about .container .cat_wrapper .cat_inner .cat_hoby {
  width: 80%;
}

#about .container .cat_wrapper .catrepletion {
  margin-left: 20%;
}

@media screen and (max-width: 599px) {
  #about .container .cat_wrapper .catrepletion {
    margin-left: 0;
  }
}

.work_site .work_wrapper {
  margin-bottom: 120px;
}

.work_site .container {
  max-width: 48%;
  position: relative;
}

@media screen and (max-width: 599px) {
  .work_site .container {
    max-width: 85%;
    margin-bottom: 80px;
  }
}

.work_site .container .site_title {
  border-bottom: 0.5px solid #4B4B4B;
  margin: 72px 0 65px;
}

@media screen and (max-width: 1025px) {
  .work_site .container .site_title {
    margin: 50px 0 40px;
  }
}

.work_site .container .site_title h3 {
  display: inline-block;
  margin-left: 62px;
  font-size: 1.75rem;
}

@media screen and (max-width: 599px) {
  .work_site .container .site_title h3 {
    font-size: 1.25rem;
  }
}

.work_site .container .site_title span {
  font-family: 'EB Garamond', serif;
}

.work_site .container .site_pc {
  width: 100%;
  height: 365px;
  overflow-y: scroll;
  margin-bottom: 50px;
  cursor: pointer;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1025px) {
  .work_site .container .site_pc {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .work_site .container .site_pc {
    height: 190px;
  }
}

@media screen and (max-width: 599px) {
  .work_site .container .site_pc {
    height: 200px;
  }
}

.work_site .container .site_pc img {
  width: 100%;
}

.work_site .container .site_sp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}

@media screen and (max-width: 599px) {
  .work_site .container .site_sp {
    flex-direction: column;
  }
}

.work_site .container .site_sp .site_sp_open {
  width: 46%;
  height: 600px;
  overflow-y: scroll;
  cursor: pointer;
  object-fit: cover;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1025px) {
  .work_site .container .site_sp .site_sp_open {
    height: 428px;
  }
}

@media screen and (max-width: 768px) {
  .work_site .container .site_sp .site_sp_open {
    height: 321px;
  }
}

@media screen and (max-width: 599px) {
  .work_site .container .site_sp .site_sp_open {
    width: 100%;
    height: 600px;
    margin-bottom: 50px;
  }
}

.work_site .container .site_sp .site_sp_open img {
  width: 100%;
  object-fit: cover;
}

.work_site .container .site_sp .site_sp_open.villa,
.work_site .container .site_sp .site_sp_close.villa {
  height: 565px;
}

@media screen and (max-width: 1025px) {
  .work_site .container .site_sp .site_sp_open.villa,
  .work_site .container .site_sp .site_sp_close.villa {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .work_site .container .site_sp .site_sp_open.villa,
  .work_site .container .site_sp .site_sp_close.villa {
    height: 301px;
  }
}

@media screen and (max-width: 599px) {
  .work_site .container .site_sp .site_sp_open.villa,
  .work_site .container .site_sp .site_sp_close.villa {
    height: 566px;
  }
}

.work_site .container .site_sp .site_sp_close {
  width: 46%;
  height: 600px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

@media screen and (max-width: 1025px) {
  .work_site .container .site_sp .site_sp_close {
    height: 428px;
  }
}

@media screen and (max-width: 768px) {
  .work_site .container .site_sp .site_sp_close {
    height: 321px;
  }
}

@media screen and (max-width: 599px) {
  .work_site .container .site_sp .site_sp_close {
    width: 100%;
    height: 600px;
  }
}

.work_site .container .site_sp .site_sp_close img {
  width: 100%;
  object-fit: cover;
}

.work_site .container p {
  font-family: 'EB Garamond', serif;
  margin-top: 0;
  animation-name: lit;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

@keyframes lit {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

.work_site .container .work_contents .contents_item {
  display: flex;
  margin-bottom: 30px;
}

.work_site .container .work_contents .contents_item .contents_title {
  width: 22%;
  font-weight: lighter;
}

@media screen and (max-width: 599px) {
  .work_site .container .work_contents .contents_item .contents_title {
    width: 35%;
  }
}

.work_site .container .work_contents .contents_item .contents_text {
  width: 78%;
}

@media screen and (max-width: 599px) {
  .work_site .container .work_contents .contents_item .contents_text {
    width: 65%;
  }
}

.work_site .side_nav {
  width: 140px;
  position: fixed;
  right: 0;
  top: 129px;
}

@media screen and (max-width: 599px) {
  .work_site .side_nav {
    position: static;
    margin: 0 auto;
    border: 0.5px dashed #4B4B4B;
    padding: 40px;
    width: 75%;
    box-sizing: border-box;
    padding: 30px;
  }
}

.work_site .side_nav .side_nav_item {
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .work_site .side_nav .side_nav_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
  }
  .work_site .side_nav .side_nav_item:nth-of-type(3) {
    margin-bottom: 0;
  }
}

.work_site .side_nav .side_nav_item .side_bav_cat {
  font-weight: bold;
  font-size: 0.875rem;
  position: relative;
}

@media screen and (max-width: 599px) {
  .work_site .side_nav .side_nav_item .side_bav_cat {
    width: 40%;
  }
}

.work_site .side_nav .side_nav_item .side_bav_cat::before {
  content: '';
  width: 1px;
  height: 80%;
  background-color: #0b0b0b;
  display: block;
  position: absolute;
  bottom: 0;
  left: -5px;
}

@media screen and (max-width: 599px) {
  .work_site .side_nav .side_nav_item .side_bav_cat::before {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .work_site .side_nav .side_nav_item .side_bav_cat::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -5px;
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: 1px solid #4B4B4B;
    border-right: 1px solid #4B4B4B;
    transform: rotate(45deg);
  }
}

.work_site .side_nav .side_nav_item .side_bav_cat span {
  font-family: 'EB Garamond', serif;
}

@media screen and (max-width: 599px) {
  .work_site .side_nav .side_nav_item .side_nav_title {
    width: 60%;
  }
}

.work_site .side_nav .side_nav_item .side_nav_title ul {
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 599px) {
  .work_site .side_nav .side_nav_item .side_nav_title ul {
    display: inline-block;
    margin: 0;
  }
}

.work_site .side_nav .side_nav_item .side_nav_title a {
  margin-left: 30px;
  font-size: 0.875rem;
}

.work_site .side_nav .side_nav_item .side_nav_title a:hover {
  color: #98A0BF;
}

.work_site .banner_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 65px;
}

@media screen and (max-width: 599px) {
  .work_site .banner_wrapper {
    flex-direction: column;
  }
}

.work_site .banner_wrapper .banner_item1 {
  width: 160px;
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .work_site .banner_wrapper .banner_item1 {
    order: 2;
  }
}

.work_site .banner_wrapper .banner_item1 img {
  object-fit: cover;
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.work_site .banner_wrapper .banner_item2 {
  width: 68%;
}

@media screen and (max-width: 599px) {
  .work_site .banner_wrapper .banner_item2 {
    width: 100%;
  }
}

.work_site .banner_wrapper .banner_item2 .img_mocup {
  width: 100%;
  margin-bottom: 50px;
}

.work_site .banner_wrapper .banner_item2 .img_mocup img {
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.work_site .banner_wrapper .banner_item2 .banner1 {
  width: 300px;
}

@media screen and (max-width: 599px) {
  .work_site .banner_wrapper .banner_item2 .banner1 {
    margin: 0 auto 50px;
  }
}

.work_site .banner_wrapper .banner_item2 .banner1 img {
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.work_site .banner_wrapper .graphic {
  width: 100%;
}

#contact .wrapper {
  text-align: center;
}

@media screen and (max-width: 599px) {
  #contact .wrapper {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */