@charset "UTF-8";

/*====================================

    ----------------------------------
        Color
    ----------------------------------

    Main     : #00622e
    Accent   : #353c43;


    ----------------------------------
        Font
    ----------------------------------

    'EB Garamond', serif

    ----------------------------------
        Structure
    ----------------------------------

      0. 共通（ページ内）
      0. メインビジュアル
      1. コンセプト
      2. ポイント
      0. メインビジュアル2
      3. ラインナップ
      4. ギャラリー

====================================*/


/*===============================

共通（ページ内）

================================*/

/* 黒ボタン */

.btn {
    width: 100%;
    margin: 60px auto 0;
    clear: both;
    text-align: center;
    position: relative;
}

.btn span {
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid #333;
    color: #333;
    text-align: center;
    text-decoration: none;
    transition: .3s;
}

.btn a:hover {
    opacity: 1 !important;
}

.btn a span:hover {
    color: #fff;
}

.btn a span::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: #333;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: transform .3s;
}

.btn a span:hover::before {
    transform: scale(1, 1);
}

/* 白ボタン */

.btn2 {
    width: 100%;
    margin: 60px auto 0;
    clear: both;
    text-align: center;
    position: relative;
}

.btn2 span {
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid #FFF;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    transition: .3s;
}

.btn2 a:hover {
    opacity: 1 !important;
}

.btn2 a span:hover {
    color: #333;
}

.btn2 a span::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: #FFF;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: transform .3s;
}

.btn2 a span:hover::before {
    transform: scale(1, 1);
}


/*===============================

ローディング

================================*/


/* Loading背景画面設定　*/
#splash {
    position: fixed;
    width: 100%;
    height: 200%;
    z-index: 999;
    background: #333;
    text-align: center;
    color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 210px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*===============================

背景

================================*/


#background {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-align: center;
    display: table;
}


#background img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    opacity: 0;
    animation: slideshow 12s linear infinite;
}

#background img:nth-child(2) {
    animation-delay: 4s;
}

#background img:last-child {
    animation-delay: 8s;
}


@keyframes slideshow {
    0% {
        opacity: 0;
    }

    12.5% {
        opacity: 1;

    }

    37.5% {
        opacity: 1;

    }

    50% {
        opacity: 0;

    }

    100% {
        transform: scale(1.5);
    }
}


/*===============================

メインビジュアル

================================*/


#main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-align: center;
    display: table;
}

@media screen and (max-width:560px) {
    #main-visual {
        height: 650px;
    }
}

#main-visual .logo img {
    width: 80%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/*スクロールダウン全体の場所*/
.scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: 20px;
    left: 50%;
}

/* 丸の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFF;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 55px;
    }

    100% {
        bottom: -5px;
    }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

/* 線の描写 */
.scrolldown:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 4px;
    height: 60px;
    background: #FFF;
}

/*===============================

コンセプト

================================*/

#concept {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: table;
    color: #FFF;
}

#concept .container {
    margin: 250px auto;
}

@media screen and (max-width:560px) {
    #concept .container {
        margin: 200px auto 150px;
    }
}


#concept .container .box span {
    display: block;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 2%;
}


/*===============================

サービス

================================*/

#service {
    position: relative;
    width: 100%;
    background: #FFF;
}

#service .title {
    position: relative;
    background-color: #353c43;
    width: 100%;
    color: #FFF;
    font-size: 4.8rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#service .container {
    position: relative;
    line-height: 0;
    /*隙間を埋めるため*/
}

#service .container:after {
    content: "";
    clear: both;
    display: block;

}

#service .left {
    float: left;
}

#service .right {
    float: right;
}

#service .image {
    position: relative;
    display: block;
    left: 0px;
    width: 50%;
    padding-bottom: 50%;
}

#service .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}

#service .box {
    position: relative;
    width: 50%;
    display: block;
    padding: 60px 2% 0 2%;
    line-height: 2;
    /*隙間を埋めるため*/
}

#service .box h2 {
    font-size: 4.8rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
    line-height: 1;
    /*隙間を埋めるため*/
}

#service .box p {
    color: #7a8b91;
    font-size: 1.4rem;
    margin-bottom: 40px;
}

@media screen and (max-width:960px) {
    #service .image {
        width: 100%;
        padding-bottom: 60%;
    }

    #service .box {
        width: 100%;
        padding: 60px 2% 80px 2%;
    }
}


/*===============================

インスタグラム

================================*/

#ig {
    position: relative;
    width: 100%;
    background: #FFF;
    line-height: 0;
}

#ig .title {
    position: relative;
    background-color: #353c43;
    width: 100%;
    color: #FFF;
    font-size: 4.8rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    line-height: 2.5;
}

#ig .eapps-widget-toolbar {
    display: none;
}

#eapps-instagram-feed-1 {
    width: 100%;
    z-index: 0;
}

/*===============================

会社概要

================================*/

#about {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    text-align: center;
    display: table;
    background-image: url(/img/008.jpg);
    background-size: cover;
    background-position: center top;
    color: #FFF;
    margin-top: -50px;

}
#about::before {
    /* 透過させた黒を重ねる */
    background-color: rgba(0, 0, 0, 0.3);
    /* どの範囲に重ねるかを指定 */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
}

#about h2 {
    position: relative;
    width: 100%;
    color: #FFF;
    font-size: 4.8rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    text-align: center;
}


#about .box {
    display: table-cell;
    vertical-align: middle;
}

/*===============================

マップ

================================*/

#map {
    position: relative;
    width: 100%;
}

.GoogleMap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    /*比率をお好みで*/
}

@media screen and (max-width:560px) {
    .GoogleMap {
        padding-top: 600px;
        /*比率をお好みで*/
    }
}

.GoogleMap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*===============================

フッター

================================*/


#footer-section {
    position: relative;
    background-color: #353c43;
    width: 100%;
    color: #FFF;
}

.footer {
    width: 100%;
    position: relative;
}

.footer .logo {
    position: relative;
    text-align: center;
}

.footer .logo img {
    width: 250px;
    margin: 60px auto 40px;
}


.footer .credit {
    width: 80%;
    margin: 0px auto 10px;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
}

.footer .credit a{
    color: lightsteelblue;
    text-decoration:underline;
}

.footer ul.list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.2rem;
}

.footer ul.list li {
    padding: 5px 10px;
    margin: 0 10px;
}

@media screen and (max-width: 560px) {
    .footer ul.list li {
        padding: 3px;
    }
}

.footer .copyright {
    font-size: 1.0rem;
    position: relative;
    text-align: center;
    padding-bottom: 5px;
}