html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
    position: relative;
    margin: 0;
    
    /*--- 明朝体 ---*/
    /*
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    */
    
    /*--- ゴシック体 ---*/
    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;
}

/*--- 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;
}

/*--- アニメーション表示 ---*/
.js .animate-box {
  opacity: 0;
}

/*--- 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;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
.row.pad,
section.pad {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
}

img {
    vertical-align: middle;
    border: none;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
}


.nopad {
    padding: 0 !important;
}

.text-center {
    text-align: center;
}

.border-bottom {
    border-bottom: 1px rgba(0,0,0,0.15) solid;
    padding-bottom: 80px;
}
.border-top {
    border-top: 1px rgba(0,0,0,0.15) solid;
}

.bg-gray {
    background: rgba(0,0,0,0.03);
}
.bg-white {
    background: #fff;
}



.pc {
    display: block;
}
.sp {
    display: none !important;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
/*.pc {
    display: none;
}
.sp {
    display: block;
}*/
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
/*.pc {
    display: none;
}
.sp {
    display: block;
}*/
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
.pc {
    display: none !important;
}
.sp {
    display: block !important;
}
}



/*--- ゴシック体 ---*/
.font-gos {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*--- 明朝体 ---*/
.font-min{
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


a {
    color: #000;
    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;
    opacity: 0.75;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: normal;
    margin: 0;
}

p {
    display: block;
    margin: 0;
    padding: 0;
    letter-spacing: 1.5px;
    line-height: 1.7;
    
    color: #111;
    font-size: 16px;
    
    /*-- 折返し --*/
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    p,
    #content.index-block2 a {
        font-size: 15px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    p,
    #content.index-block2 a {
        font-size: 14px;
    }
}


ul,
ul li,
ol,
ol li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.7;
    letter-spacing: 1.5px;
    
    color: #000;
    font-size: 16px;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    ul,
    ul li,
    ol,
    ol li {
        font-size: 15px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    ul,
    ul li,
    ol,
    ol li {
        font-size: 14px;
    }
}

dl,
dl dt,
dl dd,
table th,
table td {
    margin: 0;
    padding: 0;
    line-height: 1.7;
    letter-spacing: 1.5px;
    
    color: #000;
    font-size: 16px;
    font-weight: normal;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    dl,
    dl dt,
    dl dd,
    table th,
    table td {
        font-size: 15px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    dl,
    dl dt,
    dl dd,
    table th,
    table td {
        font-size: 14px;
    }
}


/*------------------------------------------*/
/*                  row                     */
/*------------------------------------------*/
.row {
    /*display: table;*/
    margin-right: auto;
    margin-left:  auto;
}
/* - - - - - - - - - - - - */
@media (min-width: 768px) {
/* - - - - - - - - - - - - */
    .row {
        width: 680px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1024px) {
/* - - - - - - - - - - - - */
    .row {
        width: 860px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1280px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1000px;
    }
    footer .row {
        width: 1100px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1440px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1100px;
    }
    footer .row {
        width: 1200px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1600px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1360px;
    }
    #concept .row {
        width: 1450px;
    }
    footer .row {
        width: 1500px;
    }
}


/*------------------------------------------*/
/*          col-lg , md , sm , xs           */
/*------------------------------------------*/

/*----- 0px <= col-xs-99 <= 767px ----------*/
/* - - - - - - - - - - - - */
@media (min-width: 0px) {
/* - - - - - - - - - - - - */
    .col-xs-1,
    .col-xs2-1,
    .col-xs-2,
    .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-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-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-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-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-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-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .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-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-lg-8 {
        width: 66.66667%;
    }
    .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: 20px;
}

/* - - - - - - - - - - - - */
@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 {
    float: right;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
.right {
    margin-top: -20px;
}
}




/*----- "col-xs-99" width 100% -------------*/
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    [class*="col-xs2-"] {
        width: 100% !important;
    }
}



/*------------------------------------------*/
/*              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;
}


/*------------------------------------------*/
/*            #Breadcrumb パンくず           */
/*------------------------------------------*/
#breadcrumb {
    position: relative;
    display: block;
    margin-top: 5px;
    text-align: left;
    padding: 80px 0 0 0;
    
    /*border-bottom: 1px rgba(0,0,0,0.15) solid;*/
}
#breadcrumb.works {
    padding-top: 116px;
}

/* リスト */
#breadcrumb ol {
    margin: 0 2.5% 0 2.5%;
    padding: 0;
    list-style-type: none;
    text-transform: uppercase;
}
/* リスト項目 */
#breadcrumb ol li {
    display: inline;
    font-size: 12px;
}
#breadcrumb ol li.bg {
    background: url(../images/topic-path-gray.gif);
    background-repeat: no-repeat;
    background-position: left 0.15em bottom 0.05em;
    padding-left: 20px;
}
/* リンクエリア */
#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: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#breadcrumb.works {
    padding-top: 80px;
}
    #breadcrumb ol {
        font-size: 11px;
    }
    #breadcrumb ol .jp {
        font-size: 11px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#breadcrumb {
    padding: 15px 0 0 0;
    
    /*border-bottom: 1px rgba(0,0,0,0.15) solid;*/
}
#breadcrumb.works {
    padding-top: 80px;
}
#breadcrumb ol {
    margin: 0 0 0 15px;
}
}



/*------------------------------------------*/
/*                 #header                  */
/*------------------------------------------*/
/*----- header common ----------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 80px;   /* headerの高さ */
    
    display: block;
    
    padding-left: 4%;
    padding-right: 0;
    
    background: rgba(255,255,255,1);
    
    /*overflow: hidden;*/  /*** hidden 必須！ ***/
    z-index: 99;
}

#header.works::after {
    position: absolute;
    top: 89px;
    left: 2.5%;
    height: 1px;
    width: 95%;
    background: rgba(0,0,0,0.15);
    content: ' ';
}
    
    
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
    /*#header {
        height: 65px;
    }*/
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
    #header {
        height: 60px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
    #header {
        height: 60px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    #header {
        height: 60px;
        
        padding-left: 15px;
        padding-right: 5px;
    }
}




/*----- logo-block -------------------------*/
#header .logo-block {
    position: relative;
    text-align: left;
    margin: 0;
    padding: 0;
    margin-top: 7px;
}
#header .logo-block .logo img
/*footer .logo img*/ {
    width: auto;
    height: 65px;
}

    
#header .logo-block h1 {
    position: absolute;
    top: 6px;
    left: 90px;
    letter-spacing: 1.8px;
    line-height: 1;
    white-space: nowrap;
    font-size: 12px;
}
#header .logo-block a:hover {
    opacity: 1;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1370px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
    margin-top: 8px;
}
#header .logo-block .logo img {
    width: auto;
    height: 60px;
}
#header .logo-block h1 {
    top: 5px;
    left: 83px;
    letter-spacing: 1.2px;
    font-size: 11.5px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
    margin-top: 0;
}
#header .logo-block .logo img {
    width: auto;
    height: 50px;
}
#header .logo-block h1 {
    top: 5px;
    left: 70px;
    letter-spacing: 0.6px;
    font-size: 10px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
    margin-top: 5px;
}
#header .logo-block .logo img {
    width: auto;
    height: 45px;
}
#header .logo-block h1 {
    top: 5px;
    left: 60px;
    letter-spacing: 0.6px;
    font-size: 9px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
    margin-top: 7px;
}
#header .logo-block .logo img {
    width: auto;
    height: 45px;
}
#header .logo-block h1 {
    top: 3px;
    left: 60px;
    letter-spacing: 0.6px;
    font-size: 9px;
}
}



/*----- nav-block --------------------------*/
#header .nav-block {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
}

/*****                               *****/
/***** width >= 1199 の時のナビメニュー *****/
/*****                               *****/
.menu ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: right;
    margin-left: -7px;
}

.menu ul li {
    display: inline-block;
    height: auto;
    width: auto;
    text-align: center;
    margin-left: -7px;
    padding: 0 15px;
    
    border-left: 1px rgba(0,0,0,0.25) solid;
}


.menu ul li a {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1.7px;
    line-height: 1.0;
    text-transform: uppercase;
    padding: 23px 0;
    /*border-bottom: 2px rgba(0,0,0,0) solid;*/
    color: #000;
    opacity: 1;
}
.menu ul li a:hover,
.menu ul li.active a {
    /*border-bottom: 2px rgba(0,0,0,0.8) solid;*/
}



    
.menu ul li.link {
    margin: 0;
    padding: 0;
    border: none;
}
.menu ul li.link {
    margin-right: -0.45em;
}
.menu ul li.link a,
.menu ul li.link a:hover,
.menu ul li.link.active a {
    padding: 0;
    border-bottom: none;
}
.menu ul li.link a img {
    margin: 0;
    height: 80px;
    width: auto;
}



/* humberger 消す */
.menu-btn span img {   
    display: none;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1440px) {
/* - - - - - - - - - - - - - - - - - - - */
.menu ul li {
    padding: 0 10px;
}
.menu ul li a {
    font-size: 13px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1300px) {
/* - - - - - - - - - - - - - - - - - - - */
.menu ul li {
    padding: 0 7px;
}
.menu ul li a {
    font-size: 12.5px;
}
}




/*****                               *****/
/***** width <= 1199 の時のナビメニュー *****/
/*****                               *****/
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - */
    
    /* ナビボタンのスタイル */
    .menu-btn {
        display: inline-block;
        cursor: pointer;
        text-align: right;
    }
    
    /* humberger 出す */
    .menu-btn span img {
        position: fixed;
        display: inline-block;
        top: 20px;
        right: 30px;
        height: 20px;
    }
    .menu-btn span.ver1 {
        display: block;
    }
    .menu-btn span.ver2 {
        display: none;
    }
    
    .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);*/
        content: url(../images/cross_2.png);
    
        position: fixed;
        top: -3px;
        right: 30px;
        z-index: 999 !important;
    
        font-size: 40px;
        font-weight: 100 !important;
    
        /*-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);
    
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    
        visibility: hidden;
        opacity: 0;
        z-index: 888 !important;
    }

    .menu ul {
        width: 100%;
        vertical-align: top;
        padding-top: 110px;
        text-align: center;
    }

    .menu ul li {
        display: inline-block;
        height: auto;
        margin: 0 auto;
        text-align: center;
        margin: 10px 0 !important;
        padding: 0 !important;
    }
    .menu ul li a {
        display: inline-block;
        font-size: 12px;
        padding: 6px 0 4px 0;
        margin-bottom: 6px;
        
        color: #000 !important;
        
        -webkit-text-shadow: 2px 2px 5px rgba(0,0,0,0);
        -moz-text-shadow:    2px 2px 5px rgba(0,0,0,0);
        -ms-text-shadow:     2px 2px 5px rgba(0,0,0,0);
        -o-text-shadow:      2px 2px 5px rgba(0,0,0,0);
        text-shadow:         2px 2px 5px rgba(0,0,0,0);
    }
    .menu ul li a:hover,
    .menu ul li.active a {
        border-bottom: 2px rgba(0,0,0,0.9) solid;
    }
    
    .menu ul li:nth-child(7) a {
        margin-top: 15px;
    }
    
    .menu ul li.link {
        margin: 0 !important;
    }
    .menu ul li.link a {
        padding: 0 0 0 0;
    }
    .menu ul li.link a img {
        height: 70px;
    }
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
    .menu-btn {
        float: right;
        margin-right: 3%;
    }
    #header .nav-block {
        margin-top: 0;
    }
    .menu ul.nav {
        margin-top: 0px;
    }
    .menu ul.nav li {
        width: 100%;
    }
    .menu ul.nav.toppage {
        text-align: center;
    }
    .menu ul.nav.toppage li {
        display: block;
        width: auto;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    .menu ul {
        margin-top: -8px;
    }
    .menu ul li {
        padding: 0 8px;
    }
    /*.menu ul li a {
        font-size: 11px;
    }*/
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
    .menu ul.nav {
        margin-top: 30px;
        text-align: center;
    }
    .menu ul.nav li {
        width: 20%;
        margin: 5px 0 !important;
        text-align: center;
    }
    .menu ul.nav li.icon {
        display: block;
        width: 100%;
        text-align: center;
    }
}
/* - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px)
              and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - - - */
    .menu ul.nav li.icon {
        margin-top: 30px !important;
        display: inline-block;
        width: 30%;
        text-align: center;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    .menu-btn span img {
        top: 21px;
        right: 15px;
    }
    .open .menu-btn span:after {
        right: 20px;
    }
    .menu-btn {
        margin-top: 3.5px;
        margin-right: 15px;
    }
    .menu ul.nav {
        margin-top: 0;
    }
    .menu ul.nav li {
        width: 100%;
    }
    .menu ul.nav li.icon {
        margin-top: 30px !important;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .menu ul li {
        margin: 5px 0 !important;
        padding: 0 !important;
    }
    .menu ul li a {
        padding: 3px 0 3px 0;
        margin-bottom: 15px;
        font-size: 15px;
    }
}


/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
    /*cursor: url(../images/logo.png),auto;*/
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}




/*------------------------------------------*/
/*                 #home                    */
/*------------------------------------------*/
#home {
    position: relative;
    margin: 0;
    margin-top: 80px;
    width: 100vw;
    height: calc(100vh - 80px);
    
    background-image: url(../images/home_01.jpg);
    background-size: cover;
    background-position: top center;
    
    overflow: hidden;
    
    /*z-index: -1;*/
}
/*#home:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: ' ';
    background: rgba(0,0,0,0.15);
    z-index: 1;
}*/


#home .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 940px;
    max-width: 50%;
    min-width: 40%;
    z-index: 1;
}

/*--- h2-block ---*/
#home .h2-block {
    position: absolute;
    top: 15%;
    left: 3%;
    z-index: 2;
}

#home h2 {
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px rgba(255,255,255,0.4) solid;
    
    line-height: 1.55;
    letter-spacing: 4px;
    color: #fff;
    font-size: 53px;
}

#home p.en {
    display: block;
    margin-bottom: 18px;
    line-height: 1.0;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    font-size: 20px;
}

#home p.jp {
    display: block; 
    margin-top: 110px;
    line-height: 1.8;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    font-size: 26px;
}



#home a {
    position: absolute;
    top: 33.5%;
    right: 0;
    
    display: inline-block;
    
    z-index: 2;
}
#home a img {
    max-height: 300px;
}





/* - - - - - - - - - - - - - - - - - - - */
@media screen and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - - */
#home {
    height: 50vh;
    max-height: 50vh;
}
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#home h2 {
    letter-spacing: 3px;
    font-size: 45px;
}
#home p.jp {
    font-size: 25px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1370px) {
/* - - - - - - - - - - - - - - - - - - - */
#home h2 {
    font-size: 43px;
}
#home p.en {
    letter-spacing: 2px;
    font-size: 19px;
}
#home p.jp {
    font-size: 24px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1290px) {
/* - - - - - - - - - - - - - - - - - - - */
#home h2 {
    letter-spacing: 2px;
    font-size: 41px;
}
#home p.en {
    letter-spacing: 2px;
    font-size: 17px;
}
#home p.jp {
    font-size: 23px;
}
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#home {
    margin-top: 60px;
    height: calc(100vh - 60px);
}
#home .bg {
    max-width: 50%;
    min-width: 50%;
}
    
#home h2 {
    font-size: 32px;
}
#home p.en {
    letter-spacing: 2px;
    font-size: 16px;
}
#home p.jp {
    font-size: 22px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#home h2 {
    font-size: 32px;
}
#home .bg {
    max-width: 60%;
    min-width: 60%;
}
#home h2 {
    font-size: 29px;
}
#home p.en {
    letter-spacing: 2px;
    font-size: 15px;
}
#home p.jp {
    margin-top: 80px;
    font-size: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#home {
    height: 130vh;
}
#home .h2-block {
    top: 13%;
    left: 3%;
}
#home p.jp {
    margin-top: 30px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#home {
    height: 50vh;
    max-height: 400px;
    min-height: 400px;
}
#home .bg {
    height: 100%;
    width: 65%;
    max-width: 65%;
    min-width: 65%;
}
#home .h2-block {
    top: 25px;
    left: 5%;
}
    
#home h2 {
    display: inline-block;
    padding-bottom: 15px;
    line-height: 1.45;
    letter-spacing: 3.2px;
    font-size: 25px;
}
#home h2 span {
    display: block;
}
#home p.en {
    margin-bottom: 13px;
    letter-spacing: 1px;
    font-size: 9px;
}
#home p.jp {
    margin-top: 25px;
    letter-spacing: 1px;
    line-height: 2.1;
    font-size: 12px;
}
}




/*------------------------------------------*/
/*                 #home-2                  */
/*------------------------------------------*/
#home-2 {
    position: relative;
    
    margin-top: 80px;
    
    width: 100%;
    height: 65vh;
    max-height: 550px;
    text-align: center;
    /*overflow: hidden;*/
    
    background-size: cover;
    background-position: bottom center;
}


#home-2.service {
    background-image: url(../images/home-2_service.jpg);
}
#home-2.company {
    background-image: url(../images/home-2_company.jpg);
}
#home-2.faq {
    background-image: url(../images/home-2_faq.jpg);
    background-position: top center;
}
#home-2.contact {
    background-image: url(../images/home-2_contact.jpg);
}


/*--- p.title ---*/
#home-2 p.title {
    position: absolute;
    left: 5%;
    bottom: 25%;
    
    display: block;
    text-align: left;
    line-height: 1.3;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 100;
    font-size: 50px;
    
    z-index: 2;
}
#home-2 p.title span {
    display: block;
    margin-bottom: 13px;
    text-transform: capitalize;
    letter-spacing: 1.6px;
    font-size: 20px;
}


/*--- h2 ---*/
#home-2 h2 {
    display: block;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform:         translate(-50%);
    -ms-transform:     translate(-50%);
    -moz-transform:    translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform:      translate(-50%);
    
    padding: 35px 0 0 0;
    background: #fff;
    width: 800px;
    max-width: 80%;
    
    color: #000;
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 30px;
    
    z-index: 2;
}
#home-2 h2 span {
    display: block;
    margin-bottom: 7px;
    text-transform: uppercase;
    
    text-transform: capitalize;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 50px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#home-2 p.title {
    font-size: 45px;
}
#home-2 h2 {
    bottom: -65px;
    width: 550px;
    max-width: 80%;
    padding: 30px 0 0 0;
    font-size: 25px;
}
#home-2 h2 span {
    font-size: 45px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#home-2 {
    margin-top: 60px;
    height: 50vh;
}
#home-2 p.title {
    font-size: 40px;
}
#home-2 h2 {
    bottom: -60px;
    width: 500px;
    max-width: 80%;
    padding: 25px 0 0 0;
    font-size: 22px;
}
#home-2 h2 span {
    font-size: 37px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - - */
#home-2 {
    height: 35vh;
    max-height: 40vh;
}
#home-2 p.title {
    bottom: 35%;
    font-size: 40px;
}
#home-2 h2 {
    bottom: -50px;
    width: 400px;
    max-width: 80%;
    padding: 25px 0 0 0;
    font-size: 23px;
}
#home-2 h2 span {
    font-size: 40px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#home-2 {
    height: 100vh;
    max-height: 100vh;
}
#home-2 p.title {
    bottom: 35%;
    font-size: 30px;
}
#home-2 h2 {
    bottom: -50px;
    width: 400px;
    max-width: 80%;
    padding: 20px 0 0 0;
    font-size: 20px;
}
#home-2 h2 span {
    font-size: 30px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#home-2 {
    height: 40vh;
    max-height: 400px;
}
#home-2 p.title {
    bottom: 35%;
    font-size: 28px;
}
#home-2 p.title span {
    font-size: 18px;
    
}
#home-2 h2 {
    bottom: -50px;
    width: 400px;
    max-width: 80%;
    padding: 20px 0 0 0;
    font-size: 20px;
}
#home-2 h2 span {
    font-size: 30px;
}
}






/*--- トップページ 専用 ---*/
/*------------------------------------------*/
/*                #topword                  */
/*------------------------------------------*/
#topword {
    position: relative;
    margin: 0 0 70px 0;
    text-align: center;
    
    z-index: 2;
} 
/* h3 */
#topword h3 {
    display: block;
    width: 70%;
    height: 80px;
    
    margin: 0 auto;
    margin-top: -80px;
    margin-bottom: 50px;
    padding: 20px 0 20px 0;
    text-align: center;
    background: #fff;
    
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    
    letter-spacing: 3.5px;
    font-weight: 100;
    font-size: 30px;
}

/* p */
#topword p {
    display: inline-block;
    text-align: left;
    line-height: 2.1;
    font-size: 18px;
}
#topword p span {
    display: block;
}



/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#topword h3 {
    letter-spacing: 2.5px;
    font-size: 25px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#topword h3 {
    height: 65px;
    margin-top: -65px;
    padding: 18px 0 20px 0;
    font-size: 21px;
}
#topword p {
    font-size: 17px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#topword h3 {
    height: 65px;
    margin-top: -65px;
    padding: 20px 0 20px 0;
    font-size: 18px;
}
#topword.toppage h3 {
    width: 90%;
    font-size: 25px;
}
#topword p {
    font-size: 16px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#topword h3 {
    width: 85%;
    font-size: 19px;
}
#topword p {
    font-size: 15px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#topword {
    padding: 20px 0 0 0;
}
    
    
#topword h3 {
    width: 85%;
    margin-top: -60px;
    line-height: 1.6;
    letter-spacing: 1.6px;
    font-size: 19px;
}
#topword h3 span {
    display: block;
}
#topword p {
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    
    line-height: 1.7;
    font-size: 15px;
}
#topword p span {
    display: inline;
}   
}






/*--- 下層ページ用 共通 ---*/
/*------------------------------------------*/
/*                #top-msg                  */
/*------------------------------------------*/
#top-msg {
    position: relative;
    margin: 130px 0 70px 0;
    text-align: center;
    
    z-index: 2;
}

/* p */
#top-msg p {
    display: inline-block;
    text-align: left;
    line-height: 2.1;
    font-size: 18px;
}
#top-msg p span {
    display: block;
}



/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-msg {
    margin: 120px 0 70px 0;
}
#top-msg p {
    font-size: 17px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-msg {
    margin: 110px 0 70px 0;
}
#top-msg p {
    font-size: 16px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#top-msg {
    margin: 100px 0 70px 0;
}
#top-msg p {
    font-size: 15px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-msg {
    margin: 100px 0 70px 0;
}
#top-msg.php {
    margin: 100px 0 30px 0 !important;
}
    
#top-msg p {
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    
    line-height: 1.7;
    font-size: 15px;
}
#top-msg p span {
    display: inline;
}   
}





/*------------------------------------------*/
/*                  COMMON                  */
/*------------------------------------------*/
/*----------------*/  
/*    h3.ver-1    */
/*----------------*/
h3.ver-1 {
    display: block;
    margin-bottom: 60px;
    text-align: left;
    line-height: 1.3;
    letter-spacing: 3px;
    font-weight: 550;
    font-size: 45px;
}
h3.ver-1 span {
    display: block;
    margin-bottom: 13px;
    letter-spacing: 1.6px;
    font-weight: 550;
    font-size: 20px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-1 {
    font-size: 40px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1366px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-1 {
    font-size: 37px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#contact-link h3.ver-1 {
    font-size: 32px;
}
#concept h3.ver-1 {
    font-size: 27px;
}
#concerns h3.ver-1 {
    font-size: 32px;
}
#top-contact h3.ver-1 {
    font-size: 30px;
}
#service-info h3.ver-1 {
    font-size: 30px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#contact-link h3.ver-1 {
    font-size: 24px;
}
#concept h3.ver-1 {
    font-size: 21px;
}
#concerns h3.ver-1 {
    font-size: 26px;
}
#top-contact h3.ver-1 {
    font-size: 24px;
}
#service-info h3.ver-1 {
    font-size: 30px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-1 {
    letter-spacing: 2px;
    font-size: 23px !important;
}
}




/*----------------*/  
/*    h3.ver-2    */
/*----------------*/
/*--- h3.ver-2 ---*/
h3.ver-2 {
    position: relative;
    display: block;
    margin-bottom: 60px;
    text-align: left;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 550;
    color: #000;
    font-size: 25px;
    /*
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}
h3.ver-2 span {
    position: relative;
    display: block;
    margin-bottom: 7px;
    margin-left: -0.55em;
    white-space: nowrap;
    letter-spacing: 2px;
    color: #000;
    font-size: 45px;
}
h3.ver-2 span::before {
    display: inline-block;
    content: '「';
    padding-right: 10px;
}
h3.ver-2 span::after {
    display: inline-block;
    content: '」';
    padding-left: 10px;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-2 span {
    font-size: 38px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-2 span {
    font-size: 33px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-2 span {
    letter-spacing: 1.6px;
    font-size: 30px;
}
h3.ver-2 span::before {
    padding-right: 5px;
}
h3.ver-2 span::after {
    padding-left: 5px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-2 {
    letter-spacing: 4px;
    line-height: 1;
    font-weight: normal;
    font-size: 18px;
}
h3.ver-2 span {
    margin-bottom: 7px;
    margin-left: -0.75em;
    letter-spacing: 2px;
    font-size: 25px;
}
h3.ver-2 span::before {
    padding-right: 7px;
}
h3.ver-2 span::after {
    padding-left: 7px;
}
}










/*-----------*/  
/*    btn    */
/*-----------*/  
.btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
}
.btn a {
    display: inline-block;
    width: 90%;
    max-width: 330px;
    background: #00407a;
    padding: 20px 0;
    border-radius: 100px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    font-weight: normal;
    color: #fff;
    font-size: 17px;
}


/* btn 共通 */
.btn.t-center {
    text-align: center;
}
.btn.t-left {
    text-align: left;
}
.btn.t-right {
    text-align: right;
}



/*-------------------------*/  
/*    img.section-title    */
/*-------------------------*/
img.section-title {
    display: inline-block;
    height: 140px;
    width: auto;
}
img.section-title.h-big {
    height: 178px;
}

img.section-title.t-left {
    float: left;
}
img.section-title.t-right {
    float: right;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
img.section-title {
    height: 120px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
img.section-title {
    height: 90px;
}
img.section-title.h-big {
    height: 120px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
img.section-title {
    height: 80px;
}
img.section-title.h-big {
    height: 100px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
img.section-title {
    height: 60px;
}
img.section-title.h-big {
    height: 80px;
}
img.section-title.t-right {
    float: left;
}
}



/*------------------------*/
/*    background color    */
/*------------------------*/
section.bg-1 {
    background: #f1efec;
} 
section.bg-2 {
    background-image: url(../images/bg-2.png);
    background-size: cover;
    background-position: top center;
} 





/*------------------------------------------*/
/*                #top-link                 */
/*------------------------------------------*/
#top-link {
    position: relative;
    margin: 90px 0 110px 0;
    padding: 0;
    text-align: center;
}

#top-link .inner {
    padding: 0 10px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-link {
    margin: -30px 0 50px 0;
}
#top-link .inner img {
    margin: 0 auto;
    margin-bottom: 5px;
}
}







/*------------------------------------------*/
/*              #service-info               */
/*------------------------------------------*/
#service-info {
    margin: 0 0 0 0;
    padding: 40px 0 70px 0;
}


#service-1,
#service-2,
#service-3 {
    float: left;
    width: 100%;
    padding-top: 40px;
    margin-top: -40px;
}





/*--- 　　　　　　　　 ---*/
/*--- タイトルブロック ---*/
/*--- 　　　　　　　　 ---*/

/* outer-1 */
#service-info .outer-1 {
    position: relative;
    margin: 240px 0 0 0;
}
#service-info .outer-1::before {
    position: absolute;
    top: -100px;
    left: 100px;
    right: 0;
    bottom: -60px;
    background: rgba(148,108,69,0.1);
    content: '';
}

/* inner-img */
#service-info .outer-1 .inner-img {
    padding: 0;
    height: 650px;
    background-size: cover;
    background-position: center center;
}
#service-info .outer-1 .inner-img.img-1 {
    background-image: url(../images/service-info_1.jpg);
}
#service-info .outer-1 .inner-img.img-2 {
    background-image: url(../images/service-info_2.jpg);
}
#service-info .outer-1 .inner-img.img-3 {
    background-image: url(../images/service-info_3.jpg);
}

/* inner-text */
#service-info .outer-1 .inner-text {
    position: relative;
    display: block;
    text-align: left;
    background: none;
    padding: 0 100px;
}

/* number */
#service-info .outer-1 img.num {
    position: absolute;
    display: inline-block;
    top: -170px;
    left: 100px;
    max-width: 90%;
}

/* h3 */
#service-info .outer-1 h3 {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    line-height: 1.5;
    font-weight: normal;
    font-size: 23px;
}

/* h4 */
#service-info .outer-1 h4 {
    display: block;
    width: 100%;
    margin: 40px 0;
    width: 100%;
    font-weight: 550;
    font-size: 25px;
}

/* p */
#service-info .outer-1 p {
    display: block;
    margin-bottom: -10px;
    width: 100%;
    line-height: 2.0;
    font-weight: normal;
}




/*--- 　　　　　　 ---*/
/*--- 説明ブロック ---*/
/*--- 　　　　　　 ---*/

/* outer-2 */
#service-info .outer-2 {
    position: relative;
    margin: 150px 0 0 0;
}

/* inner-l */
#service-info .inner-l {
    padding: 0 40px 0 0;
}
/* inner-l */
#service-info .inner-r {
    margin: 90px 0 0 0;
    padding: 0 0 0 30px;
}

/* dl dt dd */
#service-info .outer-2 dl {
    display: block;
    width: 100%;
}
#service-info .outer-2 dl dt {
    display: block;
    width: 100%;
    text-align: left;
    background: #00407a;
    background: #434da2;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    font-weight: 550;
    font-size: 22px;
}
#service-info .outer-2 dl dd {
    display: block;
    width: 100%;
    /*background: #fff;*/
    padding: 12px 15px;
    margin-bottom: 15px;
    line-height: 1.5;
    
    /*-- 折返し --*/
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}




/*--- 　　　　　　　 ---*/
/*--- フローブロック ---*/
/*--- 　　　　　　　 ---*/

#service-info .flow {
    margin: 90px 0 90px 0;
    padding: 90px 0 90px 0;
    background: rgba(237,232,226,0.9);
}

/* .outer */
#service-info .flow .outer {
    position: relative;
    padding: 15px 0 15px 0;
    border-bottom: 1px rgba(0,0,0,0.3) solid;
}
#service-info .flow .outer:first-of-type {
    border-top: 1px rgba(0,0,0,0.3) solid;
}

/* img */
#service-info .flow img.step {
    position: absolute;
    top: 15px;
    left: 0;
    display: inline-block;
    width: 80px;
    height: auto;
    float: left;
}

/* h4 */
#service-info .flow h4 {
    display: block;
    margin-top: 0.8em;
    margin-left: 100px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1;
    font-weight: 550;
    font-size: 23px;
}

/* .inner */
#service-info .flow .inner {
    display: table;
    width: 100%;
    padding-left: 100px;
}

/* p */
#service-info .flow p.p-top {
    display: block;
    margin-bottom: 15px;
}

/* a img */
#service-info .flow .inner a img {
    display: inline-block;
    width: 31%;
    max-width: 230px;
    padding: 0 10px 0 0;
}





/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
/*--- タイトルブロック ---*/
#service-info .outer-1 .inner-img {
    height: 450px;
}
#service-info .outer-1 .inner-text {
    padding: 0 60px;
}
#service-info .outer-1 img.num {
    top: -170px;
    left: 60px;
    max-width: 85%;
}
#service-info .outer-1 h4 {
    letter-spacing: 1.6px;
    font-size: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
/*--- タイトルブロック ---*/
#service-info .outer-1 .inner-img {
    height: 400px;
}
#service-info .inner-l {
    padding: 0 0 0 0;
}
#service-info .outer-2 dl dt {
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 18px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
/*--- タイトルブロック ---*/
#service-info .outer-1 .inner-img {
    height: 450px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#service-info {
    margin: 0 0 0 0;
}
    
/*--- タイトルブロック ---*/
#service-info .outer-1 {
    margin: 140px 0 0 0 !important;
}
#service-info .outer-1 .inner-img {
    height: 350px;
}
#service-info .outer-1::before {
    top: -60px;
    left: 30px;
    right: 0;
    bottom: -60px;
}
#service-info .outer-1 .inner-text {
    margin-top: 80px;
    padding: 0 15px 0 55px;
}
#service-info .outer-1 h3 {
    margin-bottom: 0;
}
#service-info .outer-1 h4 {
    margin: 30px 0;
    letter-spacing: 0.5px;
    font-size: 16px;
}
#service-info .outer-1 img.num {
    top: -130px;
    left: 45px;
    width: 120px;
    max-width: 120px;
}
#service-info .outer-1 p {
    margin-bottom: -20px;
    line-height: 1.8;
}
    
    
/*--- 説明ブロック ---*/
#service-info .outer-2 {
    margin: 100px 0 0 0;
}
#service-info .outer-2 h3 {
    margin-bottom: 20px;
}
#service-info .inner-l {
    padding: 0 0 0 0;
}
#service-info .inner-r {
    margin: 5px 0 0 0;
    padding: 0 0 0 0;
}
#service-info .outer-2 dl dt {
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 18px;
}
#service-info .outer-2 dl dd {
    padding: 10px 10px;
    margin-bottom: 10px;
}
    
    
/*--- フローブロック ---*/
#service-info .flow {
    margin: 40px 0 0 0;
    padding: 40px 15px 40px 15px;
}
#service-info .flow .outer {
    padding: 10px 0 10px 0;
}
#service-info .flow h3 {
    margin-bottom: 25px;
}
#service-info .flow img.step {
    width: 50px;
}
#service-info .flow h4 {
    margin-top: 0.8em;
    margin-left: 65px;
    margin-bottom: 15px;
    font-size: 18px;
}
#service-info .flow .inner {
    display: block;
    padding-left: 65px;
    line-height: 1.5;
}
#service-info .flow .inner a img {
    display: block;
    width: 80%;
    max-width: 80%;
    padding: 0 0 0 0;
    margin-bottom: 8px;
}
}







/*------------------------------------------*/
/*                #concept                  */
/*------------------------------------------*/
#concept {
    position: relative;
    margin-top: 130px;
    padding: 40px 0 90px 0;
    text-align: left;
}

#concept .outer {
    margin-top: 60px;
}

#concept .inner-r {
    padding: 0 0 0 60px;
}


/* ul.ul-2 */
#concept ul {
    display: block;
    width: 100%;
}
#concept ul li {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 18px;
    margin-bottom: 25px;
    border-bottom: 1px rgba(0,0,0,0.25) solid;
}

#concept ul li dl {
    display: block;
    width: 100%;
}
#concept ul li dl dt {
    display: block;
    width: 100%;
    /*white-space: nowrap;*/
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.4;
    font-weight: 550;
    font-size: 23px;
}
#concept ul li dl dt::before {
    display: inline-block;
    float: left;
    margin-top: -1px;
    margin-right: 8px;
    content: url(../images/reten.png);
}
#concept ul li dl dd {
    display: block;
    width: 100%;
    padding-left: 4em;
    text-align: left;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#concept ul li dl dt {
    font-size: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#concept ul li dl dt {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 18px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#concept h3 {
    font-size: 25px;
}
#concept p.en {
    margin-bottom: 30px;
    font-size: 18px;
}
#concept h4 {
    margin-bottom: 15px;
    font-size: 16px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#concept {
    margin-top: 60px;
    padding-bottom: 60px;
}
#concept .inner-l {
    margin-top: -40px;
}
#concept .inner-r {
    padding: 0 0 0 0;
}
#concept h3 {
    margin-bottom: 30px;
}
#concept ul li dl dt {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 19px;
}
#concept ul li dl dt span {
    display: block;
}
#concept ul li dl dt::before {
    margin-top: 5px;
    margin-right: 10px;
    content: url(../images/reten_sp.png);
}
#concept .btn.t-right {
    margin-top: 40px;
    text-align: center;
}
}




/*------------------------------------------*/
/*                #concerns                 */
/*------------------------------------------*/
#concerns {
    position: relative;
    padding: 40px 0 120px 0;
    text-align: left;
}

#concerns p.p-top {
    margin-bottom: 40px;
    line-height: 1;
    font-weight: 550;
    font-size: 23px;
}

#concerns .inner {
    padding: 0 35px;
    text-align: center;
}

#concerns h4 {
    display: inline-block;
    height: 140px;
    margin: 25px 0 10px 0;
    text-align: left;
    line-height: 1.4;
    font-weight: 550;
    font-size: 23px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#concerns .inner {
    padding: 0 25px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1366px) {
/* - - - - - - - - - - - - - - - - - - - */
#concerns h4 {
    font-size: 20px;
    height: 125px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#concerns h4 {
    height: 110px;
    margin: 25px 0 10px 0;
    font-size: 18px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#concerns .inner {
    padding: 0 7.5px;
}
#concerns h4 {
    height: 110px;
    margin: 25px 0 10px 0;
    font-size: 15.5px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#concerns {
    padding: 40px 0 90px 0;
}
#concerns .outer {
    margin-top: 30px;
}
#concerns .inner {
    padding: 0 15px;
}
#concerns h3 {
    margin-bottom: 30px;
}
#concerns h4 {
    height: auto;
    line-height: 1.4;
    margin: 10px 0 15px 0;
    font-size: 18px;
}
#concerns p.p-top {
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-align: center;
    font-size: 18px;
}
#concerns p.p-low {
    margin-bottom: 30px;
}
#concerns p.p-low.no-mar {
    margin-bottom: -20px;
}
#concerns img {
    width: 80%;
    margin: 0 auto;
}
}




/*------------------------------------------*/
/*              #top-service                */
/*------------------------------------------*/
#top-service {
    margin: 0 0 0 0;
}


/* outer */
#top-service .outer {
    height: 550px;
    max-height: 65vh;
    /*margin-bottom: 90px;*/
}



/* inner-img */
#top-service .inner-img {
    height: 100%;
    background-size: cover;
    background-position: bottom center;
}
#top-service .inner-img.img-1 {
    background-image: url(../images/top_service_1.jpg);
}
#top-service .inner-img.img-2 {
    background-image: url(../images/top_service_2.jpg);
}
#top-service .inner-img.img-3 {
    background-image: url(../images/top_service_3.jpg);
}



/* inner-text */
#top-service .inner-text {
    display: table;
    height: 100%;
    text-align: center;
}
#top-service .inner-text.vol1 {
    background: #fff;
}
#top-service .inner-text.vol2 {
    background: #fff;
}
#top-service .inner-text.vol3 {
    background: #fff;
}
#top-service .inner-text .table {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    padding: 0;
}

/* h4 */
#top-service h4 {
    letter-spacing: 3px;
    line-height: 1;
    color: #000;
    font-weight: 550;
    font-size: 40px;
}
#top-service h4 span {
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1.6px;
    font-size: 18px;
}




/* text-box */
#top-service .text-box {
    display: block;
    margin-top: 20px;
    text-align: center;
}

/* p.info */
#top-service p.info {
    display: inline-block;
    width: auto;
    margin: 30px 0 0 0;
    text-align: center;
    line-height: 2.2;
    font-weight: 100;
    color: #000;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}

/* p.link */
/*#top-service a {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
    background: rgba(0,0,0,1);
    background: rgba(255,255,255,0.2);
    padding: 15px 0;
    text-align: center;
    font-weight: normal;
    color: #000;
}*/



/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-service .outer {
    height: 400px;
    max-height: 65vh;
}
#top-service .inner-img.img-2 {
    background-position: center center;
}
#top-service h4 {
    font-size: 28px;
}
#top-service h4 span {
    font-size: 16px;
}
}
/* - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - - */
#top-service .pc {
    display: none !important;
}
#top-service .sp {
    display: block !important;
}
#top-service .outer {
    display: table;
    height: auto;
    max-height: auto;
    margin-bottom: 30px;
    padding: 0 30px !important;
}
#top-service .inner-img {
    height: 350px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
#top-service .text-box {
    margin-bottom: -35px;
}
#top-service .inner-text {
    display: table;
    height: auto;
    max-height: auto;
    text-align: center;
    padding: 50px 0 !important;
}
#top-service h4 {
    font-size: 30px;
}
#top-service h4 span {
    font-size: 23px;
}
#top-service p.info {
    width: 80%;
    margin: 30px 0 30px 0;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-service {
    margin-bottom: 30px;
}
#top-service .outer {
    padding: 0 15px 15px 15px!important;
    border-bottom: 1px rgba(0,0,0,0.3) solid;
    margin-bottom: 45px;
}
#top-service .outer:last-of-type {
    padding: 0 15px 10px 15px!important;
    border-bottom: none;
    margin-bottom: 0;
}
#top-service .inner-img {
    height: 300px;
}
#top-service .inner-text {
    padding: 0 0 30px 0 !important;
}
#top-service .text-box {
    margin-bottom: -55px;
}
#top-service h4 {
    margin-bottom: -10px;
    letter-spacing: 2px;
    line-height: 1;
    font-size: 20px;
}
#top-service h4 span {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}
#top-service p.info {
    width: 100%;
    margin: 0;
    padding: 15px;
    line-height: 1.7;
}
}




/*------------------------------------------*/
/*               #top-contact               */
/*------------------------------------------*/
#top-contact {
    position: relative;
    margin-top: 0 0 0 0;
    padding: 40px 0 90px 0;
    text-align: left;
}

#top-contact .inner-r {
    padding-left: 40px;
}

#top-contact p.p-top {
    margin-bottom: 35px;
    font-weight: normal;
    font-size: 20px;
}

/* ul.ul-1 */
#top-contact ul.ul-1 {
    display: block;
    width: 100%;
}
#top-contact ul.ul-1 li {
    position: relative;
    display: block;
    padding-left: 2.9em;
    width: 100%;
    text-align: left;
    line-height: 2.6;
    font-weight: 550;
    font-size: 23px;
}
#top-contact ul.ul-1 li::before {
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    content: url(../images/reten.png);
}


/* ul.ul-2 */
#top-contact ul.ul-2 {
    display: block;
    width: 100%;
}
#top-contact ul.ul-2 li {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 18px;
    margin-bottom: 25px;
    border-bottom: 1px rgba(0,0,0,0.25) solid;
}

#top-contact ul.ul-2 li dl {
    display: block;
    width: 100%;
}
#top-contact ul.ul-2 li dl dt {
    position: relative;
    display: block;
    padding-left: 2.9em;
    width: 100%;
    white-space: nowrap;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.4;
    font-weight: 550;
    font-size: 23px;
}
#top-contact ul.ul-2 li dl dt::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    float: left;
    margin-top: 1px;
    content: url(../images/reten.png);
}
#top-contact ul.ul-2 li dl dd {
    display: block;
    width: 100%;
    padding-left: 4.3em;
    text-align: left;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-contact ul.ul-1 li {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 2.4;
    font-weight: 550;
    font-size: 20px;
}
#top-contact ul.ul-2 li dl dt {
    font-size: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-contact ul.ul-1 li {
    margin-bottom: 15px;
    padding-left: 2.4em;
    line-height: 1.5;
    font-size: 18px;
}
#top-contact ul.ul-1 li::before {
    top: 3px;
    margin-right: 5px;
    content: url(../images/reten_sp.png);
}
    
    
#top-contact ul.ul-2 li dl dt {
    padding-left: 2.4em;
    white-space: normal;
    font-size: 18px;
}
#top-contact ul.ul-2 li dl dt::before {
    content: url(../images/reten_sp.png);
}
#top-contact ul.ul-2 li dl dd {
    padding-left: 3em;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#top-contact {
    padding: 40px 0 60px 0;
}
#top-contact .inner-r {
    padding-left: 0;
    margin-top: -20px;
}
    
    
#top-contact p.p-top {
    margin-top: -15px;
    margin-bottom: 35px;
    letter-spacing: 1.2px;
    font-size: 18px;
}
    
    
#top-contact ul.ul-1 li {
    margin-bottom: 15px;
    padding-left: 2.4em;
    line-height: 1.5;
    font-size: 18px;
}
#top-contact ul.ul-1 li::before {
    top: 3px;
    margin-right: 5px;
    content: url(../images/reten_sp.png);
}
    
    
#top-contact ul.ul-2 {
    margin-top: -20px;
}
#top-contact ul.ul-2 li dl dt {
    padding-left: 2.4em;
    white-space: normal;
    font-size: 18px;
}
#top-contact ul.ul-2 li dl dt::before {
    content: url(../images/reten_sp.png);
}
#top-contact ul.ul-2 li dl dd {
    padding-left: 3em;
}
    
    
#top-contact .btn {
    margin-top: 15px;
}
}







/*------------------------------------------*/
/*                   #news                  */
/*------------------------------------------*/
#news-t {
    padding-top: 70px;
    margin-top: -70px;
}

#news {
    margin-top: 90px;
    margin-bottom: 110px;
}

#news h3 {
    margin-bottom: 35px;
}


#news dl {
    display: block;
    width: 100%;
    border-bottom: 1px rgba(0,0,0,0.2) solid;
}
#news dl dt {
    display: inline-block;
    width: 18%;
    float: left;
    text-align: left;
    border-top: 1px rgba(0,0,0,0.2) solid;
    padding: 20px 0;
    color: rgba(0,0,0,0.5);
    line-height: 2.0;
}
#news dl dd {
    display: inline-block;
    width: 82%;
    text-align: left;
    border-top: 1px rgba(0,0,0,0.2) solid;
    padding: 20px 0;
    line-height: 2.0;
}
#news dl a:first-of-type dt,
#news dl a:first-of-type dd {
    border: none;
}
#news dl a {
    color: #111;
}
#news dl span {
    margin-left: -0.3em;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#news {
    margin-top: 60px;
    margin-bottom: 70px;
}
#news h3 {
    margin-bottom: 50px;
}
#news dl dt {
    display: block;
    width: 100%;
    float: none;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 0;
    font-size: 14px;
}
#news dl dd {
    display: block;
    width: 100%;
    text-align: left;
    border-top: none;
    padding-top: 0;
    padding-bottom: 5px;
    font-size: 14px;
}
}





/*------------------------------------------*/
/*                 #owner-msg               */
/*------------------------------------------*/
#owner-msg {
    margin: 100px 0 0 0;
    padding: 40px 0 110px 0;
    text-align: left;
}

#owner-msg .outer {
    margin-top: 80px;
}

#owner-msg .inner-l {
    display: block;
    padding: 0;
}
#owner-msg .inner-r {
    display: block;
    padding: 0;
}
#owner-msg .inner-r .box {
    padding: 0 60px;
}


#owner-msg h3 {
    margin-bottom: 70px;
    /*margin-top: -30px;*/
}



/* オーナー挨拶 */
#owner-msg p.msg-title {
    display: block;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: normal;
    font-size: 28px;
}
#owner-msg p.msg {
    font-weight: normal;
    line-height: 1.8;
}

#owner-msg p.name {
    margin-top: 60px;
    text-align: right;
    line-height: 1.6;
    letter-spacing: 2.0px;
    font-weight: normal;
    font-size: 25px;
}
#owner-msg p.name span {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
}




/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#owner-msg p.msg-title {
    font-size: 20px;
}
#owner-msg p.name {
    font-size: 21px;
}
#owner-msg p.name span {
    margin-left: 20px;
    font-size: 14px;
}
#owner-msg p.name small {
    padding-right: 2.5em;
    font-size: 14px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#owner-msg .outer::before {
    top: -90px;
    left: 110px;
    right: 0;
    bottom: -45px;
}
#owner-msg .inner-r .box {
    padding: 0 40px;
}
#owner-msg p.msg-title {
    font-size: 18px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#owner-msg .outer::before {
    top: -60px;
    left: 50px;
    right: 0;
    bottom: -60px;
}
#owner-msg .inner-l {
    padding-right: 50px;
}
#owner-msg .inner-r .box {
    padding: 90px 40px 0 90px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
#owner-msg .outer::before {
    top: -60px;
    left: 50px;
    right: 0;
    bottom: -980px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#owner-msg {
    margin-top: 30px;
    margin-bottom: -140px;
}
#owner-msg .outer {
    margin-top: 30px;
}
#owner-msg .outer::before {
    top: -50px;
    left: 50px;
    right: 0;
    bottom: -270px;
    bottom: -430px;
}
#owner-msg .inner-l {
    padding-right: 0;
}
#owner-msg .inner-r {
    margin-top: -50px;
}
#owner-msg .inner-r .box {
    padding: 90px 0;
}
#owner-msg h3 {
    margin-bottom: 30px;
}
#owner-msg p.msg-title {
    font-size: 16px;
}
#owner-msg p.msg {
    line-height: 1.6;
}
#owner-msg p.name {
    margin-top: 30px;
    font-size: 18px;
}
#owner-msg p.name span {
    font-size: 14px;
}
}





/*------------------------------------------*/
/*             #company-profile             */
/*------------------------------------------*/
#company-profile {
    margin-top: 0 0 0 0;
    padding: 40px 0 140px 0;
}



#company-profile h3 {
    margin-top: 110px;
}



/*--- table ---*/
#company-profile table {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px rgba(0,0,0,0.3) solid;
}
#company-profile table th {
    width: 23%;
    vertical-align: top;
    padding: 15px 0;
    /*background: rgba(0,0,0,0.1);*/
    border-top: 1px rgba(0,0,0,0.3) solid;
    text-align: left;
}
#company-profile table td {
    width: 77%;
    vertical-align: top;
    padding: 15px 0;
    padding-left: 1.5em;
    padding-right: 15px;
    /*background: rgba(0,0,0,0.04);*/
    border-top: 1px rgba(0,0,0,0.3) solid;
    border-left: none;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
#company-profile table tr:first-of-type th,
#company-profile table tr:first-of-type td {
    border-top: none;
}
#company-profile table td a {
    display: inline-block;
}

/*--- ul li ---*/
#company-profile ol {
    display: block;
    width: 100%;
}
#company-profile ol li {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 3px;
    list-style-type: none;
    counter-increment: cnt;
    padding-left: 1.7em;
}
#company-profile ol li::before {
    position: absolute;
    left: -1em;
    display: inline-block;
    content: "【"counter(cnt)"】";
}


/*--- pr-block ---*/
#company-profile .pr-block {
    margin-top: 80px;
    padding: 30px;
    border: 1px rgba(0,0,0,0.1) solid;
    background: rgba(143,101,82,0.18);
    background: #fff;
    border-radius: 10px;
    text-align: center;
}
#company-profile .pr-block h4 {
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
    color: #ff0000;
    font-size: 18px;
}
#company-profile .pr-block .p-box {
    display: block;
    width: 100%;
    text-align: center;
}
#company-profile .pr-block p {
    display: inline-block;
    text-align: left;
    line-height: 2.5;
}




#company-profile iframe {
    margin-top: 90px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#company-profile .pr-block h4 {
    font-size: 16px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#company-profile {
    padding: 40px 0 80px 0;
}
#company-profile iframe {
    height: 350px;
}
#company-profile table th {
    padding: 10px 0;
}
#company-profile table td {
    padding: 10px 5px;
}
#company-profile table td span {
    display: block;
}
#company-profile iframe {
    margin-top: 60px;
}
    
#company-profile h3 {
    margin-top: 40px;
    margin-bottom: 30px;
}
    
#company-profile .pr-block {
    margin-top: 60px;
    padding: 30px 15px;
    border-radius: 8px;
}
#company-profile .pr-block h4 {
    font-size: 16px;
}
#company-profile .pr-block h4 span {
    display: block;
}
#company-profile .pr-block p {
    line-height: 2.2;
}
}



/*------------------------------------------*/
/*                    #faq                  */
/*------------------------------------------*/
#faq {
    margin: 110px 0 0 0;
    padding: 40px 0 140px 0;
}

/* .outer-1 */
#faq .outer-1 {
    margin-top: 30px;
}

/* h3 */
#faq h3 {
    margin-bottom: 50px;
}

/* inner */
#faq .inner-l {
    padding: 0 15px 0 0;
    margin-bottom: 30px;
}
#faq .inner-r {
    padding: 0 0 0 15px;
    margin-bottom: 30px;
}

/* dl dt dd */
#faq dl {
    display: block;
    width: 100%;
}
#faq dl dt {
    display: block;
    width: 100%;
    text-align: left;
    padding: 26px 15px 26px 15px;
    background: #00407a;
    letter-spacing: 1.4px;
    line-height: 1.5;
    color: #fff;
    font-weight: normal;
    font-size: 20px;
}
#faq dl dt::before {
    display: block;
    margin-right: 15px;
    float: left;
    content: "Q";
    margin-top: -0.25em;
    font-weight: 100;
    font-size: 28px;
    
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#faq dl dt span {
    display: block;
    padding-left: 2.0em;;
}
#faq dl dd {
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 15px;
    background: #fff;
    color: #000;
}
#faq dl dd::before {
    display: block;
    margin-right: 15px;
    float: left;
    content: "A";
    margin-top: -0.25em;
    font-weight: 100;
    font-size: 28px;
    
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#faq dl dd span {
    display: block;
    padding-left: 2.5em;
}


/* .outer-2 */
#faq .outer-2 {
    margin-top: 50px;
    text-align: center;
}

/* p */
#faq .outer-2 p {
    display: inline-block;
    text-align: left;
}
#faq .outer-2 p strong {
    display: block;
    margin-bottom: 15px;
    font-weight: 550;
    font-size: 20px;
}


/* .link-box */
#faq .link-box {
    display: block;
    margin-top: 65px;
    text-align: center;
}
#faq .link-box img {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    padding: 0 5px;
}



/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#faq dl dt {
    letter-spacing: 1.4px;
    font-size: 18px;
}
    
#faq .line-1 dl dd {
    height: 150px;
    padding-bottom: 0;
}
#faq .line-2 dl dd {
    height: 180px;
    padding-bottom: 0;
}
#faq .line-3 dl dt {
    height: 85px;
    padding-top: 15px;
    padding-bottom: 0;
}
#faq .line-3 dl dd {
    height: 130px;
    padding-bottom: 0;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#faq .line-1 dl dd {
    height: 190px;
    padding-bottom: 0;
}
#faq .line-2 dl dd {
    height: 260px;
    padding-bottom: 0;
}
#faq .line-3 dl dt {
    height: 130px;
    padding-bottom: 0;
}
#faq .line-3 dl dd {
    height: 180px;
    padding-bottom: 0;
}
#faq .link-box img {
    float: left;
    max-width: 33%;
    padding: 0 5px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#faq {
    margin: -20px 0 0 0;
    padding: 40px 0 80px 0;
}
#faq .inner-l {
    padding: 0 0 0 0;
    margin-bottom: 15px;
}
#faq .inner-r {
    padding: 0 0 0 0;
    margin-bottom: 15px;
}
#faq .outer-2 {
    margin-top: 20px;
}
#faq dl dt {
    height: auto !important;
    padding: 15px 10px 15px 10px;
    letter-spacing: 1.2px;
    line-height: 1.5;
    font-size: 16px;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
#faq dl dt::before {
    margin-right: 10px;
    margin-top: -0.30em;
    font-size: 25px;
}
#faq .line-3 dl dt {
    height: 130px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.4;
}
#faq dl dd {
    height: auto !important;
    padding: 15px 10px 15px 10px !important;
    letter-spacing: 1.2px;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
#faq dl dd::before {
    margin-right: 10px;
    margin-top: -0.25em;
    font-size: 25px;;
}
#faq .link-box {
    margin-top: 30px;
}
#faq .link-box img {
    display: block;
    float: none;
    max-width: 75%;
    padding: 0 0;
    margin: 0 auto;
    margin-bottom: 9px;
}
#faq .outer-2 p strong {
    font-size: 16px;
}
}





/*------------------------------------------*/
/*                 #privacy                 */
/*------------------------------------------*/
#privacy {
    position: relative;
    margin: 80px 0 0 0;
    padding: 100px 0 130px 0;
    text-align: left;
}

#privacy p {
    margin-top: 60px;
    line-height: 1.8;
}
#privacy ul {
    margin-top: 40px;
}
#privacy ul li {
    display: list-item;
    list-style: decimal !important;
    margin-left: 1.6em;
    line-height: 1.8;
    margin-bottom: 30px;
    
    text-align: justify !important;
    text-justify: inter-ideograph !important;
    word-break: break-all;
}


#privacy ol {
    display: block;
    width: 100%;
    margin-top: 15px;
}
#privacy ol li {
    display: list-item;
    list-style: disc !important;
    margin-left: 1.6em;
    line-height: 1.8;
    margin-bottom: 0;
}


#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 {
    display: inline-block;
    padding: 3px 3px;
    border-bottom: 1px rgba(0,0,0,0.2) solid;
}
#privacy dl dd a:hover {
    opacity: 1;
    border-bottom: 1px rgba(0,0,0,1) solid;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#privacy {
    margin: 60px 0 0 0;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#privacy {
    margin: 30px 0 60px 0;
    padding: 70px 0 60px 0;
}
}




/*------------------------------------------*/
/*                 #sitemap                 */
/*------------------------------------------*/
#sitemap {
    position: relative;
    margin: 80px 0 0 0;
    padding: 100px 0 130px 0;
    text-align: left;
}


#sitemap dl {
    text-align: left;
    margin-top: 40px;
}
#sitemap dl dt {
    letter-spacing: 2px;
    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;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}

#sitemap a {
    display: block;
    font-weight: normal;
    padding: 10px 30px;
    margin-bottom: 10px;
    background: #00407a;
    color: #fff;
}
#sitemap a::after {
    display: inline-block;
    font-weight: normal;
    content: '　→';
}

#sitemap a.a-sub {
    display: inline-block;
    font-weight: normal;
    padding: 10px 0 0 1.3em;
    margin-bottom: 0;
    background: none;
    color: #000;
}
#sitemap a.a-sub::before {
    display: inline-block;
    margin-right: 3px;
    font-weight: normal;
    content: '●';
}



/*#sitemap a:hover {
    background: rgba(0,0,0,1);
}*/
#sitemap a i {
    font-size: 12px;
    padding-left: 5px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#sitemap {
    margin: 60px 0 0 0;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#sitemap {
    margin: 30px 0 60px 0;
    padding: 70px 0 60px 0;
}
#sitemap dl dd {
    padding: 0 10px;
}
}













/*------------------------------------------*/
/*                #bottom-1                 */
/*------------------------------------------*/
#bottom-1 {
    position: relative;
    padding: 0;
    margin: 0;
}

#bottom-1 .inner-1 {
    position: relative;
    height: 430px;
    background-image: url(../images/bottom1-bg_1.jpg);
    background-position: center center;
    background-size: cover;
}
#bottom-1 .inner-2 {
    position: relative;
    height: 430px;
    background-image: url(../images/bottom1-bg_2.jpg);
    background-position: center center;
    background-size: cover;
}
#bottom-1 .inner-3 {
    position: relative;
    height: 430px;
    background-image: url(../images/bottom1-bg_3.jpg);
    background-position: center center;
    background-size: cover;
}

#bottom-1 p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    text-align: center;
    background: rgba(0,0,0,0.55);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
}
#bottom-1 p span {
    display: block;
    margin-top: 8px;
    font-size: 16px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1280px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-1 .inner-1,
#bottom-1 .inner-2,
#bottom-1 .inner-3 {
    height: 330px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-1 .inner-1,
#bottom-1 .inner-2,
#bottom-1 .inner-3 {
    height: 260px;
}
#bottom-1 p {
    padding: 20px 0;
    font-size: 17px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-1 .inner-1,
#bottom-1 .inner-2,
#bottom-1 .inner-3 {
    height: 200px;
}
#bottom-1 .inner-1,
#bottom-1 .inner-2 {
    margin-bottom: 15px;
}
#bottom-1 p {
    padding: 15px 0;
    font-size: 18px;
}
}




/*------------------------------------------*/
/*                #bottom-2                 */
/*------------------------------------------*/
#bottom-2 {
    margin: 90px 0 100px 0;
    text-align: center;
}

#bottom-2 .outer {
    padding: 0 20px;
}

/*--- inner-area ---*/
#bottom-2 .inner-area {
    display: table;
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
}

#bottom-2 img.area {
    display: inline-block;
    float: left;
    width: 100%;
    max-width: 300px;
    padding: 0 0 0 0;
}

#bottom-2 .area-box {
    display: table;
    padding: 0 0 0 70px;
}

#bottom-2 h3 {
    margin-bottom: 35px;
}

#bottom-2 p.area {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 18px;
}

#bottom-2 p.info {
    margin-top: 40px;
    line-height: 2.1;
    font-size: 14px;
}


/*--- inner ---*/
#bottom-2 .inner-top {
    margin-bottom: 30px;
}
#bottom-2 .inner-l {
    padding-right: 15px;
}
#bottom-2 .inner-r {
    padding-left: 15px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-2 .outer {
    padding: 0 0;
}
#bottom-2 .area-box {
    padding: 0 0 0 40px;
}
#bottom-2 img.area {
    display: inline-block;
    float: left;
    width: 100%;
    max-width: 230px;
    padding: 0 0 0 0;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-2 .area-box {
    padding: 0 0 0 40px;
}
#bottom-2 img.area {
    width: 100%;
    max-width: 210px;
}
#bottom-2 p.area {
    line-height: 1.7;
    font-size: 16px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-2 img.area {
    width: 100%;
    max-width: 180px;
}
#bottom-2 p.area {
    line-height: 1.7;
    font-size: 15px;
}
#bottom-2 p.info {
    margin-top: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-2 .outer {
    padding: 0 0;
}
#bottom-2 img.area {
    display: block;
    float: none;
    margin: 0 auto;
    width: 60%;
    max-width: 60%;
}
#bottom-2 .area-box {
    display: block;
    padding: 0 0;
    margin-top: 30px;
}
#bottom-2 p.area {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 15px;
}
#bottom-2 p.info {
    margin-top: 15px;
    line-height: 1.6;
    text-align: center;
    font-size: 13px;
}
#bottom-2 .inner-top {
    margin-bottom: 15px;
}
#bottom-2 .inner-l {
    padding-right: 0;
    margin-bottom: 15px;
}
#bottom-2 .inner-r {
    padding-left: 0;
}
}






/*------------------------------------------*/
/*               #bottom-3                   */
/*------------------------------------------*/
#bottom-3 {
    position: relative;
    margin: 0;
    width: 100vw;
    height: 80vh;
    
    background-image: url(../images/bottom3-bg.jpg);
    background-size: cover;
    background-position: center center;
    
    overflow: hidden;
}

/*#bottom-3::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(0,0,0,0.5);
}*/

/*--- img.title ---*/
#bottom-3 img.title {
    position: absolute;
    top: 60px;
    left: 1.5%;
    width: 60%;
    max-width: 700px;
}

#bottom-3 h3 {
    position: absolute;

    top: 50%;
    left: 50%;
    transform:         translate(-50%);
    -ms-transform:     translate(-50%);
    -moz-transform:    translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform:      translate(-50%);

    margin-top: -50px;
    
    display: block;
    width: 100%;
    
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    line-height: 1.8;
    font-weight: normal;
    font-size: 30px;
}

#bottom-3 .button {
    position: absolute;

    left: 50%;
    transform:         translateX(-50%);
    -ms-transform:     translateX(-50%);
    -moz-transform:    translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform:      translateX(-50%);

    bottom: 60px;
    
    display: block;
    width: 100%;
    
    text-align: center;
}

#bottom-3 .button img {
    display: inline-block;
    width: auto;
    height: 60px;
}

#bottom-3 .button .btn1 {
    margin-right: 30px;
}
#bottom-3 .button .btn2 {
    margin-left: 30px;
}



/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-3 img.title {
    max-width: 540px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-3 img.title {
    top: 50px;
    left: 1.5%;
    width: 50%;
}
#bottom-3 h3 {
    margin-top: -50px;
    letter-spacing: 5px;
    line-height: 1.8;
    font-size: 24px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-3 {
    height: 50vh;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-3 .button img {
    width: auto;
    height: 50px;
    margin: 0 auto;
}
#bottom-3 .button .btn1 {
    margin-right: 15px;
}
#bottom-3 .button .btn2 {
    margin-left: 15px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-3 {
    height: 120vh;
}
#bottom-3 h3 {
    margin-top: -50px;
    letter-spacing: 5px;
    line-height: 1.8;
    font-size: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-3 {
    height: 450px;
}
#bottom-3 img.title {
    top: 50px;
    left: 15px;
    width: 70%;
}
#bottom-3 h3 {
    margin-top: -70px;
    letter-spacing: 1.3px;
    line-height: 2.3;
    font-size: 15px;
}
#bottom-3 .button {
    bottom: 45px;
}
#bottom-3 .button img {
    width: auto;
    height: 50px;
    margin: 0 auto;
}
#bottom-3 .button .btn1 {
    margin: 0 auto;
    margin-bottom: 15px;
}
#bottom-3 .button .btn2 {
    margin: 0 auto;
}
}
    


/*------------------------------------------*/
/*                 footer                   */
/*------------------------------------------*/
footer {
    position: relative;
    padding-top: 0;
    text-align: left;
    background: #fff;
}


/*---          ---*/
/*--- footer-1 ---*/
/*---          ---*/
footer .footer-1 {
    display: block;
    width: 100%;
    padding: 80px 0 70px 0;
}

/* logo */
footer .logo img {
    clear: both;
    float: none;
    width: 300px;
}

/* p */
footer .footer-1 p:first-of-type {
    margin-top: 30px;
    margin-bottom: 5px;
    font-weight: normal;
}
footer .footer-1 p {
    display: block;
    width: 100%;
    line-height: 1.9;
    color: #000;
}

/* a */
footer a {
    color: #000;
}

/* h3 */
footer h3 {
    /*width: 110px;*/
    margin: 12px 0 30px 2px;
    letter-spacing: 3.0px;
    text-align: left;
    font-weight: normal;
    font-size: 12.5px;
}

/* ul li */
footer .footer-1 ul {
    display: block;
    width: 100%;
    padding: 0 0 0 20%;
}
footer .footer-1 ul li {
    display: block;
    text-align: left;
    line-height: 2.0;
    text-transform: uppercase;
    color: #000;
}
footer .footer-1 ul li:nth-child(3),
footer .footer-1 ul li:nth-child(4),
footer .footer-1 ul li:nth-child(5) {
    margin-left: 1.2em;
}
footer .footer-1 ul li.privacy {
    margin-top: 30px;
}


/*---          ---*/
/*--- footer-2 ---*/
/*---          ---*/
footer .footer-2 {
    display: block;
    width: 100%;
    padding: 34px 0 30px 0;
    text-align: center;
    background: rgba(0,0,0,0.85);
}
footer .footer-2 p {
    text-align: center;
    line-height: 1;
    letter-spacing: 1.8px;
    font-weight: normal;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}
footer .footer-2 p span {
    padding-right: 4px;
    font-family:'Times New Roman', 'Times';
}
footer .footer-2 a {
    display: inline-block;
}





/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
footer .footer-1 ul {
    padding: 0 0 0 8%;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
footer .footer-1 p span {
    display: block;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
footer .footer-1 {
    padding-left: 15px;
    padding-right: 15px;
}
footer .footer-1 ul li {
    font-size: 13px;
}
footer .logo img {
    width: 90%;
    max-width: 210px;
    height: auto;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
footer {
    text-align: center;
}
footer .footer-1 {
    padding: 40px 0 0 0;
}
footer .logo img {
    width: 70%;
    max-width: 270px;
    height: auto;
}
footer h3 {
    letter-spacing: 2.6px;
    text-align: center;
    font-size: 11px;
}
footer .footer-1 p {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 5px;
}
    
footer .footer-1 ul {
    border: none;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 0 0 0 0;
}
footer .footer-1 ul li {
    text-align: center;
}
footer .footer-1 ul li:nth-child(3),
footer .footer-1 ul li:nth-child(4),
footer .footer-1 ul li:nth-child(5) {
    margin-left: 0;
}
    
footer .footer-2 {
    padding: 25px 0 23px 0;
}
/*footer .footer-2 p {
    margin-top: 20px;
    font-size: 12px;
}
footer .footer-2 p span {
    vertical-align: -0.12em;
    font-size: 18px;
}*/
footer .footer-2 p {
    font-size: 12px;
}
}

