@charset "utf-8";

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

    [ Common Section ]

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

/* =========================================================
    Base Style
========================================================= */
body {
    background-color: #ffffff;
    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('../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 {
    }
}

/* for Only HEADER。gNaviが崩れる */
@media (min-width: 1024px) {
    header .pc-only {
    }
    header .sp-only {
        display: none;
    }
}
@media (max-width: 1023px) {
    header .pc-only {
        display: none;
    }
    header .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%;
}

/* ★Overwrite for only fukurounokai★ */
@media screen and (min-width: 960px) {
	.col-grid-3-1 .grid-item {
	    width: 30%;
	    margin-right: 5%;
	}
}

.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: 18px;  */
    top: 12px;
    position: absolute;
    width: 39px;
    height: 39px;
}
header .menu_motion span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #fff;
    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: #fff;
    font-size: 0.8rem;
	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: 999;
	height: 0;
	width: 100%;
	max-height: calc(100vh - 80px);
	top: 78px;
	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_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 & Footer(共用)
========================================================= */
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: 0px;
    padding-bottom: 0px;
}

/* header_first */
header .header_first {
    width: 100%;
    height: 150px;
/*
    background-image: url(../images/pattern-parts.png);
    background-repeat: repeat;
*/
    background-color: #1971ca;
}
header .header_first h1,
footer h1 {
	color: #fff;
	font-size: 0.9rem;
	padding-top: 17px;
	padding-bottom: 7px;
}
footer h1 {
	padding-top: 0px;
}
@media (max-width: 959px) {
	header .header_first {
	    height: 174px;
	}
	header .header_first h1,
	footer h1 {
		padding-top: 12px;
	}
}
@media screen and (max-width: 959px) and (orientation: landscape) {
	header .header_first {
	    height: 180px;
	}
	header .header_first h1,
	footer h1 {
		padding-top: 12px;
	}
}
/* Logo TEL Contact */
header .left_box,
footer .left_box {
    float: left;
}
header .logo_box,
footer .logo_box {
    display: table;
    float: left;
}
header .logo_box img,
footer .logo_box img {
    float: left;
    max-width: 273px;
	padding-top: 7px;
	padding-right: 36px;
}
header .tel_box,
footer .tel_box {
    display: table;
    float: left;
    color: #fff;
	font-size: 1.2rem;
	padding-top: 24px;
	padding-bottom: 0px;
}
.tel_box .tel_no,
.tel_box .tel_no a {
    display: table;
    float: left;
	padding-top: 12px;
}
header .contact_box {
    display: table;
    float: right;
}
@media screen and (max-width: 959px) {
	header .left_box {
	    float: none;
	}
	header .logo_box,
	footer .logo_box {
	    width: 60%;
    }
	header .logo_box img,
	footer .logo_box img {
	    max-width: 100%;
    }
	header .tel_box_info,
	header .contact_box {
		display: none;
	}
	header .tel_box {
	    display: table;
	    float: right;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	header .tel_box .tel_no,
	header .tel_box .tel_no a {
		padding-top: 4px;
	}
	header .tel_box .tel_no img {
	    float: right;
	    max-width: 50px;
	}
	footer .tel_box .tel_no,
	footer .tel_box .tel_no a {
		padding-top: 4px;
	}
}
@media screen and (max-width: 959px) and (orientation: landscape) {
	header .tel_box .tel_no,
	header .tel_box .tel_no a {
		padding-top: 10px;
	}
}
/* Navi */
header #header-nav {
    width: 100%;
    display: table;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    margin-top: 0px;
    margin-bottom: 0px;
}
header #header-nav ul {
    text-align: center;
}
header #header-nav ul {
    font-size: 0px;  /* liの隙間を無くす */
}
header #header-nav ul .gnavi_en {
    margin-top: 10px;
    text-align: center;
    font-size: 0.8rem;
}
header #header-nav a li.main {
	display: inline-block;
	position: relative;
	margin:0;
	padding:0;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 1.8%;
    padding-right: 1.8%;
/*	line-height: 40px;  */
}
header #header-nav li.main:first-child {
}
header #header-nav li.main:last-child {
}
header #header-nav a li {
/*    font-family: 'roboto'; */
    font-size: 1.0rem;
    font-weight: bold;
    color: #1971ca;
    text-align: center;
    text-decoration: none;
}
header #header-nav a li.main {
    text-align: left;
}
header #header-nav li.main .gnavi_en {
    font-weight: normal;
}

header #header-nav li:hover,
header #header-nav a li:hover {
	color: #fff;
	background-color: #1971ca;
}

/* animation */
header #header-nav * {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

#home header #header-nav li.top,
#home header #header-nav a li.top,
#staff header #header-nav li.staff,
#staff header #header-nav a li.staff,
#guide header #header-nav li.guide,
#guide header #header-nav a li.guide,
#support header #header-nav li.support,
#support header #header-nav a li.support,
#work header #header-nav li.work,
#work header #header-nav a li.work,
#work header #header-nav li.input,
#work header #header-nav a li.input,
#work header #header-nav li.keisan,
#work header #header-nav a li.keisan,
#work header #header-nav li.okuyami,
#work header #header-nav a li.okuyami,
#about header #header-nav li.about,
#about header #header-nav a li.about,
#faq header #header-nav li.faq,
#faq header #header-nav a li.faq,
#contact header #header-nav li.contact,
#contact header #header-nav a li.contact {
	color: #fff;
	background-color: #1971ca;
}
/*★↑*/

/* =========================================================
    Global Footer  ※Header宣言部に共用宣言あり
========================================================= */
footer {
    height: 100%;
    width: 100%;
/*
    background-image: url(../images/pattern-parts.png);
    background-repeat: repeat;
*/
    background-color: #1971ca;
}
footer .inner {
    padding-top: 40px;
    padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
    footer .inner {
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

/* corp_info_box */
footer .corp_info_box {
	float: left;
	display: block;
	text-align: left;
	margin: 0px;
    padding-top: 10px;
}
/* Shop Info */
footer .corp_info {
    float: left;
    padding-top: 0px;
    padding-bottom: 10px;
    height: auto;
    color: #fff;
    font-size: 0.8rem;
    text-align: left;
}
footer .corp_info .corp_addrs {
    padding-top: 8px;
    font-size: 0.9rem;
    line-height: 22px;
}
@media (max-width: 959px) {
}

/* navi */
footer #footer-navi {
/*	float: right;  */
	display: table;
	text-align: left;
	margin: 0px;
    margin-top: 20px;
    height: auto;
}
footer #footer-navi ul {
    list-style: none;
	float: left;
    font-size: 0px;  /* li横に発生する隙間を解消 */
}
footer #footer-navi ul li a {
    font-size: 0.9rem;
    color: #fff;
    display: block;
    text-align: left;
    text-decoration: none;
    padding-top: 7px;
    padding-bottom: 7px;
	transition: 0.5s;
}
footer #footer-navi ul li.small a {
    font-size: 0.8rem;
    padding-left: 12px;
}
footer #footer-navi ul li a:hover {
    color: #000;
}
footer #footer-navi ul li {
    padding-left: 20px;
}
footer #footer-navi li:first-child a {
    padding-top: 0px;
}
footer #footer-navi li:last-child a {
    padding-bottom: 0px;
}
footer #footer-navi #navi-1 {
}
footer #footer-navi #navi-2 {
}
@media (max-width: 959px) {
    footer #footer-navi {
        display: none;
    }
}

/* 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.8rem;
    color: #333333;
    text-align: center;
    min-height: 34px;
    padding-top: 30px;
    padding-bottom: 20px;
}


/* =========================================================
    Image Title
========================================================= */
.img_title {
    height: 200px;
    width: 100%;
    background-image: url(../images/img_title_subpage.jpg);
    background-position: center top;
    background-repeat: no-repeat;
}
.img_title .inner {
    position: relative;
    height: 200px;
	overflow: hidden;
}
.img_title h1 {
	position: absolute;
    right: 0px;
    font-size: 2.0rem;
	letter-spacing: 0.1rem;
    font-weight: normail;
    color: #1971ca;
    z-index: 1;
    padding-top: 70px;
    padding-right: 30px;
}
.img_title .msg {
	position: absolute;
    right: 0px;
	text-align: left;
    font-size: 1.5rem;
    line-height: 2.8rem;
    font-weight: normail;
    color: #1971ca;
    z-index: 1;
    padding-top: 96px;
    padding-right: 30px;
}
@media screen and (max-width: 767px) {
	.img_title {
	    height: 200px;
	    background-position: center top;
	    background-size: auto 200px;
	    background-repeat: no-repeat;
	    background-attachment: scroll;
	}
	.img_title .inner {
	    height: 200px;  /* 枠と同時にinnerにも定義必要。SP時のmenu.htmlにてinnerが覆りaタグ利かなくなる */
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.img_title {
	    height: 260px;
	    background-size: auto 260px;
	}
}
@media screen and (min-width: 768px) and (max-width: 959px),
screen and (max-width: 959px) and (orientation: landscape) {
	.img_title {
	    background-size: auto 500px;
	}
}


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

    [ Page Elements Section ]

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

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


/* Breadcrumbs
--------------------------------------------------------- */


/* SPECIAL Contents
--------------------------------------------------------- */


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


/* =========================================================
    TITLE COMMON
========================================================= */
.main_title {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    font-family: 'roboto';
    font-size: 2.8rem;
    text-align: center;
    color: #333333;
    letter-spacing: 0.1rem;
}
.main_title_jp {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    font-size: 2.0rem;
    text-align: center;
    color: #333333;
    letter-spacing: 0.1rem;
}
.main_title_msg {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-align: center;
    color: #333333;
    line-height: 2.0rem;
    white-space: nowrap;
}
.main_title.text_white ,
.main_title_msg.text_white {
    color: #fff;
}
@media screen and (max-width: 767px) {
	.main_title_jp {
	    font-size: 1.8rem;
	    line-height: 2.0rem;
	}
    .main_title {
        line-height: 2.4rem;
    }
    .main_title_msg {
        line-height: 1.2rem;
        margin-top: 18px;
        margin-bottom: 20px;
        white-space: normal;
    }
}





/* =========================================================
    HOME
========================================================= */
#home {
}
/* SLIDER */
#home .slide_wrap {
    margin-top: 0px;
	position:relative;
}
#home .slide_wrap .slider img {
    max-width: 100%;
    margin-bottom: 0px;
	display: table;
	margin-left: auto;
	margin-right: auto;
}
#home .slick-dots {
    bottom: 24px;
}
@media screen and (max-width: 767px) {
  #home .slide_wrap .slider img {
  }
  .slick-slide {
    width: 700px;  /* SP向け表示幅 */
  }
  #home .slick-dots {
      bottom: 5px;
  }
}


#home .visual_box{
	margin:0 auto;
	position:absolute;
	z-index: 99;
	width:1000px;
/*	height:500px;  */
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
#home .logo_position{
	width:34%;
	padding: 0 0 0 4px;
	float:left;
}
#home .logo_position ul{
	margin:0;
	list-style:none;
}
#home .logo_position ul li img{
	display:block;
	width: 100%;
}
#home ul.slider {
	font-size: 0;
}

/* 作業工賃 */
#home .visual_box_right,
#home .right_bottom_box {
	position:absolute;
	z-index: 99;
	padding: 20px 20px;
	bottom: 8%;
	right: 23%;
	border-radius: 5px;
/*	opacity: 0.6;  *//* NG:子要素まで影響してしまう */
	background: rgba( 0, 188, 194, 0.8);
}
#home .visual_box_right p,
#home .right_bottom_box p {
	color: #fff100;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2.4rem;
	text-align: center;
}
#home #fix_msg {
    display: none;
}
#home .right_bottom_box {
    position: fixed;
}
#home .right_bottom_box span {
    position: absolute;
    font-size: 1.2rem;
    color: #000;
    text-align: center;
	padding-top: 7px;
	top: 6px;
	right: 6px;
    width: 30px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
}

@media screen and (max-width: 1400px) {
	/* 作業工賃 */
	#home .visual_box_right,
	#home .right_bottom_box {
		bottom: 4%;
		right: 4%;
	}
	#home .visual_box_right p,
	#home .right_bottom_box p {
		font-size: 1.4rem;
		line-height: 2.0rem;
	}
}
@media screen and (max-width: 1000px) {
	#home .visual_box{
		width: 100%;
		height: auto !important;
	}
	#home .logo_position ul {
		padding: 20px;
	}

	#home .logo_position ul li img {
		width: 100%;
	}

	/* 作業工賃 */
	#home .visual_box_right,
	#home .right_bottom_box {
		bottom: 4%;
		right: 4%;
	}
	#home .visual_box_right p,
	#home .right_bottom_box p {
		font-size: 1.4rem;
		line-height: 2.0rem;
	}
}
@media screen and (max-width: 768px) {
	#home .logo_position {
		width: 50%;
	}

	/* 作業工賃 */
	#home .visual_box_right {
		padding: 12px 12px;
		bottom: 4%;
		right: 4px;
	}
	#home .right_bottom_box {
		padding: 12px 12px;
		bottom: 4%;
		right: auto;  /* SP時は pagetop ボタンと重なるため左へ */
		left: 4px;
	}
	#home .visual_box_right p,
	#home .right_bottom_box p {
		font-size: 1.0rem;
		line-height: 1.4rem;
	}
	#home .right_bottom_box span {
	    font-size: 1.0rem;
		padding-top: 3px;
		top: 6px;
		right: 6px;
	    width: 23px;
	    height: 20px;
	}
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
	#home .logo_position {
		width: 34%;
		padding: 3vh 0 0 4px;
	}
	#home .logo_position ul li img {
		width: 100%;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1400px) and (orientation: landscape) {
	#home .logo_position {
		width: 36%;
		padding: 3vh 0 0 4px;
	}
	#home .logo_position ul li img {
		width: 100%;
	}
}
/* for iPhone X */
@media screen and (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
	#home .logo_position {
		width: 50%;
	}
}


/* NEWS */
/*
#home .news-box-wrapper {
    margin-bottom: 50px;
    background: #f6f6f6;
}
#home .news-box {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 1.0rem;
}
*/
/* News Title */
/*
#home .news-box .news_title {
    display: block;
	width: 14%;
    float: left;
	text-align: center;
    padding-top: 18px;
    padding-bottom: 14px;
}
#home .news-box .news_title h3 {
    color: #1971ca;
    font-size: 1.8rem;
    margin-top: 70px;
}
#home .news-box .news_title .msg {
    color: #1971ca;
    font-size: 0.9rem;
    margin-top: 18px;
}
*/
/* News Title - info_more */
/*
#home a.info_more {
    padding: 12px 30px 9px 30px;
    font-size: 1.0rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: table;
    margin-top: 40px;
    margin-bottom: 40px;
	border-radius: 10px;
    background-color: #1971ca;
    transition: 0.5s;
}
#home a.info_more:hover {
    opacity: 0.5;
}
*/

/* News Contents */
/*
#home .news-box ul.news-contents {
    display: block;
	width: 76%;
    float: right;
    list-style: none;
    padding-top: 0px;
    padding-bottom: 0px;
}
#home .news-box .news-contents li {
    width: 28.9%;
    float: left;
    margin-right: 6.5%;
    padding-top: 0px;
    padding-bottom: 0px;
}
#home .news-box .news-contents li:last-child {
    margin-right: 0;
}
#home .news-box .news-contents li a {
    text-decoration: none;
    transition: 0.5s;
}
#home .news-box .news-contents li a:hover {
    opacity: 0.5;
}
#home .news-box .news-contents li figure img {
	max-width: 220px;
	border-radius: 10px;
}
#home .news-box .news-contents li .date {
    font-size: 0.9rem;
	color: #373737;
	text-align: left;
    margin-top: 10px;
}
#home .news-box .news-contents li .txt {
    font-size: 1.0rem;
    color: #1971ca;
    line-height: 20px;
	text-align: left;
    margin-top: 6px;
}
*/
/* News一覧表示3個→2個へ */
/*
@media screen and (min-width: 736px) and (max-width: 960px) {
	#home .news-box .news_title {
		width: 20%;
	}
	#home .news-box .news-contents li {
	    width: 40%;
	}
	#home .news-box .news-contents li:last-child {
	    display: none;
	}
}
*/
/* @media (max-width: 959px) {  */
/*
@media (max-width: 735px) {
	#home .news-box {
	    padding-top: 20px;
	    padding-bottom: 20px;
	}
    #home .news-box .news_title {
        float: none;
        width: 100%;
	}
	#home a.info_more {
	    padding: 18px 40px 15px 40px;
	    display: table;
        margin-left: auto;
        margin-right: auto;
	}
	#home .news-box ul.news-contents {
        float: none;
		max-width: 220px;
	    display: table;
        margin-left: auto;
        margin-right: auto;
        padding-top: 30px;
        padding-bottom: 70px;
    }
    #home .news-box .news-contents li {
        float: none;
        width: 100%;
        padding-bottom: 30px;
	    margin-right: 0;
    }
}
@media (max-width: 1024px) {
	#home .news-box .news_title {
	    padding-top: 10px;
	}
	#home a.info_more {
	    padding: 14px 26px 11px 26px;
	    margin-top: 30px;
	    margin-bottom: 30px;
	}
}
*/

/* Message Area */
/*
#home .msg-area {
	margin-top: 20px;
	margin-bottom: 20px;
}
#home .msg-area .left_box {
	float: left;
	width: 40%;
}
#home .msg-area .right_box {
	float: right;
	width: 56%;
	margin-left: 3%;
	margin-right: 1%;
}
#home .msg-area .right_box h3{
	font-size: 1.8rem;
	margin-top: 10px;
	margin-bottom: 20px;
}
#home .msg-area .right_box p.txt{
	font-size: 1.0rem;
	line-height: 30px;
	margin-top: 40px;
}
#home .msg-area .right_box p.name{
	float: right;
	font-size: 1.2rem;
	line-height: 26px;
	margin-top: 60px;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
	#home .msg-area .left_box {
		float: none;
		width: 100%;
	}
	#home .msg-area .right_box {
		float: none;
		width: 96%;
		margin-left: 2%;
		margin-right: 2%;
	}
	#home .msg-area .right_box h3{
		font-size: 1.8rem;
		margin-top: 60px;
		margin-bottom: 20px;
	}
	#home .msg-area .right_box p.txt{
		font-size: 1.0rem;
		line-height: 30px;
		margin-top: 40px;
	}
	#home .msg-area .right_box p.name{
		float: right;
		font-size: 1.2rem;
		line-height: 26px;
		margin-top: 60px;
		margin-bottom: 20px;
	}
}
*/

/* About Area */
#home .about-area {
	margin-top: 80px;
	margin-bottom: 40px;
}
#home .about-area h3 {
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
#home .about-area .about-contents .grid-item {
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Banner Area */
#home .bnr-area.bkcolor {
	padding-top: 60px;
	padding-bottom: 60px;
    background-color: #f6f6f6;
}
#home .bnr-area {
    background-color: none;
}
#home .bnr-area li .inner {
	padding: 10px;
    background-color: #fff;
    border-radius: 10px;
}
#home .bnr-area li.grid-item h4 {
	font-size: 1.2rem;
	font-weight: bold;
	color: #1971ca;
	margin-top: 20px;
	margin-bottom: 20px;
}
#home .bnr-area li.grid-item p {
	font-size: 0.9rem;
	color: #1971ca;
	line-height: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
}

#home .bnr-area li.grid-item a:hover {
	text-decoration: none;
}

#home .bnr-area2 .bnr_img_box {
	margin-top: 20px;
	margin-bottom: 20px;
}
#home .bnr-area2 .bnr_img_box.left {
	float: left;
}
#home .bnr-area2 .bnr_img_box.right {
	float: right;
}
@media screen and (max-width: 960px) {
	#home .bnr-area li.grid-item {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	#home .bnr-area2 .bnr_img_box {
		margin-top: 30px;
		margin-bottom: 60px;
	}
	#home .bnr-area2 .bnr_img_box.left,
	#home .bnr-area2 .bnr_img_box.right {
		float: none;
	}
}

#home .bnr-area a,
#home .bnr-area2 a {
    transition: 0.5s;
}
#home .bnr-area a:hover,
#home .bnr-area2 a:hover {
    cursor: pointer;
    transition: 0.5s;
    opacity: 0.5;
}
/* ★↑ */


/* SERVICE AREA */
#home .service_area {
	padding-top: 60px;
	padding-bottom: 60px;
	margin-bottom: 60px;
    background-color: #f6f6f6;
}
#home .service_area h3 {
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
#home .service_circle {
}
#home .service_circle ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
	margin-top: 40px;
}
#home .service_circle ul li.circle {
	text-align: center;
	width: 280px;
	height: 280px;
	padding: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
}
#home .service_circle ul li.circle .txt_wrap {
	width: 100%;
}
#home .service_circle ul li.circle h4 {
	font-size: 1.4rem;
	font-weight: bold;
	color: #1971ca;
	margin-top: 20px;
	margin-bottom: 20px;
}
#home .service_circle ul li.circle p {
	font-size: 1.0rem;
	color: #1971ca;
	line-height: 1.8rem;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
}

/* SNS */
#home .service_sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 40px;
	margin-top: 60px;
}
#home .service_sns ul li img {
	width: 40px;
}
#home .service_sns ul li a {
    text-decoration: none;
}
#home .service_sns ul li a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 960px) {
	#home .service_area {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#home .service_circle ul {
	    flex-direction: column;
	    gap: 30px;
	}
	#home .service_circle ul li.circle p {
		line-height: 1.2rem;
	}
}





/* =========================================================
    NEWS
========================================================= */
/* News Contents */
#news .news_contents {
    color: #333333;
	margin-top: 0px;
	margin-bottom: 100px;
}
#news .news_contents .news {
    display: block;
    float: left;
    width: 73%;
    min-height: 800px;
    padding-right: 4%;
}
#news .news_contents .archive {
    display: block;
    float: right;
    width: 19%;
    padding-left: 2%;
    font-size: 1.0rem;
    line-height: 1.8rem;
    text-align: center;
}
@media (max-width: 768px) {
    #news .news_contents {
        margin-top: 40px;
        margin-bottom: 60px;
    }
    #news .news_contents .news {
        float: none;
        width: 100%;
        padding-right: 0px;
        border-right: none;
        border-bottom-width: 2px;
        border-bottom-style: solid;
        border-bottom-color: #000;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    #news .news_contents .archive {
        float: none;
        width: 100%;
        padding-left: 0px;
    }
    #news .news_contents .archive li {
        float: left;
        width: 46%;
        font-size: 1.0rem;
        text-align: center;
        padding-left: 2px;
    }
}

/* News detail */
#news .news_contents .news .date {
    display: block;
    float: left;
    font-size: 1.0rem;
    margin-top: 6px;
}
#news .news_contents .news h4.title  {
    display: block;
    float: left;
    width: 100%;
    font-size: 1.4rem;
    color: #1971ca;
    line-height: 2.0rem;
    margin-top: 10px;
}
#news .news_contents .news .inner {
    margin-top: 20px;
}
#news .news_contents .news .inner img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
#news .news_contents .news .txt {
    margin-top: 10px;
    font-size: 1.0rem;
    line-height: 1.8rem;
}
@media (max-width: 768px) {
    #news .news_contents .news h4.title  {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

/* Archive */
#news .news_contents .archive h2 {
    font-size: 1.2rem;
    color: #1971ca;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
#news .news_contents .archive ul {
    margin-top: 20px;
    margin-bottom: 40px;
}
#news .news_contents .archive li {
    padding-left: 2%;
    font-size: 1.0rem;
    line-height: 2.0rem;
}
@media (max-width: 768px) {
    #news .news_contents .archive h2 {
        text-align: center;
        font-size: 1.1rem;
        margin-top: 40px;
    }
    #news .news_contents .archive ul {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    #news .news_contents .archive li {
        padding-left: 0%;
        font-size: 1.1rem;
        line-height: 2.6rem;
    }
}

/* Main Pager */
#news .news_pager {
    margin-top: 60px;
    margin-bottom: 40px;
    display: table;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#news .news_pager p img {
    opacity: 0.7;
}
#news .news_pager p a img {
    opacity: 1.0;
}
#news .news_pager p {
    height: 20px;
    font-size: 1.0rem;
    color: #afafaf;
    white-space: nowrap;
}
#news .news_pager p a {
    color: #000;
}
#news .news_pager p img {
    vertical-align: -4px;
    margin-right: 6px;
    margin-left: 6px;
}
#news .news_pager .prev {
    float: left;
    margin-right: 8px;
}
#news .news_pager .next {
    float: right;
    margin-right: 0px;
}

/* Archives Pager */
#news .arc_pager {
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
@media (max-width: 768px) {
    #news .arc_pager {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-left: 0px;
    }
}
#news .arc_pager ul {
}
#news .arc_pager li {
}
#news .arc_pager .prev {
    float: left;
}
#news .arc_pager .next {
    float: right;
}
#news .arc_pager .non-active {
    color: #a9a9a9;
}







/*★↓*/
/* =========================================================
    ABOUT
========================================================= */
#about .about_contents {
    color: #333333;
	margin-top: 0px;
	margin-bottom: 100px;
}
#about .info_box {
    display: block;
}
#about .info_box .info_profile {
    font-size: 1.0rem;
    text-align: left;
    color: #333333;
    line-height: 2.0rem;
	margin-top: 7px;
/*	padding-left: 4%;*/
}
#about .info_box .info_profile .tr.title {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 20px;
    font-size: 1.6rem;
	color: #1971ca;
}
#about .info_box .info_profile .tr {
	width: 100%;
	padding-bottom: 46px;
}
#about .info_box .info_profile .th {
	width: 23.6%;
	float: left;
	margin-right: 1%;
	color: #1971ca;
}
#about .info_box .info_profile .th:before {
    display: inline-block;
	width: 14px;
	height: 14px;
    font-size: 0px;
	content: "";
	border-radius: 50%;
	margin-top: 0px;
    margin-right: 4px;
	vertical-align: middle;
	background-color: #1971ca;
}
#about .info_box .info_profile .td,
#about .info_box .info_profile .tdw {
	width: 75.4%;
	float: left;
}
#about .info_box .info_profile .tdw {
	padding-bottom: 18px;
}

@media screen and (max-width: 767px) {
	#about .info_box .info_profile {
		float: none;
		width: 100%;
		font-size: 0.8rem;
/*		line-height: 2.2rem; */
	}
	#about .info_box .info_profile .tr {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	#about .info_box .info_profile .th {
/*		width: 23.6%; */
		width: 100%;
		margin-right: 5%;
	}
	#about .info_box .info_profile .td,
	#about .info_box .info_profile .tdw {
/*		width: 71.4%; */
		width: 100%;
	}
}

/* ACCESS */
#about .access {
	padding-top: 50px;
	padding-bottom: 50px;
}

#about .map_info {
	margin-top: 0px;
	margin-bottom: 40px;
}
#about .map_info h3 {
	color: #1971ca;
	font-size: 1.8rem;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 35px;
}
#about .map_info h4 {
	color: #ff4d83;
	font-size: 2.0rem;
	text-align: center;
	margin-top: 35px;
	margin-bottom: 50px;
}
#about .map_info .left_box {
	display: block;
	float: left;
    margin-right: 20px;
}
#about .map_info .right_box {
	display: block;
	float: left;
    margin-left: 20px;
}
#about .map_info .right_box ul {
    list-style: none;
}
#about .map_info .right_box ul li a,
#about .map_info .right_box ul li {
	font-size: 1.1rem;
    margin-top: 0px;
    margin-bottom: 18px;
}

#about .access .map_box {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 0;
    padding-top: 49%;
}
#about .access .map_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
	#about .access {
		padding-top: 20px;
		padding-bottom: 0px;
	}
	#about .map_info h4 {
		line-height: 2.8rem;
	}
	#about .map_info .left_box {
		display: block;
		float: none;
	    margin-right: 0px;
	}
	#about .map_info .right_box {
		display: block;
		float: none;
	    margin-left: 0px;
	    margin-top: 40px;
	}

    #about .access .map_box {
        margin-top: 30px;
        margin-bottom: 0px;
    }
}


/* =========================================================
    GUIDE
========================================================= */
#guide .guide_contents {
    color: #333333;
	margin-top: 0px;
	margin-bottom: 100px;
}
#guide .info_box {
    display: block;
}
#guide .info_box h3 {
	width: 100%;
    text-align: center;
    font-size: 1.6rem;
	color: #1971ca;
	padding-top: 60px;
	padding-bottom: 15px;
}
#guide .info_box h4 {
	width: 100%;
    text-align: center;
    font-size: 1.0rem;
	color: #333333;
	padding-top: 15px;
	padding-bottom: 20px;
}
#guide .info_box .img_box {
	margin-top: 20px;
	margin-bottom: 20px;
}
#guide .info_box .img_box p {
    font-size: 1.0rem;
    text-align: center;
	margin-top: 20px;
	margin-bottom: 0px;
}
#guide .info_box .img_box.left {
	float: left;
}
#guide .info_box .img_box.right {
	float: right;
}

@media screen and (max-width: 767px) {
	#guide .guide_contents {
		margin-bottom: 50px;
	}
	#guide .info_box .img_box {
	}
	#guide .info_box .img_box.left,
	#guide .info_box .img_box.right {
		float: none;
	}
}


/* =========================================================
    STAFF
========================================================= */
#staff {
}

/* STAFF LIST */
#staff .staff_list{
	margin-top: 80px;
	margin-bottom: 100px;
}
#staff .staff_list .staff {
	font-size: 0.9rem;
	margin-top: 40px;
	margin-bottom: 40px;
}
#staff .staff_list .staff .staff_img {
	float: left;
	width: 24%;
}
#staff .staff_list .staff .info_box {
	float: left;
	width: 72%;
	margin-left: 4%;
}
#staff .staff_list .staff .info_box .tr {
	width: 90%;
	padding-top: 12px;
	padding-bottom: 12px;
}
#staff .staff_list .staff .info_box .tr.name {
	font-size: 1.1rem;
	line-height: 30px;
	padding-top: 0px;
	padding-bottom: 0px;
}
#staff .staff_list .staff .info_box .name_en {
	font-size: 1.4rem;
}
#staff .staff_list .staff .info_box .tr.inline {
	padding-bottom: 4px;
}
#staff .staff_list .staff .info_box .tr.txt {
	line-height: 20px;
	padding-top: 22px;
}
#staff .staff_list .staff .info_box .th {
	width: 10%;
	float: left;
	margin-right: 1%;
}
#staff .staff_list .staff .info_box .td {
	width: 89%;
	float: left;
}

@media screen and (max-width: 767px) {
	#staff .staff_list{
		margin-bottom: 40px;
	}
	#staff .staff_list .staff {
		margin-top: 30px;
		margin-bottom: 60px;
	}
	#staff .staff_list .staff .staff_img {
		float: none;
		width: 100%;
		margin-bottom: 40px;
	}
	#staff .staff_list .staff .info_box {
		float: none;
		width: 100%;
	}
	#staff .staff_list .staff .info_box .tr {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	#staff .staff_list .staff .info_box .tr.name {
		text-align: center;
	}
	#staff .staff_list .staff .info_box .th {
		width: 23.6%;
		margin-right: 5%;
	}
	#staff .staff_list .staff .info_box .td {
		width: 71.4%;
	}
}


/* =========================================================
    WORK
========================================================= */
#work .work_contents {
    color: #333333;
	margin-top: 60px;
	margin-bottom: 80px;
}
#work .info li {
	margin-top: 20px;
	margin-bottom: 20px;
}
#work .info a {
    transition: 0.5s;
}
#work .info a:hover {
	opacity: 0.7;
}
#work .info {
    display: block;
	margin-top: 20px;
	margin-bottom: 20px;
}

#work .sch {
	margin-top: 80px;
}
#work .sch .sch_info1,
#work .sch .sch_info2 {
	margin-top: 40px;
	font-size: 1.3rem;
	line-height: 28px;
	color: #5d5e5e;
	text-align: center;
}

@media screen and (max-width: 767px) {
	#work .work_contents {
		margin-bottom: 80px;
	}
	#work .sch {
		margin-top: 50px;
	}
	#work .sch .sch_info2 {
		margin-bottom: 80px;
	}
}


/* =========================================================
    WORK - INPUT, KEISAN, OKUYAMI, DMAIL
========================================================= */
#detail .detail_contents {
    color: #333333;
	margin-top: 60px;
	margin-bottom: 60px;
}

#detail .red {
	color: #ff5f90;
}
#detail .kome {
	padding-left: 21px;
	text-indent: -11px;
}
#detail .kome:before {
    display: inline-block;
    font-size: 1.0rem;
	content: "※";
    margin-right: 0px;
	vertical-align: middle;
}

#detail .work_about {
	margin-top: 100px;
	margin-bottom: 50px;
}
#detail .work_about.center {
	left: 20%;
	position: relative;
}

#detail .work_about .left_box {
	display: inline-block;
	width: 24%;
    margin-right: 3%;
	vertical-align: top;
}
#detail .work_about .right_box {
	display: inline-block;
	width: 64%;
    margin-left: 3%;
    margin-top: 50px;
}
#detail .work_about .right_box ul {
	list-style-type: none;
}

#detail .work_about .right_box ul li.title {
	font-size: 1.2rem;
	color: #1971ca;
    margin-top: 0px;
    margin-bottom: 40px;
    margin-left: 8px;
}
#detail .work_about .right_box ul li.title:before {
    display: inline-block;
	width: 20px;
	height: 20px;
    font-size: 0px;
	content: "";
	border-radius: 50%;
	margin-top: 0px;
    margin-right: 4px;
    margin-left: -24px;
	vertical-align: -3px;
	background-color: #1971ca;
}

/* 説明付 */
#detail .work_about .right_box.big {
    margin-top: 0px;
}
#detail .work_about .right_box.big ul li.title {
    margin-bottom: 10px;
}
#detail .work_about .right_box.big ul li.add-info {
	font-size: 1.0rem;
	color: #333333;
	line-height: 24px;
    margin-top: 0px;
    margin-bottom: 40px;
    margin-left: 10px;
}

/* Detail */
#detail .detail{
	margin-top: 50px;
	margin-bottom: 50px;
	font-size: 1.0rem;
}
#detail .detail .tr {
	width: 100%;
	line-height: 28px;
	padding-top: 40px;
	padding-bottom: 40px;
	border-top: solid 1px #d4d4d4;
}
#detail .detail .tr:last-child {
	border-bottom: solid 1px #d4d4d4;
}
#detail .detail .th {
	width: 18%;
	display: inline-block;
	margin-right: 3%;
	font-size: 1.1rem;
	color: #1971ca;
	font-weight: bold;
}
#detail .detail .td {
	width: 78%;
	display: inline-block;
	vertical-align: middle;
}
#detail .detail .td a {
	color: #1971ca;
}
#detail .detail .td .bluebold {
	color: #1971ca;
	font-weight: bold;
}


@media screen and (max-width: 767px) {
	#detail .detail_contents {
		margin-bottom: 60px;
	}
	#detail .work_about {
		margin-top: 60px;
		margin-bottom: 0px;
	}
	#detail .work_about.center {
		left: 0;
		position: static;
	}
	#detail .work_about .left_box {
		display: block;
		width: 100%;
	    margin-right: 0;
	}
	#detail .work_about .right_box.big,
	#detail .work_about .right_box {
		display: block;
		width: 100%;
	    margin-left: 0;
	    margin-top: 30px;
	}
	#detail .work_about .right_box ul {
	    margin-left: 20px;
	}

	#detail .detail{
		margin-top: 40px;
		margin-bottom: 40px;
	}
	#detail .detail .tr {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	#detail .detail .th {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		font-size: 1.3rem;
	}
	#detail .detail .td {
		width: 100%;
		margin-right: 0;
	}
}
/* for iPad */
@media screen and (min-width: 768px) and (max-width: 959px) {
	#detail .work_about {
		margin-left: 80px;
	}
	#detail .work_about.center {
		left: 0;
		position: static;
	}
	#detail .work_about .left_box {
	}
	#detail .work_about .right_box {
	    margin-top: 10px;
	}
	#detail .work_about .right_box ul {
	}
}
@media screen and (min-width: 768px) and (max-width: 959px) and (orientation: landscape) {
	#detail .work_about {
		margin-left: 80px;
	}
	#detail .work_about.center {
		left: 0;
		position: static;
	}
}
@media screen and (min-width: 960px) and (max-width: 1680px) {
	#detail .work_about {
		margin-left: 80px;
	}
	#detail .work_about.center {
		left: 0;
		position: static;
	}
}


/* =========================================================
    SUPPORT
========================================================= */
#support .support_contents {
    color: #333333;
	margin-top: 60px;
	margin-bottom: 100px;
}
#support .title_box {
	width: 100%;
}
#support .title_box .notice {
    color: #333333;
    font-size: 1.1rem;
    text-align: center;
	line-height: 30px;
	margin-bottom: 20px;
}

#support .supp_info {
	margin-top: 80px;
	margin-bottom: 80px;
}
#support .supp_info .left_box {
	display: inline-block;
	width: 24%;
    margin-right: 3%;
}
#support .supp_info .right_box {
	display: inline-block;
	width: 60%;
    margin-left: 3%;
    margin-top: 16px;
	vertical-align: top;
}
#support .supp_info .right_box ul {
	list-style-type: disc;
}
#support .supp_info .right_box ul li a,
#support .supp_info .right_box ul li {
	font-size: 1.2rem;
	color: #1971ca;
    margin-top: 0px;
    margin-bottom: 28px;
}

#support .bkup_info,
#support .fee_info {
	margin-top: 40px;
	margin-bottom: 40px;
}
#support .bkup_info h2,
#support .fee_info h2 {
	font-size: 1.8rem;
	color: #1971ca;
    margin-top: 0px;
    margin-bottom: 28px;
    margin-left: 26px;
}
#support .bkup_info h2:before,
#support .fee_info h2:before {
    display: inline-block;
	width: 28px;
	height: 28px;
    font-size: 0px;
	content: "";
	border-radius: 50%;
	margin-top: 0px;
    margin-right: 4px;
    margin-left: -30px;
	vertical-align: -3px;
	background-color: #1971ca;
}
#support .bkup_info .left_box p.exp,
#support .fee_info .left_box p.exp {
	font-size: 1.0rem;
	color: #333333;
	line-height: 26px;
    margin-top: 0px;
    margin-bottom: 50px;
}

#support .bkup_info .left_box {
	display: table;
	float: left;
	width: 60%;
}
#support .bkup_info .right_box {
	display: table;
	float: right;
	width: 35%;
}

#support .bkup_info .left_box .ul_title {
	font-size: 1.2rem;
	color: #1971ca;
	text-align: left;
	display: inline-block;
	width: 30%;
}
#support .bkup_info .left_box ul {
	list-style-type: none;
	display: inline-block;
	width: 60%;
	vertical-align: middle;
    margin-left: 40px;
}
#support .bkup_info .left_box ul li {
	font-size: 1.2rem;
	color: #1971ca;
    margin-top: 0px;
    margin-bottom: 14px;
    margin-left: 8px;
}
#support .bkup_info .left_box ul li:before {
    display: inline-block;
	width: 20px;
	height: 20px;
    font-size: 0px;
	content: "";
	border-radius: 50%;
	margin-top: 0px;
    margin-right: 4px;
    margin-left: -24px;
	vertical-align: -3px;
	background-color: #1971ca;
}

@media screen and (max-width: 767px) {
	#support .support_contents {
		margin-bottom: 60px;
	}
	#support .supp_info {
		margin-top: 20px;
		margin-bottom: 0px;
	}
	#support .supp_info .left_box {
		display: block;
		width: 100%;
	    margin-right: 0;
	}
	#support .supp_info .right_box {
		display: block;
		width: 100%;
	    margin-left: 0;
	    margin-top: 30px;
	}
	#support .supp_info .right_box ul {
	    margin-left: 20px;
	}

	#support .bkup_info,
	#support .fee_info {
		margin-top: 40px;
		margin-bottom: 20px;
	}
	#support .bkup_info h2,
	#support .fee_info h2 {
		line-height: 30px;
	}
	#support .bkup_info .left_box,
	#support .bkup_info .right_box {
		display: block;
		width: 100%;
	}
	#support .bkup_info .left_box .ul_title,
	#support .bkup_info .left_box ul {
		display: block;
		width: 100%;
	    margin-left: 0;
	}
	#support .bkup_info .left_box .ul_title {
		text-align: center;
	    margin-bottom: 40px;
	}
	#support .bkup_info .left_box ul {
	    margin-bottom: 40px;
	}
	#support .bkup_info .left_box ul li {
	    margin-left: 20px;
	}
}
/* for iPad */
@media screen and (min-width: 768px) and (max-width: 959px), screen and (orientation: landscape) {
	#support .bkup_info .left_box .ul_title,
	#support .bkup_info .left_box ul {
		display: block;
		width: 100%;
	    margin-left: 0;
	}
	#support .bkup_info .left_box .ul_title {
		text-align: left;
	    margin-bottom: 40px;
	}
	#support .bkup_info .left_box ul {
	    margin-bottom: 40px;
	}
	#support .bkup_info .left_box ul li {
	    margin-left: 40px;
	}
}


/* =========================================================
    Q&A
========================================================= */
#faq .faq_contents {
    color: #333333;
	margin-top: 60px;
	margin-bottom: 80px;
}
#faq .title_box {
	width: 100%;
}
#faq .title_box .notice {
    color: #1971ca;
    font-size: 1.3rem;
    text-align: center;
	line-height: 32px;
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
	#faq .title_box {
	}
}

#faq .info li {
	text-align: left;
	font-size: 1.0rem;
	line-height: 26px;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 15px;
	border: solid 2px #b9f0f2;

    width: 44%;
	min-height: 170px;
    float: left;
    /* カラム間のmargin */;
    margin-right: 1%;
}
#faq .info li:nth-child(2n+2) {
    margin-right: 0px;
    float: right;
}
#faq .info li:after {
    display: table;
    clear: both;
    content: '';
}


#faq .info li .qst {
	color: #ff527f;
	margin-bottom: 16px;
}
#faq .info li .ans {
	color: #1971ca;
}
#faq .info li img {
    display: inline-block;
    margin-right: 0px;
	vertical-align: top;
}
#faq .info li p {
    display: inline-block;
	width: 80%;
    margin-top: 8px;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
	#faq .info li {
        width: 43%;
	}
}
@media screen and (max-width: 768px) {
	#faq .info li {
        width: 82%;
        float: none;
        margin-right: 0px;
        margin-left: auto;
        margin-right: auto;
	}
	#faq .info li:nth-child(2n+2) {
        float: none;
        margin-left: auto;
        margin-right: auto;
	}
	#faq .faq_contents {
		margin-bottom: 80px;
	}
}


/* =========================================================
    CONTACT
========================================================= */
/* Contact Contents */
#contact .contact_contents {
	margin-top: 60px;
	margin-bottom: 100px;
    color: #333333;
}
#contact .contact_contents a {
    color: #333333;
}
/* Layout */
#contact .title_box {
	width: 100%;
}
#contact .title_box .notice {
    color: #1971ca;
    font-size: 1.3rem;
    text-align: center;
	line-height: 32px;
}
#contact .title_box .tel_info {
    margin-top: 40px;
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
	#contact .title_box {
	}
}

/* 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 {
    width: 300px;
    margin-top: 12px;
    padding-left: 4%;
    display: table-cell;
    vertical-align: middle;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}
#contact .userinfo .form_group .form_data {
    width: 70%;
    display: table-cell;
    padding-left: 4%;
    padding-right: 4%;
    vertical-align: middle;
}
#contact .userinfo .form_group .form_data input,
#contact .userinfo .form_group .form_data textarea {
    display: table-cell;
    float: left;
    width: 100%;
    min-height: 36px;
    padding: 2px;
    background: #fff;
    border: 1px solid #9e9e9e;
}
#contact .userinfo .form_group .form_data.biko textarea {
    height: 200px;
}
@media screen and (max-width: 767px) {
    #contact .userinfo  {
        width: 100%;
        margin-top: 20px;
    }
    #contact .userinfo .form_group .th {
        display: block;
        width: 100%;
        float: none;
        margin-top: 12px;
        margin-left: 0px;
        margin-right: 0px;
    }
    #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,
    #contact .userinfo .form_group .form_data textarea {
        display: block;
        width: 96%;
    }
}

/* Privacy Policy */
#contact .policy {
    margin-top: 80px;
    margin-bottom: 80px;
}
#contact .policy,
#contact .policy a {
    color: #000;
}
#contact .policy ul {
	list-style: none;
    font-size: 1.0rem;
	line-height: 2.0rem;
    margin-top: 20px;
    margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
	#contact .policy li {
	    margin-top: 20px;
	    margin-bottom: 20px;
	}
}

/* CONFIRM MESSAGE */
#contact .confirm_msg {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ff0000;
    font-size: 1.3rem;
    text-align: center;
}

/* BUTTON */
/* send */
#contact .snd_btn button {
    padding: 16px 80px 12px 80px;
    background-color: #1971ca;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    transition: 0.5s;
	border-radius: 5px;
}
#contact .snd_btn:hover {
    cursor: pointer;
    transition: 0.5s;
    opacity: 0.5;
}
/* reset&back */
#contact .back_btn button,
#contact .reset_btn button {
    padding: 8px 70px 6px 70px;
    background-color: #a5a5a5;
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    transition: 0.5s;
}
#contact .back_btn:hover,
#contact .reset_btn:hover {
    cursor: pointer;
    transition: 0.5s;
    opacity: 0.5;
}
/* result-message */
#contact .result-message {
    padding-top: 80px;
    padding-bottom: 160px;
    font-size:1.1rem;
    line-height: 2.0rem;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 767px) {
    #contact .result-message {
        font-size: 0.8rem;
        padding-top: 60px;
        padding-bottom: 100px;
    }
}


/* =========================================================
    RECRUIT
========================================================= */
#recruit .recruit_contents {
    color: #333333;
	margin-top: 60px;
	margin-bottom: 60px;
}
#recruit .kome {
	padding-left: 21px;
	text-indent: -11px;
}
#recruit .kome:before {
    display: inline-block;
    font-size: 1.2rem;
	content: "※";
    margin-right: 0px;
	vertical-align: middle;
}

#recruit  h2 {
	font-size: 2.2rem;
	color: #1971ca;
    margin-top: 20px;
    margin-bottom: 24px;
    margin-left: 0px;
}
#recruit  h3 {
	font-size: 1.5rem;
	font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 0px;
}

#recruit .work_about {
	margin-top: 60px;
	margin-bottom: 60px;
}

#recruit .work_about .left_box {
	display: inline-block;
	width: 31%;
    margin-right: 3%;
	vertical-align: top;
}
#recruit .work_about .left_box img {
	max-width: 300px;
}

#recruit .work_about .right_box {
	display: inline-block;
	width: 50%;
    margin-top: 6px;
}
#recruit .work_about .right_box .about {
	font-size: 1.2rem;
	line-height: 30px;
}

/* Detail */
#recruit .recruit{
	margin-top: 50px;
	margin-bottom: 50px;
	font-size: 1.0rem;
}
#recruit .recruit .tr {
	width: 100%;
	font-size: 1.2rem;
	line-height: 22px;
	padding-top: 12px;
	padding-bottom: 12px;
}
#recruit .recruit .tr:last-child {
}
#recruit .recruit .th {
	width: 10%;
	display: inline-block;
	margin-right: 1%;
	margin-left: 4px;
}
#recruit .recruit .td {
	width: 86%;
	display: inline-block;
	vertical-align: middle;
}
#recruit .recruit .td a {
	color: #000;
}


@media screen and (max-width: 960px) {
	#recruit .recruit_contents {
		margin-bottom: 60px;
	}
	#recruit .work_about {
		margin-top: 60px;
		margin-bottom: 0px;
	}
	#recruit  h2 {
	    margin-top: 20px;
	    margin-bottom: 30px;
	}
	#recruit .work_about .left_box {
		display: block;
		width: 100%;
	    margin-right: 0;
	}
	#recruit .work_about .right_box {
		display: block;
		width: 100%;
	    margin-left: 0;
	    margin-top: 50px;
		margin-bottom: 60px;
	}

	#recruit .recruit{
		margin-top: 40px;
		margin-bottom: 40px;
	}
	#recruit .recruit .tr {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	#recruit .recruit .th {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		font-size: 1.3rem;
	}
	#recruit .recruit .td {
		width: 100%;
		margin-right: 0;
	}
}
/* for iPad */
@media screen and (min-width: 768px) and (max-width: 959px) {
	#recruit .work_about {
	}
	#recruit .work_about .left_box {
	}
	#recruit .work_about .right_box {
	}
}
@media screen and (min-width: 768px) and (max-width: 959px) and (orientation: landscape) {
	#recruit .work_about {
	}
}
@media screen and (min-width: 960px) and (max-width: 1680px) {
	#recruit .work_about {
	}
}
@media screen and (max-width: 768px) {
	#recruit  h2 {
		line-height: 40px;
	}
}


/* =========================================================
    TELE WORK
========================================================= */
#telework .telework_contents {
    color: #333333;
	margin-top: 100px;
	margin-bottom: 200px;
}

#telework .telework_contents .telework_about {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: row;
	gap: 50px;
}

#telework .telework_contents .telework_about .telework_msg {
    color: #333333;
    font-size: 1.2rem;
	line-height: 2.0rem;
	margin-bottom: 40px;
}

#telework .bnr_telework_about {
	background-color: #1968b3;
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 40px;
}
#telework .bnr_telework_about h2 {
    color: #fff;
    font-size: 2.0rem;
    font-weight: bold;
	margin-bottom: 30px;
}
#telework .bnr_telework_about p {
    color: #fff;
    font-size: 1.3rem;
	line-height: 2.0rem;
}

@media screen and (max-width: 960px) {
	#telework .telework_contents {
		margin-top: 100px;
		margin-bottom: 140px;
	}

	#telework .telework_contents .telework_about {
	    flex-direction: column;
		gap: 40px;
	}

}


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

