/* 2021年10月コトコト謹製
全体
Hex
 { color: #222126; }
 { color: #A68A80; }
 { color: #734B43; }
 { color: #402A28; }
 { color: #D9D9D9; }

RGBA
 { color: rgba(33, 32, 38, 1); }
 { color: rgba(165, 137, 127, 1); }
 { color: rgba(114, 75, 66, 1); }
 { color: rgba(63, 42, 40, 1); }
 { color: rgba(216, 216, 216, 1); }
*/

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight:700;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4em;
  font-weight:300;
  color: #444444;
}

a {
  color: #A68A80;
  text-decoration: none;
}

a:hover {
  color: #734B43;
  text-decoration: none;
}

/* Back to top ボタン */

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #A68A80;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 2.8rem;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #734B43;
}

.back-to-top:hover i {
  color: #ffffff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* プリローダー */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #A68A80;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* モバイル端末での aos animation delay 不可 */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* ヘッダ */

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 14px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 0;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #A68A80;
}

#header .logo img {
  max-height: 40px;
}

/* ナビゲーション */
/** デスクトップナビ */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 1.2rem;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #A68A80;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 1.4rem;
  text-transform: none;
  color: #151515;
  font-weight: 700;
}

.navbar .dropdown ul a i {
  font-size: 1.2rem;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: #A68A80;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/** モバイルナビ */

.mobile-nav-toggle {
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 1.4rem;
  color: #151515;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
  background-color: #734B43;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 1.2rem;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  background-color: #A68A80;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* ヒーロー */

#hero {
  width: 100%;
  height: 100vh;
  background: url("../../img/hero-bg01.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 4.8rem;
  line-height: 1;
  color: #fff;
}

#hero h1 span {
  color: #A68A80;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  #hero h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

/* セクション全体 */

section {
  padding: 112px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 56px;
}

.section-title h2 {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 2px;
  color: #aaaaaa;
  padding: 0;
  margin: 0;
}

/* 作例 */

.portfolio .portfolio-item {
  margin-bottom: 28px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 28px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #444444;
  margin-bottom: 7px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #734B43;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 2.1rem;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 2.8rem;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #A68A80;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* 略歴 */

.bio .nav-tabs {
  border: 0;
}

.bio .nav-link {
  border:0;
  padding: 15px;
  transition: 0.3s;
  color: #15222b;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity:0.4;
}

.bio .nav-link i {
  padding-right: 15px;
  font-size: 4.2rem;
}

.bio .nav-link:hover,
.bio .nav-link.active {
  opacity:1;
}

.row h3,
.row p {
  padding-bottom: 1em;
}

@media (max-width: 768px) {
  .bio .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 3.6rem;
  }
}

@media (max-width: 575px) {
  .bio .nav-link {
    padding: 15px;
  }
  .bio .nav-link i {
    font-size: 2.1rem;
  }
}

.bio .tab-content {
  margin-top: 30px;
}

.bio .tab-pane h3 {
  font-size: 2.1rem;
}

.bio .tab-pane ul {
  list-style: none;
  padding: 0;
}

.bio .tab-pane ul li {
  padding-bottom: 10px;
}

.bio .tab-pane ul i {
  font-size: 2.1rem;
  padding-right: 4px;
  color: #A68A80;
}

.bio .tab-pane p:last-child {
  margin-bottom: 0;
}

.bio dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bio dt {
  font-weight:300;
	width: 5em;
	padding-bottom: 1em;
  position: relative;
}

.bio dd {
  width: calc(100% - 5em);
  padding-bottom: 1em;
}


/* コンタクト　*/

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 2.1rem;
  background: #A68A80;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 2.1rem;
  color: #484848;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

@-webkit-keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* フッタ */

#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 1.4rem;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 2.1rem;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
}

#footer .footer-top .footer-info h3 span {
  color: #A68A80;
}

#footer .footer-top .footer-info p {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 1.8rem;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #A68A80;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}