@charset "UTF-8";
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
}

body {
  font-size: 1.4rem;
  color: var(--color-main);
  font-family: var(--font-family);
  font-weight: 500;
  line-height: 2.4rem;
  text-align: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

section h2 {
  font-size: 2.4rem;
}

a {
  text-decoration: none;
}
a:visited {
  color: var(--color-main);
}
a:hover {
  opacity: 0.5;
  color: var(--color-main);
}

ul {
  list-style: none;
}

.none {
  display: none;
}

.header {
  height: 80px;
  width: 100%;
  max-width: 1160px;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  margin: 0 auto;
  color: #fff;
  padding: 20px 50px;
  background-color: var(--color-white);
}
.header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-wrapper .header-logo a {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-main);
}
.header .header-wrapper .toggle-btn {
  display: none;
}
.header .header-wrapper #g-nav {
  display: block;
  text-align: right;
}
.header .header-wrapper #g-nav #g-nav-list ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .header-wrapper #g-nav #g-nav-list .g-nav-line li.current a,
.header .header-wrapper #g-nav #g-nav-list .g-nav-line li a:hover {
  color: #999;
}
.header .header-wrapper #g-nav #g-nav-list .g-nav-line li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #999;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.header .header-wrapper #g-nav #g-nav-list .g-nav-line li.current a::after,
.header .header-wrapper #g-nav #g-nav-list .g-nav-line li a:hover::after {
  transform: scale(1, 1);
}
.header .header-wrapper #g-nav #g-nav-list ul li a {
  display: block;
  padding: 0 20px;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
}

@media (max-width: 750px) {
  .header {
    min-width: 375px;
    height: 90px;
    width: 100%;
  }
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #999;
    transition: all 0.6s;
  }
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav.panelactive #g-nav-list {
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: var(--color-main);
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .toggle-btn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .toggle-btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  .toggle-btn span:nth-of-type(1) {
    top: 15px;
  }
  .toggle-btn span:nth-of-type(2) {
    top: 23px;
  }
  .toggle-btn span:nth-of-type(3) {
    top: 31px;
  }
  .toggle-btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .toggle-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .toggle-btn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
#splash {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  color: var(--color-main);
}
#splash #splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}
#splash #splash_text svg {
  height: 2px;
}

.main {
  display: block;
  background-color: #fff;
  margin: 0 auto;
}

.section-top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.section-top .top-img_container {
  height: 550px;
  width: 750px;
  top: 150px;
  left: 10%;
  background: url("../assets/images/top/top_01.jpg") no-repeat bottom center;
  background-size: cover;
  transform-origin: center;
  position: relative;
}
@media (max-width: 1160px) {
  .section-top .top-img_container {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: url("../assets/images/top/DSC00415.JPG") no-repeat center center;
    background-size: cover;
  }
  .section-top .top-img_container h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    letter-spacing: 0.3rem;
    color: #fff;
  }
}
.section-top .top_black-txt {
  position: absolute;
  font-weight: 700;
  top: 50%;
  left: 62.5%;
  transform: translateY(-50%);
  font-size: 10rem;
  z-index: 2;
  color: #333;
}
.section-top .top_white-txt {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
}
.section-top .top_white-txt::after {
  content: "PORTFOLIO";
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10rem;
  color: #fff;
  position: absolute;
  top: 55%;
  left: 62.5%;
  transform: translateY(-50%);
  z-index: 4;
}
@media (max-width: 1160px) {
  .section-top .top_white-txt {
    display: none;
  }
}

.section-profile {
  margin: 130px auto 80px;
  max-width: 1160px;
}
.section-profile h3 {
  font-size: 6rem;
  margin-bottom: 100px;
}
.section-profile_content-wrapper {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.section-profile_image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  margin: 0 60px 0 0;
  border-radius: 15px;
}
.section-profile_txt {
  padding: 0 0 30px 60px;
}
.section-profile_txt h4 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0 20px;
}
.section-profile_txt table {
  display: block;
  text-align: left;
  line-height: 2.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  margin: 10px 0;
}
.section-profile_txt th {
  width: 130px;
  font-weight: 600;
}
@media (max-width: 1160px) {
  .section-profile {
    min-width: 375px;
  }
  .section-profile h3 {
    margin: 60px 0;
  }
  .section-profile_image img {
    margin: 0 auto;
  }
  .section-profile_txt {
    padding: 20px 24px 0;
    margin-bottom: 60px;
  }
  .section-profile_txt h4 {
    font-size: 2rem;
  }
  .section-profile_txt table {
    font-size: 1.4rem;
  }
}

.section-works {
  max-width: 1160px;
  margin: 0 auto 30px;
  padding-bottom: 100px;
}
.section-works h3 {
  font-size: 6rem;
  margin-bottom: 100px;
  color: var(--color-main);
}
.section-works h4 {
  font-size: 2rem;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: var(--color-main);
}
.section-works ul {
  list-style: none;
  margin: 0 auto;
}
.section-works ul li {
  width: 300px;
  height: 150px;
  margin-bottom: 40px;
}
.section-works ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
  margin-bottom: 60px;
}
.section-works_content-wrapper_website, .section-works_content-wrapper_graphic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-works_button {
  padding-top: 50px;
}
.section-works_button .btnarrow {
  font-size: 1.6rem;
  text-decoration: none;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: var(--color-main);
  outline: none;
}
.section-works_button .btnarrow::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 2px;
  background: var(--color-main);
  transition: all 0.3s;
}
.section-works_button .btnarrow::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 2px;
  background: var(--color-main);
  transform: rotate(35deg);
  transition: all 0.3s;
}
.section-works_button .btnarrow:hover::before {
  left: 20%;
}
.section-works_button .btnarrow:hover::after {
  right: -5%;
}
@media (max-width: 1160px) {
  .section-works {
    min-width: 375px;
  }
  .section-works h4 {
    padding: 0 24px;
  }
}

#footer {
  position: relative;
  z-index: 4;
}

.footer {
  padding: 100px 0;
  background-color: #fff;
}
.footer .site-map ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}
.footer .site-map ul li {
  padding: 0 30px;
  margin-bottom: 15px;
}
.footer .site-map ul li a {
  text-decoration: none;
  font-size: 1.4rem;
}
.footer_copyright {
  clear: both;
  display: block;
  text-align: center;
  color: var(--color-main);
  font-size: 1.2rem;
  margin-top: 20px;
}

:root {
  --color-main: #333333;
  --color-white: #ffffff;
  --font-family: "Poppins", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  --transition-duration: 0.3s;
  --breakpoint: 1160px;
}
/*# sourceMappingURL=main.css.map */