@charset "utf-8";

/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Common Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Base Style
========================================================= */
body {
    background-color: #ffffff;
    background-image: url(../images/body-bg.jpg);
    background-repeat: repeat;
    color: #333333;
    font-size: 62.5%; /* 10px */
    font-family: "メイリオ", Meiryo, Arial, Helvetica, Verdana, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.8em;
    word-wrap: break-word;
    box-sizing: content-box;  /* ress.css の box-sizing:inherit がブラウザにより誤動作するため必要*/
}

/* iphone safariでの自動文字サイズ変更を回避 */
body {
    -webkit-text-size-adjust: none;
}


/* ============================================================
    FONT include
============================================================ */
@font-face {
    font-display: swap;
    font-family: 'ecolier';
    src: url('../../../common/font/Ecolier.woff2') format('truetype');  /* サブセット化後 */
}
.ecolier {
    font-family: 'ecolier';
}


/* =========================================================
    Link Color
========================================================= */
a:link {
    color:#323232;
    text-decoration:none;
}
a:visited {
    color:#323232;
    text-decoration:none;
}
a:hover {
   text-decoration:underline;
}
a:active {
   color:#d6001e;
}


/* =========================================================
    ClearFix
========================================================= */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size:0.1em;
}
.clearfix {
    min-height: 1px;
    display:inline-table;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display:block;}
/* End hide from IE-mac */

.clear {clear: both;}
.edge {margin: 0px;padding: 0px;}


/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Responsible Style ]

///////////////////////////////////////////////////////// */

/* コンテナー */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/*
@media (min-width: 960px) {
  .container {
      width: 960px;
  }
}
*/
@media (min-width: 1020px) {
  .container {  /* PCでの広がり過ぎを抑制。最大横幅 */
      max-width: 1020px;
  }
}

/* 画像 */
img.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
}

/* PC/SP制御 */
@media (min-width: 960px) {
    .pc-only {
    }
    .sp-only {
        display: none;
    }
}
@media (max-width: 959px) {
    .pc-only {
        display: none;
    }
    .sp-only {
    }
}


/* =========================================================
    column control
========================================================= */
/* -- [ 2カラム ] --------------------------------------- */
/**** 2カラム ****/
.col-grid-2 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1%) / 2); */
    width: 49.5%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-2 .grid-item:nth-child(2n+2) {
    margin-right: 0px;
    float: right;
}
.col-grid-2:after {
    display: table;
    clear: both;
    content: '';
}

/** 2→1カラム **/
.col-grid-2-1 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1%) / 2); */
    width: 49.5%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-2-1 .grid-item:nth-child(2n+2) {
    margin-right: 0px;
    float: right;
}
.col-grid-2-1:after {
    display: table;
    clear: both;
    content: '';
}
@media screen and (max-width: 768px) {
    .col-grid-2-1 .grid-item {
        width: 100%;
        float: none;
        margin-right: 0px;
    }
    .col-grid-2-1 .grid-item:nth-child(2n+2) {
        float: none;
    }
}

/* -- [ 3カラム ] --------------------------------------- */
/**** 3カラム ****/
.col-grid-3 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 2) / 3); */
    width: 32.66666%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-3 .grid-item:nth-child(3n+3) {
    margin-right: 0px;
    float: right;
}
.col-grid-3:after {
    display: table;
    clear: both;
    content: '';
}

/** 3→1カラム **/
.col-grid-3-1 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 2) / 3); */
    width: 32.66666%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-3-1 .grid-item:nth-child(3n+3) {
    margin-right: 0px;
    float: right;
}
.col-grid-3-1:after {
    display: table;
    clear: both;
    content: '';
}
@media screen and (max-width: 768px) {
    .col-grid-3-1 .grid-item {
        width: 100%;
        float: none;
        margin-right: 0px;
    }
    .col-grid-3-1 .grid-item:nth-child(3n+3) {
        float: none;
    }
}

/** 3→2カラム **/
.col-grid-3-2 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 2) / 3); */
    width: 32.66666%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-3-2 .grid-item:nth-child(3n+3) {
    margin-right: 0px;
    float: right;
}
.col-grid-3-2:after {
    display: table;
    clear: both;
    content: '';
}
@media screen and (max-width: 768px) {
    .col-grid-3-2 .grid-item {
        /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*      width: calc((100% - 1%) / 2); */
        width: 49.5%;
        float: left;
        /* カラム間のmargin */;
        margin-right: 1%;
    }
    .col-grid-3-2 .grid-item:nth-child(3n+3) {
        margin-right: 1%;
        float: left;
    }
    .col-grid-3-2 .grid-item:nth-child(2n+2) {
        margin-right: 0px;
        float: right;
    }
}

/* -- [ 4カラム ] --------------------------------------- */
/**** 4カラム ****/
.col-grid-4 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 3) / 4); */
    width: 24.25%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-4 .grid-item:nth-child(4n+4) {
    margin-right: 0px;
    float: right;
}
.col-grid-4:after {
    display: table;
    clear: both;
    content: '';
}

/** 4→2カラム **/
.col-grid-4-2 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 3) / 4); */
    width: 24.25%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-4-2 .grid-item:nth-child(4n+4) {
    margin-right: 0px;
    float: right;
}
.col-grid-4-2:after {
    display: table-cell;
    clear: both;
    content: '';
}
@media screen and (max-width: 768px) {
    .col-grid-4-2 .grid-item {
        /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*      width: calc((100% - 1%) / 2); */
        width: 49.5%;
        float: left;
        /* カラム間のmargin */;
        margin-right: 1%;
    }
    .col-grid-4-2 .grid-item:nth-child(4n+4) {
        margin-right: 1%;
        float: left;
    }
    .col-grid-4-2 .grid-item:nth-child(2n+2) {
        margin-right: 0px;
        float: right;
    }
}

/* -- [ 5カラム ] --------------------------------------- */
/**** 5カラム ****/
.col-grid-5 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 3) / 5); */
    width: 19.2%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-5 .grid-item:nth-child(5n+5) {
    margin-right: 0px;
    float: right;
}
.col-grid-5:after {
    display: table;
    clear: both;
    content: '';
}

/** 5→3カラム **/
.col-grid-5-3 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 3) / 5); */
    width: 19.2%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-5-3 .grid-item:nth-child(5n+5) {
    margin-right: 0px;
    float: right;
}
.col-grid-5-3:after {
    display: table-cell;
    clear: both;
    content: '';
}
@media screen and (max-width: 768px) {
    .col-grid-5-3 .grid-item {
        /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*      width: calc((100% - 1%) / 2); */
        width: 32.66666%;
        float: left;
        /* カラム間のmargin */;
        margin-right: 1%;
    }
    .col-grid-5-3 .grid-item:nth-child(5n+5) {
        margin-right: 1%;
        float: left;
    }
    .col-grid-5-3 .grid-item:nth-child(3n+3) {
        margin-right: 0px;
        float: right;
    }
}

/** 5→2カラム **/
.col-grid-5-2 .grid-item {
    /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*    width: calc((100% - 1% * 3) / 5); */
    width: 19.2%;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
.col-grid-5-2 .grid-item:nth-child(5n+5) {
    margin-right: 0px;
    float: right;
}
.col-grid-5-2:after {
    display: table-cell;
    clear: both;
    content: '';
}
@media screen and (max-width: 768px) {
    .col-grid-5-2 .grid-item {
        /* marginを差し引き％で指定 *//* i.e.11で小数点以下を認識しない */
/*      width: calc((100% - 1%) / 2); */
        width: 49.5%;
        float: left;
        /* カラム間のmargin */;
        margin-right: 1%;
    }
    .col-grid-5-2 .grid-item:nth-child(5n+5) {
        margin-right: 1%;
        float: left;
    }
    .col-grid-5-2 .grid-item:nth-child(2n+2) {
        margin-right: 0px;
        float: right;
    }
}


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



/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Navigation & Btn Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Global Navigation
========================================================= */


/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Layout Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Body & Wrapper
========================================================= */
body {
    background-color: #fff;
}

/* =========================================================
    Global Navi
========================================================= */
/* Humberger Menu */
header #sp_gnav {
}
header .menu_motion,
header .menu_motion span {
    display: inline-block;
    transition: all .8s;
    box-sizing: border-box;
}
header .menu_motion {
    right: 18px;
    top: 30px;
    position: absolute;
    width: 39px;
    height: 39px;
}
header .menu_motion span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #eb6100;
    border-radius: 5px;
}
header .menu_motion span:nth-of-type(1) {
    top: 0;
}
header .menu_motion span:nth-of-type(2) {
    top: 17px;
}
header .menu_motion span:nth-of-type(3) {
    bottom: 0;
}
header .menu_motion p {
    margin-top: 40px;
    color: #eb6100;
    font-size: 0.7rem;
	text-align: center;
}
/* Humberger Menu:action */
header .menu_motion.active span:nth-of-type(1) {
	-webkit-transform: translateY(17px) rotate(-45deg);
	transform: translateY(17px) rotate(-45deg);
}
header .menu_motion.active span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
	}
	@-webkit-keyframes active-menu-bar02 {
		100% {
			height: 0;
	}
}
header .menu_motion.active span:nth-of-type(3) {
	-webkit-transform: translateY(-17px) rotate(45deg);
	transform: translateY(-17px) rotate(45deg);
}
/* Humberger Menu:inside */
.menu_wrap {
	position: absolute;
	z-index: 99;
	height: 0;
	width: 100%;
	max-height: calc(100vh - 80px);
	top: 100px;
	right: 0;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	overflow-y: scroll;
    transition: height 0.4s ease-in-out;
    background-color: #fff;
}
#sp_gnav .gnav {
    padding-top: 30px;
    height: auto;
    margin-left: 2.0rem;
    font-size: 1.1rem;
}
#sp_gnav .gnav a {
    color: #000;
}
#sp_gnav .menu_active { /* for javascript */
    height: 90%;
}
#sp_gnav .gnav_item {
    display: block;
    height: auto;
    padding: 0;
    margin-bottom: 30px;
}
#sp_gnav .gnav_item:last-child {
    margin-bottom: 60px;
}
#sp_gnav .gnav_item a {
}
#sp_gnav .gnav_item a img {
    vertical-align: -6px;
}

.gnav_submenu {
	position: static;
	opacity: 1;
	width: auto;
	height: 0;
	padding-top: 0;
	transition: height 0.3s ease-in-out;
	overflow: hidden;
}
.gnav_submenu_item> a{
}
.gnav_submenu.gnav_menu_blist_active {
	height: auto;
}
.gnav_submenu_item {
	text-align: left;
	padding-top: 20px;
	padding-left: 2.6rem;
	margin-bottom: 10px;
}
.gnav_submenu_item:last-child {
}
.gnav_submenu_item a {
}


/* =========================================================
    Global Header
========================================================= */
header {
}
header a,
header a:hover {
	text-decoration: none;
}
header #site-header{
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0px;
    left: 0px;
    padding-top: 45px;
    padding-bottom: 20px;
}

/* Logo */
header .header_logo {
    display: table;
    margin-left: auto;
    margin-right: auto;
}
header .header_logo img {
    max-width: 180px;
}
@media (max-width: 959px) {
    header .header_logo {
    }
}
@media screen and (max-width: 768px) {
	header .header_logo {
	    display: block;
	    float: left;
	}
	header #site-header{
	    padding-top: 25px;
	}
    header .header_logo {
	}
}
/* Navi */
header #header-nav {
    width: 100%;
    display: table;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    margin-top: 20px;
}
header #header-nav ul {
    text-align: center;
}
header #header-nav li.main {
	display: inline-block;
	position: relative;
	margin:0;
	padding:0;
    color: #000;
    margin-left: 1%;
    margin-right: 2%;
	line-height: 40px;
}
header #header-nav li.main:first-child {
    margin-left: 0px;
}
header #header-nav li.main:last-child {
    margin-right: 0px;
}
header #header-nav li a {
    font-family: 'roboto';
    font-size: 1.0rem;
    color: #000;
    text-align: center;
    text-decoration: none;
}
header #header-nav li.main a {
    text-align: left;
}

header #header-nav li:hover,
header #header-nav li a:hover {
	color:#bebebe;  /* ホバー時の親メニューの文字色 */
}

header #header-nav li ul {
	position: absolute;
	z-index: 100;
}
header #header-nav li ul li a{
	display: block;
	padding-left: 20px;
	padding-right: 20px;
}
header #header-nav li ul li {
	display: block;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	background:#fff;  /* サブメニューの背景色 */
	white-space: nowrap;
}
header #header-nav li ul li:hover,
header #header-nav li ul li a:hover {
	color: #fff;
	background:#00285c;  /* ホバー時のサブメニューの背景色 */
}
header #header-nav li:hover ul li,
header #header-nav li a:hover ul li{
	visibility: visible;
	overflow: visible;
	height:40px;  /* サブメニューの高さ */
	z-index: 10;
}
/* animation */
header #header-nav * {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

#home header #header-nav li.top a,
#concept header #header-nav li.concept a,
#company header #header-nav li.company a,
#message header #header-nav li.message a,
#news header #header-nav li.news a,
#brand header #header-nav li.brand a,
#brand_dtl header #header-nav li.brand a,
#member header #header-nav li.member a,
#preserve header #header-nav li.preserve a,
#reserve header #header-nav li.reserve a,
#recruit header #header-nav li.recruit a,
#contact header #header-nav li.contact a {
	color: #00285c;
}


/* =========================================================
    Brand Menu
========================================================= */
.brand_menu a,
.brand_menu a:hover {
	text-decoration: none;
}
.brand_menu {
    margin-top: 540px;
    margin-bottom: 40px;
    width: 100%;
    display: table;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    background-color: #fff;
}
.brand_menu ul {
    text-align: center;
}
.brand_menu li {
	display: inline-block;
	position: relative;
	margin:0;
	padding:0;
    color: #000;
    margin-left: 2%;
    margin-right: 3%;
}
.brand_menu li a {
    font-family: 'roboto';
    font-size: 1.0rem;
    color: #000;
    text-align: center;
    text-decoration: none;
}
.brand_menu li a:hover {
	color:#bebebe;
}

/* animation */
.brand_menu  * {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
@media screen and (max-width: 767px) {
	.brand_menu {
	    margin-top: 250px;
	    margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.brand_menu {
	    margin-top: 280px;
	    margin-bottom: 20px;
	}
}
@media screen and (min-width: 768px) and (max-width: 959px), screen and (orientation: landscape) {
	.brand_menu {
	    margin-bottom: 20px;
	}
}


/* =========================================================
    Image Title
========================================================= */
.img_title {
    height: 500px;
    background-image: url(../images/img_title_A.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment:fixed;
}
.img_title .inner {
    position: relative;
}
.img_title h1 {
	position: absolute;
    left: 0px;
    font-size: 9.4rem;
	letter-spacing: 0.3rem;
    font-weight: normail;
    font-family: 'roboto';
    color: #fff;
    z-index: 1;
    padding-top: 180px;
}
.img_title .msg {
	position: absolute;
    left: 0px;
	text-align: left;
    font-size: 2.1rem;
    line-height: 2.8rem;
    font-weight: normail;
    color: #fff;
    z-index: 1;
    padding-top: 268px;
}


/* =========================================================
    Global Footer
========================================================= */
footer {
    height: 100%;
    text-align: center;
}
footer .inner {
/*
    padding-top: 90px;
    padding-bottom: 90px;
*/
    padding-top: 10px;
    padding-bottom: 20px;
}

/*
@media screen and (max-width: 767px) {
@media screen and (max-width: 959px) {
    footer .inner {
        padding-top: 10px;
        padding-bottom: 20px;
    }
}
 */


/* PageTop */
#nav-pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
@media (max-width: 959px) {
    #nav-pagetop a {
        display: block;
        background-color: #000;
        text-align: center;
        color: #fff;
        font-size: 1.2em;
        text-decoration: none;
        padding: 10px 10px;
        filter:alpha(opacity=60);
        -moz-opacity: 0.6;
        opacity: 0.6;
        border-radius: 4px;
        -webkit-border-radius: 4px;
border: 1px solid #fff;
    }
}

/* copyright */
.copyright {
    font-size: 0.9rem;
    color: #2e2e2e;
    text-align: center;
    min-height: 34px;
    padding-top: 30px;
    padding-bottom: 20px;
}





/* /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////

    [ Page Elements Section ]

///////////////////////////////////////////////////////// */

/* =========================================================
    Page Common
========================================================= */
/*------------------------------------------------------- */
/* Common Contents */
/*------------------------------------------------------- */

/* Breadcrumbs
--------------------------------------------------------- */
.nav-breadcrumbs {
}
.nav-breadcrumbs ul {
    padding-top: 40px;
}
.nav-breadcrumbs li {
    font-family: 'roboto';
    font-size: 1.0rem;
    color: #fff;
    display: inline;
}
.nav-breadcrumbs li a {
    font-family: 'roboto';
    font-size: 1.0rem;
    color: #fff;
    display: inline;
}
.nav-breadcrumbs p {
    display: inline;
}
@media screen and (max-width: 767px) {
    .nav-breadcrumbs ul {
        padding-top: 10px;
    }
    .nav-breadcrumbs li,
    .nav-breadcrumbs li a {
        font-size: 0.7rem;
    }
}

/* SPECIAL Contents
--------------------------------------------------------- */
.special-box {
    margin-top: 80px;
    padding-bottom: 40px;
}
#home .special-box {  /* TOPのみ */
    margin-top: 0px;
}
.special-box .col-grid-3-2 .grid-item {
    margin-bottom: 2%;
}
.special-box .special-contents li img {
    transition: 0.5s;
}
.special-box .special-contents li:hover img {
    opacity: 0.5;
}
@media screen and (max-width: 767px) {
    .special-box {
        margin-top: 40px;
        margin-bottom: 10px;
    }
    .special-box .col-grid-3-2 .grid-item {
        margin-bottom: 0.5%;
    }
}

/* Outer Container
--------------------------------------------------------- */
/* コンテナーより外側。width 1000px 以上で表示 */
.outer_container {
    width: 100%;
    background-color: #000;
}
@media (min-width: 1000px) {
    .outer_container {
        max-width: 1160px;
        margin-right: auto;
        margin-left: auto;
        background-color: #000;
    }
}

/* grid-item
--------------------------------------------------------- */
@media screen and (max-width: 767px) {
    .grid-item {
        margin-top: 1%;
    }
}


/* pager with num
--------------------------------------------------------- */
.pager-num {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
.pager-num ul {
    list-style: none;
}
.pager-num ul li{
    float: left;
    font-family: 'roboto';
    font-size: 1.2rem;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
}
.pager-num ul li:first-child{}
.pager-num ul li:last-child{}
.pager-num ul li.current {
    color: #000;
    font-weight: bold;
    padding-top: 13px;
    padding-bottom: 11px;
    padding-left: 17px;
    padding-right: 17px;
    background-color: #fff;
    border: 1px solid #fff;
}
.pager-num ul li a {
    display: block;
    color: #fff;
    font-family: 'roboto';
    text-align: center;
    text-decoration: none;
    padding-top: 12px;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #000;
    border: 2px solid #fff;
}
.pager-num ul li a:hover {
    color: #000;
    background-color: #fff;
}

.pager {
}
.pager ul { }
.pager li { width: 50%; }
.pager li.prev { float: left; }
.pager li.next { float: right; }
.pager li a{
    display: block;
    color: #FFF;
    font-size: 1.4em;
    text-align: center;
    padding: 10px;
    background-color: #333;
}
.pager li.prev a{
    margin-right: 1px;
}
.pager li.next a{

}

@media screen and (max-width: 767px) {
    .pager-num {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .pager-num ul {
        list-style: none;
    }
    .pager-num ul li{
        font-size: 0.8rem;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .pager-num ul li:first-child{}
    .pager-num ul li:last-child{}
    .pager-num ul li.current {
        padding-top: 11px;
        padding-bottom: 9px;
        padding-left: 12px;
        padding-right: 12px;
        background-color: #fff;
        border: 1px solid #fff;
    }
    .pager-num ul li a {
        padding-top: 11px;
        padding-bottom: 9px;
        padding-left: 12px;
        padding-right: 12px;
        background-color: #000;
        border: 1px solid #fff;
    }
    .pager-num ul li a:hover {
    }
}

/* =========================================================
    PARTS
========================================================= */
/* Text Color */
.txt_color_white {
    color: #fff;
}


/* =========================================================
    COMMON
========================================================= */
@media screen and (max-width: 767px) {
    .grid-item {
        /* 上下間のスペース調整 */
        margin-top: 2px;
        margin-bottom: 2px;
    }
}



/* *********************************************************
    Common Style - parts -
      定義済CSSを上書きできるよう、最後に記述すること
********************************************************* */
/* =========================================================
    Spacer
========================================================= */
/* margin */
.mar_t_10 {
   margin-top: 10px;
}
.mar_t_20 {
   margin-top: 20px;
}
.mar_t_40 {
   margin-top: 40px;
}
.mar_t_80 {
   margin-top: 80px;
}

.mar_b_10 {
   margin-bottom: 10px;
}
.mar_b_20 {
   margin-bottom: 20px;
}
.mar_b_40 {
   margin-bottom: 40px;
}
.mar_b_80 {
   margin-bottom: 80px;
}
.mar_b_100 {
   margin-bottom: 100px;
}

/* padding */
.pad_t_10 {
   padding-top: 10px;
}
.pad_t_20 {
   padding-top: 20px;
}
.pad_t_40 {
   padding-top: 40px;
}
.pad_t_80 {
   padding-top: 80px;
}

.pad_b_10 {
   padding-bottom: 10px;
}
.pad_b_20 {
   padding-bottom: 20px;
}
.pad_b_40 {
   padding-bottom: 40px;
}
.pad_b_80 {
   padding-bottom: 80px;
}


/* =========================================================
    Common
========================================================= */
/* opacity */
.opacity6 a:hover {
    opacity: 0.6;
}
.opacity7 a:hover {
    opacity: 0.7;
}
.opacity8 a:hover {
    opacity: 0.8;
}
.opacity9 a:hover {
    opacity: 0.9;
}


/* =========================================================
    System message
========================================================= */
.system_msg {
    margin-top:50px;
    margin-bottom:80px;
    margin-left:0px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #000;
}
.system_msg_white {
    margin-top:50px;
    margin-bottom:80px;
    margin-left:0px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #fff;
}
/* Coming Soon */
.soon {
    margin-top:50px;
    margin-bottom:80px;
    margin-left:0px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #000;
}







/* =========================================================
    SP
========================================================= */

/* Home Page
------------------------------------------------------------------- */
#home {
}
#home #concept-image {
    padding-top: 10px;
}
#home #concept-image img {
}
#home #concept-image h1 {
    padding-top: 20px;
    color: #503c28;
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: center;
}
#home #concept-image p {
    padding-top: 20px;
    color: #503c28;
    font-size: 1.0rem;
    line-height: 1.2rem;
    text-align: center;
}

/* NEWS */
#home #primary-column h2 {
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;

    color: #fff;
    font-size: 1.0rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    text-align: center;

    background-image: url(../images/pattern-brown-brush.png);
    background-repeat:repeat;
	border-radius: 10px;
	padding: 8px;
	padding-top: 10px;
}
#home .home-news-list-more a {
    display: block;
//    width: 200px;
    float: right;
    color: #503c28;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    text-align: center;
	padding: 2px;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 4px;
	border-radius: 8px;
    border: solid 2px #503c28;
}
#home #home-news-list {
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
    padding-bottom: 40px;
    margin-top: 20px;
    margin-bottom: 60px;
    color: #000;
    font-size: 1.0rem;
    line-height: 1.4rem;
}
#home #home-news-list article {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}
#home #home-news-list article img {
    width: 200px;
}
@media screen and (min-width: 500px) {
	#home #home-news-list article {
	    float: left;
	    width: 40%;
	    margin-right: 1%;
	}
	#home #home-news-list article:nth-child(2n+2),
	#home #home-news-list article:last-child {
	    margin-right: 0px;
	}
}
/* NEWS detail */
.news_contents .section_bk {
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}
.news_contents article {
    font-size: 1.0rem;
    line-height: 1.8rem;
}
.news_contents a {
    color: #000;
}
.news_contents .date {
    margin-bottom: 12px;
}
.news_contents .subject {
    font-weight: bold;
    margin-bottom: 20px;
}
.news_contents img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.news_contents .archive {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.6rem;
}
.news_contents .archive a {
    font-size: 0.9rem;
}
.news_contents .archive li {
    float: left;
    width: 46%;
    font-size: 1.0rem;
    text-align: center;
    padding-left: 2px;
}
/* NEWS archive */
.news_contents .archive h2{
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 18px;
}
.news_contents .archive ul {
    margin-top: 20px;
    margin-bottom: 40px;
}
.news_contents .archive li {
    font-size: 1.0rem;
    line-height: 2.0rem;
}

/* Banner:about facilities staff */
#bottom-info {
    margin-top: 40px;
}
#bottom-info div {
    margin-top: 20px;
}
#bottom-staff {
    margin-top: 20px;
    margin-bottom: 20px;
}
#bottom-insta {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Banner:course hyouka */
#bottom-banner {
}
#bottom-hyouka {
    margin-top: 20px;
}
#bottom-banner li,
#bottom-hyouka li {
    margin-top: 20px;
}
#bottom-banner li.last-child,
#bottom-hyouka li.last-child {
}
#bottom-banner h3,
#bottom-hyouka h3 {
    margin-top: 60px;
    color: #503c28;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4rem;
    text-align: center;
}


/* About Page
------------------------------------------------------------------- */
#about {
}

#about h2 {
    margin-bottom: 40px;
}
#about #concept {
    margin-bottom: 50px;
}

#about .wihteback-wrap {
    width: calc( 100% - 40px );
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}

#about #concept h3 {
    margin-bottom: 20px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
#about #concept p {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6em;
}
#about-detail {
}
#about-detail .about-image01 img {
    width: 100px;
}
#about-detail .about-image02 img {
    width: 100px;
}
#about-detail h3 {
    margin-bottom: 20px;
}
#about-detail h4 {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}
#about-detail p {
    font-size: 0.9rem;
    line-height: 1.6rem;
}
#about-detail .message {
/*
    background-image: url(../../../about/images/bg-whiteback-message.png);
    background-repeat: no-repeat;
    background-size: contain;
*/
    padding-top: 44px;
}
#about-detail .art {

/*    background-image: url(../../../about/images/bg-whiteback-art.png);
    background-repeat: no-repeat;
    background-size: contain;
*/
    padding-top: 40px;
}
#about-detail .painting {
/*    background-image: url(../../../about/images/bg-whiteback-painting.png);
    background-repeat: no-repeat;
    background-size: contain;
*/
    padding-top: 40px;
}
#art-skill h3 {
    margin-top: 40px;
    margin-right: auto;
    margin-bottom: 15px;
    margin-left: auto;
}
#art-skill-detail {
}


/* Guide Page
------------------------------------------------------------------- */
#guide {
}

#guide h2 {
    margin-bottom: 40px;
}
#guide #primary-column section {
    background-repeat: no-repeat;
    background-position: left top;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
    left: 0px;
    top: 0px;
    padding-top: 30px;
}

#guide #primary-column section h3 {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    margin-top: 15px;

    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    text-align: center;

    background-image: url(../images/pattern-brown-brush.png);
    background-repeat:repeat;
	border-radius: 10px;
	padding: 8px;
	padding-top: 10px;
}
#guide #primary-column section p {
    font-size: 1.0rem;
    line-height: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
}
#guide #primary-column .section_bk {
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}
#guide .section_bk nav {
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}


/* Course Page
------------------------------------------------------------------- */
#course {
}

#course h2 {
    margin-bottom: 40px;
}
#course-information {
    margin-bottom: 60px;
}
#course-information h3 {
    margin-bottom: 20px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
#course-information p {
    font-size: 0.9rem;
    line-height: 1.6rem;
    text-align: center;
    margin-bottom: 35px;
}
#course-navi ul {
    text-align: center;
}
#course-navi ul li {
    display: inline;
}
#course-navi ul img {
    display: inline;
    width: 40%;
    max-width: 175px;
}
#course-navi .nav-support {
    margin-right: 10%;
}
#course-navi .nav-dayservice {
}
#course-detail {
    position: relative;
/*    height: 1400px; */
}
#course-detail .course-image01 {
    position: absolute;
    z-index: 5;
    left: 32px;
/*    top: 460px; */
/*    top: 700px; */
    top: 660px;
    height: 163px;
    width: 207px;
}
@media screen and (orientation: landscape) {
	#course-detail .course-image01 {
	    left: 20%;
	    top: 580px;
	}
}
#course-detail .course-image02 {
    position: absolute;
    z-index: 5;
/*    top: 667px; */
    top: 560px;
    right: 4px;
    height: 252px;
    width: 142px;
}
#course-detail .course-image03 {
    position: absolute;
    z-index: 5;
    left: 10%;
/*    top: 1170px; */
    bottom: 0px;
}
#course-detail .bg-whiteback {
/*
    background-image: url(../../course/images/bg-whiteback.png);
    background-repeat: no-repeat;
    background-position: left top;
    height: 321px;
    width: 394px;
    padding-top: 73px;
    padding-right: 64px;
    padding-left: 50px;
*/
/*    padding-top: 30px;
    position: absolute;
    z-index: 5;
*/
}
#course-detail .bg-whiteback h3 {
    margin-bottom: 15px;
}
#course-detail .bg-whiteback p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6rem;
}
#course-support {
    width: calc( 100% - 40px );
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}
#course-support-timetable {
/*    height: 287px; */
/*    width: 361px; */
/*    position: absolute; */
/*    left: 291px; */
/*    left: 0px; */
/*    top: 340px; */
/*    top: 300px; */
    z-index: 10;
    padding-bottom: 160px;
    margin-top: 40px;
}
#course-dayservice {
    width: calc( 100% - 40px );
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 80px;
}
#course-dayservice-timetable {
/*    height: 286px; */
/*    width: 361px; */
/*    position: absolute;  */
/*    left: 291px; */
/*    left: 0px;  */
/*    top: 1005px; */
/*    top: 1010px; */
    z-index: 10;
    padding-bottom: 160px;
    margin-top: 40px;
}


/* FAQ Page
------------------------------------------------------------------- */
#faq {
}

#faq h2 {
    margin-bottom: 40px;
}
#faq #faq-list li {
    width: calc( 100% - 40px );
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}
#faq #faq-list li .question {
    background-image: url(../../../faq/images/icon-q.png);
    background-repeat: no-repeat;
    background-position: left top;
    min-height: 28px;
    font-size: 1.4em;
    font-weight: bold;
    padding-left: 50px;
    padding-top: 12px;
    margin-bottom: 20px;
}
#faq #faq-list li .answer {
    font-size: 1.0rem;
    background-image: url(../../../faq/images/icon-a.png);
    background-repeat: no-repeat;
    background-position: left top;
    min-height: 28px;
    padding-left: 50px;
    padding-top: 12px;
}
#faq #faq-list li .multiline {
    padding-top: 0px;
    min-height: 40px;
}


/* Access Page
------------------------------------------------------------------- */
#access {
 
}
#access h2 {
    margin-bottom: 40px;
}
#access #access-map {
    width: 100%;
    margin-bottom: 20px;
}
#access #access-map iframe {
    height: 500px;
    width: 100%;
    margin-bottom: 3px;
}
#access #access-information {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
#access #access-information h3 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.2rem;
    margin-bottom: 5px;
}
#access #access-information p {
    font-size: 1.2em;
}


/* Contact Page
------------------------------------------------------------------- */
#contact {
}

#contact h2 {
    margin-bottom: 40px;
}
#contact .wihteback-wrap {
    width: calc( 100% - 40px );
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}

/* Layout */
#contact .title_box {
	width: 100%;
}
#contact .title_box .notice {
    color: #eb6100;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4rem;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* USER INFO */
#contact .userinfo  {
    width: 100%;
    display: table;
    margin-left: auto;
    margin-right: auto;
}
#contact .userinfo .form_group {
    color: #000;
    font-size: 1.0rem;
    padding-top: 18px;
    padding-bottom: 18px;
}
#contact .userinfo .form_group .th {
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
    display: block;
    width: 100%;
    margin-top: 12px;
    margin-left: 0px;
    margin-right: 0px;
}
#contact .userinfo .form_group .th span {
    color: #DE265D;
    font-weight: bold;
}
#contact .userinfo .form_group .form_data {
    display: block;
    width: 90%;
    float: none;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 0px;
    margin-right: 0px;
}
#contact .userinfo .form_group .form_data input[type=text],
#contact .userinfo .form_group .form_data select,
#contact .userinfo .form_group .form_data textarea {
    display: table-cell;
    float: left;
    width: calc( 100% - 8px );
    min-height: 36px;
    padding: 2px;
    background: #fff;
    border: 2px solid #dbdbdb;
	border-radius: 8px;
    display: block;
}
#contact .userinfo .form_group .form_data.biko textarea {
    height: 200px;
}

#contact .userinfo .form_group .form_align {
	display: inline-block;
	white-space: nowrap;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-right: 20px;
}
#contact .userinfo .form_group .form_align input[type=radio] {
	padding-right: 10px;
	vertical-align: 0px;
}
/* send */
#contact .snd_btn {
    display: table;
    margin-left: auto;
    margin-right: auto;
}
#contact .snd_btn input {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 8px;
    padding-bottom: 6px;
    margin: 4px;
    color: #fff;
    font-size: 1.0rem;
    font-weight: bold;
    letter-spacing: 1.0rem;
    padding-left: calc( 40px + 1.0rem );
    text-align: center;
    white-space: nowrap;
    background-color: #eb6100;
    box-shadow: 0 1.31em 0 0 rgba(255, 255, 255, 0.1) inset;
    border-radius: 0.5rem;
    border: solid 2px #e6b593;
}

/* result message */
#contact .result-message {
    padding-top: 40px;
    padding-bottom: 40px;
    color: #000;
    font-size: 1.0rem;
    line-height: 2.0rem;
    text-align: center;
}


/* Sitemap Page
------------------------------------------------------------------- */
#sitemap {
}

#sitemap h2 {
    margin-bottom: 40px;
}
#sitemap #sitemap-contents {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 0px;
    padding-left: 10%;
}
#sitemap-contents ul {
    float: left;
    width: 90%;
}
#sitemap-contents ul li {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
#sitemap-contents ul li:before {
    content: "\025b6";
    float: left;
    font-size: 1.0rem;
    margin-top: 0px;
    margin-right: 8px;
}
@media screen and (orientation: landscape) {
	#sitemap-contents ul {
	    float: left;
	    width: 50%;
	}
}


/* Facilities Page
------------------------------------------------------------------- */
#facilities {
}

#facilities h2 {
    margin-bottom: 40px;
}

#facilities .wihteback-wrap {
    width: calc( 100% - 40px );
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}

#facilities-contents {
    padding-top: 10px;
    padding-bottom: 18px;
}

#facilities-contents .th {
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    display: block;
/*    width: 100%; */
    padding: 8px;
    background: #645542;
    border-radius: 8px;
}
#facilities-contents .td {
    color: #645542;
    font-size: 0.9rem;
    display: block;
/*    width: 100%; */
    padding: 8px;
    margin-bottom: 12px;
}

#facilities-contents h3 {
    color: #645542;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: center;
    display: block;
    padding: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Staff Page
------------------------------------------------------------------- */
#staff {
}

#staff h2 {
    margin-bottom: 40px;
}
#staff #primary-column .section_bk {
    background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
    margin-top: 25px;
}
#staff #primary-column .section_bk nav {
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
#staff #primary-column section h3 {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    margin-top: 15px;

    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: left;

    background-color: #faa656;
	border-radius: 10px;
	padding: 20px;
	padding-left: 30px;
	padding-top: 22px;
}
#staff #primary-column section h3 span {
    margin-bottom: 20px;
    color: #fff;
    font-size: 0.9rem;
}

#staff #primary-column .staff-contents .staff-photo {
    padding-top: 20px;
    padding-bottom: 30px;
}
#staff #primary-column .staff-contents .staff-photo img {
    max-width: 220px;
}

#staff #primary-column .staff-contents table.history {
    font-size: 0.9rem;
    line-height: 1.8rem;
    margin-top: 30px;
    margin-bottom: 30px;
/*
    margin-right: auto;
    margin-left: auto;
*/
}

/* Gallery Page
------------------------------------------------------------------- */
#gallery {
}
#gallery h2 {
    margin-bottom: 40px;
}
#gallery #artist-name {
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
#gallery-list {
    margin-top: 40px;
}





@media screen and (max-width: 481px) {
	#gallery #gallery-list {
	    display: block;
	    width: 298px;
	    margin-right: auto;
	    margin-left: auto;
	}
	#gallery #gallery-list li {
	    float: left;
	    width: 144px;
	    margin-right: 10px;
	    margin-top: 10px;
	    height: auto;
	}
	#gallery #gallery-list li:nth-child(2n+2) {
	    margin-right: 0px;
	}
}
@media screen and (min-width: 482px) and (max-width: 635px) {
	#gallery #gallery-list {
	    display: block;
	    width: 452px;
	    margin-right: auto;
	    margin-left: auto;
	}
	#gallery #gallery-list li {
	    float: left;
	    width: 144px;
	    margin-right: 10px;
	    margin-top: 10px;
	    height: auto;
	}
	#gallery #gallery-list li:nth-child(3n+3) {
	    margin-right: 0px;
	}
}
@media screen and (min-width: 636px) {
	#gallery #gallery-list {
	    display: block;
	    width: 606px;
	    margin-right: auto;
	    margin-left: auto;
	}
	#gallery #gallery-list li {
	    float: left;
	    width: 144px;
	    margin-right: 10px;
	    margin-top: 10px;
	    height: auto;
	}
	#gallery #gallery-list li:nth-child(4n+4) {
	    margin-right: 0px;
	}
}




