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.6px;
    line-height: 1.7;
    
    color: #000;
    font-weight: normal;
    font-size: 16px;
    
    /*-- 折返し --*/
    text-align: justify !important;
    text-justify: inter-ideograph !important;
    word-break: break-all !important;
}
/* - - - - - - - - - - - - - - - - - - - */
@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.6px;
    
    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.6px;
    
    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;
    }
    #information .row {
        width: 960px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1440px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1100px;
    }
    footer .row {
        width: 1200px;
    }
    #information .row {
        width: 960px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1600px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1360px;
    }
    footer .row {
        width: 1400px;
    }
    #information .row {
        width: 1024px;
    }
    #service .row {
        width: 1420px;
    }
}


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







/*------------------------------------------*/
/*                 #header                  */
/*------------------------------------------*/
/*----- header common ----------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 70px;   /* headerの高さ */
    
    display: block;
    
    padding-left: 30px;
    padding-right: 25px;
    
    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: 5px;*/
}
#header .logo-block .logo img {
    margin-top: 27px;
    /*width: auto;
    height: 37px;*/
    width: 312px;
    height: auto;
}

    
#header .logo-block h1 {
    position: absolute;
    top: 7px;
    left: 2px;
    letter-spacing: 0.85px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 550;
    font-size: 13px;
}
#header .logo-block a:hover {
    opacity: 1;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1370px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
    margin-top: 4px;
}
#header .logo-block .logo img {
    width: 270px;
}
#header .logo-block h1 {
    letter-spacing: 0.5px;
    font-size: 11.5px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
    margin-top: 0;
}
#header .logo-block .logo img {
}
#header .logo-block h1 {
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
}
#header .logo-block .logo img {
    width: 250px;
}
#header .logo-block h1 {
    letter-spacing: 0.1px;
    font-size: 11px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block {
}
#header .logo-block .logo img {
    width: 204px;
}
#header .logo-block h1 {
    letter-spacing: 0.0px;
    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: 6px 0 0 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:nth-child(8) {
    margin-right: 11px;
}


.menu ul li a {
    display: inline-block;
    letter-spacing: 1.3px;
    line-height: 1.0;
    text-transform: uppercase;
    padding: 23px 0;
    /*border-bottom: 2px rgba(0,0,0,0) solid;*/
    color: #000;
    font-weight: 600;
    font-size: 15px;
    
    opacity: 1;
}
.menu ul li a:hover {
    opacity: 0.5;
    /*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;
    opacity: 1;
}
.menu ul li.link a img {
    margin: -5px 0 0 0;
    height: 50px;
    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: 70px;
        text-align: center;
    }

    .menu ul li {
        display: inline-block;
        height: auto;
        margin: 0 auto;
        text-align: center;
        margin: 5px 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.link-1 {
        margin-top: 30px !important
    }
    .menu ul li.link.link-2 {
        margin-top: 15px !important
    }
    .menu ul li.link a {
        padding: 0 0 0 0;
    }
    .menu ul li.link a img {
        /*height: 70px;*/
        width: 200px;
        height: auto;
    }
}


/* - - - - - - - - - - - - - - - - - - - */
@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%;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@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 li.link {
        width: auto;
    }
    .menu ul li.link a img {
        width: auto;
        height: 48px;
    }
}
/* - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px)
              and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@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 li {
        margin: 5px 0 !important;
        padding: 0 !important;
    }
    .menu ul li a {
        padding: 3px 0 3px 0;
        margin-bottom: 15px;
        font-size: 15px;
    }
    .menu ul li.link.link-2 {
        margin-top: 5px !important
    }
}


/* 開閉用ボタンがクリックされた時のスタイル */
.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: 70px;
    width: 100vw;
    height: calc(100vh - 70px);
    
    padding: 0 30px;
    
    overflow: hidden;
    
    /*z-index: -1;*/
}

#home .outer{
    width: 100%;
    height: 100%;
    
    background-image: url(../images/home_03.jpg);
    background-size: cover;
    background-position: center center;
}

/*#home:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: ' ';
    background: rgba(0,0,0,0.15);
    z-index: 1;
}*/



/*--- h2-block ---*/
#home .h2-block {
    display: block;
    padding-top: 13.5%;
    text-align: center;
    z-index: 2;
}

#home h2 {
    display: inline-block;
    background: #829c39;
    border-radius: 100px;
    padding: 12.5px 30px;
    
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 550;
    font-size: 40px;
}

#home img {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    
    width: 100%;
    max-width: 900px;
}





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

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#home .h2-block {
    padding-top: 15%;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1370px) {
/* - - - - - - - - - - - - - - - - - - - */
#home .h2-block {
    padding-top: 13%;
}
#home h2 {
    padding: 12.5px 30px;
    font-size: 35px;
}
#home img {
    max-width: 740px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1290px) {
/* - - - - - - - - - - - - - - - - - - - */
#home .h2-block {
    padding-top: 15.5%;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#home {
    margin-top: 60px;
    height: calc(100vh - 60px);
}
#home .h2-block {
    padding-top: 20%;
}
#home h2 {
    padding: 12.5px 30px;
    font-size: 28px;
}
#home img {
    max-width: 590px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#home {
    height: 130vh;
}
#home .h2-block {
    padding-top: 13%;
}
#home h2 {
    padding: 12.5px 30px;
    font-size: 25px;
}
#home img {
    max-width: 530px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#home {
    height: 50vh;
    max-height: 400px;
    min-height: 400px;
    padding: 0 12.5px;
}
#home .outer{
    background-position: left center;
}
#home .h2-block {
    padding-top: 30%;
}
#home h2 {
    width: 93%;
    padding: 12.5px 0;
    font-size: 17px;
}
#home img {
    margin-top: 20px;
}
}









/*------------------------------------------*/
/*                  COMMON                  */
/*------------------------------------------*/

/*--------------------*/
/*    アンカーリンク    */
/*--------------------*/
#t-001 {
    display: table;
    width: 100%;
    padding-top: 130px;
    margin-top: -90px;
}
#t-002,
#t-003,
#t-004,
#t-005 {
    display: table;
    width: 100%;
    padding-top: 200px;
    margin-top: -90px;
}
#t-006 {
    display: table;
    width: 100%;
    padding-top: 100px;
    margin-top: -60px;
}
#t-007 {
    display: table;
    width: 100%;
    padding-top: 70px;
    margin-top: 60px;
}






/*----------------*/
/*    h3.ver-1    */
/*----------------*/
h3.ver-1 {
    display: block;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.55;
    letter-spacing: 2px;
    font-weight: 550;
    font-size: 25px;
}
h3.ver-1 span {
    display: block;
    text-align: center;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    
    font-family: "Lexend", sans-serif;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-1 {
    font-size: 22px;
}
h3.ver-1 span {
    font-size: 35px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
h3.ver-1 {
    margin-bottom: 20px;
    font-size: 18px;
}
h3.ver-1 span {
    font-size: 27px;
}
}






/*-----------*/  
/*    btn    */
/*-----------*/
.btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
}
.btn a {
    display: inline-block;
    width: 90%;
    max-width: 380px;
    background: #ee7800;
    padding: 18px 0;
    border-radius: 100px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 550;
    color: #fff;
    font-size: 18px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
.btn {
    margin-top: 40px;
}
.btn a {
    width: 950%;
    max-width: 95%;
    padding: 15px 0;
    letter-spacing: 1.1px;
    font-weight: 550;
    font-size: 16px;
}
}












/*------------------------------------------*/
/*                #topword                  */
/*------------------------------------------*/
#topword {
    position: relative;
    /*margin: 0 0 50px 0;*/
    margin: 0 0 30px 0;
    text-align: center;
    
    z-index: 2;
}

/* h3 */
#topword h3 {
    display: block;
    width: 60%;
    height: 100px;
    
    margin: 0 auto;
    margin-top: -100px;
    margin-bottom: 50px;
    padding: 28px 0 20px 0;
    text-align: center;
    background: #fff;
    
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    
    letter-spacing: 2.2px;
    font-weight: 600;
    font-size: 30px;
}



/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#topword h3 {
    width: 65%;
    margin-top: -80px;
    margin-bottom: 50px;
    padding: 20px 0 20px 0;
    
    letter-spacing: 2.2px;
    font-weight: 600;
    font-size: 27px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#topword h3 {
    width: 80%;
    margin-top: -65px;
    margin-bottom: 50px;
    padding: 15px 0 20px 10px;
    
    height: auto;
    
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    line-height: 1.6;
    letter-spacing: 1.5px;
    font-size: 22.5px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#topword h3 {
    width: 80%;
    margin-top: -50px;
    margin-bottom: 50px;
    padding: 15px 0 20px 10px;
    
    height: auto;
    
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    line-height: 1.6;
    letter-spacing: 1.5px;
    font-size: 22.5px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#topword {
    margin-bottom: 0;
}
#topword h3 {
    width: 87%;
    margin-top: -40px;
    margin-bottom: 50px;
    padding: 15px 0 20px 10px;
    
    height: auto;
    
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    line-height: 1.6;
    letter-spacing: 1.5px;
    font-size: 21px;
}
#topword h3 span {
    display: block;
    margin-left: -0.8em;
}
}




/*------------------------------------------*/
/*                #topinfo                  */
/*------------------------------------------*/
#topinfo {
    position: relative;
    margin: 0 0 70px 0;
    text-align: center;
}

/* img.title */
#topinfo img.title {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 770px;
}

/* h3 */
#topinfo h3 {
    display: block;
    margin-top: 90px;
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 600;
    font-size: 32.5px;
}

/* p */
#topinfo p {
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    max-width: 770px;
    text-align: left;
    letter-spacing: 1px;
}

/* pr-box */
#topinfo .pr-box {
    display: table;
    float: none;
    margin: 0 auto;
    padding-top: 80px !important;
    
    max-width: 1200px;
}
#topinfo .pr-box .inner {
    padding: 12.5px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#topinfo h3 {
    display: block;
    margin-top: 90px;
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 600;
    font-size: 28px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#topinfo h3 span {
    display: block;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#topinfo {
    margin-top: -45px;
    margin-bottom: 90px;
}
#topinfo img.title {
    width: 95%;
}
#topinfo h3 {
    margin-top: 40px;
    letter-spacing: 1.0px;
    font-size: 19px;
}
#topinfo .pr-box {
    padding-top: 25px !important;
}
#topinfo .pr-box .inner {
    padding: 5px 5px;
}
}






/*------------------------------------------*/
/*                #service                  */
/*------------------------------------------*/
#service {
    position: relative;
    /*margin: 200px 0 70px 0;*/
    margin: 0 0 70px 0;
    text-align: center;
}


/* img */
#service.prt-1 img.service-title {
    position: absolute;
    top: -90px;
    left: 0;
    
    z-index: 2;
}
#service.prt-2 img.service-title {
    position: absolute;
    top: -90px;
    right: 0;
    
    z-index: 2;
}

/* .outter */
#service .outer {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background: #f1efec;
}

/* .inner */
#service .inner {
    padding: 60px 60px;
    text-align: left;
    background: #fff;
    border-radius: 20px;
}


/* .detail-box */
#service .detail-box {
    margin-top: 60px;
}

/* table */
#service table.ver-1 {
    width: 100%;
}
#service table.ver-1 td {
    width: 50%;
    vertical-align: top;
}
#service table.ver-1 td p.line-1 {
    margin-top: 30px;
    padding: 0 0 0 30px;
}
#service table.ver-1 td p.line-2 {
    margin-top: 50px;
    padding: 0 30px 0 0;
}






/* h3 */
#service h3 {
    position: relative;
    display: block;
    margin-left: -2em;
    margin-bottom: 80px;
    text-align: left;
}
#service h3::after {
    position: absolute;
    bottom: -15px;
    left: 40px;
    display: inline-block;
    content: " ";
    width: 90px;
    height: 12px;
    background: #ee7800;
}

#service h3 strong {
    display: inline-block;
    font-weight: bold;
    font-size: 60px;
}
#service h3 strong::before {
    display: inline-block;
    content: "「";
}
#service h3 strong::after {
    display: inline-block;
    content: "」";
}

#service h3 small {
    display: inline-block;
    font-weight: normal;
    font-size: 20px;
}

#service h3 span {
    position: relative;
    display: inline-block;
    margin-left: 1.5em;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 35px;
}
#service h3 span::before {
    position: absolute;
    bottom: 0;
    left: 0.5em;
    display: inline-block;
    content: " ";
    width: 98%;
    height: 20px;
    background: rgba(255,220,0,0.7);
    
    z-index: -1;
}




/*              */
/* 英語コーチング */
/*              */
#service .en-coaching {
    border-top: 1px rgba(0,0,0,0.3) solid;
    margin-top: 110px;
    padding: 100px 0 0 0;
    text-align: center;
}
/* h4 */
#service .en-coaching h4 {
    display: block;
    margin-bottom: 60px;
    text-align: left;
}
#service .en-coaching h4 strong {
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 35px;
}
#service .en-coaching h4 strong::before {
    position: absolute;
    bottom: 3px;
    left: 0.4em;
    display: inline-block;
    content: " ";
    width: 98%;
    height: 20px;
    background: rgba(255,220,0,0.7);
    
    z-index: -1;
}
#service .en-coaching h4 span {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    font-size: 20px;
}
/* inner */
#service .en-coaching .inner-l {
    padding: 0 40px 0 0;
}
#service .en-coaching .inner-r {
    padding: 0 0 0 0;
}
/* h5.ver-1 */
#service .en-coaching h5.ver-1 {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    padding: 13px 0 10px 0;
    background: rgba(130,156,57,0.22);
    line-height: 1.5;
    font-weight: 600;
    font-size: 25px;
}
/* h5.ver-2 */
#service .en-coaching h5.ver-2 {
    position: relative;
    display: inline-block;
    margin-top: 90px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 25px;
}
#service .en-coaching h5.ver-2::before {
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: -0.7em;
    content: url(../images/en-coaching-h5_1.png);
}
#service .en-coaching h5.ver-2::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: -0.7em;
    content: url(../images/en-coaching-h5_2.png);
}
/* ul li */
#service .en-coaching ul {
    display: block;
    width: 100%;
}
#service .en-coaching ul li {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 35px;
    text-align: left;
    
    text-align: justify !important;
    text-justify: inter-ideograph !important;
    word-break: break-all !important;
}
#service .en-coaching ul li:last-of-type {
    margin-bottom: 0;
}

#service .en-coaching h6 {
    display: block;
    margin-left: 50px;
    padding: 10px 0 10px 68px;
    margin-bottom: 15px;
    color: darkblue;
    font-weight: 600;
    font-size: 22px;
    
    background: rgba(130,156,57,0.2);
}

#service .en-coaching ul li span {
    display: block;
    margin-left: 120px;
    padding-bottom: 25px;
    border-bottom: 9px rgba(0,0,0,0.2) dotted;
}

#service .en-coaching ul li strong {
    color: #ff0000;
}

#service .en-coaching ul li::before {
    position: absolute;
    left: 0;
    top: -20px;
    display: inline-block;
}
#service .en-coaching ul li:first-of-type::before {
    content: url(../images/en-coaching-num_1.png);
}
#service .en-coaching ul li:nth-child(2)::before {
    content: url(../images/en-coaching-num_2.png);
}
#service .en-coaching ul li:last-of-type::before {
    content: url(../images/en-coaching-num_3.png);
}





/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#service img.service-title {
    width: 15%;
}
#service h3 strong {
    font-size: 43px;
}
#service h3 span {
    margin-left: 1.2em;
    letter-spacing: 2px;
    font-size: 30px;
}
#service table.ver-1 td p.line-1 {
    margin-top: 20px;
    padding: 0 0 0 20px;
}
#service table.ver-1 td p.line-2 {
    margin-top: 30px;
    padding: 0 20px 0 0;
}
#service .en-coaching h4 strong {
    letter-spacing: 2px;
    font-size: 30px;
}
#service .en-coaching h5.ver-1 {
    margin-bottom: 30px;
    padding: 13px 0 10px 0;
    line-height: 1.5;
    font-size: 22px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1280px) {
/* - - - - - - - - - - - - - - - - - - - */
#service img.service-title {
    width: 14%;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
#service img.service-title {
    width: 12%;
}
#service .en-coaching .inner-l {
    padding: 0 20px 0 0;
}
#service h3 strong {
    font-size: 37px;
}
#service h3 small {
    font-size: 17px;
}
#service h3 span {
    margin-left: 1.0em;
    letter-spacing: 1.5px;
    font-size: 25px;
}
#service .en-coaching h4 strong {
    letter-spacing: 2px;
    font-size: 25px;
}
#service .en-coaching h5.ver-1 {
    margin-bottom: 15px;
    padding: 13px 0 10px 0;
    line-height: 1.6;
    font-size: 18px;
}
#service .en-coaching h6 {
    padding: 10px 0 10px 68px;
    margin-bottom: 15px;
    font-size: 20px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#service img.service-title {
    width: 12.5%;
}
#service .inner {
    padding: 50px 30px 50px 30px;
}
#service table.ver-1 td p.line-1 {
    margin-top: 0;
    padding: 0 0 10px 20px;
}
#service table.ver-1 td p.line-2 {
    margin-top: 10px;
    padding: 0 20px 0 0;
}
#service h3 {
    margin-left: -1.0em;
}
#service h3 strong {
    font-size: 32px;
}
#service h3 small {
    font-size: 15px;
}
#service h3 span {
    margin-left: 1.0em;
    letter-spacing: 1.5px;
    font-size: 20px;
}
#service .en-coaching h4 strong {
    font-size: 25px;
}
#service .en-coaching h5.ver-1 {
    margin-bottom: 20px;
    padding: 13px 0 10px 0;
    font-size: 16px;
}
#service .en-coaching h6 {
    padding: 10px 0 10px 68px;
    margin-bottom: 15px;
    font-size: 18px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 940px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#service {
    margin-top: -110px;
    margin-bottom: -50px;
}
#service img.service-title {
    width: 80%;
    top: -25px !important;
    left: 0 !important;
}
#service .outer {
    padding: 60px 10px 80px 10px;
}
#service .inner {
    padding: 40px 10px 40px 10px;
    border-radius: 15px;
}
#service .detail-box {
    margin-top: 40px;
    padding: 0 15px !important;
}
#service table.ver-1 td {
    display: block;
    width: 100%;
}
#service table.ver-1 td p.line-1 {
    margin-top: 30px;
    padding: 0 0 0 0;
}
#service table.ver-1 td p.line-2 {
    margin-top: 0;
    margin-bottom: 30px;
    padding: 0 0 0 0;
}


#service h3 {
    margin-left: -1em;
    margin-bottom: 50px;
}
#service h3::after {
    bottom: -15px;
    left: 32px;
    background: #ee7800;
}
#service h3 strong {
    font-size: 35px;
}
#service h3 small {
    font-size: 18px;
}
#service h3 span {
    margin-top: 10px;
    margin-left: 1.3em;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 25px;
}
#service h3 span::before {
    display: none;
}


#service .en-coaching {
    margin-top: 50px;
    padding: 40px 0 0 0;
}
#service .en-coaching h4 {
    margin-bottom: 30px;
}
#service .en-coaching h4 strong {
    font-size: 25px;
}
#service .en-coaching h4 strong::before {
    bottom: 0;
    left: 0.4em;
    height: 15px;
}
#service .en-coaching h4 span {
    font-size: 18px;
}
#service .en-coaching .inner-l {
    padding: 0 0 0 0;
}
#service .en-coaching .inner-r {
    margin-top: 30px;
}
#service .en-coaching h5.ver-1 {
    margin-bottom: 30px;
    padding: 13px 0 10px 0;
    font-size: 19px;
}
#service .en-coaching h5.ver-2 {
    position: relative;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
    letter-spacing: 1.2px;
    font-size: 17px;
}
#service .en-coaching h5.ver-2::before {
    position: absolute;
    left: 0;
    top: -7px;
    content: url(../images/en-coaching-h5_1_sp.png);
}
#service .en-coaching h5.ver-2::after {
    position: absolute;
    right: 0;
    top: -7px;
    content: url(../images/en-coaching-h5_2_sp.png);
}
#service .en-coaching ul li {
    margin-bottom: 15px;
}
#service .en-coaching h6 {
    margin-left: 58px;
    padding: 10px 10px 10px 10px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 15px;
}
#service .en-coaching h6 apan {
    display: block;
}
#service .en-coaching ul li span {
    margin-left: 60px;
    padding-bottom: 15px;
    border-bottom: 6px rgba(0,0,0,0.2) dotted;
    line-height: 1.6;
}
#service .en-coaching ul li::before {
    top: -3px;
}
#service .en-coaching ul li:first-of-type::before {
    content: url(../images/en-coaching-num_1_sp.png);
}
#service .en-coaching ul li:nth-child(2)::before {
    content: url(../images/en-coaching-num_2_sp.png);
}
#service .en-coaching ul li:last-of-type::before {
    content: url(../images/en-coaching-num_3_sp.png);
}
}





/*------------------------------------------*/
/*                   #news                  */
/*------------------------------------------*/
#news {
    /*margin-top: 100px;*/
    /*margin-bottom: 120px;*/
    margin-bottom: 0;
}


#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.7);
    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: 10px;
    margin-bottom: -60px;
}
#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;
}
}




/*------------------------------------------*/
/*              #information                */
/*------------------------------------------*/
#information {
    position: relative;
    margin: 0 0 0 0;
    text-align: center;
    background: rgba(241,239,236,0.75);
    padding: 90px 0 120px 0;
}

/* table.ver-1 */
#information table.ver-1 {
    width: 100%;
    text-align: center;
    
    border-collapse: collapse;
    border-spacing: 0;
}
#information table.ver-1 th {
    width: 50%;
    text-align: center;
    background: #ffdc00;
    padding: 15px 0;
    border: 1px rgba(0,0,0,0.2) solid;
    font-weight: 600;
}
#information table.ver-1 td {
    width: 50%;
    text-align: center;
    padding: 15px 0;
    background: #fff;
    border: 1px rgba(0,0,0,0.2) solid;
}
#information table.ver-1 td:last-of-type {
    text-align: right;
    padding-right: 2em;
}


/* p.info */
#information p.info {
    margin: 15px 0 80px 0 !important;
}




/* table.ver-2 */
#information table.ver-2 {
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
    
    border-collapse: collapse;
    border-spacing: 0;
}
#information table.ver-2 th {
    width: 25%;
    text-align: center;
    background: #ffdc00;
    padding: 15px 0;
    border: 1px rgba(0,0,0,0.2) solid;
    font-weight: 600;
}
#information table.ver-2 th:last-of-type {
    width: 50%;
}
#information table.ver-2 td {
    width: 25%;
    text-align: center;
    padding: 15px 0;
    background: #fff;
    border: 1px rgba(0,0,0,0.2) solid;
}
#information table.ver-2 td:last-of-type {
    width: 50%;
    text-align: right;
    padding-right: 2em;
}
#information table.ver-2 td span {
    display: inline-block;
    margin-right: -0.5em;
}


/* .message */
#information .message {
    background: #fff;
    padding: 40px 30px;
    margin-bottom: 100px;
}

/* h4 */
#information .message h4 {
    display: block;
    margin-top: 30px;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 2px;
    font-size: 26px;
}
#information .message h4 small {
    display: block;
    font-size: 15px;
}
#information .message h4 span {
    display: block;
    color: rgba(0,0,0,0.6);
    font-size: 18px;
}


/* dl dt dd */
#information dl {
    display: block;
    width: 100%;
    margin-top: 60px;
}
#information dl dt {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px rgba(0,0,0,0.3) solid;
    padding-bottom: 5px;
    margin-bottom: 8px;
    margin-top: 30px;
    font-weight: 600;
}
#information dl dd {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}



/* .access */
#information .access {
    height: 500px;
    padding: 0;
}
#information .access .inner-l {
    height: 100%;
    background: #fff;
    padding: 40px 0 0 40px;
}
#information .access .inner-r {
    padding: 0;
}
#information .access .inner-r iframe {
    height: 500px;
}

/* .access h4 */
#information .access h4 {
    display: block;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.4;
    font-weight: bold;
    font-size: 30px;
}
#information .access h4 span {
    display: block;
    font-weight: normal;
    font-size: 16px;
}

/* .access p */
#information .access p:last-of-type {
    margin-top: 20px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#information {
    padding: 50px 0 60px 0;
}


#information p.info {
    margin: 15px 0 60px 0 !important;
}



#information table.ver-2 {
    margin-bottom: 60px;
}



#information .message {
    padding: 15px 15px;
    margin-bottom: 60px;
}
#information .message img.owner {
    width: 75%;
    margin: 0 auto;
}
#information .message h4 {
    margin-bottom: -10px;
    font-size: 24px;
}
#information .message h4 span {
    font-size: 17px;
}
#information dl {
    margin-top: 35px;
}


#information .access {
    height: auto;
}
#information .access .inner-l {
    height: auto;
    padding: 40px 0;
}
#information .access .inner-r iframe {
    height: 350px;
}
#information .access h4 {
    text-align: center;
    font-size: 25px;
}
#information .access h4 span {
    letter-spacing: 1.1px;
    font-size: 14px;
}
#information .access p {
    text-align: center !important;
}
#information .access .sns-box {
    margin-top: 30px;
    text-align: center !important;
}
}





/*------------------------------------------*/
/*                 #bottom                  */
/*------------------------------------------*/
#bottom {
    position: relative;
    margin: 85px 0 80px 0;
}

#bottom .inner {
    padding: 12.5px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom .inner {
    padding: 9px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom {
    margin: 50px 0 50px 0;
}
#bottom .inner {
    padding: 7.5px 0;
}
}








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


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

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

/* p */
footer .footer-1 p:first-of-type {
    margin-top: 40px;
    font-weight: normal;
}
footer .footer-1 p {
    display: block;
    width: 100%;
    line-height: 2.1;
    color: #fff;
}

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

/* h3 */
footer h3 {
    /*width: 110px;*/
    margin: 0 0 10px 1.5px;
    letter-spacing: 2.1px;
    text-align: left;
    font-weight: 550;
    font-size: 13px;
}

/* 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.5;
    text-transform: uppercase;
    font-weight: 550;
    color: #000;
}

/* sns-box */
.sns-box {
    display: block;
    margin-top: 50px;
    width: 100%;
    text-align: left;
}
.sns-box a {
    display: inline-block;
    margin-right: 15px;
}
.sns-box a:last-of-type {
    margin-right: 0;
}





/*---          ---*/
/*--- footer-2 ---*/
/*---          ---*/
footer .footer-2 {
    display: block;
    width: 100%;
    padding: 34px 0 30px 0;
    text-align: center;
}
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;
}
footer h3 {
    letter-spacing: 1.2px;
    font-size: 10px;
}
footer .logo img {
    width: 90%;
    max-width: 250px;
    height: auto;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@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;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@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: 1.0px;
    text-align: center;
    font-size: 11px;
}
footer .footer-1 p {
    text-align: center !important;
    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-1 .sns-box {
    margin-bottom: 20px;
    text-align: center;
}
    
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;
}
}

