@charset "utf-8";

@media screen and (min-width: 751px) {
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none!important;
    }
}

@media screen and (max-width: 750px) {
    .pc_only {
        display: none!important;
    }
    .sp_only {
        display: block;
    }
}

/* - - - - - - - - - - - - - - - - - - - - - 
	reset
- - - - - - - - - - - - - - - - - - - - - */

body,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
form {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	base
- - - - - - - - - - - - - - - - - - - - - */

html {
    font-size: 62.5%;
}

/*
@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 100;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 200;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 300;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 500;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: bold;
}
*/

body {
    color: #333;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serifsans-serif;
    line-height: 1.8;
    background: #fff;
}

img {
    border: none;
    vertical-align: bottom;
    max-width: 100%;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	link
- - - - - - - - - - - - - - - - - - - - - */

a {
    text-decoration: none;
    outline: none;
}

a:link,
a:visited {
    color: #333;
}

a:hover,
a:active {
    color: #3ca9d1;
}

a img:hover {
    opacity: 0.8;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	clearfix
- - - - - - - - - - - - - - - - - - - - - */

.clearfix::after {
    content: '';
    clear: both;
    display: block;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	.wrapper
- - - - - - - - - - - - - - - - - - - - - */

.wrapper {
    overflow: hidden;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	.header
- - - - - - - - - - - - - - - - - - - - - */

.header {
    background-color: #fff;
    /*border-bottom: 3px solid #44b8e2;*/
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

.header_logo {
    padding-left: 1rem;
    line-height: 47px;
}

.header_logo a {
    display: block;
}

.header_logo img {
    vertical-align: middle;
    width: 50%;
}

.sp_menu {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
}

.menu_trigger,
.menu_trigger span {
    display: block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu_trigger {
    padding: 0.4rem 0 0.4rem 1rem;
    position: relative;
}

.menu_trigger::before {
    content: '';
    background-color: #e0e0e0;
    width: 1px;
    height: 4rem;
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
}

.menu_trigger.active {
    background-color: #44b8e2;
}

.menu_trigger span {
    margin: 0.8rem 0;
    width: 3rem;
    height: 3px;
    background-color: #000;
    border-radius: 1.5px;
}

.menu_trigger.active span {
    background-color: #fff;
}

.menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(1.1rem) rotate(-45deg);
    transform: translateY(1.1rem) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-1.1rem) rotate(45deg);
    transform: translateY(-1.1rem) rotate(45deg);
}


/* --- .header_menu --- */

.header_menu {
    background-color: #000;
    width: 100%;
    position: fixed;
    top: 50px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    display: none;

}

.menu_nav {
    padding: 1rem 1rem 2.5rem;
}

.menu_nav li a {
    display: block;
}

.menu_nav > li:not(:nth-of-type(n+7)) {
    border-bottom: 1px solid #454545;
}

.menu_nav > li:nth-child(7) {
    margin-bottom: 2rem;
}

.menu_nav > li > a {
    padding: 0 0.3rem;
    color: #fff;
    font-size: 1.3em;
    line-height: 2.2;
}

.menu_nav > li > a:hover,
.menu_nav > li > a:active {
    color: #44b8e2;
}

.menu_nav > li:not(:first-child) > a::before {
    color: #44b8e2;
    content: '> ';
}

.sub_menu li a::before {
    content: '';
    position: absolute;
    width: 0.5vw;
    height: 0.5vw;
    border-top: 0.2vw solid #fff;
    border-left: 0.2vw solid #fff;
    transform: translateX(-218%) translateY(12%) rotate(135deg);
}

.menu_logo {
    padding: 2rem 0;
    text-align: center;
    background-color: #fff;
}

.menu_logo img {
    width: 50%;
}

.header_menu small {
    color: #fff;
    font-size: 0.9em;
    line-height: 2;
    text-align: center;
    background-color: #44b8e2;
    display: block;
}

/*
.overlay {
	display: none;
}

.overlay.active {
	background-color: #000;
	width:100%;
	height:120%;
	position: fixed;
	top:0;
	left:0;
	opacity: 0.5;
	z-index: 50;
	display: block;
}
*/


/* - - - - - - - - - - - - - - - - - - - - - 
	.main
- - - - - - - - - - - - - - - - - - - - - */

.main {
    margin: 0 auto;
    padding-top: 70px;
    width: 100%;
    position: relative;
    display: block;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	.footer
- - - - - - - - - - - - - - - - - - - - - */

.pagetop {
    width: 20%;
    max-width: 100px;
    position: fixed;
    right: 0;
    bottom: 9rem;
    z-index: 201;
}

.pagetop p {
    position: relative;
}

.pagetop a {
    padding: 1rem 0;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    background-color: #44b9e3;
    display: block;
    text-align: center;
}

.pagetop a span {
    margin: -4px auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 12px;
    height: 12px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
    display: block;
}

.pagetop a span:first-child {
    margin-top: 0.5rem;
}


footer {
    width: 100%;
    margin-top: -1px;
    text-align: center;
    position: relative;
    z-index: 200;
    background: #232d30;
    overflow: hidden;
    padding: 0.5vw 0;
}

.footer-menu {
    padding: 2vh 2vw;
}

.footer-menu ul {
    width: 90%;
    margin: auto;
    display: block;
}

.footer-menu li {
    display: inline-block;
    border-right: 1px solid #fff;
}

.footer-menu li a {
    display: block;
    color: #fff;
    padding: 0 1vw;
    font-size: 0.8em;
    letter-spacing: 0.15vw;
}

.footer-menu li:last-child {
    border: none;
}

footer .copyright {
    padding: 2vh 2vw;
    color: #fff;
    background: #232d30;
}
footer .copyright p {
    font-size: 0.7em;
}

/* - - - - - - - - - - - - - - - - - - - - - 
/* .index
//////////////////////////*/

/* --- common --- */

.index .main p {
    margin: 0 0 1.5em;
}

.box_top {
    border-bottom: 1px solid #bfbfbf;
    position: relative;
}

.box_top_inner {
    padding: 4rem 5%;
}

.box_conte {}

.top_headline {
    margin: 0 0 1.5rem;
    color: #000;
    font-size: 1.35em;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
}

.top_headline span {
    color: #999;
    font-size: 0.6em;
    font-weight: normal;
    display: block;
}

.top_headline span::first-letter {
    color: #3ca9d1;
}


/* --- .slider --- */

.box_top.slider {
    border-bottom: none;
}

.slider .box_top_inner {
    padding: 0;
}


/* slick */

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    padding: 1.5rem 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px;
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
}

.slick-dots li button {
    text-indent: 150%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: #d7d6dc;
    width: 10px;
    height: 10px;
    outline: none;
    display: block;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #7d7d7d;
}


/* --- .bnr_conte --- */

.bnr_conte {
    padding: 1rem 0;
    background-color: #eee;
}

.bnr_conte ul {
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bnr_conte li {
    margin: 0.5rem 0;
    width: 49%;
}


/* --- .news --- */

.list_news {
    font-size: 1.1em;
}

.list_news time {
    color: #44b8e2;
}

.list_news span {
    margin-left: 2rem;
    color: #fff;
    font-size: 0.75em;
    text-align: center;
    width: 8em;
    display: inline-block;
}

.cat01 {
    /* プレスリリース */
    background-color: #93c202;
}

.cat02 {
    /* お知らせ */
    background-color: #44b8e2;
}

.cat03 {
    /* セミナー */
    background-color: #f4966d;
}

.cat04 {
    /* メディア掲載 */
    background-color: #f46db3;
}

.list_news dd {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dotted #e5e5e5;
}

.list_news dd:last-child {
    border-bottom: none;
}


/* --- .service --- */

.box_top.service .box_conte p {
    margin-bottom: 1rem;
    text-align: center;
}


/* --- .company --- */

.box_top.company .box_list_btn2 {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.box_top.company .box_list_btn2 li {
    width: 50%;
    box-sizing: border-box;
}

.box_top.company .box_list_btn2 li:nth-last-child(2) {
    margin-bottom: 0;
}


/* --- .inquiries --- */

.box_top.inquiries {
    border-bottom: 0;
}

.list_inquiry dt {
    font-size: 1.2em;
    font-weight: bold;
}

.list_inquiry dd {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dotted #ccc;
}

.index .main .list_inquiry p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.list_inquiry .btn br {
    display: none;
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* .article
//////////////////////////*/

.article .main p {
    margin: 0 0 1.5em;
}

.contents_area {
    margin-bottom: 4rem;
}

.box_article {
    margin: 0 5%;
}

.box_article a:link,
.box_article a:visited {
    color: #3ca9d1;
    text-decoration: underline;
}

.box_article a:hover,
.box_article a:active {
    color: #333;
}

span.example2 {
    color: red;
    font-weight: bold;
}

span.rank-1 {
    font-size: 1.5em;
    font-weight: bold;
}

span.rank-2 {
    font-size: 1.5em;
}

span.rank-3 {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: underline;
}

span.rank-4 {
    font-size: 1.5em;
    text-decoration: underline;
}

.main_visual {
    margin-bottom: 0.5rem;
}

.main_visual img {
    width: 100%;
}

.article .main .main_visual + p {
    margin: 0 5% 4rem;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.8;
}

.article .main .main_visual + p span {
    font-weight: normal;
}

.box_inner {
    margin-bottom: 4rem;
}

.box {
    margin-bottom: 1rem;
}

.box_border {
    margin-bottom: 2.5em;
    padding: 1.5rem;
    border: 4px solid #eee;
}

.box_border p:last-child {
    margin: 0;
}

.box_gray {
    margin-bottom: 2.5em;
    padding: 1.5rem;
    background-color: #eff2f3;
}

.box_border .box_list_ol,
.box_gray .box_list_ol {
    margin: 0 1.75em;
}

.box_statement {
    padding: 2.5rem 0;
    background-color: #eff2f3;
    border: 2px solid #fff;
    box-shadow: 0 0 0 5px #eff2f3;
    box-sizing: border-box;
}

.box_statement p {
    font-size: 1.15em;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 2;
    text-align: center;
}

.article .main .box_statement p {
    margin: 0;
}

.measurement_inq {
    text-align: center;
}

.measurement_inq dt {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    font-size: 1.1em;
    font-weight: bold;
    border-bottom: 2px solid #eee;
}

.article .main .measurement_inq p {
    margin-bottom: 0.5rem;
}

.measurement_inq .btn_arrow2 {
    margin: 0 2rem;
}

.box_article .measurement_inq .btn_arrow2 a:link,
.box_article .measurement_inq .btn_arrow2 a:visited {
    color: #44b8e2;
    font-weight: bold;
    text-decoration: none;
}

.box_article .measurement_inq .btn_arrow2 a:hover,
.box_article .measurement_inq .btn_arrow2 a:active {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.box_list2.policy {
    margin-bottom: 1.5em;
}

.table_history tr {
    border-bottom: 1px dashed #dedede;
}

.table_history th,
.table_history td {
    padding: 1rem 0;
    vertical-align: top;
}

.table_history th {
    padding-right: 1.5em;
    text-align: right;
    width: 20%;
}


/* --- company --- */

.table_company {
    border: 2px solid #dcdcdc;
}

.table_company tr {
    border-bottom: 1px solid #e5e5e5;
}

.table_company th {
    text-align: left;
    width: 25%;
    max-width: 150px;
    border-right: 1px solid #e5e5e5;
    background-color: #eff2f3;
    box-sizing: border-box;
}

.table_company th,
.table_company td {
    padding: 1em;
    position: relative;
}

.table_company td dt {
    margin-bottom: 5px;
    font-weight: bold;
}

.table_company td dt::before {
    color: #44b8e2;
    content: '●';
}

.table_company td dd {
    margin-bottom: 1.5rem;
}

.table_company td dd li {
    margin-bottom: 5px;
    padding-bottom: 10px;
    line-height: 2.4;
    border-bottom: 1px dotted #e5e5e5;
    position: relative;
}

.box_article .table_company a {
    color: #44b8e2;
}

.btn_map {
    width: 30%;
    max-width: 80px;
    position: absolute;
    top: 0.2em;
    right: 0.5em;
}

.table_company tr:first-child .btn_map {
    margin-top: 0.5rem;
    line-height: 2.4;
    width: 100%;
    max-width: 100%;
    position: static;
}

.box_article .btn_map a {
    padding: 0 0.75em;
    color: #333;
    text-decoration: none;
    text-align: center;
    background-color: #eee;
    display: block;
}

.box_article .btn_map a:hover {
    background-color: #aaa;
}

.btn_map a::before {
    color: #44b8e2;
    content: '> ';
}

.table_company .box_list a {
    padding-right: 20px;
    background: url("../images/site_parts/mark_blank2.png") no-repeat right top;
}

.box_group_policy,
.box_privacy {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 0 0 5px #eee;
    box-sizing: border-box;
}

.box_group_policy dt,
.box_privacy dt {
    margin-bottom: 2rem;
    font-size: 1.3em;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: bold;
    line-height: 2.4;
    text-align: center;
    border-bottom: 2px solid #eee;
}

.box_group_policy strong,
.box_privacy strong {
    color: #2d98bf;
    font-size: 1.15em;
}

.box_inner .box_anchor {
    margin-bottom: 3.5rem;
}

.table_company.group tr:nth-child(2) td dt::before {
    display: none;
}


/* map */

.box iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.btn_map.big,
.btn_map.back {
    margin-top: 1rem;
    line-height: 3;
    width: 100%;
    max-width: 100%;
    position: static;
}


/* --- .news --- */

.box_category {
    margin: 0 5% 4rem;
}

.box_category ul li:not(:last-child) {
    margin-bottom: 1rem;
}

.box_article .box_category a:link,
.box_article .box_category a:visited {
    color: #333;
    text-decoration: none;
}

.box_article .box_category a:hover,
.box_article .box_category a:active {
    color: #3ca9d1;
    text-decoration: underline;
}

.box_category span,
.article_time span {
    margin: 0 0.75rem;
    color: #fff;
    font-size: 0.75em;
    text-align: center;
    width: 9rem;
    display: inline-block;
}

.box_article .list_news a:link,
.box_article .list_news a:visited {
    color: #333;
    text-decoration: none;
}

.box_article .list_news a:hover,
.box_article .list_news a:active {
    color: #3ca9d1;
    text-decoration: underline;
}

.header_news .title_headline {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dotted #e5e5e5;
}

.utility {
    margin-top: 0.5rem;
    text-align: right;
}

.utility li {
    display: inline-block;
}

.utility li:first-child {
    background: url("../images/site_parts/icon_print.png") no-repeat 0.5rem center;
}

.utility li:nth-child(2) {
    background: url("../images/site_parts/icon_pdf.png") no-repeat 0.5rem center;
}

.box_article .utility li a {
    padding: 0.3rem 0.3rem 0.3rem 2.5rem;
    color: #333;
    font-size: 0.75em;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #d2d2d2;
    display: inline-block;
}

.box_article .utility li a:hover,
.box_article .utility li a:active {
    color: #000;
    border: 2px solid #000;
}

.box_article .btn_arrow a:link,
.box_article .btn_arrow a:visited {
    color: #333;
    text-decoration: none;
}


/* --- .contact(index) --- */

.page_contact .title_headline {
    margin-bottom: 2.5rem;
    padding-left: 0;
    color: #333;
    font-size: 1.55em;
    letter-spacing: 0;
    line-height: 1.8;
    border-bottom: 4px solid #44b8e2;
    border-left: none;
}

/*.page_contact .btn {
	margin-bottom: 0.5rem;
}*/

.page_contact .btn a {
    text-decoration: none;
}

.page_contact .btn.btn_blue a:link,
.page_contact .btn.btn_blue a:visited {
    color: #fff;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page_contact .btn.btn_blue a:hover,
.page_contact .btn.btn_blue a:active {
    color: #44b8e2;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.page_contact .btn.btn_blue a span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* - - - - - - - - - - - - - - - - - - - - - 
/* .side
//////////////////////////*/

.side {
    margin: 0 auto;
    width: 90%;
}

.side .box_list_btn li {}

.side_menu {
    display: none;
}

.box_side {
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0px 0px 17px -4px #aea3a3;
}

.box_side li {
    text-align: left;
}

.box_side dt {
/*    margin-bottom: 1rem;*/
    font-size: 1.1em;
    font-weight: bold;
}

/*
.box_side .box {
	padding: 1.5rem 1rem;
	background-color: #eee;
}
*/
/*

.box_side .box span {
	font-weight: bold;
	display: block;
}
*/

.box_relation {
    border: 4px solid #eee;
}

/*.box_inquiry {
	background-color: #eee;
}*/

.box_inquiry .box {
    background-color: #fff;
}

/*.box_inquiry .box + .box,
.box_inquiry .box .btn + .btn {
	margin-top: 1rem;
}*/

.box_inquiry .btn a {
    font-size: 0.9em;
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* parts
//////////////////////////*/

/* ---  .box_mainheadline --- */

.box_mainheadline {
    padding: 1.5rem 0;
}

.main_headline {
    font-size: 1.85em;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
}

.main_headline span {
    color: #999;
    font-size: 0.5em;
    font-weight: normal;
    display: block;
}

.main_headline span::first-letter {
    color: #3ca9d1;
}


/* ---  .breadcrumbs --- */

.breadcrumbs {
    display: none;
}


/* ---  .box_anchor --- */

.box_anchor {
    padding: 1.5rem;
    border: 4px solid #eee;
}

.box_anchor ul li:not(:last-child) {
    margin-bottom: 1rem;
}

.box_anchor ul li::before {
    margin-right: 0.3rem;
    color: #3ca9d1;
    content: '\002228';
}

.box_article .box_anchor a:link,
.box_article .box_anchor a:visited {
    color: #333;
    text-decoration: none;
}

.box_article .box_anchor a:hover,
.box_article .box_anchor a:active {
    color: #3ca9d1;
    text-decoration: underline;
}


/* --- .title_headline --- */

.title_headline {
    margin-bottom: 2.5rem;
    color: #333;
    font-size: 1.55em;
    letter-spacing: 0.1em;
    line-height: 1.8;
    border-bottom: 4px solid #44b8e2;
}

.title_headline2 {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    color: #333;
    font-size: 1.3em;
    border-left: 6px solid #44b8e2;
}
h3.lv3 {
    border-bottom: dashed 1px #44b8e2;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* --- .box_list ---　*/

.box_list {}

.box_list li {
    margin-bottom: 1.2rem;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.box_list li:last-child {
    margin-bottom: 0;
}

.box_list li::before {
    margin-right: 0.5rem;
    color: #3ca9d1;
    content: '●';
}

.box_list2 {}

.box_list2 li {
    margin-bottom: 1.2rem;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.box_list2 li:last-child {
    margin-bottom: 0;
}

.box_list2 li::before {
    margin-right: 0.5rem;
    color: #3ca9d1;
    content: '>';
}

.box_article .box_list li a,
.box_article .box_list2 li a {
    color: #333;
}

.box_list_ol {
    margin-left: 1.5em;
}

.box_list_ol > li {
    margin-bottom: 1.2rem;
    font-weight: bold;
    list-style: decimal;
}

.box_list_ol.weight > li {
    font-weight: normal;
}

.box_list_ol li:last-child {
    margin-bottom: 0;
}

.box_list_ol_alpha {
    margin-left: 1.5em;
}

.box_list_ol_alpha > li {
    list-style: lower-latin;
}

.box_list_ol .box_list li {
    font-weight: normal;
}

.box_list li span,
.box_list_ol li span {
    font-weight: normal;
}

.box_list_btn li,
.box_list_btn2 li {
    margin-bottom: 1rem;
}

.box_list_btn li:last-child,
.box_list_btn2 li:last-child {
    margin-bottom: 0;
}

.box_list_btn a {
    padding: 0.65rem 1rem;
    color: #333;
    line-height: 1.8;
    border: 3px solid #eee;
    background-color: #fff;
    display: block;
}

.box_list_btn a:hover,
.box_list_btn a:active {
    border: 3px solid #44b8e2;
    background-color: #fefefe;
}

.box_list_btn li a::before {
    color: #44b8e2;
    content: '> ';
}

.box_list_btn2 a {
    /*padding: 0.65rem 1rem;*/
    color: #333;
    line-height: 1.8;
    display: block;
}

.box_list_btn2 a:hover,
.box_list_btn2 a:active {
    color: #44b8e2;
}

.box_list_btn2 li a::before {
    color: #44b8e2;
    content: '> ';
}


/* --- .img ---　*/

.float_img_left,
.float_img_right {
    margin-bottom: 1.5rem;
    text-align: center;
}

.box_img {
    margin-bottom: 1.5em;
    text-align: center;
}

.box_img img {
    width: 100%;
}

.box_img img.not100 {
    width: auto;
}

/* --- .font ---　*/

.attention {
    color: #c00;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
    display: block;
}

.indent2 {
    padding-left: 2em;
    text-indent: -2em;
    display: block;
}

.indent3 {
    padding-left: 3em;
    text-indent: -3em;
    display: block;
}

.txt_left {
    text-align: left;
}

.txt_center {
    text-align: center;
}

.article .main .txt_right {
    text-align: right;
}

.mincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.blank::after {
    margin-left: 0.5rem;
    content: url("../images/site_parts/icon_blank.png");
}


/* --- table ---　*/

.basic {}

.basic tr {}

.basic th {
    text-align: left;
}

.basic td {}

.basic th,
.basic td {
    padding: 10px;
}

.basic tbody td p:last-of-type {
    margin: 0;
}


/* --- .btn ---　*/

.btn {
    line-height: 1.4;
    text-align: center;
}

.box_inner .btn a {
    padding: 1.2rem 0;
    color: #000;
    font-weight: bold;
    border-width: 2px;
    border-style: solid;
    border-radius: 40px;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.box_inner .btn a::after {
    position: absolute;
    content: '>';
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    font-size: 1vw;
}

.side .btn a {
    padding: 1.2rem 0;
    color: #333;
    display: flex;
    border-bottom: dotted 1px #aea3a3;
    font-size: 1.3rem;
}
.side .btn.kakko a::before {
    margin-right: -3px;
}
@media all and (-ms-high-contrast:none) {

    /* IE YuGothic */
    .btn a {
        padding: 1.5rem 0 1.2rem;
    }
}

.btn_black a {
    border-color: #000;
    background-color: #000;
}

.btn_black a:hover,
.btn_black a:active {
    color: #000;
    background-color: #fff;
}

/*
.btn_blue a {
	border: 1px solid #44b8e2;
	background-color: #44b8e2;
}

.btn_blue a:hover,
.btn_blue a:active {
	color: #44b8e2;
	border: 1px solid #44b8e2;
	background-color: #fff;
}
*/

.btn_blue a {
    border-color: #44b8e2;
    background-color: #44b8e2;
    transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
    -ms-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
}

.btn_blue a:hover,
.btn_blue a:active {
    background-color: #fff;
    transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
}


.btn_gray a {
    border-color: #b5b5b5;
    background-color: #b5b5b5;
}

.btn_gray a:hover,
.btn_gray a:active {
    color: #b5b5b5;
    background-color: #fff;
}

.btn_white a {
    border-color: #000;
    background-color: #fff;
    transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
    -ms-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
}

.btn_white a:hover,
.btn_white a:active {
    background-color: #ff0;
    transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
}

.btn_arrow {}

.btn_arrow a {
    color: #333;
    line-height: 3.3;
    text-align: center;
    background-color: #eee;
    display: block;
}

.btn_arrow a:hover,
.btn_arrow a:active {
    opacity: 0.8;
}

.btn_arrow span::before {
    color: #44b8e2;
    content: '> ';
}

.btn_arrow2 {}

.btn_arrow2 a {
    color: #333;
    line-height: 3;
    text-align: center;
    background-color: #fff;
    border: 4px solid #44b8e2;
    display: block;
}

.btn_arrow2 a:hover,
.btn_arrow2 a:active {
    color: #fff;
    background-color: #44b8e2;
}

.btn_arrow2 a:hover span::before,
.btn_arrow2 a:active span::before {
    color: #fff;
    content: '> ';
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* form
//////////////////////////*/

input,
textarea,
select {
    padding: 0.15em;
    color: #333;
    font-size: 1.6rem;
    font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    outline: none;
    background: #fff;
    border: 1px solid #dcdcdc;
    box-sizing: border-box;
}

button {
    padding: 0.15em;
    color: #333;
    font-size: 1.6rem;
    font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #999;
}

:-moz-placeholder {
    color: #999;
}

:-ms-input-placeholder {
    color: #999;
}

input[type="checkbox"] {
    display: none;
}

.checkbox {
    padding: 3px 3px 3px 22px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.checkbox:before {
    margin-top: 8px;
    content: '';
    background: #fff;
    border: 1px solid #aaa;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
}

input[type="checkbox"]:checked + .checkbox:after {
    content: '';
    width: 13px;
    height: 5px;
    position: absolute;
    top: 5px;
    left: 3px;
    border-left: 2px solid #3498db;
    border-bottom: 2px solid #3498db;
    transform: rotate(-45deg);
}

input[type="radio"] {
    display: none;
}

.radiobtn {
    padding: 3px 3px 3px 25px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.radiobtn:before {
    margin-top: -8px;
    content: '';
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 0;
}

input[type="radio"]:checked + .radiobtn:after {
    margin-top: -4px;
    content: '';
    background: #3498db;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 4px;
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* @media SP
//////////////////////////*/

@media screen and (max-width: 767px) {


    /* --- common --- */

    .pc {
        display: none;
    }

}

/* --- VIDEO  --- */
.box_article video, .box_article iframe {
    width: 100%;
    height: auto;
    margin: 20px auto 40px auto;
    display: block;
    box-shadow: 0px 17px 23px 2px #d1cfcf;
}

.box_article iframe{
    height: 641px;
}


@media screen and (max-width: 767px) {
    .box_article video, .box_article iframe {
        width: 100%;
    }
	.box_article iframe {
  	  height: 50vw;
	}
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* @media PC
//////////////////////////*/

@media screen and (min-width: 768px) {


    /* --- common --- */

    .sp {
        display: none;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
	.header
- - - - - - - - - - - - - - - - - - - - - */

    .header {
        /*border-bottom: 5px solid #44b8e2;*/
        height: 60px;
    }

    .header_inner {
        margin: 0 auto;
        width: 90%;
        max-width: 1200px;
        display: -ms-flexbox;
        display: flex;
    }

    .header_logo {
        padding-left: 0;
        line-height: 55px;
        width: 30%;
        max-width: 340px;
    }

    .header .header_logo img {
        width: auto;
    }

    .header .header_logo a:hover img {
        opacity: 1;
    }


    /* --- .header_menu --- */

    .header_menu {
        background-color: transparent;
        width: 65%;
        position: static;
        overflow-y: hidden;
        display: block;
    }

    .menu_nav {
        padding: 0;

        display: -ms-flexbox;
        display: flex;
    }

    .menu_nav li {
        width: 25%;
    }

    .menu_nav > li:not(:nth-of-type(n+7)) {
        border-bottom: none
    }

    .menu_nav > li:nth-child(7) {
        margin-bottom: 0;
    }

    .menu_nav > li > a {
        padding: 0;
        color: #000;
        font-size: 1.2em;
        font-weight: bold;
        line-height: 55px;
        text-align: center;
    }

    .menu_nav > li > a:hover,
    .menu_nav > li > a:active {
        color: #44b8e2;
        /*	background-color: #44b8e2;*/
    }

    .menu_nav > li:first-child,
    .menu_nav > li:not(:first-child) > a::before,
    .menu_logo,
    .header_menu small {
        display: none;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
	.main
- - - - - - - - - - - - - - - - - - - - - */

    .main {
        padding-top: 60px;
        min-height: calc(100vh - 236px);
    }

    .index .main {
        padding-top: 80px;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
	.footer
- - - - - - - - - - - - - - - - - - - - - */


    /* - - - - - - - - - - - - - - - - - - - - - 
/* .index
//////////////////////////*/

    /* --- common --- */

    .box_top_inner {
        margin: 0 auto;
        padding: 4rem 0;
        width: 1000px;
        display: -ms-flexbox;
        display: flex;
    }

    .box_conte {
        width: 75%;
    }

    .top_headline {
        margin: 0;
        width: 25%;
        min-width: 200px;
    }

    .top_headline span {
        color: #999;
        font-size: 0.6em;
        font-weight: normal;
        display: block;
    }


    /* --- .slider --- */

    .box_top.slider {
        border-bottom: none;
    }

    .slider .box_top_inner {
        padding: 0;
        width: 100%;
        display: block;
    }

    .box_slider {
        text-align: center;
        position: relative;
    }

    .box_slider .box_conte {
        width: 100%;
    }


    /* slick */

    .slick-slide img {
        display: inline;
    }

    .slick-dots {
        padding: 0 1.5rem 0 0;
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 0;
    }


    /* --- .bnr_conte --- */

    .bnr_conte ul {
        flex-wrap: nowrap;
    }

    .bnr_conte li {
        width: 24%;
    }


    /* --- .news --- */

    .list_news {
        font-size: 1em;
    }

    /*
.list_news dt {
	width: 175px;
	float: left;
}
*/
    .list_news dt {
        width: auto;
        float: left;
    }

    .list_news dd {
        padding-left: 220px;
    }


    /* --- .service --- */

    .box_top.service .box_conte {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .box_top.service .box_conte p {
        width: 50%;
        text-align: left;
    }

    .box_top.service .btn_arrow2 {
        width: 50%;
    }


    /* --- .company --- */

    .box_top.company .box_list_btn2 li {
        width: 33%;
    }


    /* --- .inquiries --- */

    .list_inquiry dt {
        font-size: 1.1em;
    }

    .list_inquiry dd {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .index .main .list_inquiry p {
        margin-bottom: 0;
        padding-right: 3rem;
        width: 65%;
        box-sizing: border-box;
    }

    .list_inquiry .btn {
        width: 35%;
    }

    .list_inquiry dd:first-of-type .btn {
        margin-top: -25px;
    }

    .list_inquiry .btn br {
        display: block;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
/* .article
//////////////////////////*/
    /*
.contents_area {
	margin: 0 auto 4rem;
	width: 1000px;
	display: -ms-flexbox;
	display: flex;
	max-width: 1000px;
}
*/
article.box_article.one_column {
    width: 80%;
    margin: auto;
	max-width: 700px;	
}
    .contents_area {
        margin: 0 auto 4rem;
        width: 90%;
        display: flex;
        max-width: 1140px;
        min-width: 900px;
    }

    @media screen and (min-width: 768px) and (max-width: 1087px) {
        /*section.contents_area {
            margin-left: 60px;
        }*/
    }


    .box_article {
        margin: 0 8vw 0 0;
        width: calc(100% - 8vw);
    }

    .article .main .main_visual + p {
        margin: 0 0 4rem;
    }


    /* --- company --- */

    .table_company tr:first-child .btn_map {
        margin-top: 0;
        width: 30%;
        max-width: 80px;
        position: absolute;
        top: 0.5em;
        right: 1.5em;
    }


    /* map */

    .btn_map.big {
        max-width: 170px;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
/* .side
//////////////////////////*/

    .side {
        margin: 0;
        width: 260px;
        min-width: 240px;
    }

    .side_menu {
        margin: 0 0 3rem;
        display: block;
    }

    .side_menu dt,
    .box_inquiry dt {
/*        margin-bottom: 1rem;*/
        color: #fff;
        font-weight: bold;
        line-height: 3;
        text-align: center;
        background-color: #333;
        width: 100%;
        position: relative;
        z-index: 0;
    }

    /*
.side_menu dt::after {
	margin-left: -10px;
	content: '';
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #000 transparent transparent transparent;
	width: 0px;
	height: 0px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	display: block;
}
*/

    .side_menu dd > ul > li {
        border-bottom: 1px solid #fff;
    }
    .side_menu dd > ul > li:nth-child(6) {
        margin-bottom: 3rem;
    }
    .side_menu dd > ul > li > a {
        padding: 0 1rem;
        color: #333;
        line-height: 3;
        background-color: #eff2f3;
        display: block;
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .side_menu dd > ul > li > a:hover,
    .side_menu dd > ul > li > a:active,
    .side_menu dd > ul > li.active > a {
        color: #fff;
        background-color: #44b8e2;
        cursor: pointer;
    }

    .side_menu dd > ul > li > a::before {
        color: #44b8e2;
        content: '> ';
        padding-right: 10px;
    }

    .side_menu dd > ul > li > a:hover::before,
    .side_menu dd > ul > li > a:active::before,
    .side_menu dd > ul > li.active > a::before {
        color: #fff;
    }

    .side_menu dd > ul > li.active > a::before {
        content: '\02228';
    }

    .side_menu li ul {
        border-top: 1px solid #fff;
        background-color: #e5e5e5;
        display: none;
    }

    .side_menu li ul li {
        border-bottom: 1px solid #fff;
    }

    .side_menu li ul li a {
        padding: 0 2rem;
        line-height: 3;
        display: block;
    }

    .side_menu li ul a::before {
        color: #fff;
        content: '> ';
    }

    .side_menu li ul a:hover,
    .side_menu li ul a:active {
        color: #999;
    }


    /* --- .news --- */

    .box_category {
        margin: 0 0 4rem;
    }

    .box_category ul {
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .box_category ul li {
        width: 30%;
    }

    .header_news {
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .article_time,
    .utility {
        width: 50%;
    }

    .utility {
        margin-top: 0;
        text-align: right;
    }

    .header_news .title_headline {
        width: 100%;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
/* parts
//////////////////////////*/

    /* ---  .box_mainheadline --- */

    .box_mainheadline {
        margin: 0 auto;
        padding: 3rem 0;
        width: 1000px;
    }

    .main_headline {
        font-size: 2.4em;
        text-align: left;
    }

    .main_headline span {
        margin-left: 2rem;
        display: inline-block;
    }


    /* ---  .breadcrumbs --- */

    .breadcrumbs {
        margin-bottom: 40px;
        padding: 0.5rem 0;
        background: url("../images/site_parts/bg_dot.png");
        display: block;
    }

    .breadcrumbs ol {
        margin: 0 auto;
        width: 90%;
        max-width: 1140px;
        min-width: 900px;
    }

    @media screen and (min-width: 768px) and (max-width: 1087px) {
        .breadcrumbs ol {
            margin-left: 60px;
        }
    }

    .breadcrumbs ol li {
        font-size: 0.8em;
        line-height: 1.2;
        display: inline;
        letter-spacing: 0.8px;
    }

    .breadcrumbs ol li + li:before {
        color: #000;
        content: ">";
    }

    .breadcrumbs ol li a {
        color: #000;
        text-decoration: none;
    }

    .breadcrumbs .now_place {
        color: #3ca9d1;
    }


    /* ---  .box_anchor --- */

    .box_anchor {}

    .box_anchor ul {
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .box_anchor ul li {
        width: 50%;
    }


    /* --- .img ---　*/

    .float_img_left {
        margin: 0 2rem 2rem 0;
        float: left;
    }

    .float_img_right {
        margin: 0 0 2rem 2rem;
        float: right;
    }


}

/* --- .research_summary --- */

.research_summary {
    border-top: 2px solid #c3c3c3;
    border-bottom: 2px solid #c3c3c3;
    width: 100%;
}

.research_summary tr {
    border-bottom: 1px solid #c3c3c3;
}

.research_summary th,
.research_summary td {
    padding: 1rem 1.5rem;
}

.research_summary th {
    background-color: #f5f5f5;
    width: 20%;
}

.research_summary td span {
    color: #03537a;
    font-size: 1.2em;
    font-weight: bold;
}

.research_summary td + td {
    border-left: 1px solid #c3c3c3;
}

@media screen and (max-width: 768px) {

    .research_summary th,
    .research_summary td {
        display: block;
    }

    .research_summary th {
        width: 90%;
        text-align: left;
    }
}

/* --- .research_summary 30--- */
.rs30 th {
    width: 30%;
}

.rs30 td {
    width: 35%;
}

.rs30 th,
.rs30 td {
    padding: 0.5rem 1.5rem;
}

.rs30 td + td {
    color: #7d5d5d;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .rs30 th {
        width: 90%;
    }

    .rs30 td + td {
        border: none;
    }

    .rs30 tr {
        border: none;
    }

    .rs30 td {
        width: 43%;
        display: inline-table;
        margin: 0 3%;
    }
}

/* --- .box_case --- */

.box_case {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 3px solid #eee;
}

.case_img {
    margin-bottom: 1rem;
    text-align: center;
}

.case_headline {
    margin-bottom: 0.5rem;
    padding: 1rem 0 1.5rem;
    color: #03537a;
    font-size: 1.2em;
    line-height: 1.4;
    border-bottom: 2px solid #eee;
}

.box_case .post {
    margin-bottom: 1.5rem;
}

.article .main .box_case p {
    margin: 0;
}

.box_case p a {
    margin-top: 1rem;
    text-align: right;
    display: block;
}

.box_article .box_case p a {
    color: #333;
}



.box_article .box_case p a::before {
    margin-right: 0.5rem;
    color: #03537a;
    text-decoration: none;
    content: '>';
}


/* --- .this_contact --- */

.this_contact {
    padding: 2.5rem 0;
    background: url("/_corptest//site_parts/bg_stripe.png");
}

.this_contact .btn_arrow {
    margin: 0 auto;
    width: 90%;
    max-width: 640px;
}

.this_contact .btn_arrow a {
    font-weight: bold;
    background-color: #fff;
    border: 2px solid #eee;
}

.this_contact .btn_arrow a:hover,
.this_contact .btn_arrow a:active {
    border: 2px solid #44b8e2;
}


/* --- .facility --- */

.table_facility {
    margin-bottom: 1.5rem;
    border: 2px solid #dcdcdc;
}

.table_facility thead {
    background-color: #959595;
}

.table_facility tr {
    border-bottom: 1px solid #e5e5e5;
}

.table_facility th,
.table_facility td {
    padding: 1rem;
    line-height: 1.4;
    vertical-align: middle;
    border-right: 1px solid #e5e5e5;
}

.table_facility thead th {
    color: #fff;
    font-size: 0.9em;
    font-weight: normal;
}

.table_facility tbody td {
    text-align: center;
}


/* --- .box_recommend --- */

.box_recommend {
    padding: 3rem 0;
}

.box_recommend_inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
}

.recommend_headline {
    margin-bottom: 0.5rem;
    font-size: 1.25em;
    text-align: center;
}

.leadtxt {
    font-size: 0.9em;
    text-align: center;
}

.list_recommend li {
    margin-bottom: 1.5rem;
}

.list_recommend li a {
    padding: 1.5rem;
    border: 3px solid #eee;
    background: url("/_corptest//site_parts/mark_blank.png") no-repeat 98% 7px;
    display: block;
}

.list_recommend li a:hover,
.list_recommend li a:active {
    color: #000;
    border: 3px solid #44b8e2;
}

.list_recommend time {
    margin-bottom: 0.5rem;
    color: #39c;
    display: block;
}

.recommend_headline2 {
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.article .main .recommend_headline2 + p {
    margin: 0;
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* @media PC
//////////////////////////*/

@media print,
screen and (min-width: 768px) {

    /* - - - - - - - - - - - - - - - - - - - - - 
/* .page_service
//////////////////////////*/

    .page_service .box_list li {
        margin-right: 1.5rem;
        display: inline-block;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
/* .service_detail
//////////////////////////*/

    .service_detail .side {
        display: block;
    }

    /* --- .box_characteristics --- */

    .box_characteristics_inner.area {
        display: -ms-flexbox;
        display: flex;
    }

    .box_characteristics_inner.area .conte {
        width: 350px;
        box-sizing: border-box;
    }

    .box_characteristics_inner .conte::after {
        margin-left: 0;
        margin-top: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent #fff;
        top: 50%;
        right: -10px;
        bottom: auto;
        left: 100%;
    }

    .characteristics_headline {
        font-size: 1.6em;
    }

    .characteristics_img {
        padding: 1.5rem 2rem;
        width: 370px;
        box-sizing: border-box;
    }

    .characteristics_area {
        padding: 1.5rem 2rem;
    }

}

/* --- .table_design2 --- */

.table_design2 {
    border-top: 2px solid #c3c3c3;
    border-bottom: 2px solid #c3c3c3;
    width: 100%;
}

.table_design2 tr {
    border-bottom: 1px solid #c3c3c3;
}

.table_design2 th,
.table_design2 td {
    padding: 1rem 1.5rem;
}

.table_design2 th {
    background-color: #f5f5f5;
    width: 20%;
}

.table_design2 td span {
    color: #03537a;
    font-size: 1.2em;
    font-weight: bold;
}

.table_design2 td + td {
    border-left: 1px solid #c3c3c3;
}

/* --- .table_about_site --- */
.table_about_site {
    table-layout: fixed;
}
.table_about_site tr th, .table_about_site tr td {
    font-size: 0.8em;
    padding: 1% 2%;
    overflow-wrap: break-word;
}
.table_about_site tr th:first-child, .table_about_site tr td:first-child {
    width: 13%;
    text-align: center;
}
.table_about_site .center {
    text-align: center;
}

/* - - - - - - - - - - - - - - - - - - - - - 
/* @media IE11 hack
//////////////////////////*/

/*
@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop,  .header_ad span {
		left: -15px;
  }
}
*/


/* ---  竹村追加　--- */

.mapList {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden;
}

.mapList > ul {
    width: 48%;
}

.mapList > ul > li > a {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
    border-bottom: #999 1px dotted;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul li a:link {
    text-decoration: none;
}

.mapList li a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 0.6rem;
    margin-left: 1rem;
    border: solid 3px rgb(45, 159, 219);
    border-radius: 50%;
    vertical-align: middle;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul > li a:hover {
    color: #fff;
    background: #3ca9d1;
    font-weight: bold;
}

.mapList > ul > li > a:hover:before {
    border-color: #fff;
}

.mapList > ul li ul li {
    padding-left: 0;
    text-indent: 0;
    border-bottom: #999 1px dotted;
}

.mapList > ul > li > ul > li > a {
    display: inline-block;
    width: calc(100% - 50px);
    padding: 20px 0;
    padding-left: 5rem;
    text-indent: -3rem;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul > li > ul > li > a:before {
    border: 5px solid transparent;
    border-top: 5px solid rgb(45, 159, 219);
    border-right: 5px solid rgb(45, 159, 219);
    border-radius: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0;
    height: 0;
    margin-right: 0.8rem;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul > li > ul > li > a:hover:before {
    border-top-color: #fff;
    border-right-color: #fff;
}

.box span {
    font-size: 0.93em;
}

.page_contact .box .btn.btn_blue span {
    font-size: 1.2em;
}


.box .circle::before {
    content: "";
    width: 5px;
    height: 5px;
    border: solid 3px rgb(45, 159, 219);
    border-radius: 50%;
    display: inline-block;

    margin-left: 1rem;
}

.box .circle {
    text-align: left;
    font-weight: bold;
    display: block;
    padding: 10px 0;
}



.side .btn a:hover {
    background-color: #44b8e2;
    color: white;
}

.side .btn:nth-child(3) a:hover {
    border-top: none;

}

/*
.box_inquiry #greyback {
    background-color: #eff2f3;
    height: 345px;
}
.box_inquiry #box_margin{
    margin-top: 30px;
    float: right;
}
*/
.side .btn a::before {
    content: '>';
    font-size: 1vw;
    display: inline-block;
    margin: auto 10px auto 10px;
    color: #44b8e2;
    font-size: 14px;
}

.side .btn a:hover::before {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .side .btn a::before {
        padding-right: 10%;
    }

    .side .btn a {
        padding-left: 5%;
    }

/*
    .box_side dt {
        padding-top: 5%;
    }
*/

    .page_contact .box .btn.btn_blue span {
        font-size: 4vw;
    }
    
    .mapList {
        display: block;
        width: 100%;
    }
    
    .mapList ul {
        width: 100%;
    }
}

/* --- Q&A --- */

.accordion {
    margin: 0 10px;
    position: relative;
    display: block;
    overflow: hidden;
}

.accordion .question {
    border-bottom: #999 1px dotted;
    padding: 8px 0 8px 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 15px;
    padding-top: 20px
}

.accordion .question::before {
    content: "Q";
    color: #FFFFFF;
    font-size: 30px;
    display: block;
    width: 40px;
    height: 50px;
    background-color: #44b8e2;
    padding-left: 12px;
    float: left;
    position: relative;
    top: -10px;
    left: -40px
}


.accordion .answer {
    padding: 10px 0 40px 30px;
    display: none;
}

.accordion .answer::before {
    content: "A.";
    color: #44b8e2;
    font-size: 30px;
    margin-right: 2%;
    font-weight: bold;


}



@media screen and (max-width: 767px) {
    .accordion .question {
        font-size: 13px;
        margin: 0 0 0.6em;
        padding-top: 15px;
        padding-bottom: 30px;
    }

}
@media screen and (max-width: 720px){
.footer-menu li {
    width: 50%;
}
.footer-menu li a {
    font-size: 10px;
    padding: 0;
}
footer .copyright {
    padding: 3vh 3vw;
    clear: both;
}
}
/*スクリーンサイズが変化したときのヘッダーレイアウト用*/
@media screen and (min-width:768px) and (max-width:1024px) {
    .main_headline {
        width: 96vw;
    }
}

@media screen and (max-width: 767px) {
    .main_headline {
        margin: 0 5%;
    }
}

/*印刷設定*/
@media print {

    section#menu,
    section.breadcrumbs,
    .utility,
    footer.footer_news,
    section.this_contact,
    aside.side,
    .footer-menu,
    div#pagetop {
        display: none;
    }

    section.box_mainheadline {

        width: auto;
        font-size: 1rem;
    }

    .main {
        padding-top: 0;
    }

    .main {
        width: 90%;
        margin: 0 auto;
    }

    .box_mainheadline {
        width: 100%;
    }

    .main_headline {
        display: contents;
    	font-size: 3em;
    }

    .contents_area {
        width: 100%;
    }

    .box_article {
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
    }
}

@charset "utf-8";

@media screen and (min-width: 751px) {
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none!important;
    }
}

@media screen and (max-width: 750px) {
    .pc_only {
        display: none!important;
    }
    .sp_only {
        display: block;
    }
}

/* - - - - - - - - - - - - - - - - - - - - - 
	reset
- - - - - - - - - - - - - - - - - - - - - */

body,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
form {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	base
- - - - - - - - - - - - - - - - - - - - - */

html {
    font-size: 62.5%;
}

/*
@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 100;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 200;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 300;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 500;
}

@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: bold;
}
*/

body {
    color: #333;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serifsans-serif;
    line-height: 1.8;
    background: #fff;
}

img {
    border: none;
    vertical-align: bottom;
    max-width: 100%;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	link
- - - - - - - - - - - - - - - - - - - - - */

a {
    text-decoration: none;
    outline: none;
}

a:link,
a:visited {
    color: #333;
}

a:hover,
a:active {
    color: #3ca9d1;
}

a img:hover {
    opacity: 0.8;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	clearfix
- - - - - - - - - - - - - - - - - - - - - */

.clearfix::after {
    content: '';
    clear: both;
    display: block;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	.wrapper
- - - - - - - - - - - - - - - - - - - - - */

.wrapper {
    overflow: hidden;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	.header
- - - - - - - - - - - - - - - - - - - - - */

.header {
    background-color: #fff;
    /*border-bottom: 3px solid #44b8e2;*/
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

.header_logo {
    padding-left: 1rem;
    line-height: 47px;
}

.header_logo a {
    display: block;
}

.header_logo img {
    vertical-align: middle;
    width: 50%;
}

.sp_menu {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
}

.menu_trigger,
.menu_trigger span {
    display: block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu_trigger {
    padding: 0.4rem 0 0.4rem 1rem;
    position: relative;
}

.menu_trigger::before {
    content: '';
    background-color: #e0e0e0;
    width: 1px;
    height: 4rem;
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
}

.menu_trigger.active {
    background-color: #44b8e2;
}

.menu_trigger span {
    margin: 0.8rem 0;
    width: 3rem;
    height: 3px;
    background-color: #000;
    border-radius: 1.5px;
}

.menu_trigger.active span {
    background-color: #fff;
}

.menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(1.1rem) rotate(-45deg);
    transform: translateY(1.1rem) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-1.1rem) rotate(45deg);
    transform: translateY(-1.1rem) rotate(45deg);
}


/* --- .header_menu --- */

.header_menu {
    background-color: #000;
    width: 100%;
    position: fixed;
    top: 50px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    display: none;

}

.menu_nav {
    padding: 1rem 1rem 2.5rem;
}

.menu_nav li a {
    display: block;
}

.menu_nav > li:not(:nth-of-type(n+7)) {
    border-bottom: 1px solid #454545;
}

.menu_nav > li:nth-child(7) {
    margin-bottom: 2rem;
}

.menu_nav > li > a {
    padding: 0 0.3rem;
    color: #fff;
    font-size: 1.3em;
    line-height: 2.2;
}

.menu_nav > li > a:hover,
.menu_nav > li > a:active {
    color: #44b8e2;
}

.menu_nav > li:not(:first-child) > a::before {
    color: #44b8e2;
    content: '> ';
}

.sub_menu li a::before {
    content: '';
    position: absolute;
    width: 0.5vw;
    height: 0.5vw;
    border-top: 0.2vw solid #fff;
    border-left: 0.2vw solid #fff;
    transform: translateX(-218%) translateY(12%) rotate(135deg);
}

.menu_logo {
    padding: 2rem 0;
    text-align: center;
    background-color: #fff;
}

.menu_logo img {
    width: 50%;
}

.header_menu small {
    color: #fff;
    font-size: 0.9em;
    line-height: 2;
    text-align: center;
    background-color: #44b8e2;
    display: block;
}

/*
.overlay {
	display: none;
}

.overlay.active {
	background-color: #000;
	width:100%;
	height:120%;
	position: fixed;
	top:0;
	left:0;
	opacity: 0.5;
	z-index: 50;
	display: block;
}
*/


/* - - - - - - - - - - - - - - - - - - - - - 
	.main
- - - - - - - - - - - - - - - - - - - - - */

.main {
    margin: 0 auto;
    padding-top: 70px;
    width: 100%;
    position: relative;
    display: block;
}


/* - - - - - - - - - - - - - - - - - - - - - 
	.footer
- - - - - - - - - - - - - - - - - - - - - */

.pagetop {
    width: 20%;
    max-width: 100px;
    position: fixed;
    right: 0;
    bottom: 9rem;
    z-index: 201;
}

.pagetop p {
    position: relative;
}

.pagetop a {
    padding: 1rem 0;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    background-color: #44b9e3;
    display: block;
    text-align: center;
}

.pagetop a span {
    margin: -4px auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 12px;
    height: 12px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
    display: block;
}

.pagetop a span:first-child {
    margin-top: 0.5rem;
}


footer {
    width: 100%;
    margin-top: -1px;
    text-align: center;
    position: relative;
    z-index: 200;
    background: #232d30;
    overflow: hidden;
    padding: 0.5vw 0;
}

.footer-menu {
    padding: 2vh 2vw;
}

.footer-menu ul {
    width: 90%;
    margin: auto;
    display: block;
}

.footer-menu li {
    display: inline-block;
    border-right: 1px solid #fff;
}

.footer-menu li a {
    display: block;
    color: #fff;
    padding: 0 1vw;
    font-size: 0.8em;
    letter-spacing: 0.15vw;
}

.footer-menu li:last-child {
    border: none;
}

footer .copyright {
    padding: 2vh 2vw;
    color: #fff;
    background: #232d30;
}
footer .copyright p {
    font-size: 0.7em;
}

/* - - - - - - - - - - - - - - - - - - - - - 
/* .index
//////////////////////////*/

/* --- common --- */

.index .main p {
    margin: 0 0 1.5em;
}

.box_top {
    border-bottom: 1px solid #bfbfbf;
    position: relative;
}

.box_top_inner {
    padding: 4rem 5%;
}

.box_conte {}

.top_headline {
    margin: 0 0 1.5rem;
    color: #000;
    font-size: 1.35em;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
}

.top_headline span {
    color: #999;
    font-size: 0.6em;
    font-weight: normal;
    display: block;
}

.top_headline span::first-letter {
    color: #3ca9d1;
}


/* --- .slider --- */

.box_top.slider {
    border-bottom: none;
}

.slider .box_top_inner {
    padding: 0;
}


/* slick */

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    padding: 1.5rem 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px;
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
}

.slick-dots li button {
    text-indent: 150%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: #d7d6dc;
    width: 10px;
    height: 10px;
    outline: none;
    display: block;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #7d7d7d;
}


/* --- .bnr_conte --- */

.bnr_conte {
    padding: 1rem 0;
    background-color: #eee;
}

.bnr_conte ul {
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bnr_conte li {
    margin: 0.5rem 0;
    width: 49%;
}


/* --- .news --- */

.list_news {
    font-size: 1.1em;
}

.list_news time {
    color: #44b8e2;
}

.list_news span {
    margin-left: 2rem;
    color: #fff;
    font-size: 0.75em;
    text-align: center;
    width: 8em;
    display: inline-block;
}

.cat01 {
    /* プレスリリース */
    background-color: #93c202;
}

.cat02 {
    /* お知らせ */
    background-color: #44b8e2;
}

.cat03 {
    /* セミナー */
    background-color: #f4966d;
}

.cat04 {
    /* メディア掲載 */
    background-color: #f46db3;
}

.list_news dd {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dotted #e5e5e5;
}

.list_news dd:last-child {
    border-bottom: none;
}


/* --- .service --- */

.box_top.service .box_conte p {
    margin-bottom: 1rem;
    text-align: center;
}


/* --- .company --- */

.box_top.company .box_list_btn2 {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.box_top.company .box_list_btn2 li {
    width: 50%;
    box-sizing: border-box;
}

.box_top.company .box_list_btn2 li:nth-last-child(2) {
    margin-bottom: 0;
}


/* --- .inquiries --- */

.box_top.inquiries {
    border-bottom: 0;
}

.list_inquiry dt {
    font-size: 1.2em;
    font-weight: bold;
}

.list_inquiry dd {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dotted #ccc;
}

.index .main .list_inquiry p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.list_inquiry .btn br {
    display: none;
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* .article
//////////////////////////*/

.article .main p {
    margin: 0 0 1.5em;
    text-align: justify;
}

.contents_area {
    margin-bottom: 4rem;
}

.box_article {
    margin: 0 5%;
}

.box_article a:link,
.box_article a:visited {
    color: #3ca9d1;
    text-decoration: underline;
}

.box_article a:hover,
.box_article a:active {
    color: #333;
}

span.example2 {
    color: red;
    font-weight: bold;
}

span.rank-1 {
    font-size: 1.5em;
    font-weight: bold;
}

span.rank-2 {
    font-size: 1.5em;
}

span.rank-3 {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: underline;
}

span.rank-4 {
    font-size: 1.5em;
    text-decoration: underline;
}

.main_visual {
    margin-bottom: 0.5rem;
}

.main_visual img {
    width: 100%;
}

.article .main .main_visual + p {
    margin: 0 5% 4rem;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.8;
}

.article .main .main_visual + p span {
    font-weight: normal;
}

.box_inner {
    margin-bottom: 4rem;
}

.box {
    margin-bottom: 1rem;
}

.box_border {
    margin-bottom: 2.5em;
    padding: 1.5rem;
    border: 4px solid #eee;
}

.box_border p:last-child {
    margin: 0;
}

.box_gray {
    margin-bottom: 2.5em;
    padding: 1.5rem;
    background-color: #eff2f3;
}

.box_border .box_list_ol,
.box_gray .box_list_ol {
    margin: 0 1.75em;
}

.box_statement {
    padding: 2.5rem 0;
    background-color: #eff2f3;
    border: 2px solid #fff;
    box-shadow: 0 0 0 5px #eff2f3;
    box-sizing: border-box;
}

.box_statement p {
    font-size: 1.15em;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 2;
    text-align: center;
}

.article .main .box_statement p {
    margin: 0;
}

.measurement_inq {
    text-align: center;
}

.measurement_inq dt {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    font-size: 1.1em;
    font-weight: bold;
    border-bottom: 2px solid #eee;
}

.article .main .measurement_inq p {
    margin-bottom: 0.5rem;
}

.measurement_inq .btn_arrow2 {
    margin: 0 2rem;
}

.box_article .measurement_inq .btn_arrow2 a:link,
.box_article .measurement_inq .btn_arrow2 a:visited {
    color: #44b8e2;
    font-weight: bold;
    text-decoration: none;
}

.box_article .measurement_inq .btn_arrow2 a:hover,
.box_article .measurement_inq .btn_arrow2 a:active {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.box_list2.policy {
    margin-bottom: 1.5em;
}

.table_history tr {
    border-bottom: 1px dashed #dedede;
}

.table_history th,
.table_history td {
    padding: 1rem 0;
    vertical-align: top;
}

.table_history th {
    padding-right: 1.5em;
    text-align: right;
    width: 20%;
}


/* --- company --- */

.table_company {
    border: 2px solid #dcdcdc;
}

.table_company tr {
    border-bottom: 1px solid #e5e5e5;
}

.table_company th {
    text-align: left;
    width: 25%;
    max-width: 150px;
    border-right: 1px solid #e5e5e5;
    background-color: #eff2f3;
    box-sizing: border-box;
}

.table_company th,
.table_company td {
    padding: 1em;
    position: relative;
}

.table_company td dt {
    margin-bottom: 5px;
    font-weight: bold;
}

.table_company td dt::before {
    color: #44b8e2;
    content: '●';
}

.table_company td dd {
    margin-bottom: 1.5rem;
}

.table_company td dd li {
    margin-bottom: 5px;
    padding-bottom: 10px;
    line-height: 2.4;
    border-bottom: 1px dotted #e5e5e5;
    position: relative;
}

.box_article .table_company a {
    color: #44b8e2;
}

.btn_map {
    width: 30%;
    max-width: 80px;
    position: absolute;
    top: 0.2em;
    right: 0.5em;
}

.table_company tr:first-child .btn_map {
    margin-top: 0.5rem;
    line-height: 2.4;
    width: 100%;
    max-width: 100%;
    position: static;
}

.box_article .btn_map a {
    padding: 0 0.75em;
    color: #333;
    text-decoration: none;
    text-align: center;
    background-color: #eee;
    display: block;
}

.box_article .btn_map a:hover {
    background-color: #aaa;
}

.btn_map a::before {
    color: #44b8e2;
    content: '> ';
}

.table_company .box_list a {
    padding-right: 20px;
    background: url("../images/site_parts/mark_blank2.png") no-repeat right top;
}

.box_group_policy,
.box_privacy {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 0 0 5px #eee;
    box-sizing: border-box;
}

.box_group_policy dt,
.box_privacy dt {
    margin-bottom: 2rem;
    font-size: 1.3em;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: bold;
    line-height: 2.4;
    text-align: center;
    border-bottom: 2px solid #eee;
}

.box_group_policy strong,
.box_privacy strong {
    color: #2d98bf;
    font-size: 1.15em;
}

.box_inner .box_anchor {
    margin-bottom: 3.5rem;
}

.table_company.group tr:nth-child(2) td dt::before {
    display: none;
}



/* map */

.box iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.btn_map.big,
.btn_map.back {
    margin-top: 1rem;
    line-height: 3;
    width: 100%;
    max-width: 100%;
    position: static;
}


/* --- .news --- */

.box_category {
    margin: 0 5% 4rem;
}

.box_category ul li:not(:last-child) {
    margin-bottom: 1rem;
}

.box_article .box_category a:link,
.box_article .box_category a:visited {
    color: #333;
    text-decoration: none;
}

.box_article .box_category a:hover,
.box_article .box_category a:active {
    color: #3ca9d1;
    text-decoration: underline;
}

.box_category span,
.article_time span {
    margin: 0 0.75rem;
    color: #fff;
    font-size: 0.75em;
    text-align: center;
    width: 9rem;
    display: inline-block;
}

.box_article .list_news a:link,
.box_article .list_news a:visited {
    color: #333;
    text-decoration: none;
}

.box_article .list_news a:hover,
.box_article .list_news a:active,
.box_article .list_news a:hover .news_sub {
    color: #3ca9d1;
    text-decoration: underline;
}

.header_news .title_headline {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dotted #e5e5e5;
}

.box_article .list_news dd a .news_sub {
    color: #333;
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
    font-size: 1em;
    line-height: 1;
}

.utility {
    margin-top: 0.5rem;
    text-align: right;
}

.utility li {
    display: inline-block;
}

.utility li:first-child {
    background: url("../images/site_parts/icon_print.png") no-repeat 0.5rem center;
}

.utility li:nth-child(2) {
    background: url("../images/site_parts/icon_pdf.png") no-repeat 0.5rem center;
}

.box_article .utility li a {
    padding: 0.3rem 0.3rem 0.3rem 2.5rem;
    color: #333;
    font-size: 0.75em;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #d2d2d2;
    display: inline-block;
}

.box_article .utility li a:hover,
.box_article .utility li a:active {
    color: #000;
    border: 2px solid #000;
}

.box_article .btn_arrow a:link,
.box_article .btn_arrow a:visited {
    color: #333;
    text-decoration: none;
}


/* --- .contact(index) --- */

.page_contact .title_headline {
    margin-bottom: 2.5rem;
    padding-left: 0;
    color: #333;
    font-size: 1.55em;
    letter-spacing: 0;
    line-height: 1.8;
    border-bottom: 4px solid #44b8e2;
    border-left: none;
}

/*.page_contact .btn {
	margin-bottom: 0.5rem;
}*/

.page_contact .btn a {
    text-decoration: none;
}

.page_contact .btn.btn_blue a:link,
.page_contact .btn.btn_blue a:visited {
    color: #fff;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page_contact .btn.btn_blue a:hover,
.page_contact .btn.btn_blue a:active {
    color: #44b8e2;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.page_contact .btn.btn_blue a span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* - - - - - - - - - - - - - - - - - - - - - 
/* .side
//////////////////////////*/

.side {
    margin: 0 auto;
    width: 90%;
}

.side .box_list_btn li {}

.side_menu {
    /* display: none; */
}

.box_side {
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0px 0px 17px -4px #aea3a3;
}

.box_side li {
    text-align: left;
}

.box_side dt {
/*    margin-bottom: 1rem;*/
    font-size: 1.1em;
    font-weight: bold;
}

/*
.box_side .box {
	padding: 1.5rem 1rem;
	background-color: #eee;
}
*/
/*

.box_side .box span {
	font-weight: bold;
	display: block;
}
*/

.box_relation {
    border: 4px solid #eee;
}

/*.box_inquiry {
	background-color: #eee;
}*/

.box_inquiry .box {
    background-color: #fff;
}


/*.box_inquiry .box + .box,
.box_inquiry .box .btn + .btn {
	margin-top: 1rem;
}*/

.box_inquiry .btn a {
    font-size: 0.9em;
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* parts
//////////////////////////*/

/* ---  .box_mainheadline --- */

.box_mainheadline {
    padding: 1.5rem 0;
}

.main_headline {
    font-size: 1.85em;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
}

.main_headline span {
    color: #999;
    font-size: 0.5em;
    font-weight: normal;
    display: block;
}

.main_headline span::first-letter {
    color: #3ca9d1;
}


/* ---  .breadcrumbs --- */

.breadcrumbs {
    display: none;
}


/* ---  .box_anchor --- */

.box_anchor {
    padding: 1.5rem;
    border: 4px solid #eee;
}

.box_anchor ul li:not(:last-child) {
    margin-bottom: 1rem;
}

.box_anchor ul li::before {
    margin-right: 0.3rem;
    color: #3ca9d1;
    content: '\002228';
}

.box_article .box_anchor a:link,
.box_article .box_anchor a:visited {
    color: #333;
    text-decoration: none;
}

.box_article .box_anchor a:hover,
.box_article .box_anchor a:active {
    color: #3ca9d1;
    text-decoration: underline;
}


/* --- .title_headline --- */

.title_headline {
    margin-bottom: 2.5rem;
    color: #333;
    font-size: 1.55em;
    letter-spacing: 0.1em;
    line-height: 1.8;
    border-bottom: 4px solid #44b8e2;
}
.title_headline span {
    display: block;
    line-height: 1.3;
    margin-bottom: 5px;
}
.title_headline2 {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    color: #333;
    font-size: 1.3em;
    border-left: 6px solid #44b8e2;
}
h3.lv3 {
    border-bottom: dashed 1px #44b8e2;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* --- .box_list ---　*/

.box_list {}

.box_list li {
    margin-bottom: 1.2rem;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.box_list li:last-child {
    margin-bottom: 0;
}

.box_list li::before {
    margin-right: 0.5rem;
    color: #3ca9d1;
    content: '●';
}

.box_list2 {}

.box_list2 li {
    margin-bottom: 1.2rem;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.box_list2 li:last-child {
    margin-bottom: 0;
}

.box_list2 li::before {
    margin-right: 0.5rem;
    color: #3ca9d1;
    content: '>';
}

.box_article .box_list li a,
.box_article .box_list2 li a {
    color: #333;
}

.box_list_ol {
    margin-left: 1.5em;
}

.box_list_ol > li {
    margin-bottom: 1.2rem;
    font-weight: bold;
    list-style: decimal;
}

.box_list_ol.weight > li {
    font-weight: normal;
}

.box_list_ol li:last-child {
    margin-bottom: 0;
}

.box_list_ol_alpha {
    margin-left: 1.5em;
}

.box_list_ol_alpha > li {
    list-style: lower-latin;
}

.box_list_ol .box_list li {
    font-weight: normal;
}

.box_list li span,
.box_list_ol li span {
    font-weight: normal;
}

.box_list_btn li,
.box_list_btn2 li {
    margin-bottom: 1rem;
}

.box_list_btn li:last-child,
.box_list_btn2 li:last-child {
    margin-bottom: 0;
}

.box_list_btn a {
    padding: 0.65rem 1rem;
    color: #333;
    line-height: 1.8;
    border: 3px solid #eee;
    background-color: #fff;
    display: block;
}

.box_list_btn a:hover,
.box_list_btn a:active {
    border: 3px solid #44b8e2;
    background-color: #fefefe;
}

.box_list_btn li a::before {
    color: #44b8e2;
    content: '> ';
}

.box_list_btn2 a {
    /*padding: 0.65rem 1rem;*/
    color: #333;
    line-height: 1.8;
    display: block;
}

.box_list_btn2 a:hover,
.box_list_btn2 a:active {
    color: #44b8e2;
}

.box_list_btn2 li a::before {
    color: #44b8e2;
    content: '> ';
}


/* --- .img ---　*/

.float_img_left,
.float_img_right {
    margin-bottom: 1.5rem;
    text-align: center;
}

.box_img {
    margin-bottom: 1.5em;
    text-align: center;
}

.box_img img {
    width: 100%;
}

.box_img img.not100 {
    width: auto;
}

/* --- .font ---　*/

.attention {
    color: #c00;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
    display: block;
}

.indent2 {
    padding-left: 2em;
    text-indent: -2em;
    display: block;
}

.indent3 {
    padding-left: 3em;
    text-indent: -3em;
    display: block;
}

.txt_left {
    text-align: left;
}

.txt_center {
    text-align: center;
}

.article .main p.txt_right {
    text-align: right;
}

.mincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.blank::after {
    margin-left: 0.5rem;
    content: url("../images/site_parts/icon_blank.png");
}


/* --- table ---　*/

.basic {}

.basic tr {}

.basic th {
    text-align: left;
}

.basic td {}

.basic th,
.basic td {
    padding: 10px;
}

.basic tbody td p:last-of-type {
    margin: 0;
}


/* --- .btn ---　*/

.btn {
    line-height: 1.4;
    text-align: center;
}

.box_inner .btn a {
    padding: 1.2rem 0;
    color: #000;
    font-weight: bold;
    border-width: 2px;
    border-style: solid;
    border-radius: 40px;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.box_inner .btn a::after {
    position: absolute;
    content: '>';
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    font-size: 1vw;
}

.side .btn a {
    padding: 1.2rem 0;
    color: #333;
    display: flex;
    border-bottom: dotted 1px #aea3a3;
    font-size: 1.3rem;
}
.side .btn.kakko a::before {
    margin-right: -3px;
}
@media all and (-ms-high-contrast:none) {

    /* IE YuGothic */
    .btn a {
        padding: 1.5rem 0 1.2rem;
    }
}

.btn_black a {
    border-color: #000;
    background-color: #000;
}

.btn_black a:hover,
.btn_black a:active {
    color: #000;
    background-color: #fff;
}

/*
.btn_blue a {
	border: 1px solid #44b8e2;
	background-color: #44b8e2;
}

.btn_blue a:hover,
.btn_blue a:active {
	color: #44b8e2;
	border: 1px solid #44b8e2;
	background-color: #fff;
}
*/

.btn_blue a {
    border-color: #44b8e2;
    background-color: #44b8e2;
    transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
    -ms-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
}

.btn_blue a:hover,
.btn_blue a:active {
    background-color: #fff;
    transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
}


.btn_gray a {
    border-color: #b5b5b5;
    background-color: #b5b5b5;
}

.btn_gray a:hover,
.btn_gray a:active {
    color: #b5b5b5;
    background-color: #fff;
}

.btn_white a {
    border-color: #000;
    background-color: #fff;
    transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
    -ms-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
}

.btn_white a:hover,
.btn_white a:active {
    background-color: #ff0;
    transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
}

.btn_arrow {}

.btn_arrow a {
    color: #333;
    line-height: 3.3;
    text-align: center;
    background-color: #eee;
    display: block;
}

.btn_arrow a:hover,
.btn_arrow a:active {
    opacity: 0.8;
}

.btn_arrow span::before {
    color: #44b8e2;
    content: '> ';
}

.btn_arrow2 {}

.btn_arrow2 a {
    color: #333;
    line-height: 3;
    text-align: center;
    background-color: #fff;
    border: 4px solid #44b8e2;
    display: block;
}

.btn_arrow2 a:hover,
.btn_arrow2 a:active {
    color: #fff;
    background-color: #44b8e2;
}

.btn_arrow2 a:hover span::before,
.btn_arrow2 a:active span::before {
    color: #fff;
    content: '> ';
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* form
//////////////////////////*/

input,
textarea,
select {
    padding: 0.15em;
    color: #333;
    font-size: 1.6rem;
    font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    outline: none;
    background: #fff;
    border: 1px solid #dcdcdc;
    box-sizing: border-box;
}

button {
    padding: 0.15em;
    color: #333;
    font-size: 1.6rem;
    font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #999;
}

:-moz-placeholder {
    color: #999;
}

:-ms-input-placeholder {
    color: #999;
}

input[type="checkbox"] {
    display: none;
}

.checkbox {
    padding: 3px 3px 3px 22px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.checkbox:before {
    margin-top: 8px;
    content: '';
    background: #fff;
    border: 1px solid #aaa;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
}

input[type="checkbox"]:checked + .checkbox:after {
    content: '';
    width: 13px;
    height: 5px;
    position: absolute;
    top: 5px;
    left: 3px;
    border-left: 2px solid #3498db;
    border-bottom: 2px solid #3498db;
    transform: rotate(-45deg);
}

input[type="radio"] {
    display: none;
}

.radiobtn {
    padding: 3px 3px 3px 25px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.radiobtn:before {
    margin-top: -8px;
    content: '';
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 0;
}

input[type="radio"]:checked + .radiobtn:after {
    margin-top: -4px;
    content: '';
    background: #3498db;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 4px;
}



/* - - - - - - - - - - - - - - - - - - - - - 
/* @media SP
//////////////////////////*/

@media screen and (max-width: 767px) {


    /* --- common --- */

    .pc {
        display: none;
    }

}

/* --- VIDEO  --- */
.box_article video, .box_article iframe {
    width: 100%;
    height: auto;
    margin: 20px auto 40px auto;
    display: block;
    box-shadow: 0px 17px 23px 2px #d1cfcf;
}

.box_article iframe{
    height: 641px;
}


@media screen and (max-width: 767px) {
    .box_article video, .box_article iframe {
        width: 100%;
    }
	.box_article iframe {
  	  height: 50vw;
	}
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* @media PC
//////////////////////////*/

@media screen and (min-width: 768px) {


    /* --- common --- */

    .sp {
        display: none;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
	.header
- - - - - - - - - - - - - - - - - - - - - */

    .header {
        /*border-bottom: 5px solid #44b8e2;*/
        height: 60px;
    }

    .header_inner {
        margin: 0 auto;
        width: 90%;
        max-width: 1200px;
        display: -ms-flexbox;
        display: flex;
    }

    .header_logo {
        padding-left: 0;
        line-height: 55px;
        width: 30%;
        max-width: 340px;
    }

    .header .header_logo img {
        width: auto;
    }

    .header .header_logo a:hover img {
        opacity: 1;
    }


    /* --- .header_menu --- */

    .header_menu {
        background-color: transparent;
        width: 65%;
        position: static;
        overflow-y: hidden;
        display: block;
    }

    .menu_nav {
        padding: 0;

        display: -ms-flexbox;
        display: flex;
    }

    .menu_nav li {
        width: 25%;
    }

    .menu_nav > li:not(:nth-of-type(n+7)) {
        border-bottom: none
    }

    .menu_nav > li:nth-child(7) {
        margin-bottom: 0;
    }

    .menu_nav > li > a {
        padding: 0;
        color: #000;
        font-size: 1.2em;
        font-weight: bold;
        line-height: 55px;
        text-align: center;
    }

    .menu_nav > li > a:hover,
    .menu_nav > li > a:active {
        color: #44b8e2;
        /*	background-color: #44b8e2;*/
    }

    .menu_nav > li:first-child,
    .menu_nav > li:not(:first-child) > a::before,
    .menu_logo,
    .header_menu small {
        display: none;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
	.main
- - - - - - - - - - - - - - - - - - - - - */

    .main {
        padding-top: 60px;
        min-height: calc(100vh - 236px);
    }

    .index .main {
        padding-top: 80px;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
	.footer
- - - - - - - - - - - - - - - - - - - - - */


    /* - - - - - - - - - - - - - - - - - - - - - 
/* .index
//////////////////////////*/

    /* --- common --- */

    .box_top_inner {
        margin: 0 auto;
        padding: 4rem 0;
        width: 1000px;
        display: -ms-flexbox;
        display: flex;
    }

    .box_conte {
        width: 75%;
    }

    .top_headline {
        margin: 0;
        width: 25%;
        min-width: 200px;
    }

    .top_headline span {
        color: #999;
        font-size: 0.6em;
        font-weight: normal;
        display: block;
    }


    /* --- .slider --- */

    .box_top.slider {
        border-bottom: none;
    }

    .slider .box_top_inner {
        padding: 0;
        width: 100%;
        display: block;
    }

    .box_slider {
        text-align: center;
        position: relative;
    }

    .box_slider .box_conte {
        width: 100%;
    }


    /* slick */

    .slick-slide img {
        display: inline;
    }

    .slick-dots {
        padding: 0 1.5rem 0 0;
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 0;
    }


    /* --- .bnr_conte --- */

    .bnr_conte ul {
        flex-wrap: nowrap;
    }

    .bnr_conte li {
        width: 24%;
    }


    /* --- .news --- */

    .list_news {
        font-size: 1em;
    }

    /*
.list_news dt {
	width: 175px;
	float: left;
}
*/
    .list_news dt {
        width: auto;
        float: left;
    }

    .list_news dd {
        padding-left: 220px;
    }


    /* --- .service --- */

    .box_top.service .box_conte {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .box_top.service .box_conte p {
        width: 50%;
        text-align: left;
    }

    .box_top.service .btn_arrow2 {
        width: 50%;
    }


    /* --- .company --- */

    .box_top.company .box_list_btn2 li {
        width: 33%;
    }


    /* --- .inquiries --- */

    .list_inquiry dt {
        font-size: 1.1em;
    }

    .list_inquiry dd {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .index .main .list_inquiry p {
        margin-bottom: 0;
        padding-right: 3rem;
        width: 65%;
        box-sizing: border-box;
    }

    .list_inquiry .btn {
        width: 35%;
    }

    .list_inquiry dd:first-of-type .btn {
        margin-top: -25px;
    }

    .list_inquiry .btn br {
        display: block;
    }

    /* - - - - - - - - - - - - - - - - - - - - - 
/* .article
//////////////////////////*/
    /*
.contents_area {
	margin: 0 auto 4rem;
	width: 1000px;
	display: -ms-flexbox;
	display: flex;
	max-width: 1000px;
}
*/
article.box_article.one_column {
    width: 80%;
    margin: auto;
	max-width: 700px;	
}
    .contents_area {
        margin: 0 auto 4rem;
        width: 90%;
        display: flex;
        max-width: 1140px;
        min-width: 900px;
    }

    @media screen and (min-width: 768px) and (max-width: 1087px) {
        /*section.contents_area {
            margin-left: 60px;
        }*/
    }


    .box_article {
        margin: 0 8vw 0 0;
        width: calc(100% - 8vw);
    }

    .article .main .main_visual + p {
        margin: 0 0 4rem;
    }


    /* --- company --- */

    .table_company tr:first-child .btn_map {
        margin-top: 0;
        width: 30%;
        max-width: 80px;
        position: absolute;
        top: 0.5em;
        right: 1.5em;
    }


    /* map */

    .btn_map.big {
        max-width: 170px;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
/* .side
//////////////////////////*/

    

    
    

    /*
.side_menu dt::after {
	margin-left: -10px;
	content: '';
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #000 transparent transparent transparent;
	width: 0px;
	height: 0px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	display: block;
}
*/

    

    .side_menu dd > ul > li.active > a::before {
        content: '\02228';
    }

    .side_menu li ul {
        border-top: 1px solid #fff;
        background-color: #e5e5e5;
        display: none;
    }

    .side_menu li ul li {
        border-bottom: 1px solid #fff;
    }

    .side_menu li ul li a {
        padding: 0 2rem;
        line-height: 3;
        display: block;
    }

    .side_menu li ul a::before {
        color: #fff;
        content: '> ';
    }

    .side_menu li ul a:hover,
    .side_menu li ul a:active {
        color: #999;
    }


    /* --- .news --- */

    .box_category {
        margin: 0 0 4rem;
    }

    .box_category ul {
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .box_category ul li {
        width: 30%;
    }

    .header_news {
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .article_time,
    .utility {
        width: 50%;
    }

    .utility {
        margin-top: 0;
        text-align: right;
    }

    .header_news .title_headline {
        width: 100%;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
/* parts
//////////////////////////*/

    /* ---  .box_mainheadline --- */

    .box_mainheadline {
        margin: 0 auto;
        padding: 3rem 0;
        width: 1000px;
    }

    .main_headline {
        font-size: 2.4em;
        text-align: left;
    }

    .main_headline span {
        margin-left: 2rem;
        display: inline-block;
    }


    /* ---  .breadcrumbs --- */

    .breadcrumbs {
        margin-bottom: 40px;
        padding: 0.5rem 0;
        background: url("../images/site_parts/bg_dot.png");
        display: block;
    }

    .breadcrumbs ol {
        margin: 0 auto;
        width: 90%;
        max-width: 1140px;
        min-width: 900px;
    }

    @media screen and (min-width: 768px) and (max-width: 1087px) {
        .breadcrumbs ol {
            margin-left: 60px;
        }
    }

    .breadcrumbs ol li {
        font-size: 0.8em;
        line-height: 1.2;
        display: inline;
        letter-spacing: 0.8px;
    }

    .breadcrumbs ol li + li:before {
        color: #000;
        content: ">";
    }

    .breadcrumbs ol li a {
        color: #000;
        text-decoration: none;
    }

    .breadcrumbs .now_place {
        color: #3ca9d1;
    }


    /* ---  .box_anchor --- */

    .box_anchor {}

    .box_anchor ul {
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

    .box_anchor ul li {
        width: 50%;
    }


    /* --- .img ---　*/

    .float_img_left {
        margin: 0 2rem 2rem 0;
        float: left;
    }

    .float_img_right {
        margin: 0 0 2rem 2rem;
        float: right;
    }


}

/* --- .research_summary --- */

.research_summary {
    border-top: 2px solid #c3c3c3;
    border-bottom: 2px solid #c3c3c3;
    width: 100%;
}

.research_summary tr {
    border-bottom: 1px solid #c3c3c3;
}

.research_summary th,
.research_summary td {
    padding: 1rem 1.5rem;
}

.research_summary th {
    background-color: #f5f5f5;
    width: 20%;
}

.research_summary td span {
    color: #03537a;
    font-size: 1.2em;
    font-weight: bold;
}

.research_summary td + td {
    border-left: 1px solid #c3c3c3;
}

@media screen and (max-width: 768px) {

    .research_summary th,
    .research_summary td {
        display: block;
    }

    .research_summary th {
        width: 90%;
        text-align: left;
    }
}

/* --- .research_summary 30--- */
.rs30 th {
    width: 30%;
}

.rs30 td {
    width: 35%;
}

.rs30 th,
.rs30 td {
    padding: 0.5rem 1.5rem;
}

.rs30 td + td {
    color: #7d5d5d;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .rs30 th {
        width: 90%;
    }

    .rs30 td + td {
        border: none;
    }

    .rs30 tr {
        border: none;
    }

    .rs30 td {
        width: 43%;
        display: inline-table;
        margin: 0 3%;
    }
}

/* --- .box_case --- */

.box_case {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 3px solid #eee;
}

.case_img {
    margin-bottom: 1rem;
    text-align: center;
}

.case_headline {
    margin-bottom: 0.5rem;
    padding: 1rem 0 1.5rem;
    color: #03537a;
    font-size: 1.2em;
    line-height: 1.4;
    border-bottom: 2px solid #eee;
}

.box_case .post {
    margin-bottom: 1.5rem;
}

.article .main .box_case p {
    margin: 0;
}

.box_case p a {
    margin-top: 1rem;
    text-align: right;
    display: block;
}

.box_article .box_case p a {
    color: #333;
}



.box_article .box_case p a::before {
    margin-right: 0.5rem;
    color: #03537a;
    text-decoration: none;
    content: '>';
}


/* --- .this_contact --- */

.this_contact {
    padding: 2.5rem 0;
    background: url("/_corptest//site_parts/bg_stripe.png");
}

.this_contact .btn_arrow {
    margin: 0 auto;
    width: 90%;
    max-width: 640px;
}

.this_contact .btn_arrow a {
    font-weight: bold;
    background-color: #fff;
    border: 2px solid #eee;
}

.this_contact .btn_arrow a:hover,
.this_contact .btn_arrow a:active {
    border: 2px solid #44b8e2;
}


/* --- .facility --- */

.table_facility {
    margin-bottom: 1.5rem;
    border: 2px solid #dcdcdc;
}

.table_facility thead {
    background-color: #959595;
}

.table_facility tr {
    border-bottom: 1px solid #e5e5e5;
}

.table_facility th,
.table_facility td {
    padding: 1rem;
    line-height: 1.4;
    vertical-align: middle;
    border-right: 1px solid #e5e5e5;
}

.table_facility thead th {
    color: #fff;
    font-size: 0.9em;
    font-weight: normal;
}

.table_facility tbody td {
    text-align: center;
}


/* --- .box_recommend --- */

.box_recommend {
    padding: 3rem 0;
}

.box_recommend_inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
}

.recommend_headline {
    margin-bottom: 0.5rem;
    font-size: 1.25em;
    text-align: center;
}

.leadtxt {
    font-size: 0.9em;
    text-align: center;
}

.list_recommend li {
    margin-bottom: 1.5rem;
}

.list_recommend li a {
    padding: 1.5rem;
    border: 3px solid #eee;
    background: url("/_corptest//site_parts/mark_blank.png") no-repeat 98% 7px;
    display: block;
}

.list_recommend li a:hover,
.list_recommend li a:active {
    color: #000;
    border: 3px solid #44b8e2;
}

.list_recommend time {
    margin-bottom: 0.5rem;
    color: #39c;
    display: block;
}

.recommend_headline2 {
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.article .main .recommend_headline2 + p {
    margin: 0;
}


/* - - - - - - - - - - - - - - - - - - - - - 
/* @media PC
//////////////////////////*/

@media print,
screen and (min-width: 768px) {

    /* - - - - - - - - - - - - - - - - - - - - - 
/* .page_service
//////////////////////////*/

    .page_service .box_list li {
        margin-right: 1.5rem;
        display: inline-block;
    }


    /* - - - - - - - - - - - - - - - - - - - - - 
/* .service_detail
//////////////////////////*/

    .service_detail .side {
        display: block;
    }

    /* --- .box_characteristics --- */

    .box_characteristics_inner.area {
        display: -ms-flexbox;
        display: flex;
    }

    .box_characteristics_inner.area .conte {
        width: 350px;
        box-sizing: border-box;
    }

    .box_characteristics_inner .conte::after {
        margin-left: 0;
        margin-top: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent #fff;
        top: 50%;
        right: -10px;
        bottom: auto;
        left: 100%;
    }

    .characteristics_headline {
        font-size: 1.6em;
    }

    .characteristics_img {
        padding: 1.5rem 2rem;
        width: 370px;
        box-sizing: border-box;
    }

    .characteristics_area {
        padding: 1.5rem 2rem;
    }

}

/* --- .table_design2 --- */

.table_design2 {
    border-top: 2px solid #c3c3c3;
    border-bottom: 2px solid #c3c3c3;
    width: 100%;
}

.table_design2 tr {
    border-bottom: 1px solid #c3c3c3;
}

.table_design2 th,
.table_design2 td {
    padding: 1rem 1.5rem;
}

.table_design2 th {
    background-color: #f5f5f5;
    width: 20%;
}

.table_design2 td span {
    color: #03537a;
    font-size: 1.2em;
    font-weight: bold;
}

.table_design2 td + td {
    border-left: 1px solid #c3c3c3;
}

/* --- .table_about_site --- */
.table_about_site {
    table-layout: fixed;
}
.table_about_site tr th, .table_about_site tr td {
    font-size: 0.8em;
    padding: 1% 2%;
    overflow-wrap: break-word;
}
.table_about_site tr th:first-child, .table_about_site tr td:first-child {
    width: 13%;
    text-align: center;
}
.table_about_site .center {
    text-align: center;
}

/* - - - - - - - - - - - - - - - - - - - - - 
/* @media IE11 hack
//////////////////////////*/

/*
@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop,  .header_ad span {
		left: -15px;
  }
}
*/


/* ---  竹村追加　--- */

.mapList {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden;
}

.mapList > ul {
    width: 48%;
}

.mapList > ul > li > a {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
    border-bottom: #999 1px dotted;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul li a:link {
    text-decoration: none;
}

.mapList li a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 0.6rem;
    margin-left: 1rem;
    border: solid 3px rgb(45, 159, 219);
    border-radius: 50%;
    vertical-align: middle;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul > li a:hover {
    color: #fff;
    background: #3ca9d1;
    font-weight: bold;
}

.mapList > ul > li > a:hover:before {
    border-color: #fff;
}

.mapList > ul li ul li {
    padding-left: 0;
    text-indent: 0;
    border-bottom: #999 1px dotted;
}

.mapList > ul > li > ul > li > a {
    display: inline-block;
    width: calc(100% - 50px);
    padding: 20px 0;
    padding-left: 5rem;
    text-indent: -3rem;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul > li > ul > li > a:before {
    border: 5px solid transparent;
    border-top: 5px solid rgb(45, 159, 219);
    border-right: 5px solid rgb(45, 159, 219);
    border-radius: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0;
    height: 0;
    margin-right: 0.8rem;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mapList > ul > li > ul > li > a:hover:before {
    border-top-color: #fff;
    border-right-color: #fff;
}

.box span {
    font-size: 0.93em;
}

.page_contact .box .btn.btn_blue span {
    font-size: 1.2em;
}


.box .circle::before {
    content: "";
    width: 5px;
    height: 5px;
    border: solid 3px rgb(45, 159, 219);
    border-radius: 50%;
    display: inline-block;

    margin-left: 1rem;
}

.box .circle {
    text-align: left;
    font-weight: bold;
    display: block;
    padding: 10px 0;
}



.side .btn a:hover {
    background-color: #44b8e2;
    color: white;
}

.side .btn:nth-child(3) a:hover {
    border-top: none;

}

/*
.box_inquiry #greyback {
    background-color: #eff2f3;
    height: 345px;
}
.box_inquiry #box_margin{
    margin-top: 30px;
    float: right;
}
*/
.side .btn a::before {
    content: '>';
    font-size: 1vw;
    display: inline-block;
    margin: auto 10px auto 10px;
    color: #44b8e2;
    font-size: 14px;
}

.side .btn a:hover::before {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .side .btn a::before {
        padding-right: 10%;
    }

    .side .btn a {
        padding-left: 5%;
    }

/*
    .box_side dt {
        padding-top: 5%;
    }
*/

    .page_contact .box .btn.btn_blue span {
        font-size: 4vw;
    }
    
    .mapList {
        display: block;
        width: 100%;
    }
    
    .mapList ul {
        width: 100%;
    }
}

/* --- Q&A --- */

.accordion {
    margin: 0 10px;
    position: relative;
    display: block;
    overflow: hidden;
}

.accordion .question {
    border-bottom: #999 1px dotted;
    padding: 8px 0 8px 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 15px;
    padding-top: 20px
}

.accordion .question::before {
    content: "Q";
    color: #FFFFFF;
    font-size: 30px;
    display: block;
    width: 40px;
    height: 50px;
    background-color: #44b8e2;
    padding-left: 12px;
    float: left;
    position: relative;
    top: -10px;
    left: -40px
}


.accordion .answer {
    padding: 10px 0 40px 30px;
    display: none;
}

.accordion .answer::before {
    content: "A.";
    color: #44b8e2;
    font-size: 30px;
    margin-right: 2%;
    font-weight: bold;


}



@media screen and (max-width: 767px) {
    .accordion .question {
        font-size: 13px;
        margin: 0 0 0.6em;
        padding-top: 15px;
        padding-bottom: 30px;
    }

}
@media screen and (max-width: 720px){
.footer-menu li {
    width: 50%;
}
.footer-menu li a {
    font-size: 10px;
    padding: 0;
}
footer .copyright {
    padding: 3vh 3vw;
    clear: both;
}
}
/*スクリーンサイズが変化したときのヘッダーレイアウト用*/
@media screen and (min-width:768px) and (max-width:1024px) {
    .main_headline {
        width: 96vw;
    }
}

@media screen and (max-width: 767px) {
    .main_headline {
        margin: 0 5%;
    }
}

/*印刷設定*/
@media print {

    section#menu,
    section.breadcrumbs,
    .utility,
    footer.footer_news,
    section.this_contact,
    aside.side,
    .footer-menu,
    div#pagetop {
        display: none;
    }

    section.box_mainheadline {

        width: auto;
        font-size: 1rem;
    }

    .main {
        padding-top: 0;
    }

    .main {
        width: 90%;
        margin: 0 auto;
    }

    .box_mainheadline {
        width: 100%;
    }

    .main_headline {
        display: contents;
    	font-size: 3em;
    }

    .contents_area {
        width: 100%;
    }

    .box_article {
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
    }
}



.side {
        margin: 0 ;
        width: 260px;
        min-width: 240px;
    }
.side_menu {
        margin: 0 0 3rem;
        display: block;
    }
.side_menu dt,
    .box_inquiry dt {
/*        margin-bottom: 1rem;*/
        color: #fff;
        font-weight: bold;
        line-height: 3;
        text-align: center;
        background-color: #333;
        width: 100%;
        position: relative;
        z-index: 0;
    }
.side_menu dd > ul > li {
        border-bottom: 1px solid #fff;
    }
    .side_menu dd > ul > li:nth-child(6) {
        margin-bottom: 3rem;
    }
	.side_menu.news dd > ul > li:nth-child(6) {
        margin-bottom: 0rem;
    }
    .side_menu dd > ul > li > a {
        padding: 0 1rem;
        color: #333;
        line-height: 3;
        background-color: #eff2f3;
        display: block;
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .side_menu dd > ul > li > a:hover,
    .side_menu dd > ul > li > a:active,
    .side_menu dd > ul > li.active > a {
        color: #fff;
        background-color: #44b8e2;
        cursor: pointer;
    }

    .side_menu dd > ul > li > a::before {
        color: #44b8e2;
        content: '> ';
        padding-right: 10px;
    }

    .side_menu dd > ul > li > a:hover::before,
    .side_menu dd > ul > li > a:active::before,
    .side_menu dd > ul > li.active > a::before {
        color: #fff;
    }
@media screen and (max-width: 767px) {
    .side {
        margin: auto;
        width: 90%;
    }
    .side_menu.news dd > ul > li:nth-child(odd) {
        border-bottom: 1px solid #fff;
        width: 50%;
        float: left;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
/*        border-left: 1px solid #fff;*/
        box-sizing: border-box;
        
    }
    .side_menu.news dd > ul > li:nth-child(even) {
        border-bottom: 1px solid #fff;
        width: 50%;
        float: left;
        border-bottom: 1px solid #fff;
/*        border-right: 1px solid #fff;*/
        box-sizing: border-box;
        
    }
    .box_side {
        clear: both;
    }
}

/*************** カート *****************/

a.cart:after{
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url(/img/icon_cart_3.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 0.5vw;
    position: absolute;
}
a.cart_2:after{
    background-image: url(/img/icon_cart_2.png);
}
a.cart_3:after{
    background-image: url(/img/icon_cart_3.png);
}
/*a.cart_4:after, .nav li:hover a.cart:hover:after{
    background-image: url(/img/icon_cart_4.png);
}*/
.nav li a.active:after, .nav li:hover a:after{
    background-image: url(/img/icon_cart_4.png);
}
.menu li.open_sub a.cart{
    padding-right: calc(0.5vw + 43px);
}
@media screen and (max-width: 1105px) and (min-width: 751px){
    .menu li.open_sub a.cart {
        padding-right: calc(1.8vw + 21px);
    }
}