/* =========================================
    Default Theme
    ----------------------------------------
    Fonts: Raleway & Alike & Playfair Display
    ----------------------------------------
    Colors:
        Moon Yellow:         #B7AC50
        Grey:                #212226
        White Smoke:         #E1E1E1
        White:               #fff
        Black:               #000   
============================================ */

/* =========================================
                Html, Body
============================================ */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  color: #212226;
  background-color: #dddddd;
  font-size: 20px;
  font-family: "Alike", serif;
}

h1 {
  font-size: 47px;
}

h2 {
  font-size: 47px;
  font-family: "Raleway", sans-serif;

  letter-spacing: 45px;
}

.custom-container {
  width: 80%;
}

@media (max-width: 600px) {
  h2 {
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    letter-spacing: 15px;
  }
  .custom-container {
    width: 90%;
  }
}
/* =========================================
                Content Boxes
============================================ */

.content-box-lg {
  padding-top: 120px;
}
.content-box-sm {
  padding: 90px 0;
}
/* =========================================
                Home
============================================ */

#home {
  position: relative;
  height: 100%;
}

#home-bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

#home-content {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 100px;
}

#home-heading-1 {
  font-size: 10vw;
  color: white;
  font-family: "Playfair Display", serif;
}

#home-heading-2 {
  position: absolute;
  bottom: 100px;
  right: 50px;
  font-size: 3vw;
  color: white;
}
#home-heading-2 span {
  border-bottom: 1px solid;
}

@media (max-width: 600px) {
  #home-content {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 20px;
    padding-top: 25vh;
  }
  #home-heading-1 {
    font-size: 50px;
    color: white;
  }

  #home-heading-2 {
    position: absolute;
    bottom: 100px;
    right: 50px;
    font-size: 20px;
    color: white;
  }
}

/* =========================================
                About
============================================ */

#about img {
  width: 360px;
  height: 360px;
}

#about .name {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
}

/* About-レスポンシブ対応 */

@media (max-width: 600px) {
  #about .left-content {
    margin-top: 100px;
  }
  #about img {
    width: 150px;
    height: 150px;
  }
}

/* =========================================
                Works
============================================ */

/* Work Heading */
.work-heading img {
  width: 55vw;
}

#work .content-innner {
  position: relative;
  height: 34vw;
}

#work .sub-heading-content {
  position: absolute;
  bottom: 0;
}

#work .sub-heading {
  font-size: 65px;
}

/* Work 01 */
#work .heading-count {
  font-size: 47px;
  margin-right: 1rem;
}

.image-full img {
  width: 100%;
}

.image-default {
  margin: 10vw;
}

@media (max-width: 600px) {
  #work .sub-heading {
    font-size: 25px;
  }
  #work .content-innner {
    position: relative;
    height: 40vw;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-content1 img {
  max-height: 80vh;
  max-width: 80vw;
}

.close {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* =========================================
                footer
============================================ */

#footer {
  margin-top: 250px;
  height: 400px;
}

#footer .footer-content {
  position: relative;
  height: 100%;
}

#footer .footer-content .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
}

#footer .background img {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#footer .copyright {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

#footer .social-list {
  position: absolute;
  top: 1rem;
  left: 3rem;
  z-index: 10;
}

#footer ul.social-list li a {
  color: #212226;
  border: 1px solid #212226;
  text-align: center;
}

#footer ul.social-list li a:hover {
  color: #fff;
  border-color: transparent;
}

@media (max-width: 600px) {
  #footer .footer-content .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
  }

  #footer .background img {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =========================================
                Social Icons
============================================ */

ul.social-list {
  padding: 0;
  margin-top: 20px;
}

ul.social-list li {
  display: inline-block;
  padding: 0;
}

ul.social-list li a {
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

ul.social-list li a:hover {
  background: #006834;
  border-color: transparent;
}

/* =========================================
                Navigation
============================================ */

.navbar {
  padding: 35px 0 20px 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.site-nav-wrapper {
  padding: 0 85px;
}

ul.navbar-nav > li > a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
}

ul.navbar-nav > li > a:hover,
ul.navbar-nav > li > a:focus {
  background: none;
  color: #f4c613;
}

/* White Navigation */

.white-nav-top {
  background: #fff;
  padding: 10px 0;
  -webkit-box-shadow: 0 8px 6px -9px #999;
  box-shadow: 0 8px 6px -9px #999;
  z-index: 2;
}

.white-nav-top ul.navbar-nav > li > a {
  color: #212226;
}

.white-nav-top ul.navbar-nav > li > a:hover,
.white-nav-top ul.navbar-nav > li > a:focus {
  color: #f4c613;
}

/* Scroll spy active state */

.white-nav-top ul.navbar-nav > li.active > a {
  color: #f4c613;
  font-weight: 500;
}

ul.navbar-nav > li.active > a {
  color: #f4c613;
  font-weight: 500;
}
@media (max-width: 576px) {
  ul.navbar-nav > li > a {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Raleway", sans-serif;
  }

  .navbar-nav {
    flex-direction: row;
  }

  .navbar-nav .nav-link {
    padding-right: 5px;
    padding-left: 5px;
  }
}

/* =========================================
        Horizontal Headings
============================================ */

.horizontal-heading {
  margin-bottom: 60px;
  margin-top: 60px;
}

@media (max-width: 600px) {
  .horizontal-heading {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

/* default */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
}

/* =========================================
        Line
============================================ */

.vertical-line {
  position: relative;
}

.vertical-line::before {
  content: "";
  display: block;
  border-left: 2px solid rgb(150, 150, 150);
  height: 100px; /* 縦線の高さを指定 */
}

.vertical-line::after {
  color: rgb(150, 150, 150);
  content: "keyboard_arrow_down";
  font-family: "Material Icons Outlined";
  display: block;
  position: absolute;
  top: 89px; /* 縦線の高さと同じ値 */
  left: -9.5px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 600px) {
  .vertical-line::after {
    color: rgb(150, 150, 150);
    content: "keyboard_arrow_down";
    font-family: "Material Icons Outlined";
    display: block;
    position: absolute;
    top: 92px; /* 縦線の高さと同じ値 */
    left: -6.7px;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
}

/*bootstrapの拡張*/

.custom-row {
  margin-right: 0;
  margin-left: 0;
}

.custom-col {
  padding-right: 0;
  padding-left: 0;
}
