@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"),
       url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"),
       url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"),
       url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/*------------------------------------------*/
/*              Common Style                */
/*------------------------------------------*/
body {
    position: relative;
    margin: 0;
    
    /*--- ゴシック体 ---*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    
    line-height: 1.7;
    letter-spacing: 1.5px;
    font-weight: normal;
    background: #fff;
    overflow-x: hidden;
}

.font-min {
    /*--- 明朝体 ---*/
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font-gos {
    /*--- ゴシック体 ---*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*--- padding border 依存を外す ---*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/*--- 正方形の比率(1:1)をキープ ---*/
.adjust-box {
    position: relative;
    width: 100%;
    height: auto;
}
.adjust-box:before {
    content: " ";
    display: block;
    padding-top: 100%;
}
.adjust-box .inner {
    position: absolute;
    top:  0; 
    left: 0;
    width:  100%;
    height: 100%;
}


/*--- 上下センタリング／左右センタリング ---*/
.flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;            /*IE9~用*/
    display: flex;
    
    /* 上下センタリング */
    -webkit-box-align:   center;
    -webkit-align-items: center;
    -ms-flex-align:      center;     /*IE9~用*/
    align-items:         center;
    
    /* 左右 センタリング */
    -webkit-box-pack:        center;
    -webkit-justify-content: center;
    -ms-flex-pack:           center;  /*IE9~用*/
    justify-content:         center;
}

/*--- 上下センタリング／左寄せ ---*/
.flex-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;            /*IE9~用*/
    display: flex;
    
    /* 上下センタリング */
    -webkit-box-align:   center;
    -webkit-align-items: center;
    -ms-flex-align:      center;     /*IE9~用*/
    align-items:         center;
    
    /* 左右 左寄せ */
    -webkit-box-pack:        start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack:           start;  /*IE9~用*/
    justify-content:         flex-start;
}

/*--- 上下センタリング／右寄せ ---*/
.flex-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;            /*IE9~用*/
    display: flex;
    
    /* 上下センタリング */
    -webkit-box-align:   center;
    -webkit-align-items: center;
    -ms-flex-align:      center;     /*IE9~用*/
    align-items:         center;
    
    /* 左右 左寄せ */
    -webkit-box-pack:        end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack:           end;    /*IE9~用*/
    justify-content:         flex-end;
}

/*--- 横並びブロックの高さ揃え ---*/
.flex-box {
    position: relative;
    
    display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    
    -webkit-box-lines: multiple;
    -moz-box-lines:    multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap:    wrap;
    -ms-flex-wrap:     wrap;
    flex-wrap:         wrap;
}




/*======== wrapper ========*/
#wrapper {
    display: block;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}
/*
@media (max-width: 480px) {
    #wrapper {
        margin-left: 15px;
        margin-right: 15px;
    }
}
*/


header,
nav,
section,
footer {
    display: table !important;
    width: 100%;
    margin: 0;
    padding: 0;
}


img {
    vertical-align: middle;
    border: none;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
}


.nopad {
    padding: 0 !important;
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.border-bottom {
    border-bottom: 1px rgba(0,0,0,0.2) solid;
}
.border-top {
    border-top: 1px rgba(0,0,0,0.2) solid;
}

.bg-gray {
    background: rgba(0,0,0,0.05);
}



/*--- アンカーリンク設定時 --*/
.anker {
    padding-top: 110px;
    margin-top: -100px;
}



a {
    /*color: #111;*/
    text-decoration: none;
    
    -webkit-transition: all 0.3s;
    -moz-transition:    all 0.3s;
    -ms-transition:     all 0.3s;
    -o-transition:      all 0.3s;
    transition:         all 0.3s;
}
a:hover {
    /*color: #000;*/
    text-decoration: none;
    cursor: pointer;
}

a.underline {
    padding-bottom: 2px;
    margin: 0 5px;
    color: #000;
    border-bottom: 1px rgba(0,0,0,0.2) solid;
}
a.underline:hover {
    border-bottom: 1px rgba(0,0,0,1) solid;
}



h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #000;
    font-weight: 600;
    margin: 0;
}


p {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    
    color: #111;
    font-size: 15px;
    
    /*-- 折返し --*/
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    p {
        /*font-size: 13px;*/
        font-size: 14px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    p {
        /*font-size: 12px;*/
        font-size: 13px;
    }
}



/*--- TEXT MARK ---*/
/* kome */
.mark-kome p:before {
    content: '※';
}

/* maru */
.mark-maru p:before,
.mark-maru p span:before {
    content: '●';
}
.mark-maru p {
    margin-bottom: 10px;
}
.mark-maru p:last-of-type {
    margin-bottom: 0;
}
.mark-maru.pad {
    margin-top: 35px;
}

/* shikaku */
.mark-shikaku p:before {
    content: '■';
}
.mark-shikaku p {
    margin-bottom: 10px;
}
.mark-shikaku p:last-of-type {
    margin-bottom: 0;
}

/* hishigata */
.mark-hishi p:before {
    content: '◆';
}

/* hoshi */
.mark-hoshi p:before {
    content: '★';
}





ul,
ul li,
ol,
ol li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.7;
    
    color: #111;
    font-size: 15px;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    ul,
    ul li,
    ol,
    ol li {
        font-size: 13px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    ul,
    ul li,
    ol,
    ol li {
        font-size: 12px;
    }
}


dl,
dl dt,
dl dd {
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 15px;
}
dl dt {
    color: #111;
}
dl dd {
    color: #111;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    dl,
    dl dt,
    dl dd {
        font-size: 13px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    dl,
    dl dt ,
    dl dd {
        font-size: 12px;
    }
}




/*--- table ---*/
table {
    width: 100%;
    text-align: left;
}
table th,
table td {
    line-height: 1.7;
    font-weight: normal;
    font-size: 15px;
    padding: 10px;
    border: 1px #fff solid;
}
table th {
    width: 18%;
    vertical-align: top;
    font-weight: normal;
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: #fff;
}
table td {
    width: 41%;
    vertical-align: top;
    font-weight: normal;
    text-align: left;
    background: rgba(0,0,0,0.08);
    color: #111;
}
table td ul,
table td ul li {
    display: block;
    line-height: 1.5;
    margin: 8px 0;
}
table td ul li span {
    display: block;
    margin-left: 1em;
}

table tr.title th,
table tr.title td {
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: #fff;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    table,
    table th,
    table td {
        font-size: 13px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    table,
    table th,
    table td {
        font-size: 12px;
    }
}








/*------------------------------------------*/
/*          col-lg , md , sm , xs           */
/*------------------------------------------*/

/*----- 0px <= col-xs-99 <= 767px ----------*/
/* - - - - - - - - - - - - */
@media (min-width: 0px) {
/* - - - - - - - - - - - - */
    .col-xs-1,
    .col-xs2-1,
    .col-xs-2,
    .col-xs-25,
    .col-xs2-25,
    .col-xs2-2,
    .col-xs-3,
    .col-xs2-3,
    .col-xs-4,
    .col-xs2-4,
    .col-xs-5,
    .col-xs2-5,
    .col-xs-6,
    .col-xs2-6,
    .col-xs-7,
    .col-xs2-7,
    .col-xs-8,
    .col-xs2-8,
    .col-xs-9,
    .col-xs2-9,
    .col-xs-10,
    .col-xs2-10,
    .col-xs-11,
    .col-xs2-11,
    .col-xs-12 {
        float: left;
    }
    .col-xs-1,
    .col-xs2-1 {
        width: 8.33333%;
    }
    .col-xs-2,
    .col-xs2-2 {
        width: 16.66667%;
    }
    .col-xs-25,
    .col-xs2-25 {
        width: 20%;
    }
    .col-xs-3,
    .col-xs2-3 {
        width: 25%;
    }
    .col-xs-4,
    .col-xs2-4 {
        width: 33.33333%;
    }
    .col-xs-5,
    .col-xs2-5 {
        width: 41.66667%;
    }
    .col-xs-6,
    .col-xs2-6 {
        width: 50%;
    }
    .col-xs-7,
    .col-xs2-7 {
        width: 58.33333%;
    }
    .col-xs-8,
    .col-xs2-8 {
        width: 66.66667%;
    }
    .col-xs-9,
    .col-xs2-9 {
        width: 75%;
    }
    .col-xs-10,
    .col-xs2-10 {
        width: 83.33333%;
    }
    .col-xs-11,
    .col-xs2-11 {
        width: 91.66667%;
    }
    .col-xs-12 {
        width: 100%;
    }
}

/*----- 768px <= col-sm-99 <= 991px --------*/
/* - - - - - - - - - - - - */
@media (min-width: 768px) {
/* - - - - - - - - - - - - */
    .col-sm-1,
    .col-sm-2,
    .col-sm-25,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-1 {
        width: 8.33333%;
    }
    .col-sm-2 {
        width: 16.66667%;
    }
    .col-sm-25 {
        width: 20%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33333%;
    }
    .col-sm-5 {
        width: 41.66667%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.33333%;
    }
    .col-sm-8 {
        width: 66.66667%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.33333%;
    }
    .col-sm-11 {
        width: 91.66667%;
    }
    .col-sm-12 {
        width: 100%;
    }
}

/*----- 992px <= col-md-99 <= 1199px -------*/
/* - - - - - - - - - - - - */
@media (min-width: 992px) {
/* - - - - - - - - - - - - */
    .col-md-1,
    .col-md-2,
    .col-md-25,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-1 {
        width: 8.33333%;
    }
    .col-md-2 {
        width: 16.66667%;
    }
    .col-md-25 {
        width: 20%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.33333%;
    }
    .col-md-5 {
        width: 41.66667%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.33333%;
    }
    .col-md-8 {
        width: 66.66667%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.33333%;
    }
    .col-md-11 {
        width: 91.66667%;
    }
    .col-md-12 {
        width: 100%;
    }
}

/*----- 1200px <= col-lg-99 ----------------*/
/* - - - - - - - - - - - - */
@media (min-width: 1200px) {
/* - - - - - - - - - - - - */
    .col-lg-1,
    .col-lg-2,
    .col-lg-25,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg2-8,
    .col-lg2-9,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-1 {
        width: 8.33333%;
    }
    .col-lg-2 {
        width: 16.66667%;
    }
    .col-lg-25 {
        width: 20%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.33333%;
    }
    .col-lg-5 {
        width: 41.66667%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.33333%;
    }
    .col-lg2-8,
    .col-lg-8 {
        width: 66.66667%;
    }
    .col-lg2-9,
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-10 {
        width: 83.33333%;
    }
    .col-lg-11 {
        width: 91.66667%;
    }
    .col-lg-12 {
        width: 100%;
    }
}


/*----- "col-xx-99" padding ----------------*/
section [class*="col-lg-"],
section [class*="col-md-"],
section [class*="col-sm-"],
section [class*="col-xs-"],
.modal-content [class*="col-lg-"],
.modal-content [class*="col-md-"],
.modal-content [class*="col-sm-"],
.modal-content [class*="col-xs-"] {
    position: relative;
    min-height: 1px;
    /*padding: 10px;*/
    padding: 30px;
}

/* - - - - - - - - - - - - */
@media (max-width: 480px) {
/* - - - - - - - - - - - - */
    section [class*="col-lg-"],
    section [class*="col-md-"],
    section [class*="col-sm-"],
    section [class*="col-xs-"] {
        padding-left: 0;
        padding-right: 0;
    }
}


/*----- "col-xx-99" CenterRing -------------*/
.center {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform:    translateX(-50%);
    -ms-transform:     translateX(-50%);
    -o-transform:      translateX(-50%);
    transform:         translateX(-50%);
}
.right-fit {
    position: relative;
    left: 100%;
    -webkit-transform: translateX(-100%);
    -moz-transform:    translateX(-100%);
    -ms-transform:     translateX(-100%);
    -o-transform:      translateX(-100%);
    transform:         translateX(-100%);
}


/*----- "col-xs-99" width 100% -------------*/
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    .col-xs-25,
    [class*="col-xs2-"] {
        width: 100% !important;
    }
}




/*------------------------------------------*/
/*                  row                     */
/*------------------------------------------*/
.row {
    position: relative;
    margin-right: auto;
    margin-left:  auto;
}
/* - - - - - - - - - - - - */
@media (min-width: 768px) {
/* - - - - - - - - - - - - */
    .row {
        width: 680px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1024px) {
/* - - - - - - - - - - - - */
    .row {
        width: 800px;
    }
    header .row,
    footer .row {
        width: 860px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1025px) {
/* - - - - - - - - - - - - */
    .row {
        /*width: 960px;*/
        width: 1024px;
    }
    header .row,
    footer .row {
        width: 1024px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1280px) {
/* - - - - - - - - - - - - */
    .row {
        /*width: 960px;*/
        width: 1024px;
    }
    header .row,
    footer .row {
        width: 1100px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1450px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1024px;
    }
    header .row,
    footer .row {
        width: 1100px;
    }
}




/*------------------------------------------*/
/*              Loading...                  */
/*------------------------------------------*/
.loadingWrap {
    width:  100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top:  0;
    left: 0;
    z-index: 999;
}
.loadingWrap .loading-block {
    position: absolute;
    top:  50%;
    left: 50%;
    margin: -50px 0 0 -25px;
    width: auto;
    text-align: center;
}
.loadingWrap .loading-block p {
    color: #777;
    font-size: 12px;
    font-weight: 100;
    letter-spacing: 1.5px;
    padding-top: 10px;
}





/*------------------------------------------*/
/*                 #header                  */
/*------------------------------------------*/
/*----- header common ----------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    
    display: block;
    width: 100%;
    height: 100px;   /* headerの高さ = logoの高さ */
    
    margin: 0;
    padding: 0;
    
    background: rgba(255,255,255,1);
    
    /*overflow: hidden;*/  /*** hidden 必須！ ***/
    z-index: 99;
}
#header a {
    color: #000;
}
#header a:hover {
    color: #000;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
    #header {
        height: 85px;   /* headerの高さ = logoの高さ */
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    #header {
        height: 70px;   /* headerの高さ = logoの高さ */
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    /*
    #header {
        padding-left: 15px;
        padding-right: 15px;
    }
    */
}



/*----- logo -------------------------------*/
header img.logo,
footer img.logo {
    height: 100px;
    width: auto;
}
header img.logo {
    position: absolute;
    top: 0;
    left: 0;
}
footer img.logo {
    display: inline-block;
    margin-bottom: 40px;
    height: 105px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1280px) {
/* - - - - - - - - - - - - - - - - - - - */
    header img.logo,
    footer img.logo {
        height: 100px;
        width: auto;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
    header img.logo,
    footer img.logo {
        height: 85px;
        width: auto;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    header img.logo {
        height: 70px;
        width: auto;
    }
    footer img.logo {
        height: 80px;
        width: auto;
        margin-left: -5px;
    }
}




/*----- h1-block ---------------------------*/
#header .h1-block {
    position: relative;
    text-align: right;
    z-index: 1;
}
#header .h1-block h1 {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    #header .h1-block h1 {
        padding-right: 10px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    #header .h1-block h1 {
        margin-top: 3px;
        letter-spacing: 0;
        line-height: 1.5;
        font-size: 9px;
    }
    #header .h1-block h1 span {
        display: block;
        margin-right: -0.5em;
    }
}




/*---           ---*/
/*--- nav-block ---*/
/*---           ---*/

#header .nav-block {
    text-align: center;
    margin: 0;
    padding: 0;
}

/*****                              *****/
/***** width >= 992 の時のナビメニュー *****/
/*****                              *****/

/*--- ul li ---*/
.menu ul {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: right;
}
.menu ul li {
    display: inline-block;
    width: auto;
    text-align: right;
    padding: 0 12px;
    
    margin-top: 30px;
}
.menu ul li:last-of-type {
    padding-right: 0;
}

.menu ul li.icon {
    padding: 0 5px;
}
.menu ul li.icon.insta {
    padding-left: 13px;
}

.menu ul li.icon img {
    vertical-align: -0.7em;
    height: 32px;
    width: auto;
}
.menu ul li.icon.map img {
    vertical-align: -0.9em;
    height: 40px;
    width: auto;
}


.menu ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 1.0px;
    line-height: 1.5;
    text-transform: uppercase;
    padding: 0 0 15px 0;
    border-bottom: 4px rgba(0,0,0,0) solid;
}
.menu ul li a:hover,
.menu ul li.active a {
    border-bottom: 4px rgba(0,0,0,0.9) solid;
}
.menu ul li.icon a,
.menu ul li.icon a:hover {
    border: none;
}

.menu ul li i {
    font-size: 25px;
    font-weight: 100;
}

/* humberger 消す */
.menu-btn span img {   
    display: none;
}

/* tel 消す */
.menu ul li.tel {
    display: none;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    .menu ul {
        margin-top: -8px;
    }
    .menu ul li {
        padding: 0 6px;
    }
    .menu ul li a {
        font-size: 13px;
    }
.menu ul li.icon img {
    vertical-align: -0.5em;
    height: 25px;
    width: auto;
}
.menu ul li.icon.map img {
    vertical-align: -0.7em;
    height: 32px;
    width: auto;
}
}


/*****                              *****/
/***** width <= 991 の時のナビメニュー *****/
/*****                              *****/

/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    
    
    /* humberger 出す */
    .menu-btn span img {
        display: inline-block;
        height: 22px;
    }
    
    /* ナビボタンのスタイル（ハンバーガーの位置） */
    .menu-btn {
        position: absolute;
        top: 50px;
        right: 5px;
        
        display: inline-block;
        cursor: pointer;
    }
    
    .menu-btn span:after {
        /*content: attr(data-txt-menu);*/
    
        -webkit-transition: all 0.3s;
        -moz-transition:    all 0.3s;
        -ms-transition:     all 0.3s;
        -o-transition:      all 0.3s;
        transition:         all 0.3s;
    }

    /* ボタンクリック時のスタイル（×ボタンの位置） */
    .open .menu-btn span:after {
        content: attr(data-txt-close);
    
        position: fixed;
        top: 10px;
        right: 20px;
        z-index: 999 !important;
    
        font-size: 40px;
        font-weight: 100 !important;
        color: #fff;
    
        -webkit-transition: all 0.3s;
        -moz-transition:    all 0.3s;
        -ms-transition:     all 0.3s;
        -o-transition:      all 0.3s;
        transition:         all 0.3s;
    }

    /* モーダルのスタイル */
    .menu {
        position: fixed;
        display: table;
        top: 0;
        left: 0;
        width:  100vw;
        height: 100vh;
        background: rgba(255,255,255,1);
        background: rgba(0,0,0,0.95);
    
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    
        visibility: hidden;
        opacity: 0;
        z-index: 888 !important;
    }

    .menu ul {
        width: 50%;
        vertical-align: top;
        padding-top: 90px;
        margin: 0 auto;
    }

    .menu ul li {
        display: block;
        height: auto;
        width: auto;
        margin: 0;
        text-align: left;
        margin: 15px 0 !important;
        padding: 0 !important;
    }
    .menu ul li.insta,
    .menu ul li.map,
    .menu ul li.mail,
    .menu ul li.tel {
        display: block;
        width: 33%;
        float: left;
        text-align: center;
        margin-top:  30px !important;
        padding-top: 35px !important;
        border-top: 1px rgba(255,255,255,0.5) solid;
    }
    .menu ul li a {
        display: inline-block;
        font-size: 13px;
        color: #fff !important;
        padding: 5px 0 6px 0;
        border-bottom: 2px RGBA(0,0,0,0) solid;
    }
    .menu ul li a:hover,
    .menu ul li.active a {
        border-bottom: 2px #FFF solid;
    }
    
.menu ul li.icon img {
    height: 30px;
    width: auto;
}
.menu ul li.icon.map img {
    height: 34px;
    width: auto;
}
.menu ul li.icon.tel i {
    vertical-align: -0.6em;
    font-size: 30px;
}
    
}

/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - */
    /* 横向きの時 */
    .menu ul {
        width: 70%;
        padding-top: 90px;
    }
    .menu ul li {
        display: inline-block;
        width: 33%;
        float: left;
        text-align: center;
        margin: 10px 0 !important;
    }
    /*
    .menu ul li.map {
        text-align: right;
    }
    .menu ul li.tel {
        text-align: left;
    }
    */
    .menu ul li.icon {
        /*text-align: center;*/
        display: none;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
    /* ナビボタンのスタイル（ハンバーガーの位置） */
    .menu-btn {
        position: absolute;
        top: 39px;
        right: 20px;
    }
}


/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
    /*cursor: url(../images/logo.png),auto;*/
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}





/*----- sp-icon ---------------------------*/
.sp-icon {
    display: block;
    position: absolute;
    top: 45px;
    right: 0;
    width: 100%;
    text-align: center;
}

.sp-icon img {
    height: 26px;
    width: auto;
}
.sp-icon img.minne {
    vertical-align: -0.79em;
    height: 35px;
    width: auto;
    margin: 0 10px;
}

/* - - - - - - - - - - - - - - - - - - */
@media screen and (min-width: 992px) {
/* - - - - - - - - - - - - - - - - - - */
.sp-icon {
    display: none;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
.sp-icon {
    top: 35px;
}
}








/*------------------------------------------*/
/*                  #home                   */
/*------------------------------------------*/
#home {
    display: block;
    position: relative;
    
    margin-top: 170px;
}
/*
#home img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
*/
img.home_title {
    display: block;
    margin: 0 auto;
    max-width: 40%;
    margin-bottom: 35px !important;
}

/*--- .sub-title ---*/
#home .sub-title {
    margin-top:  -20px;
    margin-left: -90px;
    border-left:  18px rgba(0,0,0,1) solid;
    padding-left: 20px;
    padding-top:  40px;
}
.sub-title p.en {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1px;
}
.sub-title p.jp,
.sub-title h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.3px;
}
.sub-title p.jp,
.sub-title h2 {
    margin-top: 10px;
}



/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
    .sub-title p.en {
        font-size: 40px;
    }
    .sub-title p.jp,
    .sub-title h2 {
        font-size: 24px;
    }
    #home-2 .sub-title p.en {
        font-size: 37px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    #home {
        margin-top: 130px;
    }
    #home .sub-title {
        margin-left: -40px;
    }
    #home .sub-title p.en {
        font-size: 32px;
    }
    #home-2 .sub-title p.en {
        font-size: 31px;
    }
    .sub-title p.jp,
    .sub-title h2 {
        font-size: 20px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
    #home {
        margin-top: 100px;
    }
    #home .sub-title {
        margin-left: -1px;
        margin-top: 0;
    }
    #home .sub-title p.en {
        font-size: 26px;
    }
    .sub-title p.jp,
    .sub-title h2 {
        font-size: 16px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #home .sub-title {
        padding-left: 10px;
        padding-top:  40px;
    }
    #home .sub-title p.en {
        font-size: 21px;
    }
    #home-2 .sub-title p.en {
        font-size: 20px;
    }
    .sub-title p.jp,
    .sub-title h2 {
        font-size: 16px;
    }
}







/*------------------------------------------*/
/*                 #home-2                  */
/*------------------------------------------*/
#home-2 {
    display: block;
    position: relative;
    
    margin-top: 170px;
    /*margin-bottom: 110px;*/
    margin-bottom: 70px;
}
#home-2.end {        /* form php */
    margin-bottom: 0;
}

#home-2 .h2-block {
    padding: 20px 0;
    border-top: 1px rgba(0,0,0,0.5) dotted;
    text-align: center;
}

/*--- h2 ---*/
#home-2 .h2-block h2 {
    font-weight: 100;
    font-size: 18px;
    line-height: 1.4;
}
#home-2 .h2-block h2 span {
    display: block;
    text-transform: uppercase;
    font-size: 38px;
}

/*--- h2 ---*/   /* 2022.01 ADD */
#home-2.art h2.jp {
    display: block;
    margin-top: 60px;
    text-align: center;
    font-weight: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 3px;
}

/*--- sub-title ---*/
#home-2 .sub-title {
    margin-top: -50px;
    margin-left: -80px;
    background: #fff;
    padding-top: 25px;
}
/*
#home-2 img.img-responsive {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
*/


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    #home-2 {
        margin-top: 130px;
    }
    #home-2 .sub-title {
        margin-left: -30px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
    #home-2 {
        margin-top: 100px;
    }
    #home-2 .sub-title {
        margin-left: -20px;
    }
    #home-2 p {
        padding: 0 15px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #home-2 .sub-title {
        margin-top: 0;
        margin-left: 0;
        padding-left: 10px;
    }
    #home-2.art h2.jp {
        font-size: 21px;
    }
}





/*------------------------------------------*/
/*                                          */
/*                #content                  */
/*                                          */
/*  ボディ部に左右余白（スマホ時）を作る為の大分類  */
/*                                          */
/*------------------------------------------*/
#content {
    display: block;
    overflow-x: hidden;
    position: relative;
}

/*--- h2 ---*/   /* 2022.01 ADD */
#content h2 {
    display: block;
    text-align: center;
    font-weight: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 3px;
}

/*--- h3 ---*/
#content h3 {
    border-left: 23px #000 solid;
    padding: 20px 0 0 20px;
    
    font-weight: 100;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 3px;
}
#content h3 span {
    display: block;
    text-transform: uppercase;
    font-size: 38px;
}

#content p {
    line-height: 2;
}

/*--- pr-word ---*/
p.pr-word {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    line-height: 1.7;
    margin: 60px 0;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
    #content h3 {
        font-size: 17px;
    }
    #content h3 span {
        font-size: 33px;
    }
    p.pr-word {
        font-size: 23px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    p.pr-word {
        font-size: 21px;
    }
    p.pr-word span {
        display: block;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
    #content {
        margin-left: 15px;
        margin-right: 15px;
    }
    #content h3 {
        font-size: 17px;
        letter-spacing: 1.7px;
        border-left: 17px #000 solid;
        padding: 20px 0 0 15px;
    }
    #content h3 span {
        font-size: 26px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    p.pr-word {
        font-size: 16px;
    }
    #content #works h2 span {
        font-size: 21px;
    }
}








/*------------------------------------------*/
/*                #home-link                */
/*------------------------------------------*/
#home-link {
    display: block;
    position: relative;
    margin: 130px 0;
}

/* a */
#home-link a {
    position: relative;
    display: block;
    margin-bottom: 130px;
    width: 100%;
    height: 300px;
    
    background-size: cover;
    background-position: top center;
}
#home-link a.link1 {
    background-image: url(../images/home_link_01_2.jpg);
}
#home-link a.link2 {
    background-image: url(../images/home_link_02_2.jpg);
}
#home-link a.link3 {
    background-image: url(../images/home_link_03.jpg);
}
#home-link a.link4 {
    background-image: url(../images/home2_art.jpg);
    background-position: bottom center;
}

#home-link a.link3 {
    margin-bottom: 40px;
}
#home-link a:hover {
    opacity: 0.8;
}

/* img */
/*
#home-link img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;
    object-position: top center;
}
*/

/* h3-block */
#home-link .h3-block {
    position: absolute;
    left:   -60px;
    bottom: -80px;
    padding: 15px 15px 15px 0;
    background: #fff;
    width: 80%;
}

#home-link h3 {
    display: inline-block;
    border: none;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 100;
    
    margin: 0 0 15px 0;;
    padding: 0;
    border-bottom: 1px rgba(0,0,0,0.6) solid;
}

#home-link p {
    line-height: 1.6;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #home-link a {
        height: 200px;
        margin-bottom: 170px;
    }
    #home-link .h3-block {
        left:   -1px;
        bottom: -100px;
        padding: 10px 3px 10px 3px;
        background: #fff;
        width: 85%;
    }
    #home-link h3 {
        font-size: 24px;
    }
}




/*------------------------------------------*/
/*                 #subsidy                 */
/*------------------------------------------*/
#subsidy {
    display: block;
    position: relative;
    margin-bottom: 130px;
}

#subsidy h3 {
    border: none;
    text-align: center;
    font-size: 15px;
    color: #222;
    padding-top: 80px;
    margin-bottom: 60px;
}

#subsidy ul {
    display: block;
    width: 100%;
    border: 0px rgba(0,0,0,0.2) dashed;
    background: rgba(0,0,0,0.04);
    padding: 40px;
    text-align: center;
}

#subsidy ul li {
    display: inline-block;
    width: auto;
    margin: 1%;
    border: 0px rgba(0,0,0,0.2) solid;
    padding: 5px 10px;
    text-align: center;
    line-height: 1.2;
}








/*------------------------------------------*/
/*             #work-content                */
/*------------------------------------------*/
#work-content {
    display: block;
    position: relative;
    padding: 100px 0;
    margin-top: 100px;
}

#work-content .work-place {
    margin: 60px 0 30px 0;
}
#work-content img {
    width: 800px;
    max-width: 90%;
}

#work-content .work-place .h4-block {
    margin-top:  -80px;
    
    display: block;
    background: #fff;
    padding: 30px 0 30px 30px;
}

/*--- h4 ---*/
#work-content .work-place .h4-block h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}
#work-content .work-place .h4-block h4 span {
    display: block;
    text-transform: uppercase;
    font-size: 28px;
}

/*--- dl dt dd ---*/
#work-content .work-place .h4-block dl {
    display: table;
    margin-left: -0.4em;
}
#work-content .work-place .h4-block dl dt,
#work-content .work-place .h4-block dl dd {
    display: table-cell;
}

#work-content .work-place .h4-block dl dt:before {
    content: '【';
}
#work-content .work-place .h4-block dl dt:after {
    content: '】';
}

#work-content .work-place .h4-block dl dd ul,
#work-content .work-place .h4-block dl dd ul li {
    display: block;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #work-content.bg-gray {
        background: #fff;
    }
    #work-content img {
        width: 100%;
        max-width: 100%;
    }
    #work-content .work-place .h4-block {
        background: rgba(0,0,0,0.07);
        margin-top:  0;
        padding: 15px 0 50px 10px;
        margin-bottom: -30px;
    }
    #work-content .work-place .h4-block h4 {
        font-size: 17px;
    }
    #work-content .work-place .h4-block h4 span {
        font-size: 25px;
}
    #work-content .work-place .h4-block dl,
    #work-content .work-place .h4-block dl dt,
    #work-content .work-place .h4-block dl dd {
        display: block;
    }
    #work-content .work-place .h4-block dl dd {
        padding-left: 1em;
    }
}
    
    
    



/*------------------------------------------*/
/*              #flow-of-day                */
/*------------------------------------------*/
#flow-of-day {
    display: block;
    position: relative;
    margin: 100px 0;
}

/*--- dl dt dd / ol li---*/
#flow-of-day dl {
    position: relative;
}
#flow-of-day dl.dl-left {
    padding: 60px 30px 15px 0;
}
#flow-of-day dl.dl-right {
    padding: 60px 0 15px 30px;
}
#flow-of-day dl.dl-left:after {
    display: inline-block;
    position: absolute;

    top: 50%;
    transform:         translateY(-50%);
    -ms-transform:     translateY(-50%);
    -moz-transform:    translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform:      translateY(-50%);
    right: -0.5em;
    
    font-size: 28px;
    color: #777;
    content: '▶︎';
}
#flow-of-day dl dt {
    display: block;
    text-align: center;
    font-size: 35px;
    margin-bottom: -30px;
}
#flow-of-day dl dd {
    display: block;
    width: 100%;
    text-align: center;
    padding: 60px 0;
}
#flow-of-day dl.dl-left dd {
    background: rgba(0,0,0,0.05);
}
#flow-of-day dl.dl-right dd {
    background: rgba(0,0,0,0.07);
}
#flow-of-day dl dd ol {
    display: block;
    text-align: center;
}
#flow-of-day dl dd ol li {
    display: block;
    text-align: left;
    line-height: 2.5;
}
#flow-of-day dl dd ol li span {
    display: inline-block;
    width: 48%;
    clear: both;
    float: left;
    text-align: right;
    padding-right: 30px;
}
#flow-of-day dl dd ol li:after{
    display: block;
    text-align: center;
    color: #999;
    content: '▼';
}
#flow-of-day dl dd ol li:last-of-type:after{
    display: none;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #flow-of-day dl.dl-left {
        padding: 60px 0 15px 0;
    }
    #flow-of-day dl.dl-right {
        padding: 60px 0 15px 0;
    }
    #flow-of-day dl.dl-left:after {
        display: none;
    }
    #flow-of-day dl.dl-right:before {
        display: block;

        margin-top: -50px;
        margin-bottom: 10px;
        text-align: center;
        font-size: 33px;
        color: #777;
        content: '▼';
    }
}





/*------------------------------------------*/
/*               #recreation                */
/*------------------------------------------*/
#recreation {
    display: block;
    position: relative;
    margin: 100px 0 120px 0;
}
#recreation.profile,
#recreation.information {
    margin-top: 0;
}

/*--- p ---*/
#recreation p {
    margin: 60px 0;
}

/*--- dl dt dd / ul li ---*/
#recreation dl {
    margin-bottom: 100px;
}
#recreation.profile dl,
#recreation.history dl {
    margin-top: 60px;
}
#recreation.history dl {
    margin-bottom: 0px;
}

#recreation dl dt {
    display: inline-block;
    width: 30%;
    clear: both;
    float: left;
    
    border-top: 5px #fff solid;
    background: rgba(0,0,0,0.7);
    color: #fff;
    
    padding: 15px;
    text-align: center;
}
#recreation dl dd {
    display: inline-block;
    width: 70%;
    
    border-top: 5px #fff solid;
    background: rgba(0,0,0,0.05);
    
    padding: 15px 5px 15px 35px;
    text-align: left;
}

#recreation.history dl dt {
    background: rgba(0,0,0,0.1);
    color: #111;
}
#recreation.history dl dd {
    background: rgba(0,0,0,0.02);
}

#recreation.information dl dt{
    padding: 10px;
    border-top: 4px #fff solid;
}
#recreation.information dl dd {
    padding: 10px 5px 10px 30px;
    border-top: 4px #fff solid;
}

#recreation dl dt:first-of-type,
#recreation dl dd:first-of-type {
    border: none;
}

#recreation dl dd ul,
#recreation dl dd ul li{
    display: block;
}

/*--- img ---*/
#recreation img {
    height: 350px;
}
/*--- p.title ---*/
#recreation p.title {
    margin: 10px 0 0 0;
    text-align: center;
}
/*
#recreation p.title i {
    color: #ff0000;
}
*/


/*--- 2019.10.10 add ---*/
#recreation p.kyushi {
    text-align: center;
    color: #ff0000;
    padding: 20px 0;
    background: rgba(0,0,0,0.1);
}
#contact p.kyushi {
    text-align: center;
    color: #ff0000;
    padding: 15px 0;
    background: rgba(0,0,0,0.1);
    margin-top: 50px;
}



/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #recreation dl dt {
        padding: 15px 5px;
    }
    #recreation dl dd {
        padding: 10px 0 10px 10px;
    }
    #recreation.information dl dd {
        padding: 10px 0 10px 10px;
    }
    #recreation p.kyushi span,
    #contact p.kyushi span {
        display: block;
    }
}




/*------------------------------------------*/
/*                   #works                 */
/*------------------------------------------*/
#works {
    display: block;
    position: relative;
    margin-bottom: 70px;
}

/*--- h3 ---*/
#works h3 {
    border: none;
    padding: 0;
    text-align: center;
    
    margin: 90px 0 50px 0;
}


/*---          ---*/
/*--- kodawari ---*/  /* 2022.03 ADD */
/*---          ---*/
#works .kodawari {
    margin: 100px 0 20px 0;
    padding: 105px 0 100px 0;
    /*border: 3px rgba(0,0,0,0.6) solid;*/
}

/* .bg */
#works .kodawari img.bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    opacity: 0.25;
    z-index: -1;
}
#works .kodawari img.bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    opacity: 0.25;
    z-index: -1;
}
#works .kodawari img.bg-3 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0 0 0 0;
    z-index: -2;
}
#works .kodawari img.bg-4 {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 0 0 0;
    z-index: -2;
}

/* h3 */
#works .kodawari h3 {
    display: block;
    text-align: right;
    margin: 0 6% 40px 0;
}
#works .kodawari h3 img {
    width: 400px;
    max-width: 50%;
}

/* .inner */
#works .kodawari .inner {
    display: block;
    width: 100%;
    text-align: left;
}
#works .kodawari .inner img {
    display: block;
    width: 500px;
    max-width: 50%;
    margin-bottom: 25px;
}
#works .kodawari .inner img:first-of-type {
    margin-left: 15%;
}
#works .kodawari .inner img:nth-child(2) {
    margin-left: 20%;
}
#works .kodawari .inner img:nth-child(3) {
    margin-left: 25%;
}
#works .kodawari .inner img:nth-child(4) {
    margin-left: 30%;
}
#works .kodawari .inner img:last-of-type {
    margin-left: 35%;
}


#works hr {
    padding-bottom: 100px;
    border: 1px #fff solid; 
    border-bottom: 1px rgba(0,0,0,0.2) solid;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
#works .kodawari {
    margin: 90px 0 0 0;
    padding: 40px 0 40px 0;
}
#works .kodawari h3 img {
    width: 70%x;
    max-width: 70%;
}
#works .kodawari .inner img {
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    padding: 0 15px;
}
#works .kodawari img.bg-3 {
    top: -15px;
    left: -100px;
}
#works .kodawari img.bg-4 {
    top: 0;
    right: -100px;
}
}



/*---       ---*/
/*--- award ---*/  /* 2022.03 ADD */
/*---       ---*/
#works .award {
    margin: 100px 0 30px 0;
    padding: 70px 0 60px 0;
    /*border: 3px rgba(0,0,0,0.6) solid;*/
}

/* .bg */
#works .award img.bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    opacity: 0.6;
    z-index: -1;
}
#works .award img.bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    opacity: 0.6;
    z-index: -1;
}

/* h3 */
#works .award h3 {
    display: block;
    text-align: left;
    margin: 0 0 40px 6%;
}
#works .award h3 img {
    width: 450px;
    max-width: 50%;
}

/* .outer .inner */
#works .award .outer {
    display: table;
    width: 100%;
    text-align: center;
}
#works .award .inner-1 {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    width: 35%;
}
#works .award .inner-2 {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    width: 25%;
}
#works .award .inner-3 {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    width: 32%;
}

/* .pc .sp */
#works .award .sp {
    display: none;
}

/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
#works .award {
    margin: 70px 0 30px 0;
    padding: 50px 0 60px 0;
}
#works .award h3 img {
    width: 80%;
    max-width: 80%;
}
#works .award .outer {
    display: block;
    width: 100%;
}
/*#works .award .inner-1 {
    display: block;
    width: 100%;
    margin-bottom: 40px;
}
#works .award .inner-2 {
    display: block;
    width: 100%;
    padding: 0 60px;
    margin-bottom: 40px;
}
#works .award .inner-3 {
    display: block;
    width: 100%;
}*/
#works .award .inner-1 {
    width: 33.333%;
    padding: 0 2.5px;
}
#works .award .inner-2 {
    width: 33.333%;
    padding: 0 2.5px;
}
#works .award .inner-3 {
    width: 33.333%;
    padding: 0 2.5px;
}
#works .award .pc {
    display: none;
}
#works .award .sp {
    display: block;
}
}







/*--- gallery ---*/
#works .gallery {
    border-top: 1px rgba(0,0,0,0.2) solid;
    margin: 80px 0;
}
/*#works .gallery .samnail {
    padding: 0 0 0 30px;
}*/


/*----- Thumbnail Gallery -----*/
.largeImage {
    display: block;
    width: 100%;
	height: auto;
	padding: 6px 10px 0 0;
}
ul.thumbs {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
ul.thumbs li {
    display: inline-block;
    width: 32%;
    padding: 1.5% 0 1.5% 1.5%;
}
ul.thumbs li a {
    padding: 0 !important;
    border: none !important;
    margin: none !important;
}
ul.thumbs img {
	border: none;
	width: 100% !important;
	height: auto;
	padding: 0 !important;
    margin: none !important;
}


/* p */ 
.samnail p.info {
    margin-bottom: 20px;
    text-align: center;
    font-size: 13px;
}
.samnail p.info.art {
    margin-top: -20px;
}
.samnail p.info.sp {
    display: none;
}



/*--- h4 ---*/
#works .h4-block {
    margin-top: 30px;
    text-align: center;
}
#works .h4-block h4 {
    position: relative;
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    padding: 7px 80px;
    z-index: 2;
}
#works .h4-block i {
    padding-right: 10px;
    /*color: sandybrown;*/
}
#works .p-box {
    display: block;
    text-align: center;
    border: 3px rgba(0,0,0,0.3) dotted;
    /*margin-top: -25px;*/
    padding: 30px 30px 30px 30px;
}
#works .p-box p {
    display: inline-block;
    text-align: left;
}




/*--- mini-shop ---*/
#works .mini-shop {
    border-top: 1px rgba(0,0,0,0.2) solid;
    margin: 30px 0 60px 0;
    padding: 100px 0 0 0;
}
#works .mini-shop .inner {
    padding: 10px;
}
#works .mini-shop .p-box {
    margin-top: 60px;
}



/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
.largeImage {
	padding: 0;
    margin: 0;
    margin-bottom: 15px;
}
ul.thumbs {
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
ul.thumbs li {
    display: inline-block;
    width: 32%;
    padding: 0 0 6px 0;
    margin: 0;
}
.samnail p.info.pc {
    display: none;
}
.samnail p.info.sp {
    display: block;
    font-size: 11px;
}
.samnail p.info.sp.art {
    margin-top: 15px;
}
#works .mini-shop .inner {
    padding: 4px;
}
}





/*------------------------------------------*/
/*                   #shop                  */
/*------------------------------------------*/
#shop {
    display: block;
    position: relative;
    margin-bottom: 0;
    background: rgba(0,0,0,0.07);
    padding: 40px 15px 70px 15px;
}

/* inner */
#shop .inner {
    text-align: center;
}
#shop .inner:first-of-type {
    text-align: right;
}
#shop .inner:last-of-type {
    text-align: left;
}

/* img */
#shop .inner img {
    /*height: 150px;*/
    height: 75px;
    width: auto;
}
#shop .inner img.minne {
    /*height: 165px;*/
    height: 82.5px;
    width: auto;
}

/* h3 */
#shop h3 {
    display: block;
    width: 100%;
    border: none;
    padding: 5px 0;
    margin-top: 30px;
    margin-bottom: 30px;
    /*border-bottom: 1px rgba(0,0,0,0.2) solid;*/
    background: #fff;
    text-align: center;
    font-size: 24px;
}

/* ul li */
#shop ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}
#shop ul li {
    display: block;
    list-style: none;
    padding-left: 1.8em;
    text-indent: -1.8em;
}

/* p */
#shop p {
    margin-top: 30px;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
#shop .inner img {
    /*height: 120px;*/
    height: 60px;
}
#shop .inner img.minne {
    /*height: 130px;*/
    height: 65px;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
#shop h3 {
    font-size: 20px;
}
#shop .inner img {
    /*height: 100px;*/
    height: 50px;
}
#shop .inner img.minne {
    /*height: 110px;*/
    height: 55px;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
#shop h3 {
    font-size: 18px;
}
#shop .inner:first-of-type {
    padding-right: 10px;
}
#shop .inner:last-of-type {
    padding-left: 10px;
}
#shop .inner img {
    /*height: 70px;*/
    height: 49px;
}
#shop .inner img.minne {
    /*height: 80px;*/
    height: 56px;
}
#shop ul li span {
    display: block;
    margin-left: 1em;
}
}





/*------------------------------------------*/
/*                    #art                  */
/*------------------------------------------*/
#art {
    display: block;
    position: relative;
    margin: 60px 0 130px 0;
}

/*--- outer ---*/
#art .outer {
    padding: 60px;
    margin-bottom: 120px;
}
#art .outer.kimini {    /* C:0 M:76 Y:72 K:0 */ 
    /*background: rgba(255,61,71,1);*/    /* #ff3d47 */
    background-image: url(../images/art_bg_kimini.png);
    background-size: cover;
    background-position: top left;
}
#art .outer.hamaru {    /* C:39 M:0 Y:13 K:0 */ 
    /*background: rgba(156,255,222,1);*/  /* #9cffde */
    background-image: url(../images/art_bg_hamaru.png);
    background-size: cover;
    background-position: top left;
}
#art .outer.kimagure {  /* C:78 M:70 Y:0 K:0 */
    /*background: rgba(56,77,255,1);*/    /* #384dff */
    background-image: url(../images/art_bg_kimagure.png);
    background-size: cover;
    background-position: top left;
}
#art .outer.arigatou {  /* C:3 M:9 Y:90 K:0 */
    /*background: rgba(247,232,26,1 );*/  /* #f7e81a */
    background-image: url(../images/art_bg_arigatou.png);
    background-size: cover;
    background-position: top left;
}
#art .outer.kotobano {    /* C:0 M:76 Y:72 K:0 */ 
    /*background: rgba(255,61,71,1);*/    /* #ff3d47 */
    background-image: url(../images/art_bg_kimini.png);
    background-size: cover;
    background-position: top left;
}

/* h3-block */
#art .h3-block {
    margin-bottom: 40px;
}
/* h3 */
#art h3 {
    display: inline-block;
    border: none;
    padding: 0;
    width: 35%;
    width: auto;
    float: left;
}
#art h3 img {
    height: 65px;
    width: auto;
}
/* h4 */
#art h4 {
    display: inline-block;
    width: 65%;
    width: auto;
    padding-left: 2em;
    padding-top: 2.5%;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    font-size: 18px;
}



/*----- Thumbnail Gallery -----*/
#art .largeImage-style {
    display: block;
    width: 100%;
	height: auto;
	padding: 6px 10px 0 0;
}
#art ul.thumbs-style {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}
#art ul.thumbs-style li {
    display: inline-block;
    width: 48.5%;
    padding: 1.5% 0 1.5% 1.5%;
}
#art ul.thumbs-style li a {
    padding: 0 !important;
    border: none !important;
    margin: none !important;
}
#art ul.thumbs-style img {
	border: none;
	width: 100% !important;
	height: auto;
	padding: 0 !important;
    margin: none !important;
}


#art .arigatou ul.thumbs-style li {
    display: inline-block;
    width: 32%;
    padding: 1.5% 0 1.5% 1.5%;
}



#art .arigatou ul.thumbs-style li {
    display: inline-block;
    width: 32%;
    padding: 1.5% 0 1.5% 1.5%;
}




/*--- suteki ---*/
#art .suteki {
    margin: 0;
    padding: 130px 0 0 0;
    border-top: 1px rgba(0,0,0,0.2) solid;
}
#art .suteki img {
    display: block;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 80px;
}
#art .suteki h2 {
    font-size: 25px;
}
#art .suteki .outer-p {
    display: block;
    margin-top: 50px;
    text-align: center;
}
#art .suteki p {
    display: inline-block;
    text-align: left;
}



/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1279px) {
/* - - - - - - - - - - - - - - - - - - */
#art .outer {
    padding: 60px 30px;
}
#art h4 {
    font-size: 15px;
}
#art h3 img {
    height: 50px;
    width: auto;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
#art .outer {
    padding: 60px 30px;
}
#art h3 {
    display: inline-block;
    width: 45%;
    float: none;
}
#art h4 {
    display: block;
    width: 100%;
    padding-left: 0;
}
#art .suteki h2 {
    font-size: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
#art .outer {
    padding: 40px 15px;
    margin-bottom: 70px;
}
#art h3 {
    display: inline-block;
    width: 80%;
    float: none;
}
#art h3 img {
    height: 40px;
    width: auto;
}
#art h4 {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
    white-space: normal;
    font-size: 16px;
}
#art h4 span {
    display: block;
}
#art .largeImage-style {
	padding: 0;
    margin: 0;
    margin-bottom: 30px;
}
#art ul.thumbs-style {
    padding: 0;
    margin: 0;
    margin-left: 0.7%;
}
#art ul.thumbs-style li {
    display: inline-block;
    width: 23.3%;
    padding: 0 0 6px 0;
    margin: 0;
}
#art .arigatou ul.thumbs-style li.no-img {
    display: none;
}
#art .arigatou ul.thumbs-style li {
    display: inline-block;
    width: 18.3%;
    padding: 0 0 6px 0;
    margin: 0;
}
    
#art .suteki {
    padding: 70px 0 0 0;
}
#art .suteki h2 {
    font-size: 15px;
}
#art .suteki img {
    width: 100%;
    margin-bottom: 40px;
}
#art .suteki .outer-p {
    display: block;
    margin-top: 30px;
    text-align: center;
}
}






/*------------------------------------------*/
/*                 #message                 */
/*------------------------------------------*/
#message {
    display: block;
    position: relative;
    margin-bottom: 100px;
}

#message .msg-block {
    position: relative;
    display: block;
    width: 100%;
    
    margin-top: 40px;
}
#message .msg-block .photo {
    padding-left: 0;
}
#message .msg-block .msg {
    position: absolute;
    top: 35%;
    right: 0;
    
    background: #222;
    background: #fff;
    padding: 60px;
    padding-right: 0;
}
/*
#message .msg-block .msg p {
    color: #fff;
}
*/

#message p {
    margin-top: 60px;
    line-height: 1.9;
}
#message p strong {
    display: block;
    margin: 15px 0 15px 1em;
    font-size: 21px;
    font-weight: 600;
}
#message p span {
    display: block;
    text-align: right;
    margin-top: 30px;
}
/*
#message p.pr-word {
    margin: 0;
    margin-bottom: 30px;
}
*/




/*------------------------------------------*/
/*                 #concept                 */
/*------------------------------------------*/
#concept {
    display: block;
    position: relative;
}
#concept ol,
#concept ol li {
    display: block;
}
#concept ol li {
    margin-bottom: 16px;
}
#concept ol li:first-child:before {
    content: '【１】';
}
#concept ol li:nth-child(2):before {
    content: '【２】';
}
#concept ol li:last-child:before {
    content: '【３】';
}





/*------------------------------------------*/
/*                #about-us                 */
/*------------------------------------------*/
#about-us {
    display: block;
    position: relative;
    margin-bottom: 100px;
}


#about-us dl,
#about-us dl dt,
#about-us dl dd,
#about-us dl dd ul,
#about-us dl dd ul li {
    display: block;
    color: #fff;
    font-weight: 100;
}
#about-us dl {
    margin-top: 60px;
    background: rgba(0,0,0,0.95);
    padding: 20px 40px;
}
#about-us dl dt {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}
#about-us dl dd ul li {
    margin: 15px 0;
    font-size: 17px;
}
#about-us dl dd ul li i {
    display: block;
    clear: both;
    float: left;
    padding-right: 8px;
    margin-bottom: 25px;
    padding-top: 3px; 
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    #about-us dl dd ul li {
        font-size: 15px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #about-us dl {
        padding: 20px 15px;
    }
    #about-us dl dt {
        font-size: 19px;
    }
    #about-us dl dd ul li {
        font-size: 14px;
    }
}





/*------------------------------------------*/
/*              #staff-voice                */
/*------------------------------------------*/
#staff-voice {
    display: block;
    position: relative;
    margin-top: 100px;
    margin-bottom: 80px;
}
#staff-voice .voice:first-of-type {
    margin-top: 60px;
}

#staff-voice p.info {
    margin: 60px 0;
}

#staff-voice .voice img {
    display: block;
    width: 250px;
    max-width: 95%;
    margin: 0 auto;
    
    border-radius: 50%;
    /*
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    */
}
#staff-voice .voice h4 {
    font-weight: bold;
}
#staff-voice .voice p {
    margin-top: 20px;
    line-height: 1.8;
}
#staff-voice .voice p span {
    display: block;
    text-align: right;
    margin-top: 20px;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #staff-voice .voice {
        border-bottom: 1px rgba(0,0,0,0.4) solid;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    #staff-voice .voice img {
        width: 70%x;
        max-width: 70%;
    }
    #staff-voice .voice p span {
        /*white-space: nowrap;*/
        font-weight: 600;
        background: rgba(0,0,0,0.1);
        color: #000;
        padding: 4px 10px;
        width: 100%;
        text-align: center;
    
        position: absolute;
        top: -30px;
        left: 50%;
        transform:         translate(-50%);
        -ms-transform:     translate(-50%);
        -moz-transform:    translate(-50%);
        -webkit-transform: translate(-50%);
        -o-transform:      translate(-50%);
    }
    #staff-voice .voice h4 {
        font-size: 15px;
        margin-top: 15px;
    }
    #staff-voice .voice p {
        line-height: 1.7;
    }
}




/*------------------------------------------*/
/*              .information                */
/*------------------------------------------*/
.information {
    display: block;
    position: relative;
}

.information h4 {
    margin: 60px 0 5px 0;
    font-weight: normal;
    font-size: 19px;
    text-align: center;
    letter-spacing: 3px;
    color: #fff;
    
    background: rgba(0,0,0,0.7);
    padding: 6px 0;
    border-top-left-radius:  15px;
    border-top-right-radius: 15px;
}
.information h4:last-of-type {
    border: 3px #fff solid;
    margin-bottom: -2px;
    padding: 7px 0;
}

.information iframe {
    margin: 20px 0;
}

/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    .information h4 {
        font-size: 17px;
        border-top-left-radius:  10px;
        border-top-right-radius: 10px;
    }
}


/*------------------------------------------*/
/*                  #flow                   */
/*------------------------------------------*/
#flow {
    display: block;
    position: relative;
    margin: 120px 0;
}

#flow ol {
    display: block;
    width: 100%;
    margin-top: 60px;
}
#flow ol li {
    display: block;
    width: 100%;
    float: left;
}
#flow ol li h4 {
    font-weight: normal;
    font-size: 18px;
    padding: 3px 0;
    margin-bottom: 15px;
}
#flow ol li:after {
    clear: both;
    display: block;
    width: 100%;
    text-align: center;
    margin: 15px 0;
    background: #fff;
    content: '▼';
}
#flow ol li:last-of-type:after {
    display: none;
}

#flow .img-box {
    display: block;
    clear: both;
    float: left;
    padding-right: 30px;
    
    width: 40%;
    height: 140px;
    
    overflow: hidden;
}
#flow .img-box img {
    width: 100%;
    height: auto;
    margin-top: -40px;
}
    
/*
#flow img {
    display: block;
    clear: both;
    float: left;
    padding-right: 30px;
    
    width: 40%;
    height: 140px;
    
    object-fit: cover;
    object-position: center center;
}
*/

#flow .mark-maru {
    border: 0px rgba(0,0,0,0.3) solid;
    background: rgba(0,0,0,0.05);
    padding: 20px;
    margin-top: 80px;
}

#flow p {
    line-height: 1.7;
}



/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    #flow .img-box img {
        margin-top: -10px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #flow ol li h4 {
        margin-bottom: 10px;
    }
    #flow .img-box {
        width: 35%;
        margin-bottom: 2em;
        margin-right: 10px;
    }
    #flow .img-box img {
        margin: 0;
        margin-left: -45px;
        height: 100%;
        width: auto;
    }
    #flow p {
        line-height: 1.5;
    }
}





/*------------------------------------------*/
/*                 #contact                 */
/*------------------------------------------*/
#contact {
    display: block;
    position: relative;
    margin-bottom: 100px;
}

#contact p.contact-info {
    padding: 0 10% 100px 10%;
}
#contact.application p.contact-info {
    padding: 60px 10% 0 10%;
}

#contact p.contact-info.php {
    text-align: center;
    font-size: 18px;
}

#contact .form-box {
    border: 1px rgba(0,0,0,0.25) dashed;
    padding: 50px 100px;
    margin-top: 60px;
}
#contact .form-box p {
    margin-top: 60px;
    text-align: center;
}
#contact .form-box p:before {
    content: '+';
}
#contact .form-box p span {
    display: block;
    font-size: 9px;
    color: #d3d3d3;
    margin-top: 15px;
}

/* contact.php */
#contact .form-box #send-end p {
    margin-top: 20px;
    text-align: left !important;
}
#contact .form-box #send-end p:before {
    content: none;
}
#contact .form-box.end {
    border: none;
    padding: 0 100px;
    margin-top: 0;
}



form {
    text-align: left;
}

/*--- Zenkaku Hankaku ---*/
form .zenkaku {
   ime-mode: active;
}
form .hankaku {
   ime-mode: inactive;
}

/*--- p ---*/
form p {
    /*text-align: left !important;*/
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 1.5px;
    line-height: 1.9;
    text-transform: capitalize;
}


/*--- label , input etc ---*/
form label {
    display: block;
    font-size: 15px;
    font-weight: normal;
    color: #000;
    letter-spacing: 2px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 3px;
}
form label span {
    font-size: 10px;
    font-weight: 100;
    color: #fff;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.8);
    padding: 2px 3px 2px 5px;
    border-radius: 0px;
    margin-left: 10px;
    vertical-align: 0.15em;
}

form select,
form input,
form textarea {
    width: 100% !important;
}

form textarea {
    overflow: auto;
    height: auto !important;
}

form select {
    display: block;
    background: #fff;
    width: 100%;
    border: none;
    border-radius: 0px;
}

select:focus,
input:focus,
textarea:focus {
    outline: 0;
}

input[type=radio] {
    width: auto !important;
    margin-left: 2em;
    height: 30px;
    vertical-align: -0.75em;
}

/*--- form-control ---*/
form .form-control {
    display: block;
    margin-right: 30px !important;
    font-size: 14px;
    font-weight: normal;
    /*color: rgba(0,0,0,1);*/
    letter-spacing: 1.5px;
    width: 100% !important;
    height: 40px;
    
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    -ms-box-shadow:     none;
    -o-box-shadow:      none;
    box-shadow:         none;
    
    -webkit-border-radius: 0px;
    -moz-border-radius:    0px;
    -ms-border-radius:     0px;
    -o-border-radius:      0px;
    border-radius:         0px;
    
    -webkit-transition: all 0.3s;
    -moz-transition:    all 0.3s;
    -ms-transition:     all 0.3s;
    -o-transition:      all 0.3s;
    transition:         all 0.3s;
    
    padding: 5px 10px;
    background: #fff;
    border: none;
    border: 1px rgba(0,0,0,0.3) solid;
}
form .form-control:hover,
form .form-control:focus,
form .form-control:active {
    border: 1px rgba(0,0,0,1) solid;
}



/*--- placeholder ---*/
input::placeholder {
    color: #d7d7d7;
}
/* IE */
input:-ms-input-placeholder {
    color: #d7d7d7;
}
/* Edge */
input::-ms-input-placeholder {
    color: #d7d7d7;
}
input::-webkit-input-placeholder {
	color: #d7d7d7;
}
input::-moz-placeholder {
	color: #d7d7d7;
}

textarea::placeholder {
    color: #d7d7d7;
}
/* IE */
textarea:-ms-input-placeholder {
    color: #d7d7d7;
}
/* Edge */
textarea::-ms-input-placeholder {
    color: #d7d7d7;
}
textarea::-webkit-input-placeholder {
	color: #d7d7d7;
}
textarea::-moz-placeholder {
	color: #d7d7d7;
}




/*--- Submit Button ---*/
form button {
    display: block;
    margin: 0 auto;
    
    width: 100%;
    padding: 11px 0;
    margin-top: 60px;
    text-align: center;
    
    color: #fff;
    background: rgba(0,0,0,1);
    border: 1px rgba(0,0,0,0) solid;
    
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0px;
    margin-bottom: 40px;
    
    -webkit-transition: all 0.5s;
    -moz-transition:    all 0.5s;
    -ms-transition:     all 0.5s;
    -o-transition:      all 0.5s;
    transition:         all 0.5s;
}
form button:hover {
    cursor: pointer;
    background: #fff;
    color: #111;
    border: 1px rgba(0,0,0,0.8) solid;
}

/*--- php button ---*/
form button.send {
    color: #fff;
    background: rgba(0,0,0,0.8);
}
form button.send:hover {
    cursor: pointer;
    background: rgba(0,0,0,1);
}
form button.back {
    background: #fff;
    color: #111;
    border: 1px #000 solid;
    margin-top: 0px !important;
    margin-bottom: 100px !important;
}
form button.back:hover {
    cursor: pointer;
}
form button i {
    padding-left: 10px;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
    #form .link a {
        font-size: 12px;
    }
    form p {
        font-size: 12px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    #contact .form-box,
    #contact .form-box.end {
        padding: 50px 50px;
    }
    form label,
    form .form-control {
        font-size: 12px;
    }
    form p {
        font-size: 11px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #contact .form-box,
    #contact .form-box.end {
        padding: 15px 15px;
    }
    /*
    form p {
        text-align: left !important;
    }
    */
    form p.demo {
        text-align: center !important;
    }
    form span.br {
        display: block;
    }
    #contact p.contact-info {
        padding: 0 0 100px 0;
    }
    #contact.application p.contact-info {
        padding: 60px 0 0 0;
    }
}



/*------------------------------------------*/
/*            Form PHP - Table              */
/*------------------------------------------*/
form table.formTable {
	width: 100%;
	text-align: left;
}
form table.formTable th,
form table.formTable td {
	font-size: 14px;
    font-weight: normal;
	padding: 10px 10px;
    border-bottom: 1px rgba(0,0,0,0.4) solid;
    text-align: left;
    background: #fff;
    color: #111;
}
form table.formTable th {
	width: 30%;
}
form table.formTable td {
	width: 70%;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
    form table.formTable th,
    form table.formTable td {
	    font-size: 13px;
    }
    form table.formTable th {
	    width: 35%;
    }
    form table.formTable td {
	    width: 65%;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    form table.formTable th {
	    width: 30%;
    }
    form table.formTable td {
	    width: 70%;
    }
}



/*------------------------------------------*/
/*                #send-end                 */
/*------------------------------------------*/
#send-end {
    margin: 50px 0 200px 0;
    text-align: left;
}
#send-end h2 {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
#send-end h2 span {
    display: block;
    font-size: 17px;
    font-style: italic;
}
#send-end .phone {
    margin-top: 20px;
}
#send-end p a.tel{
    font-size: 16px;
    color: #111;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
    #send-end h2,
    #form h2 {
        font-size: 22px;
    }
    #send-end h2 span {
        font-size: 13px;
    }
    #send-end p {
        font-size: 13px;
    }
    #send-end p a.tel{
        font-size: 14px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
    #send-end h2,
    #form h2 {
        font-size: 18px;
    }
    #send-end h2 span {
        font-size: 13px;
    }
    #send-end p {
        font-size: 13px;
    }
    #send-end p a.tel{
        font-size: 14px;
    }
}








/*------------------------------------------*/
/*                 #privacy                 */
/*------------------------------------------*/
#privacy {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 0 30px 0;
    margin-bottom: 110px;
    text-align: left;
}
#privacy p {
    margin-top: 60px;
}
#privacy ul {
    margin-top: 40px;
}
#privacy ul li {
    display: list-item;
    list-style: decimal !important;
    margin-left: 1.6em;
    line-height: 1.5;
    margin-bottom: 30px;
    
    text-align: justify !important;
    text-justify: inter-ideograph !important;
    word-break: break-all;
}

#privacy dl dt {
    margin-top: 20px;
    margin-bottom: 7px;
}
#privacy dl dd {
    margin-left: 1em;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
#privacy dl dd a {
    padding: 3px 3px;
    border-bottom: 1px rgba(0,0,0,0.2) solid;
}
#privacy dl dd a:hover {
    border-bottom: 1px rgba(0,0,0,1) solid;
}


#privacy #price .top-block .contact-box {
    margin-top: 0;
}





/*------------------------------------------*/
/*                 #sitemap                 */
/*------------------------------------------*/
#sitemap {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    text-align: left;
}


#sitemap p {
    margin-top: 60px;
}
#sitemap dl {
    display: block;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 110px;
}
#sitemap dl dt {
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 30px;
}
#sitemap dl dt:first-child {
    margin-top: 0;
}
#sitemap dl dd,
#sitemap ul li,
#sitemap p {
    letter-spacing: 1.5px;
}
#sitemap dl dd {
    padding: 0 30px;
}

#sitemap a {
    display: block;
    font-weight: normal;
    padding: 10px 30px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.9);
    color: #fff;
}
#sitemap a:hover {
    background: rgba(0,0,0,0.7);
}
#sitemap a i {
    position: absolute;
    top: 15px;
    right: 30px;
    
    font-size: 13px;
    padding-left: 5px;
}


/*--- public ---*/
#sitemap.public {
    margin-bottom: 60px;
}
#sitemap.public p {
    margin-bottom: 50px;
}
#sitemap.public dl dt.top {
    /*margin-top: 60px;*/
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px rgba(0,0,0,0.3) dotted;
}
#sitemap.public dl dd {
    margin-bottom: -10px;
}
#sitemap.public a {
    background: rgba(0,0,0,0.5);
}
#sitemap.public a:hover {
    background: rgba(0,0,0,1);
}






/*------------------------------------------*/
/*                #landscape                */
/*------------------------------------------*/
/*--- project ---*/
#landscape.project .col-lg-12 {
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    
    background-image: url(../images/landscape_project.jpg);
    background-size: cover;
    background-position: top center;
}
/*
#landscape.project img {
    width:  100%;
    height: auto;
    
    object-fit: cover;
    object-position: top center;
}
*/
#landscape.project p {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 48%;
    /*
    left: 50%;
    transform:         translate(-50%);
    -ms-transform:     translate(-50%);
    -moz-transform:    translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform:      translate(-50%);
    */
    color: #fff;
    font-size: 50px;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 1;
}

/*--- pgallery ---*/
#landscape.gallery {
    margin-top: 40px;
    margin-bottom: 100px;
}
#landscape.gallery h3 {
    text-transform: uppercase;
    border: none;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    
    font-size: 32px;
    font-weight: 100;
}
#landscape.gallery h3:before {
    content: '- ';
}
#landscape.gallery h3:after {
    content: ' -';
}
#landscape.gallery ul {
    display: block;
    width: 100%;
}
#landscape.gallery ul li {
    display: inline-block;
    width: 20%;
    float: left;
    
    padding: 6px;
}
#landscape.gallery img {
    width: 100%;
    height: auto;
    /*
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    */
}





/*--- about ---*/
#landscape.about {
    margin: 100px 0;
}
#landscape.about img {
    width: 100%;
    height: auto;
    /*
    -webkit-filter: grayscale(100%) "brightness(120%)";
    -moz-filter: grayscale(100%) "brightness(120%)";
    -ms-filter: grayscale(100%) "brightness(120%)";
    -o-filter: grayscale(100%) "brightness(120%)";
    filter: grayscale(100%) brightness(120%);
    */
    /*
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    */
}

/*--- recruite ---*/
/*
#landscape.recruite img {
    width: 100%;
    height: auto;
    
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    
    padding: 4px;
}
*/


/* - - - - - - - - - - - - - - - - - - */
@media screen and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - */
    #landscape.project .col-lg-12 {
        width: 100vw;
        height: 50vh;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    #landscape.project p {
        font-size: 37px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    #landscape.project p {
        margin-top: -1em;
        padding: 0;
        text-align: center;
    }
    #landscape.project p span {
        display: block;
        line-height: 1.4;
    }
    #landscape.gallery h3 {
        font-size: 27px;
    }
    #landscape.gallery ul li {
        width: 50%;
        padding: 4px;
    }
    #landscape.gallery.recruite ul li {
        width: 50%;
        padding: 3px;
    }
    #landscape.gallery.recruite ul li:last-of-type {
        width: 100%;
        margin-top: 3px;
        
        height: 160px;
        overflow: hidden;
    }
    #landscape.gallery.recruite ul li:last-of-type img {
        margin-top: -55px;
    }
    #landscape.about .col-xs-2 {
        width: 33.3%;
        border: 2px #fff solid;
    }
}





/*------------------------------------------*/
/*            #Breadcrumb パンくず           */
/*------------------------------------------*/
#breadcrumb {
    position: relative;
    display: block;
    padding: 20px 0;
    text-align: left;
}

/* リスト */
#breadcrumb ol {
    padding: 0;
    list-style-type: none;
    text-transform: uppercase;
}
/* リスト項目 */
#breadcrumb ol li {
    display: inline;
    color: rgba(0,0,0,0.7);
    font-size: 13px;
}
#breadcrumb ol li.bg {
    background: url(../images/topic-path-gray.gif);
    background-repeat: no-repeat;
    background-position: left 0.1em bottom 0.05em;
    padding-left: 18px;
}
/* リンクエリア */
#breadcrumb ol li a {
    padding-right: 3px;
    color: rgba(0,0,0,0.7);
}
#breadcrumb ol li a:hover {
    color: rgba(0,0,0,1);
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    #breadcrumb ol li {
        font-size: 11px;
    }
}




/*------------------------------------------*/
/*                 #bottom                  */
/*------------------------------------------*/
#bottom {
    display: block;
    position: relative;
    margin-bottom: 110px;
    padding: 110px 0;
    
    border-top: 1px rgba(0,0,0,0.2) solid;
}

#bottom [class*="col-lg-"] {
    padding-left:  15px;
    padding-right: 15px;
}

#bottom a img {
    opacity: 1;
    
    -webkit-transition: all 0.6s;
    -moz-transition:    all 0.6s;
    -ms-transition:     all 0.6s;
    -o-transition:      all 0.6s;
    transition:         all 0.6s;
}
#bottom a img:hover {
    opacity: 0.8;
}

/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
    #bottom {
        margin-bottom: 35px;
        padding: 60px 0;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    #bottom .col-xs2-25 {
        width: 50% !important;
        padding: 5px 10px;
    }
}





/*------------------------------------------*/
/*                 footer                   */
/*------------------------------------------*/
footer {
    position: relative;
    padding: 120px 0 40px 0;
    background: rgba(0,0,0,0.98);
}


footer h3,
footer h4,
footer p,
footer i,
footer ul li {
    color: #fff !important;
    font-weight: normal !important;
}


footer ul li {
    white-space: nowrap;
    font-size: 13px;
}

footer a {
    color: #fff;
}
footer a:hover {
    color: #999;
}


footer img.logo-text {
    position: absolute;
    top: -192px;
    left: -40px;
    width: 760px;
}


/*=====      =============*/
/*===== left =============*/
/*=====      =============*/
footer .left {
    text-align: left;
}

/*--- p ---*/
footer .left p {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    padding-left: 3px;
    margin-top: 7px;
    margin-bottom: 25px;
}

/*--- ul li ---*/
footer .left ul li {
    display: block;
    font-size: 12px;
    text-transform: none;
    line-height: 1.9;
    letter-spacing: 2.1px;
}
footer .left ul li i {
    font-size: 14px;
    padding-right: 7px;
    vertical-align: -0.1em;
}
footer .left ul li:nth-child(2) {
    padding-top: 2px;
}


/*=====       =============*/
/*===== right =============*/
/*=====       =============*/
footer .right {
    text-align: left;
    margin-top: 25px;
    text-align: right;
}


/*--- ul li ---*/
footer .right ul.text {
    display: block;
    width: 100%;
    list-style: none;
    letter-spacing: 2px;
}
footer .right ul.text li {
    display: block;
    line-height: 2.7;
}
footer .right ul.text li:nth-child(9) {
    margin-top: 30px;
}
/*footer .right ul.text li:last-of-type {
    margin-top: 10px;
    font-weight: 100;
    font-size: 35px;
}*/

/*--- ul li ---*/
footer .right ul.sns {
    display: block;
    width: 100%;
    margin-top: 50px;
    list-style: none;
    text-align: right;
}
footer .right ul.sns li {
    display: inline-block;
    margin-right: 15px;
}
footer .right ul.sns li.base {
    margin-right: 0;
}
footer .right ul.sns li img {
    height: 40px;
    width: auto;
}
footer .right ul.sns li.minne img {
    vertical-align: -1.8em;
    height: 43px;
    width: auto;
}


/*=====           =============*/
/*===== copyright =============*/
/*=====           =============*/
footer .copyright {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px !important;
    border-top: 1px rgba(255,255,255,0.7) solid;
}
footer .copyright p {
    display: block;
    text-align: center;
    font-weight: 100;
    letter-spacing: 1.7px;
    font-size: 11px;
    color: rgba(255,255,255,0.9) !important;
}
footer .copyright p span {
    display: inline-block;
    font-size: 18px;
    font-weight: 100;
    vertical-align: -0.123em;
    padding-right: 3px;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    footer img.logo-text {
        top: -172px;
        left: 20px;
        width: 550px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - */
    footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - */
    footer img.logo-text {
        top: -162px;
        left: 20px;
        width: 450px;
    }
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
    footer {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    footer img.logo-text {
        top: -88px;
        left: 0;
        width: 300px;
    }
    footer .left p {
        font-size: 9.5px;
    }
    footer .left ul li {
        font-size: 11px;
    }
    footer .right ul {
        display: block;
        width: 100%;
        margin-top: 30px;
    }
    footer .right ul li {
        text-align: left;
    }
    footer .right ul.sns {
        text-align: left;
    }
    footer .copyright {
        margin-top: 50px;
    }
}




