@charset "utf-8";

/* --------------------------------------------------------------- */
/* reset */
/* --------------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
}

body,
html,
main {
    /* important */
    height: 100%;
    background-color: #0d264e;
    counter-reset: count;
}


html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

ul {
    list-style: none;
}

img {
    border: 0;
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
    transition: 0.5s;
}

a {
    outline: none;
    text-decoration: none;
}

a:link,
a:visited,
a:active {
    color: #CBCFD6;
}

a:hover {
    color: #adb5c4;

    outline: 0;
}

.clear {
    clear: both;
}


/* --------------------------------------------------------------- */
/* common */
/* --------------------------------------------------------------- */

body {
    background-color: #0d264e;
    min-width: 1130px;
    color: #fff;
    font-family: Verdana, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif, "游ゴシック", YuGothic;
    font-size: 14px;
    line-height: 1.6em;
}

.z-idx9 {
    z-index: 9;
}

.z-idx5 {
    z-index: 5;
}

.z-idx0 {
    z-index: 0;
}


/* header -------------------------------------------------------- */

#header {
    width: 100%;
    height: 104px;
    background: url(../img/common/bg_footer.png) repeat center bottom;
    z-index: 99;
    display: inherit;
    min-width: 1080px;
    bottom: 0px;
    padding: 0;
}

#header.fix {
    width: 100%;
    height: 104px;
    background: url(../img/common/bg_menu.png) repeat-x center bottom;
    min-width: 1080px;
    padding: 0;
    position: fixed;
    z-index: 99;
    top: 0px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}



nav {
    margin: 0 auto;
    width: 1080px;
}

nav ul {
    float: right;
    margin: 0;
}

nav li {
    float: left;
    margin: 25px 0 0 -5px;
}

.logo img {
    width: 129px;
    float: left;
    margin: 35px 0 0 0;
}


/* footer -------------------------------------------------------- */

footer {
    background-image: url(../img/common/bg_footer.png);
    background-repeat: repeat;
    padding: 15px 0 5px 0;
}

.footer {
    padding: 10px 0;
}

.footerFlex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer_l {
    width: 354px;
    text-align: right;
    border-right: 1px solid #999;
}

.footer_r {
    padding: 5px 0;
    width: 309px;
    margin-left: 45px;
}

.footer_p1 {
    font-size: 12px;
    line-height: 26px;
}

.footer_p2 {
    font-size: 17px;
    font-weight: bold;
}

footer p strong {
    font-weight: normal;
    font-size: 20px;
}

.qrCode {
    margin: 0 45px 0 auto;
    padding: 2px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 264px;
    background-color: rgba(255, 255, 255, 0.1);
}

.qrCode p {
    letter-spacing: .1em;
    font-weight: 500;
    color: #FFF;
}


#pagetop {
    position: fixed;
    bottom: 140px;
    right: 0px;
}

#pagetop a {
    text-decoration: none;
    background-color: #6d9bc7;
    opacity: 0.8;
    color: #FFFFFF;
    padding: 10px;
    text-align: center;
    display: block;
    -moz-border-radius: 5px 0px 0px 5px;
    -webkit-border-radius: 5px 0px 0px 5px;
    border-radius: 5px 0px 0px 5px;
    font-size: 11px;
    height: auto;
    width: 65px;
    line-height: 1.4em;
}


/* ページ共通 -------------------------------------------------------- */

#contents {}


.box {
    width: 1080px;
    text-align: center;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding-top: 130px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.t img:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.wrap710 {
    width: 710px;
    margin: 0 auto;
}

.wrap930 {
    width: 930px;
    margin: 0 auto;
}

.wrap1080 {
    width: 1080px;
    margin: 0 auto;
    text-align: left;
}

.center {
    margin: 0 auto;
}

.al-center {
    text-align: center;
}

.al-left {
    text-align: left;
}

.al-right {
    text-align: right;
}

.left {
    float: left;
}

.right {
    float: right;
}

.mgl10 {
    margin-left: 10px;
}

.mgl15 {
    margin-left: 15px;
}

.mgr5 {
    margin-right: 5px;
}

.mgr10 {
    margin-right: 10px;
}

.mgr20 {
    margin-right: 20px;
}

.mgr40 {
    margin-right: 40px;
}


.mgt5 {
    margin-top: 5px;
}

.mgt8 {
    margin-top: 8px;
}

.mgt10 {
    margin-top: 10px;
}

.mgt15 {
    margin-top: 15px;
}

.mgt20 {
    margin-top: 20px;
}

.mgt25 {
    margin-top: 25px;
}

.mgt30 {
    margin-top: 30px;
}

.mgt35 {
    margin-top: 35px;
}

.mgt60 {
    margin-top: 60px;
}

.mgb10 {
    margin-bottom: 10px;
}

.mgb15 {
    margin-bottom: 15px;
}

.mgb20 {
    margin-bottom: 20px;
}

.mgb30 {
    margin-bottom: 30px;
}

.mgb40 {
    margin-bottom: 40px;
}

.mgb50 {
    margin-bottom: 50px;
}

.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.fl-l {
    float: left;
}


.block {
    display: block;
}

.pos-relativ {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-btm {
    bottom: 0
}

.pos-right {
    right: 0
}


.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1000ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}





.button {
    position: relative;
    display: inline-block;
    padding: .6em 4em;
    background-color: #0A1E3E;
    border: 2px solid #0A1E3E;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.button::after {
    position: absolute;
    top: 50%;
    right: .2em;
    content: '';
    margin-top: -5px;
    border: 7px solid transparent;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-color: #fff;

    transition: all .2s;

}

.button:hover::after {
    right: -.05em;

}


.imgWrap_zoom {
    overflow: hidden;
}

.imgWrap_zoom img {
    display: block;
    transition-duration: 0.3s;

}

.imgWrap_zoom img:hover {
    transform: scale(1.1);
    transition-duration: 0.3s;
    opacity: 0.6;
}

.lowerTxt {
    text-align: left;
    font-size: 14px;
    padding: 0 5px;
    line-height: 2.0;
    margin-bottom: 30px;
}


/* table ----------------------------------------------------------------*/

.min_tb {
    border-collapse: collapse;
    border: 1px solid #2D251B;
    font-size: 13px;
}

.min_tb td {
    padding: 5px;
    border: 1px solid #6B5940;
}

.min_td1 {
    background-color: #947B5A;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.min_td2 {
    background-color: #CBBDAA;
    color: #2D251B;
    text-align: center;
}

.min_td3 {
    background-color: #A89070;
    color: #2D251B;
    letter-spacing: 2px;
    text-align: center;
    letter-spacing: 2px;
}

.min_td4 {
    background-color: #E1DAD1;
    color: #000;
    text-align: center;
}

.min_td5 {
    background-color: #E1DAD1;
    color: #000;
    text-align: center;
    padding: 10px 5px !important;
}

.min_td44 {
    background-color: #E1DAD1;
    color: #000;
    text-align: left;
}

.facil_tb {
    width: 750px;
    border-collapse: collapse;
    border: 1px solid #2D251B;
    font-size: 13px;
    margin: 0 auto;
}

.facil_tb td {
    padding: 5px;
    border: 1px solid #6B5940;
}

.facil_td4 {
    background-color: #E1DAD1;
    color: #000;
    text-align: left;
    padding-left: 20px !important;
}



/* --------------------------------------------------------------- */
/* font */
/* --------------------------------------------------------------- */

.title_in {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 2px;
    color: #EFE9D1;
    line-height: 35px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 0;
}

.title_in span {
    font-size: 20px;
    font-weight: bold;
    color: #E1D29D;
}

.title_tel {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    text-align: center;
    font-weight: bold;
    font-size: 38px;
    letter-spacing: 2px;
    color: #E1D29D;
    line-height: 40px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.title_tel span {
    font-size: 22px;
    font-weight: bold;
    color: #EFE9D1;
}

.contents_p_small {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 33px;
    padding: 15px 0 0 0;
    color: #CCC;
}

.f15 {
    font-size: 15px;
}

.f20 {
    font-size: 20px;
}

.d-gray {
    color: #999;
}

.d-wh {
    color: #FFF;
}

.d-bk {
    color: #000;
}


/* --------------------------------------------------------------- */
/* top */
/* --------------------------------------------------------------- */

#index.cd-fixed-bg {
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


#index .cd-fixed-bg.cd-bg-1 {
    background-image: url(../img/top/bg0.jpg);
    background-size: cover;
    background-position: 50% 50%;
}

#index .cd-fixed-bg.cd-bg-2 {
    background-image: url(../img/top/bg1.jpg);
    background-size: cover;
    background-position: 50% top;
}

#index .cd-fixed-bg.cd-bg-3 {
    background-image: url(../img/top/bg2.jpg);
    background-size: cover;
    background-position: 50% 50%;
}

#index .cd-fixed-bg.cd-bg-4 {
    background-image: url(../img/top/bg3.jpg);
    background-size: cover;
    background-position: 50% 90%;
}

#index .cd-fixed-bg.cd-bg-5 {
    background-image: url(../img/top/bg4.jpg);
    background-size: cover;
    background-position: 50% 50%;
}

#index .cd-fixed-bg.cd-bg-6 {
    background-image: url(../img/top/bg5.jpg);
    background-size: cover;
    background-position: center;
}

#index .cd-fixed-bg.cd-bg-7 {
    background-image: url(../img/top/bg6.jpg);
    background-size: cover;
    background-position: 50% 00%;
}

#index .cd-fixed-bg.cd-bg-8 {
    background-image: url(../img/top/bg7.jpg);
    background-size: cover;
    background-position: 50% 50%;
}

.top_logo {
    width: 320px;
    height: 90px;
    margin: 277px auto -463px auto;
}



.top_contents1 {
    text-align: center;
    padding: 50px 0;
}

.top_contents1_p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
    line-height: 33px;
    padding: 15px 0 0 0;
}

.top_contents1_space {
    height: 750px;
}

.top_contents2_space {
    height: 550px;
}

/* top-contents-------------------------------------------- */

._top_contents_wrap {
    width: 1110px;
    height: 480px;
    margin: 0 auto;
    position: relative;
    /*親要素はrelativeに*/
}

.top_contents {
    text-align: center;
    padding: 50px 0;
}

.topcontentsTxt {
    line-height: 2.0
}

.top_l_box {
    position: absolute;
    width: 610px;
    background-color: #FFF;
    top: 0px;
    left: 30px;
    padding: 30px 0;
}

.top_r_box {
    width: 610px;
    position: absolute;
    background-color: #FFF;
    right: 30px;
    padding: 30px 0;
}


img.img_right {
    position: absolute;
    top: 50px;
    right: 0px;
}

img.img_left {
    position: absolute;
    top: 50px;
    left: 0px;
}

.top_contents_wrap {
    width: 900px;
    margin: 0px auto;
    background-color: #FFF;
    padding: 50px 0;
}

/* contents01 -------------------------------------------- */
#contents1 {}

.indexMenu img {
    width: 390px;
}

.indexMenu a:hover {
    opacity: 0.3;
}

.indexMenu a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.indexMenuButton {
    position: relative;
    margin: 10px;
    background-color: #000;
}

.indexMenuButton p span {
    letter-spacing: 6px;
    font-weight: 700;
    font-size: 2.6em;
    line-height: 1.2;
}

.indexMenuButton p {
    position: absolute;
    color: #fff;
    font-size: .9em;
    letter-spacing: 1.3px;
    line-height: 2;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

/* contents02 -------------------------------------------- */
#contents2 {}

#contents2.top_contents {
    width: 900px;
    margin: 0px auto;
    background-color: #FFF0;
    padding: 0 0 50px;
    display: flex;
    justify-content: space-between;
}
#contents2.top_contents > div:nth-child(1){
    width: 100%;
    max-width: 320px;
}
#contents2.top_contents > div:nth-child(2){
    width: 100%;
    max-width: 520px;
}
#contents2.top_contents a img {
    width: 100%;
    transition: .3s;
    opacity: 1;
}
#contents2.top_contents a img:hover {
    transition: .3s;
    opacity: .85;
}

/* companyInfo-------------------------------------------- */
.cInfo_contents {
    padding: 50px 0;
}

.cInfo_contents span {
    letter-spacing: 2px;
    font-weight: 600;
    color: #a5bcd2;
}


.sec-title {
    padding-bottom: 10px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    border-bottom: solid 3px #084E90;
}

.sec-title_nonBorder {
    padding-bottom: 5px;
    margin-bottom: 40px;
    margin-top: 30px;
    text-align: center;
}

.sec-subtitle {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #FFF;
    font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

table.info_t {
    width: 97%;
    border-collapse: collapse;
    margin: 0 auto;
    color: #FFF;
}

table.info_t th {
    width: 24%;
    letter-spacing: 2px;
}

table.info_t td {}

table.info_t th,
td {
    border-bottom: solid 1px #5e708c;
    padding: 10px;
}

table.info_t tr:first-child th,
td {
    border-top: solid 1px #5e708c;
}

table.info_t tr:first-child td {}

.imgContainer {
    margin: 10px 0 30px 0;
    display: flex;
    justify-content: center;
}

.imgWrap_size_info {
    max-width: 340px;
    max-height: 220px;
}

.boss_sign {
    margin: 70px 0;
    float: right;
    margin-right: 20px;
}


/* process ----------------------------------------------- */

.processContainer {
    margin: 10px auto;
    display: flex;
}

.backgroundFish {
    align-self: flex-end;
    /* このアイテムだけ上揃えにする */
    margin-left: auto;
    /* このアイテムだけ右揃えにするための設定 */
}

.horizontalPanel-row {
    width: 340px;
    padding: 0px 0 0 0px;
    background-color: #FFF;
    counter-increment: count;
}

.horizontalPanel-title {
    margin: 5px 8px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.horizontalPanel-lead {
    padding: 2px 10px 20px 10px;
    color: #555;
    font-size: 13px;
}

.horizontalPanel-image {
    background: #fff;
    position: relative;
    margin: 0 0 0px 0;
}

.horizontalPanel-image::before {
    position: absolute;
    top: 0.7em;
    left: 0.7em;
    display: block;
    width: 46px;
    height: 46px;
    background: #09172a;
    opacity: 0.9;
    color: #fff;
    font: 400 20px/46px 'Open Sans', sans-serif;
    text-align: center;
    content: counter(count);
}

.horizontalPanel-image > img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.counter {
    counter-increment: count;
}

.counterReset {
    counter-reset: count;
}


.gapFix {
    margin-top: -200px;
    padding-top: 200px;
}


.processMenu img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.processMenu:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.imgWrap_size_process {
    width: 180px;
    height: 120px;
}

/* process ----------------------------------------------- */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.under img {
    width: 50%;
    margin: 10px
}

/* productInfo-------------------------------------------- */
.pInfo_contents {
    padding: 30px 0;
}

.pinfo_txt {
    text-align: left;
    font-size: 14px;
    padding: 0 5px;
}

.pInfo_contents span {
    font-weight: 600;
    color: #084E90;
}

.pr_box-row {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding-bottom: 20px;
}

.pr_box {
    width: 186px;
    margin: 0 10px;
}

.pr_box img {
    border-radius: 3px 3px 0 0;
}

.pr_box_under {
    padding: 10px;
    height: 90px;
    background-color: #FFF;
    color: #000;
    border-radius: 0 0 3px 3px;
}

.pr_txt1 {
    font-weight: 600;
    font-size: 13px;
    color: #084E90;
}

.pr_txt2 {
    padding-top: 5px;
    font-size: 12px;
    color: #444;
}

/* contact -------------------------------------------- */

.privacyPolicyList li {
    margin-top: 8px;
}




/* ごあいさつ -------------------------------------------- */

#greeting {
    width: 1110px;
    height: 480px;

    margin: 0 auto;
}


.hogehoge {
    background: url(../img/top/bg_greeting.png) no-repeat right bottom;
}



.top_l {
    width: 610px;
    float: left;
}




#tit_greeting {
    margin: 50px 0px 10px -33px;
}

.top_r {
    width: 500px;
    float: right;
}




/* --------------------------------------------------------------- */
/* bxslider */
/* --------------------------------------------------------------- */

.bxslider {}

.bx-pager {
    width: 100%;
    padding: 0;
    text-align: center;
}

.bx-pager img {
    width: 12%;
    margin: 5px;
}

.bx-pager2 {
    width: 100%;
    padding: 0;
    text-align: center;
}

.bx-pager2 img {
    width: 9%;
    margin-top: 5px;
    margin-right: 2px;
    margin-bottom: 2px;
    margin-left: 2px;
}

.bx-wrapper .bx-caption {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    text-align: center;
    color: #E1D29D;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 15px 0 20px 0;
}

.bx-wrapper .bx-caption small {
    font-family: Verdana, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif, "游ゴシック", YuGothic;
    color: #FFF;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
}
