﻿/*--------------------------------------------------------------
# 基本設定
--------------------------------------------------------------*/
html {
    font-size: 62.5%;
}
/* font-sizeは16pxの62.5%の10px */

body {
    background: #1a1a1a;
    font-family: 'Noto Serif JP', serif,;
    font-size: 1.4rem;/*font-size : 14px と同等*/
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.01rem;
    overflow-x: hidden;

    box-sizing: border-box;
}

.no-gutters {
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
# 書式設定
--------------------------------------------------------------*/
p {
    color: #e5ded2;
    font-family: 'Noto Serif JP', serif;
    line-height: 3rem;
    text-align: justify;
    margin:0;
}

a {
    color: #e5ded2;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out 0s;
}

    a:hover {
        transition: all 0.3s ease-in-out 0s;
    }

    a:hover, a:focus {
        color: #cd081c;
        text-decoration: underline;
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #a08456;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #cd081c;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  z-index: 997;
  padding: 10px 30px;
  background: #a08456;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

#header .logo h1 {
  font-family: 'Amiri', serif;
  color: #000000;
  font-size: 2.5rem;
  margin: 0;
  padding: 0.6rem 0;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: none;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

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

@media (max-width: 768px) {
    #header {
        padding: 10px 15px;
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        float: left;
    }

    .nav-menu a {
        display: block;
        position: relative;
        font-family: 'Poppins', sans-serif;
        color: #ffffff;
        padding: 15px;
        transition:0;
        font-size: 1em;
        font-weight: 300;
        text-transform: uppercase;
    }

        .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
            color: #cd081c;
            text-decoration: none;
        }

    .nav-menu .drop-down ul {
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: ease all 0.3s;
    }

    .nav-menu .drop-down:hover > ul {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .drop-down li {
        min-width: 180px;
        position: relative;
    }

    .nav-menu .drop-down ul a {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: #2c4964;
    }

        .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
            color: #d43076;
        }

    .nav-menu .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 5px;
    }

    .nav-menu .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }

    .nav-menu .drop-down .drop-down > a {
        padding-right: 35px;
    }

        .nav-menu .drop-down .drop-down > a:after {
            content: "\eaa0";
            font-family: IcoFont;
            position: absolute;
            right: 15px;
        }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #ffffff;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 50vh;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
    text-align: right;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #a08456;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
        text-align: center;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #db4456;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(28, 47, 65, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }


/*--------------------------------------------------------------
# FiberArt
--------------------------------------------------------------*/
.container{
    padding-bottom:100px;
}

.portfolio-bg {
    background-color: #1a1a1a;
}

.cont-title {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .cont-title h2 {
        font-family: 'Amiri', serif;
        font-size: 6.8rem;
        letter-spacing: 0.1rem;
        color: #a08456;
        opacity: 0.6;
        font-weight: 500;
        line-height: 7rem;
        position: relative;
        text-align: center
    }

    .cont-title h6 {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.6rem;
        letter-spacing: 0.1rem;
        color: #e5ded2;
        font-weight: 300;
        line-height: 1.5rem;
        margin-bottom: 1rem;
        text-align: center
    }

    .cont-title p {
        margin-bottom: 0;
    }

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

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    border-radius: 50px;
    padding: 2px 15px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 15px 8px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: none;
        color: #5a656e;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
            color: #d43076;
        }

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

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

    .portfolio .portfolio-wrap .portfolio-info {
        opacity: 0;
        position: absolute;
        top: 10%;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 3;
        transition: all ease-in-out 0.3s;
    }

        .portfolio .portfolio-wrap .portfolio-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .portfolio .portfolio-wrap .portfolio-info p {
            color: #ffffff;
            font-size: 14px;
            text-align: center;
            text-transform: uppercase;
        }

    .portfolio .portfolio-wrap .portfolio-links {
        opacity: 0;
        left: 0;
        right: 0;
        bottom: 10%;
        text-align: center;
        z-index: 3;
        position: absolute;
        transition: all ease-in-out 0.3s;
    }

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

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

        .portfolio .portfolio-wrap .portfolio-links span {
            color: #fff;
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 0.1rem;
            font-weight: 400;
            text-align: center;
            padding-bottom: 60px;
        }

            .portfolio .portfolio-wrap .portfolio-links span:hover {
                color: #f587b6;
            }

    .portfolio .portfolio-wrap:hover::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
    }

    .portfolio .portfolio-wrap:hover .portfolio-info {
        opacity: 1;
        top: calc(50% - 48px);
    }

    .portfolio .portfolio-wrap:hover .portfolio-links {
        opacity: 1;
        bottom: calc(50% - 50px);
    }

.button {
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.btn-get-started {
    font-family: 'Noto Serif JP', serif;
    text-transform: none;
    font-weight: 300;
    font-size: 1.4rem;
    display: inline-block;
    padding: 3px 25px 7px 25px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 15px;
    border: 2px solid #a08456;
    color: #fff;
    background: #a08456;
}

    .btn-get-started:hover {
        color: #fff;
        background: #cd081c;
        border: 2px solid #cd081c;
    }


/*--------------------------------------------------------------
# information
--------------------------------------------------------------*/
.information-bg {
    background-color: #eeebe8;
}

.container{
    padding:0 0 20px 0;
}

.container-fluid {
    padding: 0 0 20px 0;
}

.information h6 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.5rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center
}

.information p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 2.3rem;
    color: #777777;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: justify;
}

.category-en h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    letter-spacing: 0.05rem;
    line-height: 2.8rem;
    color: #888888;
    font-weight: 200;
    margin-bottom: -0.7rem;
    text-align: left;
    opacity: 1;
    position: relative;515151
    z-index: 30;
    text-transform: uppercase;
}

.info-box {
    margin: 0 0 15px 0;
    padding: 0;
}

.info-content {
    background: #f3f2ef;
    padding-top: 15px;
    margin-bottom: 15px;
}

.info-title h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
    line-height: 2.8rem;
    color: #515151;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: left;
}

.info-day p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.5rem;
    color: #777777;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.information ul {
    list-style: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 2.3rem;
    font-weight: 400;
    padding: 0;
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact-bg {
    background-color: #f3f2ef;
}

.contact-box{
    padding-bottom: 30px;
}

.contact-maile-box {
    background: #a08456;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
}

.contact-maile-box h2 {
     color: #ffffff;
     font-family: 'Noto Serif JP', serif;
     font-size: 2.6rem;
     font-weight: 300;
     letter-spacing: 0.1rem;
     line-height: 3rem;
     text-align: center;
     margin: 0.5rem;
}

.company-profile-box{
    color:#3d3d3d;
    padding:0;
    margin-bottom: 30px;
}

.contact p {
    color: #3d3d3d;
    font-family: 'Noto Serif JP', serif;
    line-height: 3rem;
    text-align: justify;
    margin: 0;
}

.contact ul {
    list-style: none;
    color: #3d3d3d;
    font-family: 'Noto Serif JP', serif;
    line-height: 2.5rem;
    text-align: justify;
    padding: 0;
}

.company-name h1 {
    font-family: 'Amiri', serif;
    font-size: 2.8rem;
    letter-spacing: 0.1rem;
    color: #3d3d3d;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.3rem;
}

.access-box {
    padding: 1.5rem;
}

.access-content {
    background-color:  #ffffff;
    padding: 0.7rem 1.5rem 1.5rem 1.5rem;
}

.adress {
    padding: 0;
}

.adress p {
    padding: 0 0 20px 0;
}

.access-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .access-map iframe,
    .access-map object,
    .access-map embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*--------------------------------------------------------------
# smartphone 対応
--------------------------------------------------------------*/
/* smartphone */
@media (max-width: 768px) {
    /* 書式スマホ */
    #top {
        background: url("../img/top-bg-9.jpg") repeat scroll center center/cover;
        height: 100vh;
        width: 100%;
    }
    #about h2 {
        font-family: 'Amiri', serif;
        font-size: 4.2rem;
        letter-spacing: 0rem;
        color: #a08456;
        opacity: 0.6;
        font-weight: 500;
        line-height: 5rem;
    }

    .top-content h3 {
        font-family: 'Shippori Mincho B1', serif;
        font-size: 2.1rem;
        letter-spacing: 0.3rem;
        margin-top: 0;
        margin-bottom: 3rem;
        text-transform: none;
        color: #fff;
        font-weight: 500;
        writing-mode: vertical-rl;
    }

    /* about */
    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .title-ja h1 {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .about-1-box {
        padding: 0 15px 40px 15px;
    }

    .about-1-text {
        padding-right: 15px;
    }

    .caption {
        padding: 0;
    }

        .caption p {
            font-size: 1.4rem;
            margin-top: 10px;
        }

        .caption h1 {
            font-family: 'Shippori Mincho B1', serif;
            font-size: 2.4rem;
            letter-spacing: 0.1rem;
            color: #e5ded2;
            opacity: 1;
            font-weight: 500;
        }

    .about-1-bg {
        background: url("../img/about-bg-1-sm.png");
        background-size: cover;
    }

    .about-2-bg {
        background: url("../img/about-bg-2-2-sm.png");
        background-size: cover;
    }

    .about-3-bg {
        background: url("../img/about-bg-3-sm.png");
        background-size: cover;
    }

    .about-2-box {
        padding: 0 15px 40px 15px;
    }

    .about-2-text {
        padding: 0 15px;
    }

    .about-3-box {
        padding: 0 15px 40px 15px;
        margin: 0;
    }

    .about-3-text {
        padding: 0 15px;
    }

    .about-2-image {
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
    }

    .about-3-image {
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
    }

    /* about */
    .services-box {
        text-align: center;
        padding: 0;
    }

    .caption {
        text-align: center;
    }

        .caption p {
            font-size: 1.3rem;
            text-align: center;
        }

    .button {
        margin: auto;
        text-align: center;
    }

    .btn-get-started {
        font-family: 'Noto Serif JP', serif;
        text-transform: none;
        font-weight: 300;
        font-size: 1.4rem;
        display: inline-block;
        padding: 3px 25px 7px 25px;
        border-radius: 5px;
        transition: 0.5s;
        margin-top: 15px;
        border: 2px solid #a08456;
        color: #fff;
        background: #a08456;
    }

    /*  services */

    #services {
        background-color: #eeebe8;
    }

    .services-all {
        padding: 0 0 20px 0;
    }

    .fiberwork-ja h1 {
        font-family: 'Noto Serif JP', serif;
        font-size: 2rem;
        letter-spacing: 0.1rem;
        font-weight: 500;
        text-align: center;
        padding: 1rem 0 1rem 0;
    }

    .services-content {
        margin: 3rem 0 3rem 0;
        padding: 0;
    }

    .services-box {
        font-family: 'Noto Serif JP', serif;
        color: #e5ded2;
        background-color: #a08456;
        text-align: center;
        padding: 2rem 2rem 2rem 2rem;
        margin:1rem 0 1rem 0;
    }

        .services-box h2 {
            margin-bottom: 0.8rem;
        }

    .services-text {
        font-family: 'Noto Serif JP', serif;
        margin-top: 1rem;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

        .services-text p {
            color: #3d3d3d;
            text-align: justify;
        }

        .services-text h2 {
            font-size:1.8rem;
            color: #3d3d3d;
            line-height: 3rem;
            text-align: center;
        }

    .services-icon {
        width: 6rem;
        height: 6rem;
        margin-bottom: 1.5rem;
    }
 
    /*  works */

    .portfolio-container {
        margin:0;
    }


    .cont-title h2 {
        font-family: 'Amiri', serif;
        font-size: 4.2rem;
        line-height: 5rem;
        letter-spacing: 0.1rem;
        color: #a08456;
        opacity: 0.6;
        font-weight: 500;
        text-align: center
    }

    .cont-title h6 {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.4rem;
        letter-spacing: 0.1rem;
        color: #e5ded2;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center
    }

    /* information */
    .information h6 {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.6rem;
        letter-spacing: 0.1rem;
        line-height: 1.5rem;
        color: #333333;
        font-weight: 500;
        margin-bottom: 1rem;
        text-align: center
    }

    .information p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.2rem;
        letter-spacing: 0;
        line-height: 2rem;
        color: #777777;
        font-weight: 400;
        margin-bottom: 1rem;
        text-align: justify
    }

    .category-en {
        margin:0;
    }

    .category-en h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.8rem;
        letter-spacing: 0.1rem;
        line-height: 2.8rem;
        color: #888888;
        font-weight: 200;
        margin:0 0 -1.1rem 1.5rem;
        text-align: left;
        opacity: 1;
        position: relative;
        z-index: 30;
        text-transform: uppercase;
    }

    .info-title h2 {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.7rem;
        letter-spacing: 0.1rem;
        line-height: 2.8rem;
        color: #171717;
        font-weight: 500;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .info-day p {
        font-family: 'Oswald', sans-serif;
        font-size: 1.3rem;
        letter-spacing: 0;
        line-height: 1.5rem;
        color: #171717;
        font-weight: 400;
        margin-bottom: 1rem;
        text-align: justify
    }

    .info-image-box {
        position: relative;
        z-index: 20;
        margin-bottom: 10px;
    }

    .info-content {
        background: #f3f2ef;
        padding-top: 15px;
        margin: 0;
    }

    /* contact */
    .contact-box {
        padding:0 15px;
    }

    .contact-maile-box {
        background: #a08456;
        text-align: center;
        padding: 10px;
        margin-bottom: 30px;
    }
    .contact-maile-box h2 {
        color: #ffffff;
        font-family: 'Noto Serif JP', serif;
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 0.1rem;
        line-height: 3rem;
        text-align: center;
        margin: 0.3rem;
    }

    /* Footer */
    #footer .copyright {
        font-size: 1.3rem;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #a08456;
    color: #ffffff;
    padding: 1.2rem 0 0 0;
    font-size: 1.4rem;
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.12);
    position:absolute;
    bottom:0;
    width:100%;
}

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

