@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900|Roboto:300,400,500,700&subset=japanese');



/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}


/*
- Name: megamenu.js - custom.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Body - not related to megamenu
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
    /*font-family: 'Source Sans Pro', sans-serif;*/
}

* {
    box-sizing: border-box;
}

a {
    color: #333;
}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.menu-container {
    width: 100%;
    margin: 0 auto;
    background: #e9e9e9;
}

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    content: "\f394";
    font-family: "Ionicons";
    font-size: 2.5rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    background: #fff;
    color: #333;
}

.menu > ul {
    margin: 0 auto;
    width: calc(100% - 150px);
    float: left;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    display: inline-block;
    /* width: calc(100% / 9 - 5px); */
    position: relative;
    text-align: center;
    /*padding: 18px 2%;*/
    /*padding: 0 2%;*/
    padding: 0;
    margin: 0;
    transition: .4s;
}

.menu > ul > li:first-child {
    margin-left: 0;
}
.menu > ul > li:nth-child(2) a:hover {
    cursor:
}
.menu > ul > li:hover {
  background: #C6C6C6;
  transition: .4s;
}
.menu > ul > li:hover a {
  color: #222222;
}
.menu > ul > li:hover span.arrow {
  border-color: #222;
}

.menu > ul > li a {
color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 18px 2.3em;
    font-weight: lighter;
    letter-spacing: 0.1em;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
    -webkit-transition: .7s;
    transition: .7s;
    display: block;
    height: 66px;
}
.menu > ul > li a span {
    font-size: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
    font-weight: normal;
}
.menu > ul > li a:hover {
    /* background: #f0f0f0; */

}


.menu > ul > li > ul {
    display: none;
    width: 100%;
    background: #fff;
    padding: 30px 33px;
    position: fixed;
    z-index: 99;
    top: 66px;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    /*border: 10px solid #F0D45F;*/
    border-style: solid;
    border-color: rgba(67, 67, 67, .3);
    border-width: 1px 1px 4px;
}

.menu > ul > li span.arrow {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 8px;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    opacity: 0.5;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 75%;
    background: none;
    float: left;
}

.menu > ul > li > ul > li a {
    color: #777;
    padding: 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid #ccc;
}

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 32%;
    padding: 0;
    margin: 0 1% 17px 0;
}
.menu > ul > li > ul > li > ul > li:last-child {
    margin: 0 0 17px;
}

.menu > ul > li > ul > li > ul > li a {
    border: 0;
}
.menu > ul > li > ul > li > ul > li a:hover {
    opacity: 1;
}
.menu > ul > li > ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1em 0;
}

.menu .menu_title {
    width:23%;
	margin-right: 2%;
}

.menu .menu_title h2 {
    font-size: 60px;
    color: #D6D6D6;
	padding: 15% 0 0;
}
.menu .menu_title h2 span {
    font-size: 30px;
    margin-top: -1.2em;
}
.menu > ul > li > ul > li > ul > li.btn_style {
}
.menu > ul > li > ul > li > ul > li.btn_style a {
    width: 100%!important;
    margin: 0;
    text-align: left;
    border: 1px solid #C6C6C6;
    padding: 1.5em .5em 1.5em 2.75em;
    color: #222222;
	font-family: 'Noto Sans JP', sans-serif;
}
.menu > ul > li > ul > li > ul > li.btn_style a:before {
    top: 1px;
}

.menu > ul > li > ul.service > li > ul > li {
    /*width: 32.6%;*/
	/*margin-right: 1%;*/
  margin: 0;
  padding: 0 5px;
}
/*.menu > ul > li > ul.service > li > ul > li:nth-child(4),
.menu > ul > li > ul.service > li > ul > li:nth-child(7) {
	margin-right: 0;
}
.menu > ul > li > ul.service > li > ul > li.btn_style {
	width: 100%!important;
}*/

.link.service > li.btn_style a,
.link.about > li.btn_style a,
.link.recruit > li.btn_style a {
  width: 100%!important;
  margin: 10px 0 0;
  text-align: left;
  border: 1px solid #434343;
  padding: 1.5em .5em 1.5em 2.75em;
  color: #222222;
  font-family: 'Noto Sans JP', sans-serif;
}
.link.service .scaleBox > span {
    max-height: 90px;
}
.link.service > li.btn_style a {
    padding: 2.3em .3em 2.5em 2.05em;
    border: 1px solid #c6c6c6;
    height: 82px;
}

.link.service > li.btn_style a:hover {
  border-color: #F0D45F;
}

.menu .about .menu_title h2,
.menu .recruit .menu_title h2 {
    padding: 0;
}

.menu > ul > li > ul.works > li {
  float: none;
  width: 80%;
  margin: auto;
}

.menu > ul > li > ul.works > li > ul {
  display: inline-block;
}

.menu > ul > li > ul.works > li > ul > li {
  margin: 0;
  padding: 0 5px;
  max-width: 470px;
}

.menu > ul > li > ul.about > li > ul {
    margin: 10px auto 0;
    max-width: 956px;
}
.menu > ul > li > ul.about > li {
  float: none;
  width: 80%;
  margin: auto;
}
.menu > ul > li > ul.about > li > ul > li {
    max-width: 470px;
	margin: 0 1% 10px 0;
}
/*.menu figure:hover > figcaption {
	background: #F0D45F;
	-webkit-transition: .4s;
	transition: .4s;
}*/
.menu figure {
    position: relative;
    display: table;
    margin: auto;
}
.menu figure > a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
}
.menu figure > figcaption {
	background: #fff;
	color: #222;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	padding: 1em .5em 1em .8em;
	margin: 0 auto;
	position: relative;
	-webkit-transition: .4s;
	transition: .4s;
	line-height: 1.3;
}

.menu figure > figcaption:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	bottom:0;
	margin: auto;
  width: 4px;
	height: 4px;
	border-top: 1px solid #222;
	border-right: 1px solid #222;
	transform: rotate(45deg);
	/*background: url(../img/arrow2.png) no-repeat center / cover;*/

}

.menu > ul > li > ul > li p.btn_style a {
    color: #222;
    padding: .8em 1em;
    max-width: 220px;
    display: block;
    border: 1px solid #222222;
	margin: 0;
}
.menu > ul > li > ul > li p.btn_style a:hover {
    border: 1px solid #F0D45F;
	opacity: 1;
}
@media only screen and (max-width: 1070px) {
.menu > ul > li > ul {
    padding: 15px 18px;
}
.menu .menu_title h2 {
    font-size: 46px;
}
.menu .menu_title h2 span {
    font-size: 22px;
}
}

.menu > ul > li > ul > li > ul > li.link_box {
    display: inline-block;
    float: none;
    max-width: 316px;
}
.menu > ul > li > ul > li > ul > li.link_box .btn_style {
    float: left;
    margin-right: 20px;
	padding-top: 15px;
	width:auto;
}
.menu > ul > li > ul > li > ul > li.link_box .btn_style:last-child {
    margin-right: 0;
}
.menu > ul > li > ul > li > ul > li.link_box .btn_style a {
    width: 148px!important;
	font-size: 12px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 910px) {
.menu-container {
    display: none;
}


    .menu-container {
        width: 100%;
    }
    .menu-mobile {
        display: block;
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu > ul {
        display: none;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
    }
    .menu > ul > li a {
        padding: 1.5em;
        width: 100%;
        display: block;
    }
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu .show-on-mobile {
        display: block;
    }
}

/*@media ( min-width : 979px ) and ( max-width : 1277px ) {
  .menu > ul > li {
    padding: 0 1%;
  }
  .menu > ul > li > a {
    font-size: 13px;
  }
  .menu > ul > li > a span {
    font-size: 11px;
  }
}*/

@media ( min-width : 979px ) and ( max-width : 1487px ) {
  .menu > ul > li > a {
    font-size: 13px;
    padding: 18px 1.5em;
  }
  .menu > ul > li > a span {
    font-size: 11px;
  }
}

/*@media ( min-width : 891px ) and ( max-width : 978px ) {
  .menu > ul > li {
    padding: 18px .3%;
    padding: 0 .3%;
  }
  .menu > ul > li > a {
    font-size: 12px;
  }
  .menu > ul > li > a span {
    font-size: 11px;
  }
}*/
@media ( min-width : 891px ) and ( max-width : 1189px ) {
  .menu > ul > li > a {
    font-size: 12px;
    padding: 18px .7em;
  }
  .menu > ul > li > a span {
    font-size: 11px;
  }
}




/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
}
main {
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {word-wrap: break-word;}

*, *:before, *:after {
	    -webkit-box-sizing: border-box;
	         -o-box-sizing: border-box;
	        -ms-box-sizing: border-box;
	            box-sizing: border-box;
	}

* section {
	clear: both;
}

a:focus, *:focus {
	outline: none;
}
a, a img {
	-webkit-transition: 200ms;
	transition: 200ms;
}

a:hover {
	text-decoration: none;
}
a:hover img {
	opacity: 0.7;
	-moz-opacity: 0.7;
	filter: alpha(opacity=70);
	cursor: pointer;
}

img {
	height: auto;
	vertical-align: middle;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
}

figure {
  text-align: center;
  margin: 0 auto;
  padding: 0;
	display: table;
}

figure img {
  width: auto;
}

figure img {
	max-width: 100%;
}

figure figcaption {
  margin: 10px auto;
  text-align: left;
}

strong {
	font-weight: bold;
}

@media screen and (min-width: 641px) {
a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
}
}

/* base */
html {
  overflow: auto;
}

/*/-----------------基本設定*/



body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #222;
	font-size: 14px;
	overflow: hidden;
}

.inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}
@media screen and  ( max-width : 767px ) {
	main .inner {
		padding: 0 24px;
	}
}

p {
	margin-bottom: 1em;
	word-break: break-all;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

a, a:visited {
	color: #222;
}

/*----------------- ヘッダー */
header {
    /*position: relative;*/
    z-index: 1000;
    padding: 0;
    background: #434343;
	width: 100%;
    height: 66px;
    position: fixed;
    top: 0;
    left: 0;
}

header .inner {
	width: 100%;
	max-width: 100%;
}

.h_right {
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	width: 87%;
	float: right;
}

header p {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	width: 13%;
	/*max-width: px;*/
	margin: 20px 0 19px;
	padding-left: 43px;
}
@media screen and ( max-width : 1200px ) {
	header p {
		padding: 0 13px 0 30px;
	}
}
@media screen and ( max-width : 1000px ) {
	header p {
		margin: 10px 0 0 0;
		padding-left: 20px;
	}
}
header p img {
    max-width: 104px;
    width: 100%;
		min-width: 90px;
}
header p a:hover {
		opacity: 1;
		-webkit-transition: .7s;
		transition: .7s;
}
header p a:hover img {
		opacity: 1;
		-webkit-transition: .7s;
		transition: .7s;
}

header nav .navi {
    overflow: hidden;
    width: calc(100% - 66px);
    float: left;
}
header nav .navi li {
	display: inline-block;
	/*width: calc(100% / 9 - 5px);*/
	position: relative;
	text-align: center;
	padding: 18px 0;
	margin: 0 2%;
	}

header nav .navi li a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	padding: 0;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.2;
	font-family: 'Roboto', sans-serif;
	-webkit-transition: .7s;
	transition: .7s;
	display: block;
}
header nav .navi li a span {
		font-size: 12px;
		font-family: 'Noto Sans JP', sans-serif;
	display: block;
	}
nav .navi li a:hover {
		opacity: .5;
		-webkit-transition: .7s;
		transition: .7s;
}

nav .navi li .has-child:after {
}
nav .navi li:first-child {
		margin-left: 0;
	}
nav .navi li span.arrow {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 8px;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    opacity: 0.5;
}

.navi.navi_box {
  width: 100%;
  max-width: 150px;
  float: left;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
	display: table;
  margin: 0 auto;
	background: #F0D45F;
	position: relative;
	height: 66px;
	-webkit-transition: .4s;
    transition: .4s;
}
.navi.navi_box:hover {
    background: #434343;
    -webkit-transition: .4s;
    transition: .4s;
	cursor: pointer;
}
.navi.navi_box a {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .navi.navi_box a {
    font-size: 9px;
    top: -18px;
    left: -6px;
  }
}
.navi.navi_box a:hover {
  color: #F0D45F;
	opacity: 1.0;
}
.navi.navi_box:before {
    position: absolute;
    content: "";
    background: url(/img/tel_out.png) no-repeat center 50%;
    background-size: 13px;
    top: 0;
  	right: 33px;
    bottom: 0;
    margin: auto;
    width: 13px;
    height: 13px;
}
@media only screen and (max-width: 767px) {
  .navi.navi_box:before {
    top: 18px;
    right: 36px;
  }
}
.navi.navi_box:hover:before {
  position: absolute;
  content: "";
  background: url(/img/tel_over.png) no-repeat center 50%;
  background-size: 13px;
  top: 0;
  right: 33px;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 13px;
}
@media only screen and (max-width: 767px) {
  .navi.navi_box:hover:before {
    top: 18px;
    right: 36px;
  }
}
.navi.navi_box:after {
  position: absolute;
  content: "";
  background: url(/img/mail_out.png) no-repeat center 50%;
  background-size: 14px;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 12px;
}
@media only screen and (max-width: 767px) {
  .navi.navi_box:after {
    top: 18px;
    right: 17px;
  }
}
.navi.navi_box:hover:after {
  position: absolute;
  content: "";
  background: url(/img/mail_over.png) no-repeat center 50%;
  background-size: 14px;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 12px;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .navi.navi_box:hover:after {
    top: 18px;
    right: 17px;
  }
}

@media screen and ( min-width : 910px ) and (max-width : 1084px) {
	header h1 {
		padding-left: 10px;
	}

}

@media screen and ( min-width : 1001px ) {
	.h_right > nav {
		display: block;
	}
	.ac_menu.sp {
		display: none!important;
	}
}

@media screen and ( max-width : 1000px ) {
	.ac_menu.sp {
		display: block!important;
	}
	.h_right > .menu-container {
		display: none;
	}
header {
	height: 50px;
}
header h1 {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    width: 35%;
    margin: 11px 0;
    padding-left: 24px;
}
}


@media only screen and (max-width: 767px) {

	nav .btn,
	nav #toggle{
	position: absolute;
	top: 0;
	right: 70px;
	width: 140px;
	}
	nav .btn li {
	width:50%;
	float: left;
	}
	nav #toggle {
	width: 70px;
	right: 0;
	}
	nav .navi {
	display: none;
	position: absolute;
	top: 74px;
	left: 0;
	z-index: 500;
	background: #fff;
	width: 100%;
	border-top: 1px solid #eee;
	}
	nav .navi li {
	float: left;
	width: 50%;
	margin-right: 0;
    padding-top: 0;
	}
	nav .navi li a {
	height: 50px;
	display: block;
	padding: 15px 8px;
	border-bottom: 1px solid #eee;
	}

	nav .navi li img {max-width: 100%;}
}

/* spメニュー */
header .ac_menu dt {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 1.5em;
    right: 12px;
    max-width: 29px;
    width: 10%;
    min-width: 20px;
    height: 12px;
    background: url(/img/menu.png) no-repeat center / cover;
	-webkit-transition: .4s;
	transition: .4s;
}
header .ac_menu dt.menuOpen {
	background: none;
}
header .ac_menu dt.menuOpen {
    /*content: '＋';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -3px;
    margin: auto;
    color: #fff;
    font-size: 29px;
    font-weight: normal;*/
	top: 1em;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
	width: 29px;
    height: 29px;
	background: url(/img/menu_close.png) no-repeat center / cover;
	-webkit-transition: .4s;
	transition: .4s;
}
header .ac_menu dd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100vh;
    background: #fff;
    overflow: scroll;
}
header .ac_menu dd ul {
}
header .ac_menu dd ul li a {
    padding: 15px 20px 13px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
	color: rgba(67,67,67,0.6);
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    text-decoration: none;
    display: block;
	text-align: left;
	font-size: 12px;
	font-weight:lighter;
	letter-spacing: 0;

}
header .ac_menu dd ul li a span {
    display: block;
	color: #222222;
	font-size: 16px;
	padding:2px 0 0;
	letter-spacing: 0.1em;
	font-weight: bold;
}
header .ac_menu dd ul li a:hover {
	/*background: #037cec;*/
	text-decoration: none;
}

header .ac_menu dd ul li.has-child a {
	position: relative;
}
header .ac_menu dd ul li.has-child > a:after {
	content: '＋';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	font-size: 15px;
	width: 15px;
	height: 15px;
	display: block;
	color: #222222;
}
header .ac_menu dd ul li.has-child.subOpen > a:after {
	content: '－';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	font-size: 15px;
	width: 15px;
	height: 15px;
	display: block;
	color: #222222;
}

header .ac_menu dd ul li.has-child > .subMenu {
	display: none;
}
header .ac_menu dd ul li.has-child > .subMenu > li {
	background:#dcdcdc;
}
header .ac_menu dd ul li.has-child > .subMenu > li a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: #222222;
	font-weight: bold;
	text-align: left;
	background:#dcdcdc;
	padding-left: 2em;
	border-bottom: 0;
	letter-spacing: .1em;
}
header .ac_menu dd ul li.has-child > .subMenu > li a:before {
	content: "";
	/*font-family: 'Material Icons';*/
	position: absolute;
	top: 5px;
	bottom: 0;
	right: auto;
	left: 1.3em;
	margin: auto;
	width: 4px;
	height: 4px;
	border-top: 1px solid #222222;
	border-right: 1px solid #222222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

header .ac_menu dd ul li.has-child > .subMenu > li > ul {
	padding-left: 1em;
}

header .ac_menu dd ul li.has-child > .subMenu > li > ul > li > a {
	font-weight: normal;
}

/*-----------------footer */

footer {
	background: none;
	background: #434343;
	overflow: hidden;
	font-size: 13px;
	line-height: 2;
	padding: 0;
	position: relative;
	height: auto;
}

footer a {
	text-decoration: none;
	padding: 0 5px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
footer a:hover {
	text-decoration: none;
	opacity: .5;
		-webkit-transition: .7s;
		transition: .7s;
}
.footNavi {
	width: 100%;
	text-align: center;
}

/*
.footNavi li.parent {
	position: relative;
	padding-top: 1em;
	padding-left: 0!important;
}

.footNavi li.parent:before {
	content: '';
	position: absolute;
	top: 0;
	left: 5px;
	margin: auto;
	width: 1.5em;
	height: 2px;
	background: #fff;
}

.footNavi li.parent a {
	color: #fff;
	font-size: 14px!important;
}
*/
.footNavi li {
	position: relative;
	font-weight: 300;
	padding-left: 0;
	/*margin-bottom: 10px;*/
	display: inline-block;
	width: calc(100% / 3 - 5px);
	max-width: 154px;
}


/*
.footNavi li:not(.parent):before {
	content: none;
	position: absolute;
	top: 3px;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: translate(-20%, -50%) rotate(135deg);
  transform:translate(-20%, -50%) rotate(135deg);
	vertical-align: middle;
}
*/
.footNavi a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	display: block;
	padding: 1em;
	letter-spacing: 0.1em;
}

.footNavi.sns {
    text-align: right;
}
.footNavi.sns li {
    width: auto;
    max-width: 100%;
    margin-right: 15px;
	text-align: center;
}
.footNavi.sns li:last-child {
    margin-right: 0;
}
.footNavi.sns li a {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    vertical-align: middle;
    font-size: 18px;
    display: table-cell;
		padding: 0;
}

.copy {
	display: block;
	text-align: center;
	margin: 5px auto 0;
	padding: 0;
}
.copy p {
	color: #fff;
	font-size: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
    letter-spacing: 0.1em;
	margin-bottom: 0;
}


.flex3 {
	padding-top: 40px;
}
.flex3 .icons {
}


#toContact {
	position: fixed;
  z-index: 9999;
  bottom: 2%/*12%*/;
  right: 5%;
  background: #F0D45F;
  border: 1px solid #F0D45F;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  white-space: nowrap;
  display: none;
  -moz-box-shadow: 0px 5px 10px rgba(2, 2, 2, .4);
  -webkit-box-shadow: 0px 5px 10px rgba(2, 2, 2, .4);
  box-shadow: 0px 5px 10px rgba(2, 2, 2, .4);
}
@media only screen and (max-width: 767px) {
  #toContact {
    height: 70px;
    width: 70px;
  }
}

#toContact:after {
	content: none;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translate(-50%, -20%) rotate(45deg);
  transform: translate(-50%, -20%) rotate(45deg);
  -webkit-transition: .2s;
  transition: .2s;
}

#toContact img {
	width: 40px;
}

@media screen and  ( max-width : 767px ) {
	#toContact {
		display: inline-block;
	}
}



.footContent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 28px 0;
	margin: auto;
}
@media screen and  ( min-width : 768px ) {
footer .flex1 {
    padding-top: 12px;
}
}
@media screen and  ( max-width : 767px ) {
	.footContent {
		display: block;
		padding: 40px 0 28px;
	}
	nav .footNavi li {
		width: 100%;
		display: block;
		margin: 0;
		padding: 0;
		text-align: left;
	}
	.footNavi.sns {
	    text-align: left;
	}
	.flex3 {
		padding-top: 24px;
	}
	footer .inner {
		padding: 0 24px;
	}
	.copy {
		margin: 0 auto 32.5px;
}
}

.flex1,.flex3 {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.flex2 {
	-ms-flex-preferred-size: 60%;
	    flex-basis: 60%;
}

.footLogo {
	max-width: 213px;
	width: auto;
}

@media ( min-width : 768px ) and  ( max-width : 1100px ) {
	.footNavi a {
		font-size: 14px;
		padding: 1em 0;
	}
	.footNavi.sns li {
		margin-right: 3%;
	}
}


/*/-----------------見出し*/

.under main h1,
.service00.under .underTitle p,
.about03 .underTitle p,
.rental00 .underTitle p,
.news01 .underTitle p {
	text-align: left;
	position: relative;
  padding: 0 43px .6em;
	font-size: 150px;
	letter-spacing: 0;
	font-weight: lighter;
	color: #C6C6C6;
	margin-bottom: 10px;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	line-height: 1.3;
}

.under main h1 span,
.service00.under .underTitle span,
.about03 .underTitle span,
.rental01 .underTitle span,
.rental02 .underTitle span,
.rental03 .underTitle span,
.rental04 .underTitle span,
.rental05 .underTitle span,
.rental06 .underTitle span,
.rental_detail .underTitle span,
.news01 .underTitle span {
	display: block;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	margin-top: -1.3em;
}

.under.about03 .underContents h1 {
	font-size: 32px;
	text-align: center;
	color: #000;
	font-weight: bold;
	margin-bottom: 40px;
	padding: 0;
}

@media screen and  ( max-width : 767px ) {
	.under.about03 .underContents h1 {
		font-size: 28px !important;
		text-align: left;
	}
}

.under.tertiary .underTitle span {
	color: #333;
}

h2 {
    text-align: left;
    position: relative;
    padding: .2em 0;
		font-size: 150px;
		letter-spacing: 0;
		font-weight: lighter;
		color: #fff;
		margin-bottom: 10px;
		vertical-align: middle;
		font-family: 'Roboto', sans-serif;
		line-height: 1.3;
}

h2:after {
	content: none;
}
h2 span {
display: block;
font-size: 34px;
font-weight: 500;
color: #222222;
font-family: 'Noto Sans JP', sans-serif;
letter-spacing: 0.1em;
margin-top: -1.8em;
}


h3 {
  text-align: left;
  margin-bottom: .5em;
  position: relative;
  padding: .2em 0;
	font-size: 26px;
  font-weight: bold;
	color: #fff;
	line-height: 1.6;
	letter-spacing: .1em;
}
 h3:before {
	 content: none;
	 display: block;
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: auto;
	 bottom: 0;
	 margin: auto;
	 width: 10px;
	 height: 10px;
	 background: #4b9587;
}
h3 span {
	background: #e73217;
	font-size: 14px;
	padding: 0.2em 1em;
	color: #fff;
	margin-left: 1.3em;
	border-radius: 3px;
	vertical-align: middle;
}

h4 {
	font-size: 17px;
	text-align: left;
	position: relative;
	padding: 0.3em 0;
	padding-left: .8em;
	font-weight: 500;
	margin-bottom: 1em;
}
h4:after {
	content: '';
	display: block;
	position: absolute;
	/* top: 0; */
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border-bottom: 3px solid #4b9587;
}

h5 {
margin: 0 0 .3em;
padding: 0 0.8em;
color: #333;
font-weight: bold;
font-size: 16px;
position: relative;
vertical-align: middle;
text-align: center;
display: table;
margin: 13px auto;
}
h5:before,
h5:after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
display: block;
width: .5em;
height: 3px;
margin: auto;
background: #4b9587;
}

h5:after {
	left: auto;
	right: 0;
}

h5 span {
display: block;
font-size: 0.8em;
vertical-align: middle;
}

.numberTitle-inner {
	counter-reset: number 0;
}

.numberTitle span {
	font-style: normal;
	position: relative;
	vertical-align: text-bottom;
	padding-left: 1.5em;
}

.numberTitle span:after {
	counter-increment: number 1;
	content:  counter(number) ". ";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

@media ( min-width : 768px ) and ( max-width : 1000px ) {
	h2 {
		font-size: 100px;
	}
	h2 span {
		margin-top: -1.3em;
	}
	h3 {
		font-size: 16px!important;
	}
}

@media ( max-width : 767px ) {
	.under main h1,
	.service00.under .underTitle p,
	.news01.under .underTitle p {
		font-size: 50px!important;
		padding: 1em 24px;
	}
	.under main h1 span,
	.service00.under .underTitle span {
		font-size: 24px!important;
		margin-top: -.8em;
	}
	h2 {
		font-size: 50px!important;
	}
	h2 span {
		margin-top: -.8em;
		font-size: 24px;
	}
	h3 {
		font-size: 16px!important;
	}
	h4 {
		font-size: 15px!important;
	}
	h4:before {
		width: 5px;
		height: 5px;
		top: 10px;
	}
	.flowTitle span.circle:before {
		width: 18px;
		height: 18px;
		top: 1px;
		left: -6px;
	}
	h5 {
		font-size: 14px!important;
	}
	p:not([class]), td:not([class]), th:not([class]), li:not([class]) {
		font-size: 14px!important;
	}
}

/*/-----------------ボタン*/

.btn_style {
 width: 100%;
}

.btn_style a {
	display: inline-block;
	position: relative;
	margin: 5px auto;
	padding: 1em 1em;
	text-align: center;
	background: none;
	color: #434343;
	text-decoration: none;
	border-radius: 30px;
	font-size: 12px;
	width: 220px;
	font-weight: 700;
	letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #434343;
  -webkit-transition: .4s;
  transition: .4s;
}

.btn_style a:hover {
  border-color: #F0D45F;
  background: #F0D45F;
	-webkit-transition: .4s;
	transition: .4s;
	text-decoration: none;
}


.btn_style a:after {
	content: none;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5%;
	vertical-align: middle;
	margin: auto;
	width: 5px;
	height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
	-webkit-transition: 0.8s;
	transition: 0.8s;
}
.btn_style a:hover:after {
	border-color: #db7d1f;
  right: 3%;
	-webkit-transition: .4s;
	transition: .4s;
}
@media screen and  ( max-width : 767px ) {
  .btn_style {
    max-width: 100%;
  }
}

/*/-----------------グーグルマップ*/

.googlemap {
	position: relative;
	width: 100%;
	padding-top: 73%;/*ここで高さ調整*/
	min-height: 300px;
}
.googlemap iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/*/-----------------youtube*/

.youtube {
 position: relative;
 width: 100%;
 padding-top: 56.25%;
}
.youtube iframe {
 position: absolute;
 top: 0;
 right: 0;
 width: 100% !important;
 height: 100% !important;
}

/*/-----------------新着情報*/
.newsContent {
	background: none;
	padding: 0;
	overflow: hidden;
}

.newsContent dl {
	width: 100%;
}

.newsContent dt,
.newsContent dd {
	padding: 0 .2em;
	display: block;
	text-align: left;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 41px;
}

.newsContent dt {
	width: 30%;
	clear: left;
	float: left;
	font-size: 12px;
	font-weight: normal;
	font-family: 'Roboto', sans-serif;
	padding: 0 1em;
}

.newsContent dd {
	width: 70%;
	float: left;
	padding-left: .5em;
}

.newsContent dd a {
	text-decoration: none;
	position: relative;
	z-index: 2;
}
.newsContent dd a:hover {
	text-decoration: underline;
}
.newsContent dt span {
	width: 94px;
	margin-right: 1em;
	display: inline-block;
	text-align: center;
	padding: .1em 0;
	background: #fff;
	color: #1a1a1a;
	border: 1px solid #1a1a1a;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans JP', sans-serif;
	border-radius:3px;
}

.newsContent dt span.cat1 {
	border-color: #CE2D18;
	color: #CE2D18;
}
.newsContent dt span.cat2 {
	border-color: #E8A612;
	color: #E8A612;
}
.newsContent dt span.cat3 {
	border-color: #0C57AD;
	color: #0C57AD;
}




@media screen and  ( max-width : 1000px ) {
	.newsContent dt,
	.newsContent dd {
		width: 100%;
		padding: 0 0 .5em;
		margin: 0;
	}
	.newsContent dd {
		margin-bottom:  25px;
	}
}
/*
@media ( max-width : 467px ) {
	.newsContent dd,
	.newsContent dt,
	.newsContent dl  {
		font-size: 12px;
}
}*/

#news-content h2 {
	border: none;
	font-size: 21px;
}

#news-content p {
	margin-bottom: 40px;
}

@media screen and  ( max-width : 1000px ) {
	#news-content p {
		margin-bottom: 20px;
	}
}

#news-content img {
	margin: 0 auto;
	display: block;
}

/*/-----------------メールフォーム*/

.contactBanner {
	width: 100%;
	position: relative;
}
.contactBanner > p {
	background: #F0D45F;
	text-align: center;
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 1.3em;
	position: relative;
	margin: 0 !important;
	cursor: pointer;
}
.contactBanner > p:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5%;
	margin: auto;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #222;
	border-right: 2px solid #222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: .4s;
	transition: .4s;
}
.contactBanner > p.active:after {
	content: '';
	-webkit-transform: rotate(225deg);
	        transform: rotate(225deg);
	-webkit-transition: .4s;
	transition: .4s;
}

.pulldown {
	display: none;
	border: 1px solid #222;
	border-top: 0;
	padding: 20px 0;
}

table.mailform {
	width: 95%;
	margin: auto;
	border: 0;
}
@media screen and  ( min-width : 768px ) {
	table.mailform {
		width: 85%;
	}
}
table.mailform th, table.mailform td {
	padding: 1.3em;
	text-align: left;
	border-bottom: 1px solid #e2e2e2;
	vertical-align: middle;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
table.mailform th {
	text-align: left;
	padding: 1.7em 0 ;
	border-bottom: 1px solid #1d79bf;
	vertical-align: top;
	font-weight: bold;
	width: 25%;
	min-width: 120px;
}
table.mailform th span {
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #A81E29;
	vertical-align: text-bottom;
}

table.mailform tr:first-child th {
	border-top: 1px solid #1d79bf;
}
table.mailform tr:first-child td {
	border-top: 1px solid #e2e2e2;
}
#identification th {
	vertical-align: middle;
}

#identification td img {
	max-width: 300px;
	max-height: 300px;
}
#birthday_year {
	border: 1px solid #ccc;
	width: 80px !important;
}
#birthday_month,
#birthday_day {
	border: 1px solid #ccc;
	width: 60px !important;
}

input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
}
input, button, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
table.mailform input[type="text"],
table.mailform input[type="tel"],
table.mailform input[type="number"],
table.mailform input[type="email"],
table.mailform input[type="password"],
table.mailform select,
table.mailform textarea {
    border: 0;
    background: #fff;
    width: 100%!important;
    /*height: 42px;*/
    padding: 5px 8px;
    font-size: 14px;
    -webkit-transition: .4s;
    transition: .4s;
		position: relative;
		line-height: 1.5;
}

table.mailform .zipCode {
	padding-left: 2.3em;
	position: relative;
}

table.mailform .zipCode:before {
	content: '〒';
	position: absolute;
	top: 20px;
	bottom: 0;
	left: 1em;
	margin: auto;
	display: table;
}

@media screen and  ( max-width : 767px ) {
	table.mailform .zipCode:before {
		top: 15px;
	}
}

table.mailform textarea {
    height: 170px;
}

table.mailform input[type="radio"],
table.mailform input[type="checkbox"] {
    position: relative;
    width: 11px;
    height: 11px;
    margin-right: .3em;
		margin-bottom: 1px;
    padding: 0;
    background: #fff;
    border: 1px solid #222222;
    vertical-align: middle;
    outline: none;
    cursor: pointer;
}

table.mailform label {
	line-height: 2;
}

.contactPage .contents08 {
	display: none;
}

.underContents table.mailform .mwform-checkbox-field {
	display: inline-block;
	margin: 0 10px 0 0;
}

table.mailform label + label {
    margin: auto 15px;
}

@media screen and  ( max-width : 767px ) {
	table.mailform label + label {
		display: block;
		margin: auto;
	}
table.mailform tr:first-child th,
table.mailform tr:first-child td {
	border-top: 0;
}
table.mailform th,
table.mailform td {
	width: 100%;
	display: block;
	padding: .75em 0;
}
table.mailform th {
    border-bottom: 0;
    padding: 1.7em 0 0;
}
table.mailform textarea {
    height: 60px;
}
}

table.mailform input[type="radio"] {
    border-radius: 50%;
}
table.mailform input[type="radio"]:checked,
table.mailform input[type="checkbox"]:checked {
    background: #222;
}
table.mailform input[type="radio"]:checked:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
		right: 0;
		bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
}

table.mailform input[type="checkbox"]:checked:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: -7px;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 15px;
	height: 6px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	background: none;
	-webkit-transform: rotate(-34deg);
	        transform: rotate(-34deg);
}


table.mailform input[type="reset"] {
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: .05em;
    background: #b4b4b4;
    -webkit-box-shadow: 2px 2px 6px #aaa;
            box-shadow: 2px 2px 6px #aaa;
    padding: 10px 20px;
}
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */
label {
    cursor: pointer;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance:textfield;
}

.btn_style input[type="submit"],
.btn_style button[type="submit"]:hover {
	cursor: pointer;
	display: inline-block;
	position: relative;
	margin: 80px auto 0;
	padding: 1em 1em;
	text-align: center;
	background: none;
	color: #222222;
	text-decoration: none;
	border-radius: 30px;
	font-size: 12px;
	width: 220px;
	font-weight: 500;
	letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #222222;
  -webkit-transition: .4s;
  transition: .4s;
}

.btn_style input[type="submit"]:hover,
.btn_style button[type="submit"]:hover {
	border-color: #F0D45F;
  background: #F0D45F;
	-webkit-transition: .4s;
	transition: .4s;
	text-decoration: none;
}


.btn_style input[type="submit"]:after,
.btn_style button[type="submit"]:after {
	content: '';
	position: absolute;
	top: auto;
	bottom: 3px;
	right: 3px;
	vertical-align: middle;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 12px 12px;
	border-color: transparent transparent #ffffff transparent;
	-webkit-transition: 0.8s;
	transition: 0.8s;
}
.btn_style input[type="submit"]:hover:after,
.btn_style button[type="submit"]:hover:after {
	border-color: transparent transparent #f39800 transparent;
	-webkit-transition: .4s;
	transition: .4s;
}
@media screen and  ( max-width : 767px ) {
  .btn_style input[type="submit"],
	.btn_style button[type="submit"] {
    max-width: 100%;
		font-size: 15px;
  }
}

.contactTel {
	margin-bottom: 80px;
}
.contactTel .hub {
	width: 55px;
	display: inline-block;
}
.contactTel a {
	padding-right: 20px;
	display: inline-block;
	padding-left: 5px;
}

@media screen and  ( max-width : 767px ) {
	.contactTel a {
		padding-right: 0px;
		padding-left: 5px;
	}

	.contactTel .font34 {
		font-size: 24px !important;
	}
}
.contactTel a.font42 {
	color: #434343;
}
@media screen and  ( max-width : 767px ) {
.contactTel a.font42 {
	text-decoration: none;
	font-size: 38px!important;
}
}
/*----------------- パンくずリスト*/

.breadcrumb {
  padding: .5em 1.5em;
  margin-left: 5px;
  margin-bottom: 80px;
  margin-top: 0;
  line-height: 1.0;
	border: 1px solid #222;
	display: table;
	z-index: 10;
	position: relative;
	background: #fff;
}
.breadcrumb.mb46 {
  margin-bottom: 46px;
}
@media screen and  ( max-width : 767px ) {
	.breadcrumb {
		display: none;
	}
}

.breadcrumb li{
  display:inline;
  list-style: none;
	position: relative;
}
.breadcrumb li:not(:first-child) {
	padding-left: 2.5em;
}

.breadcrumb li:after{
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	bottom: 0;
	right: -1.4em;
	margin: auto;
	padding: 0;
	width: 5px;
	height: 5px;
	border-top: 1px solid #222;
	border-right: 1px solid #222;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.breadcrumb li:first-child a {
	color: #fff;
	display: table-cell;
}

.breadcrumb li:first-child a span {
	color: #fff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: table-cell;
	text-align: center;
	padding-top: 3px;
	padding-left: 2px;
	background: #333;
}

.service .breadcrumb li:first-child a span {
	background: none;
}

.breadcrumb li:last-child:after{
  content: none;
}
.breadcrumb li a {
    text-decoration: none;
    color: #222;
		font-size: 12px;
		letter-spacing: 0.1em;
}
.breadcrumb li:last-child {
	color: #222;
	font-size: 12px;
}

/*/-----------------リスト*/

ul.ul01 {
	margin: 0 auto;
}
ul.ul01 li {
	position: relative;
    padding: 0 0 0 15px;
    margin-bottom: 10px;
    line-height: 1.8;
}
ul.ul01 li:before {
	content: "";
	position: absolute;
	width: 3px;
	height: 3px;
	left: 3px;
	top: 11px;
	background: #231815;
	border-radius: 50%;
}


/*/-----------------横並び定義リスト*/

dl.dl01{
width: 100%;
clear: both;
}

dl.dl01 dt{
display: block;
width: 20%;
clear: left;
float: left;
text-align: left;
}

dl.dl01 dd{
display: block;
width: calc(100% - 100px);
float: left;
text-align: left;
}

dl.dl01:after {
	content: "";
	display: block;
	clear: both;
}

/*/-----------------ボーダリスト*/

ul.borderList {
	margin: 0 auto;
  width: 100%;
  list-style: none;
}
ul.borderList li {
	position: relative;
	padding: 0 0 5px 15px;
	margin-bottom: 10px;
  border-bottom: 1px solid #db7d1f;
}
ul.borderList li:before,
ul.borderList li:after {
  content: none;
}

/*/-----------------Q&A*/
.faq {
	display: block;
	position: relative;
	margin: 0 auto 50px;
}

.faq > ul > li {
	list-style-type: none;
	list-style-image: none;
	padding: 10px 0 10px 37px;
	/*border-bottom: 2px solid #cdcdcd;*/
	margin-bottom: 10px;
	position: relative;
	text-align: left;
}

.faq ul > li:nth-child(odd):before {
	content: 'Q.';
	position: absolute;
	top: 5px;
	bottom: 0;
	left: 0;
	margin: auto;
	font-size: 150%;
	font-weight: bold;
	vertical-align: baseline;
	color: #29a4fa;
}
.faq > ul > li:nth-child(even) {
	/*border-left: 2px solid #cdcdcd;
	border-right: 2px solid #cdcdcd;*/
	padding-top: 1.5em;
	padding-left: 2.5em;
	padding-right: 1.5em;
	background: #F4F4DC;
	margin-bottom: 40px;
}

.faq > ul > li:nth-child(even):before {
	content: 'A.';
	position: absolute;
	top: .5em;
	left: 0.5em;
	margin: auto;
	font-size: 150%;
	font-weight: bold;
	vertical-align: baseline;
	color: #e40000;
}

.faq > ul > li:nth-child(even) p {
	margin-bottom: 20px;
}
.faq .qtit{
font-size: 1.26em;
font-weight: bolder;
display: inline-block;
width: 98%;
}


@media ( max-width : 980px ) {
	.faq {
		width: 98%;
	}
	.faq .qtit{
		font-size: 1.2em;
		width: 90%;
	}
}

@media ( max-width : 476px ) {
	.faq .qtit{
		font-size: 0.9em;
		width: 90%;
	}
}



/*/-----------------テーブル*/
table.table01 {
	margin: 0 auto 20px;
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #999;
}

table.table01 th, table.table01 td {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 10px 10px 8px;
	text-align: left;
	line-height: 1.5;
	vertical-align: middle;
	border: 1px solid #999;
}

table.table01 thead th {
	text-align: center;
	font-weight: bold;
	background: #ffb751;
	color: #fff;
}
table.table01 thead th:last-child {
	border-right: none;
}
table.table01 tbody th {
	width: 20%;
	background: rgba(6, 87, 192, 0.2);
	text-align: center;
}

/*/-----------------下線・上線のみ*/
.borderTable {
  	width:100%;
  	margin-bottom:1.5em;
  }
.borderTable tr {
	border-bottom:1px solid #a0a0a0;
}
.borderTable th,
.borderTable td {
	text-align: left;
	padding: 1.3em .3em 1em;
	letter-spacing: 0.05em;
}

.borderTable th {
	text-align: left;
	padding-left: .8em;
}

/*/-----------------行の色が互い違い*/
.stripeTable {
  	width:100%;
  	margin-bottom:80px;
}

.stripeTable tr {

}

.stripeTable tr:nth-child(odd) {
	background: #ffffff;
}
.stripeTable tr:nth-child(even) {
	background: #f2f2f2;
}

.stripeTable th,
.stripeTable td {
	text-align: left;
	padding: 1em 1em 1em;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-weight: 400;
	word-break: break-all;
}

	.stripeTable th {
	min-width: 120px;
	padding-right: 0;
	}
.stripeTable th span {
    margin-left: 6.5px;
}

/*/-----------------価格*/
.priceTable,
.priceTable tbody {
	width: 100%;
	margin-bottom: 20px;
	border-spacing: 10px 0;
}

.priceTable tr {
	width: 100%;
	border-bottom: 1px solid #bfd8d3;
	margin-bottom: 15px;
}

.priceTable th {
	width: 50%;
	text-align: left;
	padding: 1.5em 0 .8em;
	padding-left: 1em;
}

.priceTable td {
	width: 50%;
	text-align: right;
	padding: 1.5em 0 .8em;
	padding-right: 1em;
}

/*-----------------汎用クラス*/

.clearfix {
	overflow: hidden;
	zoom: 1;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.textIndent {text-indent:1em}
.textLeft {text-align:left!important}
.textCenter {text-align:center!important}
.textRight {text-align:right!important}
.textLarge {font-size:120%!important}
.textXLarge {font-size:150%!important}
.textXXLarge {font-size:200%!important}
.textSmall {font-size:80%!important}
.textXSmall {font-size:50%!important}
.bold {font-weight: bold!important}

@media screen and  ( max-width : 767px ) {
	.sp-textCenter {text-align: center!important}
}

main img.alignright ,
main img.alignleft {
	float: none;
	margin:0 auto 20px;
	display:block;
}

@media screen and  ( min-width : 768px ) {
	img.alignright,
	img.alignleft,
	main img.alignright,
	main img.alignleft {
	max-width:34%;
}
main img.alignright {
	float:right;
	margin:0 0 10px 2%;
}
main img.alignleft {
	float:left;
	margin:0 2% 10px 0;
}
}

figure.circleImg > img {
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	width: 20vh;
	height: 20vh;
}

.centering {
	display: block;
	margin: auto;
}


.mb0 {margin-bottom:0px!important}
.mb5 {margin-bottom:5px!important}
.mb10 {margin-bottom:10px!important}
.mb20 {margin-bottom:20px!important}
.mb30 {margin-bottom:30px!important}
.mb40 {margin-bottom:40px!important}
.mb50 {margin-bottom:50px!important}
.mb60 {margin-bottom:60px!important}
.mb65 {margin-bottom:65px!important}
.mb80 {margin-bottom:80px!important}
.mt10 {margin-top:10px!important}

.pd1 {padding: 1em!important}
.pt35 {padding-top: 35px!important}

.mincho {
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif!important;
	font-size: 108%!important;
}

.gothic {
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.marugo {
	font-family: "ヒラギノ丸ゴ Pro W4", "Hiragino maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "Verdana", "Osaka", sans-serif;
}

.caution {
	font-size: 90%;
	color: red;
	line-height: 1.3;
}

/*----------------- 横並びコンテンツ用*/

.inner-wrap {
	display: block;
	table-layout: fixed;
	width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	overflow: hidden;
}

.block {
	display: inline-block;
	width: 49%;
	padding: 0;
	margin: auto;
	float: left;
	margin-left: 1.5%;
	margin-top: 10px;
  text-align: left;
}

.block p {
  text-align: left;
}
.block:first-child {
    margin-left: 0!important;
}
.block .block-inner {
  padding-top: 2rem;
}
.blockLine {
	clear: both;
	position: relative;
	display: block;
	overflow: hidden;
	text-align: center;
	width: 100%;
}
@media ( min-width : 768px ) {

.vertical > .block {
  float: none;
  vertical-align: middle;
  position: relative;
}
.vertical.vertical_b > .block {
  vertical-align: bottom;
}
.reversal > .block {
  float: right;
  position: relative;
}
.block.last + .block {
  margin-left: 0;
  clear: both;
}

.reversal > .block:not(:first-child) {
	margin-right: 2%;
	margin-left: 0;
}
}

.wd10 {	width: 9%;}

.wd20 {	width: 19%;}

.wd30 {	width: 29%;}

.wd40 {	width: 39%;}

.wd60 {	width: 59%;}

.wd70 {	width: 69%;}

.wd80 {	width: 79%;}

.wd90 {	width: 89%;}



@media ( max-width : 767px ) {
	.inner-wrap, .block {
		display: block;
		text-align: center;
		margin: 0 auto 15px;
		width: 100%;
}
.block {
  text-align: left;
}
.wd10, .wd20, .wd30, .wd40, .wd60, .wd70, .wd80, .wd90 {
	width: 100%;
}
.blockLine {
	 padding: 0;
}

.sp_2 > .block {
  display: inline-block;
  width: calc(100% / 2 - 5px);
  padding: 0;
  margin: auto;
  float: left;
  margin-top: 10px;
  text-align: left;
}
.sp_2 > .block:nth-child(even) {
  margin-left: 10px;
}
.sp_2 > .block:nth-child(odd) {
  clear: both;
}
}

/*/-----------------フレックスボックス*/

@media screen and  ( min-width : 768px ) {

.flexBox {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexBox.flexLeft {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: start;
}

.flexBox.between {
	-webkit-box-pack: space-between;
	    -ms-flex-pack: space-between;
	        justify-content: space-between;
}

.flexBox.blocks_2 > * {
	-ms-flex-preferred-size: calc(100% / 2);
	    flex-basis: calc(100% / 2);
	width: calc(100% / 2);
}

.flexBox.blocks_3 > * {
	-ms-flex-preferred-size: calc(100% / 3);
	    flex-basis: calc(100% / 3);
	width: calc(100% / 3);
}
.flexBox.blocks_4 > * {
	-ms-flex-preferred-size: calc(100% / 4);
	    flex-basis: calc(100% / 4);
	width: calc(100% / 4);
}
.flexBox.blocks_5 > * {
	-ms-flex-preferred-size: calc(100% / 5);
	    flex-basis: calc(100% / 5);
	width: calc(100% / 5);
}
.flexBox.blocks_6 > * {
	-ms-flex-preferred-size: calc(100% / 6);
	    flex-basis: calc(100% / 6);
	width: calc(100% / 6);
}
}

@media screen and  ( max-width : 767px ) {
	.flexBox.sp_2 {
		width: 100%;
		margin: 0;
		padding: 0;
		overflow: hidden;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flexBox.sp_2 > * {
		-ms-flex-preferred-size: calc(100% / 2);
				flex-basis: calc(100% / 2);
		width: calc(100% / 2);
	}
}

/*/-----------------グリッドタイル*/

.gridBox {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	-webkit-column-count: 2;
	        column-count: 2;
	-webkit-column-gap: 0;
	        column-gap: 0;
}

.gridBox.blocks_3 {
	-webkit-column-count: 3;
	        column-count: 3;
}

.gridBox > * {
	padding: 5px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
	margin: auto;
	width: 100%;
	height: auto;
	line-height: 0;
}

@media screen and  ( max-width : 767px ) {
	.gridBox {
		-webkit-column-count: 2;
		        column-count: 2;
	}
}

/*/-----------------フロー*/

.flow-inner {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 0;
	margin-bottom: 20px;
	counter-reset: number 0;
}
.flow {
	position: relative;
	max-width: 100%;
	display: block;
	margin: 10px auto 90px;
	padding: 2em 1.5em 2%;
	background: #fff9fc;
	border-radius: 4px;
}

.flow:last-child {
	margin: 10px auto;
}

.flow:after {
	content: '≫';
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	bottom: -60px;
	margin: auto;
	width: 1px;
	height: auto;
	color: #e40080;
	font-size: 100px;
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
	font-weight: lighter;
}
.flowTitle {
	padding: 0;
	text-align: left!important;
	vertical-align: middle;
	display: inherit;
	width: 95%;
	margin: 15px 0 10px;
	color: #e40080;
  font-size: 22px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
	position: relative;
}
.flow:last-child:after,
.flowTitle:before,
.flowTitle:after {
	content: none!important;
}
.flowTitle span {
	font-style: normal;
	position: relative;
	vertical-align: text-bottom;
	margin-right: 1.5em;
}
.flowTitle span:after {
	counter-increment: number 1;
	content:  counter(number) ". ";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.flowTitle span.circle:before {
	content: '';
	position: absolute;
	left: -7px;
	top: -2px;
	margin: auto;
	background: none;
	width: 25px;
	height: 25px;
	border: 2px solid #fc7b65;
	border-radius: 50%;
}

.flowTitle span.circle:after {
	counter-increment: number 1;
	content:  counter(number) "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.flow img {
	width: auto;
	max-width: 100%;
	display: block;
	margin: 10px auto 0;
}
.flow p, .flow ul {
	padding: 0 .5em 1em;
	text-align: left;
}


.arrowBox {
  position: relative;
  background: #1b8fd3;
  color: #fff;
  text-align: center;
  padding: 2em 1em;
  height: 100px;
  padding-right: 50px;
}

.arrowBox:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 50px 40px;
  border-color: #fff transparent #fff;
}

@media screen and (max-width: 767px) {
	.arrowBox {
		padding-right: 1em;
		height: 130px;
		margin-bottom: 20px;
	}
  .arrowBox:after {
    left: 0;
    top: 0;
    border-width: 105px 0 105px 50px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

/*/-----------------拡大オーバー*/

@media screen and  ( min-width : 768px ) {
.scaleBox > span {
	overflow: hidden;
	display: block;
}

.scaleBox > span img {
	-webkit-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

.scaleBox:hover > span img {
	-webkit-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
  transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
	opacity: 1;
}

}


/*/-----------------フェードイン*/

/* fadeIn */
/* 画面外にいる状態 */
.fadeIn {
   opacity : 0.1;
   -webkit-transform : translate(0, 150px);
           transform : translate(0, 150px);
   -webkit-transition : all 1000ms;
   transition : all 1000ms;
   }
.fadeIn.catch {
   opacity : 0.1;
   -webkit-transform : translate(0, 150px);
           transform : translate(0, 150px);
   -webkit-transition : all 1800ms;
   transition : all 1800ms;
   }
/* 画面内に入った状態 */
main .fadeIn.scrollin {
   opacity : 1;
   -webkit-transform : translate(0, 0);
           transform : translate(0, 0);
   }


/***************SP_TOPコンテンツ******************/

/* mainimage */
.mainimage {
	background: #1f1e1f;
	/*background: url(/img/image1.png) no-repeat center top;
	background-size: cover !important;*/
	min-height: 100vh;
	width: 100%;
	position: relative;
    z-index: -1;
	/*margin-top: -96px;*/
}
.main_copy {
    position: absolute;
    top: 70%;
	bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
		width: 100%;
		height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	 z-index: 1;
}
.main_copy {
    animation: fade 5s ease 0s 1 normal;
    -webkit-animation: fade 5s ease 0s 1 normal;
}

.main_copy > div {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	display: block;
}

.main_copy p.copy01 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
		letter-spacing: 0.5em;
}
.main_copy p.copy01 img {
	max-width: 273px;
	display: block;
	margin: 20px auto 0;
}

[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -1em;
    left: 7px;
    right: 0;
    margin: auto;
    font-size: 12px;
	letter-spacing: 0.8em;
}

.trim {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
	/*background: url(/img/mv_texture.png) no-repeat center / cover;*/
}
.trim .slick-slide{
	position: relative;
}
.trim .slick-slide:before {
    position: absolute;
	content: "";
	background: url(/img/mv_texture.png);
	background-size: cover;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.trim p.copy02 {
    position: absolute;
    font-size: 34px;
    font-weight: bold;
    color: #fff;
	line-height: 1.6;
}
.trim p.copy02 span {
    font-size: 17px;
    font-weight: 400;
	letter-spacing: 0.3em;
}
.trim .slide01 p.copy02, .trim .slide05 p.copy02 {
    bottom:5%;
	left:10%;
}
.trim .slide02 p.copy02 {
	top: 15%;
    right: 15%;
}
.trim .slide03 p.copy02, .trim .slide06 p.copy02 {
    bottom:5%;
	right: 15%;
}
.trim .slide04 p.copy02 {
    top: 15%;
	left:10%;
}
@media only screen and (max-width: 1000px) {
.trim .slide01 p.copy02,
.trim .slide02 p.copy02,
.trim .slide03 p.copy02,
.trim .slide04 p.copy02,
.trim .slide05 p.copy02,
.trim .slide06 p.copy02	{
	font-size: 22px;
	top:auto;
    bottom:10%;
	left:5%;
	right: auto;
	width: 70%;
}
.trim p.copy02 span {
    font-size: 14px;
}
}

.mainimage .video-wrap {
   position: relative;
}
.mainimage .slick-list img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.mainimage img.p_main {
    overflow: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}
.mainimage .slick-dots {
    bottom: 40px;
	right: 40px;
	text-align: right;
}
.mainimage .slick-dots li {
    width: 7px;
    height: 7px;
    margin: 0 8px;
}
.mainimage .slick-dots li button {
    width: 7px;
    height: 7px;
}
.mainimage .slick-dots li button:before {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,.5);
}
.mainimage .slick-dots li.slick-active button:before {
    background: #fff;
	width: 13px;
	height: 13px;
	margin-top:-4px;
}

@keyframes fade {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fade {
    0% {opacity: 0}
    100% {opacity: 1}
}
@media screen and  ( min-width : 768px ) {
}
@media (min-width: 768px) and (max-width: 1000px) {
.mainimage {
	/*margin-top: -87px;*/
}
.main_copy {
	/*top: 20%;*/
}
}
@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 767px) {
.mainimage img.p_main {
	position: fixed;
}
.main_copy {
    top: 80%;
	z-index: 1;
}
.main_copy p.copy01 {
    font-size: 14px!important;
}
.main_copy p.copy01 img {
    max-width: 240px;
    display: block;
    margin: 10px auto 0;
    position: initial;
    transform: initial;
}
.trim {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.mainimage .slick-dots {
	text-align: center;
	    right: auto;
}
}

/* バナーメッセージadd(標準)*/
.mainimage {
  display: flex;
  align-items: center;
  z-index: inherit;
}
.trim {
  position: absolute;
  top: 0;
  left: 0;
}
.main_messag-wrap_yellow {
  position: absolute;
  top: 52%;
  left: 24%; 
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 25%;
  max-width: 1060px;
  z-index: 2;
  animation: fade 5s ease 0s 1 normal;
  -webkit-animation: fade 5s ease 0s 1 normal;
}

.main_messag-wrap_yellow.wrap-top {
    z-index: 3;
}

.wrap-top .main_message_yellow {
	background: none !important;
}
.wrap-btm {
	mix-blend-mode: multiply;
}
.mainimage .main_message_yellow {
  position: relative;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: space-between; */
  background: rgba(201,188,72,1);
  mix-blend-mode: multiply;
  background-blend-mode: multiply;
  padding: 5px 2% 10px;
  cursor : pointer;
}
.mainimage .main_message_yellow * {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}

.main_message_yellow::before{
	padding: 100%;
}

.mainimage .main_message_yellow > div:first-child {
  align-items: center;
  margin-top: 10px; 
}
.mainimage .main_message_yellow > div:last-child {
  display: block;
  justify-content: center;
}
.mainimage .main_message_yellow > div:first-child figure {
  margin-bottom: 10px;
  max-width: 75px;
}

.mainimage .main_message_yellow > div:first-child figure img {
  width: 100%;
}
.mainimage .main_message_yellow > div:first-child p {
  text-align: center;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0;
  letter-spacing: 0;
}

.mainimage .main_message_yellow > div:last-child ul {
  width: calc(100% - 20px);
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 10px;
}
.mainimage .main_message_yellow > div:last-child ul li {
  background: rgba(254, 239, 53, 0.8);
  margin: 10px auto;
  text-align: center;
  position: relative;
  color: #222;
  font-size: 13px;
  width: 29%;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainimage .main_message_yellow > div:last-child ul li::before,
.mainimage .main_message_yellow > div:last-child ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 10px 13px 0;
  border-color: transparent rgba(254, 239, 53, 0.8) transparent transparent;
}
.mainimage .main_message_yellow > div:last-child ul li::after {
  left: inherit;
  right: -10px;
  transform: scale(-1, 1);
}
.mainimage .main_message_yellow > div:last-child ul + a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 30px;
  padding: 8px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  /* margin-bottom: 10px; */
}

.mainimage .wrap-top .main_message_yellow:hover > div:last-child ul + a:after {
    content: "詳しい案内はこちら"; 
    display: flex;
	color: black;
    justify-content: center;
	align-items: center;
    height: 100%;
    border-radius: 30px;
    width: 100%;
    background: white;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.main_messag-wrap_yellow.wrap-top:hover + .wrap-btm .main_message_yellow{
	/* background: rgb(245, 233, 75); */
	background:rgba(254, 239, 53, 1.0);
}

.mainimage .main_message_yellow:hover > div:last-child ul + a {
	background: rgb(255, 255, 255,1.0);
	color: black;
}

/* addval（標準） */
.main_messag-wrap_blue {
    position: absolute;
    top: 52%;
    right: -1%; 
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 25%;
    max-width: 1060px;
    z-index: 2;
    animation: fade 5s ease 0s 1 normal;
    -webkit-animation: fade 5s ease 0s 1 normal;
  }

.main_messag-wrap_blue.wrap-top {
  z-index: 3;
  }

  .wrap-top .main_message_blue {
      background: none !important;
  }
  .wrap-btm {
      mix-blend-mode: multiply;
  }
  .mainimage .main_message_blue {
    position: relative;
    background: rgba(86, 123, 188, 1);
      mix-blend-mode: multiply;
    background-blend-mode: multiply;
    padding: 5px 2% 10px;
	cursor : pointer;
  }
  .mainimage .main_message_blue * {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: bold;
    position: relative;
  }
  
  .main_message_blue::before{
      padding: 100%;
  }
  
  .mainimage .main_message_blue > div:first-child {
    /* width: 53%; */
    /* display: flex; */
    align-items: center;
    margin-top: 10px; 
  }
  .mainimage .main_message_blue > div:last-child {
    /* width: 44%; */
    display: block;
    justify-content: center;
    /* margin: 0 auto; */
  }
  .mainimage .main_message_blue > div:first-child figure {
      max-width: 122px;
    /* margin-right: 3%; */
    margin-top: 10px; 
    margin-bottom: 10px;
  }
  .mainimage .main_message_blue > div:first-child figure img {
    width: 100%;
  }
  .mainimage .main_message_blue > div:first-child p {
    /* width: 92%; */
    text-align: center;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0;
    letter-spacing: 0;
  }
  
  .mainimage .main_message_blue > div:last-child ul {
    width: calc(100% - 20px);
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 10px;
  }
  .mainimage .main_message_blue > div:last-child ul li {
    background: rgba(0, 159, 232, 0.8);
    margin: 10px auto;
    text-align: center;
    position: relative;
    color: #222;
    font-size: 13px;
    width: 29%;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mainimage .main_message_blue > div:last-child ul li::before,
  .mainimage .main_message_blue > div:last-child ul li::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 10px 13px 0;
    border-color: transparent rgba(0, 159, 232, 0.8) transparent transparent;
  }
  .mainimage .main_message_blue > div:last-child ul li::after {
    left: inherit;
    right: -10px;
    transform: scale(-1, 1);
  }
  .mainimage .main_message_blue > div:last-child ul + a {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 30px;
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    /* margin-bottom: 10px;  */
  }
  .mainimage .main_message_blue > div:last-child ul + a:hover {
    background: rgb(255, 255, 255,1.0);
	color: black;
  }

  .mainimage .wrap-top .main_message_blue:hover > div:last-child ul + a:after {
    content: "詳しい案内はこちら"; 
    display: flex;
	color: black;
    justify-content: center;
	align-items: center;
    height: 100%;
    border-radius: 30px;
    width: 100%;
    background: white;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.main_messag-wrap_blue.wrap-top:hover + .wrap-btm .main_message_blue{
	background:rgba(0, 159, 232, 1.0);
}

.mainimage .main_message_blue:hover > div:last-child ul + a {
	background: rgb(255, 255, 255,1.0);
	color: black;
}

  /* レスポンシブ(1060px) */
@media only screen and (max-width: 1060px) {
	.main_messag-wrap_yellow {
	  left: 50%;
	  width: 98%;
	  top: 58%;
	}
	.mainimage .main_message_yellow {
	  position: relative;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  background: rgba(201,188,72,1);
	  mix-blend-mode: multiply;
	  background-blend-mode: multiply;
	  padding: 15px 2%;
	}
	.mainimage .main_message_yellow * {
	  font-size: 3.5vw;
	}
	.mainimage .main_message_yellow > div:first-child {
	  width: 53%;
	  display: flex;
	  align-items: center;
	  margin-top: 0;
	}
	
	.mainimage .main_message_yellow > div:first-child figure {
	  margin: 0 3% 0 0;
	  width: 12%;
	}
	.mainimage .main_message_yellow > div:last-child {
	  width: 44%;
	}
	.mainimage .main_message_yellow > div:first-child p {
	  text-align: left;
	  font-size: 16px;
	}
	.mainimage .main_message_yellow > div:last-child ul {
	  width: calc(100% - 20px);
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  margin: 0 auto 10px;
	}
	.mainimage .main_message_yellow > div:last-child ul li {
	  background: rgba(254, 239, 53, 0.8);
	  text-align: center;
	  position: relative;
	  color: #222;
	  font-size: 14px;
	  width: 29%;
	  height: 26px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin: 0;
	}
	.mainimage .main_message_yellow > div:last-child ul li::before{
	  content: "";
	  display: block;
	  position: absolute;
	  top: 0;
	  left: -10px;
	  width: 0;
	  height: 0;
	  border-style: solid;
	  border-width: 13px 10px 13px 0;
	  border-color: transparent rgba(254, 239, 53, 0.8) transparent transparent;
	}
	
	/* .mainimage .main_message_yellow > div:last-child ul li::before,
	.mainimage .main_message_yellow > div:last-child ul li::after {
	  left: -1.92vw;
	  border-width: 3vw 2vw 3vw 0;
	} */
	.mainimage .main_message_yellow > div:last-child ul li::after {
	  left: inherit;
	  right: -10px;
	  transform: scale(-1, 1);
	}
	.mainimage .main_message_yellow > div:last-child ul + a {
	  position: relative;
	  display: block;
	  width: 100%;
	  border: 1px solid #fff;
	  text-align: center;
	  border-radius: 30px;
	  padding: 8px 10px;
	  color: #fff;
	  text-decoration: none;
	  font-size: 14px;
	  margin-bottom: 0;
	}
	.mainimage .main_message_yellow > div:last-child ul + a:hover {
	  background: rgba(255,255,255,0);
	}
	}

/* addvalレスポンシブ(1060px) */
@media only screen and (max-width: 1060px) {
	.main_messag-wrap_blue {
		left: 50%;
		width: 98%;
		top: 73%;
	  }
	.mainimage .main_message_blue {
	  position: relative;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  background: rgba(0, 159, 232, 1);
	  mix-blend-mode: multiply;
	  background-blend-mode: multiply;
	  padding: 15px 2%;
	}
	.mainimage .main_message_blue * {
	  font-size: 3.5vw;
	}
	.mainimage .main_message_blue > div:first-child {
	  width: 53%;
	  display: flex;
	  align-items: center;
	}
	
	.mainimage .main_message_blue > div:first-child figure {
	  /* margin: 0 3% 0 0;
	  width: 12%; */
	  margin: 0px 3% 0 -2%;
      width: 18%
	}
	.mainimage .main_message_blue > div:last-child {
	  width: 44%;
	}
	.mainimage .main_message_blue > div:first-child p {
	  /* text-align: left;
	  font-size: 20px; */
	  text-align: left;
      margin-left: -3%;
      font-size: 16px;
	}
	.mainimage .main_message_blue > div:last-child ul {
	  width: calc(100% - 20px);
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  margin: 0 auto 10px;
	}
	.mainimage .main_message_blue > div:last-child ul li {
	  background: rgba(0, 159, 232, 0.8);
	  text-align: center;
	  position: relative;
	  color: #222;
	  font-size: 14px;
	  width: 29%;
	  height: 26px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin: 0;
	}
	.mainimage .main_message_blue > div:last-child ul li::before{
	  content: "";
	  display: block;
	  position: absolute;
	  top: 0;
	  left: -10px;
	  width: 0;
	  height: 0;
	  border-style: solid;
	  border-width: 13px 10px 13px 0;
	  border-color: transparent rgba(0, 159, 232, 0.8) transparent transparent;
	}
	
	/* .mainimage .main_message_yellow > div:last-child ul li::before,
	.mainimage .main_message_yellow > div:last-child ul li::after {
	  left: -1.92vw;
	  border-width: 3vw 2vw 3vw 0;
	} */
	.mainimage .main_message_blue > div:last-child ul li::after {
	  left: inherit;
	  right: -10px;
	  transform: scale(-1, 1);
	}
	.mainimage .main_message_blue > div:last-child ul + a {
	  position: relative;
	  display: block;
	  width: 100%;
	  border: 1px solid #fff;
	  text-align: center;
	  border-radius: 30px;
	  padding: 8px 10px;
	  color: #fff;
	  text-decoration: none;
	  font-size: 14px;
	}
	.mainimage .main_message_blue > div:last-child ul + a:hover {
	  background: rgba(255,255,255,0);
	}
	}

	
/* レスポンシブ（768px） */
@media only screen and (max-width: 768px) {
.main_messag-wrap_yellow {
  top: 18%;
  left: 50%;
  width: 92%;
}
.mainimage .main_message_yellow {
  padding: 2% 4% 3%;
  flex-direction: column;
}
.mainimage .main_message_yellow * {
  font-size: 3.5vw;
}
.mainimage .main_message_yellow > div:first-child {
  width: 100%;
  margin-bottom: 3%;
  display: flex;
  margin-top:0; 
}

.mainimage .main_message_yellow > div:first-child figure {
	width: 12%;
	margin: 0 3% 0 0
}
.mainimage .main_message_yellow > div:last-child {
  width: 100%;
}
.mainimage .main_message_yellow > div:first-child p {
  font-size: 3.5vw;
  text-align: left;
}
.mainimage .main_message_yellow > div:last-child ul {
  width: calc(100% - 4vw);
  margin-bottom: 3%;
  display: flex
}
.mainimage .main_message_yellow > div:last-child ul li {
  font-size: 2.5vw;
  height: 6vw;
  margin: 0; 

}
.mainimage .main_message_yellow > div:last-child ul li::before,
.mainimage .main_message_yellow > div:last-child ul li::after {
  left: -1.92vw;
  border-width: 3vw 2vw 3vw 0;
}
.mainimage .main_message_yellow > div:last-child ul li::after {
  left: inherit;
  right: -1.92vw;
}
.mainimage .main_message_yellow > div:last-child ul + a {
  border-radius: 4vw;
  padding: 2.25% 1vw;
  font-size: 14px;
  margin-bottom: 0;
}
.mainimage .main_message_yellow > div:last-child ul + a:hover {
  background: rgba(255,255,255,0);
}
}

/* addvalレスポンシブ(768px) */
@media only screen and (max-width: 768px) {
	.main_messag-wrap_blue {
	  top: 65%;
	  left: 50%;
	  width: 92%;
	}
	.mainimage .main_message_blue {
	  padding: 2% 4% 3%;
	  flex-direction: column;
	  background: rgba(0, 159, 232, 0.8);
	}
	.mainimage .main_message_blue * {
	  font-size: 3.5vw;
	}
	.mainimage .main_message_blue > div:first-child {
	  width: 100%;
	  margin-bottom: 3%;
	  display: flex;
	  margin-top: 0;
	}
	.mainimage .main_message_blue > div:first-child figure {
	  /* width: 12%;
	  margin: 0 3% 0 0 */
	  width: 18%;
      margin: 0px 3% 0 -3%;
  }
	.mainimage .main_message_blue > div:last-child {
	  width: 100%;
	}
	.mainimage .main_message_blue > div:first-child p {
	  font-size: 3.5vw;
	  text-align: left;
	}
	.mainimage .main_message_blue > div:last-child ul {
	  width: calc(100% - 4vw);
	  margin-bottom: 3%;
	  display: flex;
	}
	.mainimage .main_message_blue > div:last-child ul li {
	  font-size: 2.5vw;
	  height: 6vw;
	  margin: 0;
	}
	.mainimage .main_message_blue > div:last-child ul li::before,
	.mainimage .main_message_blue > div:last-child ul li::after {
	  left: -1.92vw;
	  border-width: 3vw 2vw 3vw 0;
	}
	.mainimage .main_message_blue > div:last-child ul li::after {
	  left: inherit;
	  right: -1.92vw;
	}
	.mainimage .main_message_blue > div:last-child ul + a {
	  border-radius: 4vw;
	  padding: 2.25% 1vw;
	  font-size: 14px;
	  margin-bottom: 0;
	}
	.mainimage .main_message_blue > div:last-child ul + a:hover {
	  background: rgba(255,255,255,0);
	}
	}

/*/-----------------TOP*/

.lead {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 2;
}


.top .contents01 {
	padding: 100px 0 70px;
	margin-bottom: 0;
	background: #dcdcdc;
}
.top .contents01 .inner {
    max-width: 1064px;
}
.top .contents01 [data-ruby]::before {
    left: 7px;
    letter-spacing: 1em;
}
@media all and (-ms-high-contrast: none){
.top .contents01 [data-ruby]::before {
    left: 9px;
    letter-spacing: .7em;
}
}
@media screen and  ( min-width : 768px ) {
.top .contents01 .reversal > .block {
    width: 43%;
}



.top .contents01 .reversal > .block:not(:first-child) {
    width: 55%;
		padding-top: 7%;
}
}
@media screen and  ( max-width : 767px ) {
.top .contents01 [data-ruby]::before {
    left: 2px;
    letter-spacing: 0.1em;
}
.copy p {
	font-size: 10px!important;
}
}

.top .contents01 p {
	letter-spacing: 0.1em;
	line-height: 2.0;
}

.top .contents02 {
	padding: 0;
	margin-bottom: 0;
	background: #ffffff;
}
.top .contents02 .btn_style {
    margin-bottom: 2em;
}
.top .contents02 h2 {
  color: #c6c6c6;
	padding: 0 0 .2em;
	margin: 0;
}
@media screen and  ( max-width : 767px ) {

.top .contents02 .btn_style {
	text-align: center;
	margin:30px auto 50px;
}
}
.top .contents02 figure {
	position: relative;
}

.top .contents02 figure > a{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: block;
}

.top .contents02 figure > figcaption {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: rgba(2, 2, 2, .5);
	padding: 24px;
	text-align: center;
}
.top .contents02 figure > figcaption > h3 {
	text-align: center;
	line-height: 1.6;
}
.top .contents02 figure > figcaption > h3 .subtitle {
	font-size: 17px;
	padding:0;
	margin:0;
	background: none;
	display: block;
}
.top .contents02 figure > figcaption > h3 .pc {
	background: none;
	font-size: 26px;
}
.top .contents02 figure > figcaption > h3 .sp {
	background: none;
	font-size: 24px;
	margin: 0;
	padding: 0;
}
.top .contents02 figure > figcaption > p {
	/*position: absolute;
	top: auto;
	bottom: 18px;
	right: 24px;
	left: auto;
	margin: auto;*/
	text-align: center;
}
.top .contents02 figure > figcaption > .new {
	margin-top: 15%;
}
.top .contents02 figure > figcaption > .new_not {
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    letter-spacing: .1em;
    text-align: center;
    padding: 3em .5em;
    font-weight: bold;
    line-height: 1;
    display: table;
    margin: 0 auto 15px;
}
.top .contents02 .slick-track {
	width: 100%;
}

@media screen and  ( max-width : 767px ) {
	.top .contents02 {
		padding: 2em 0 0;
		margin-bottom: 35px;
	}
	.top .contents02 figure {
		width: 100%;
		max-width: 432px;
		height: 343px;
	}
	.top .contents02 h3 {
		font-size: 24px!important;
	}
	.top .contents02 figure > figcaption > .new {
	margin-top: 12%;
}
}
@media screen and  ( max-width : 540px ) {
	.top .contents02 figure {
		max-width: 360px;
		height: 286px;
	}
	.top .contents02 figure > figcaption > .new {
	    margin-top: 4%;
	}
	.top .contents02 figure > figcaption > .new_not {
		padding: .5em .5em;
	}
}
@media screen and  ( max-width : 380px ) {
	.top .contents02 figure > figcaption {
		/*width: 80%;*/
	}
	.top .contents02 figure {
		max-width: 320px;
		height: 282px;
	}
}

.new {
	background: #E60012;
	border-radius: 3px;
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	letter-spacing: .1em;
	text-align: center;
	padding: .4em .5em;
	font-weight: bold;
	line-height: 1;
	display: table;
    margin: 0 auto 15px;
}

.whiteBorder {
	font-size: 12px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	letter-spacing: .1em;
	text-align: center;
	padding: .1em .3em;
	font-weight: lighter;
}

/* slick-box */
.slick-box3 {
    overflow: hidden;
    zoom: 1;
    margin-bottom: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.slick-box3 .box2 {
    display: inline-block;
    width: 48%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    margin: 0;
    margin:0;
    float: none;
}
.slick-box3 .slick-slide {
	width: 100%;
	max-width: 1064px;
}
.slick-box3 .block {
	margin: 0;
	width: auto;
}
@media screen and  ( min-width : 1080px ) {
.slick-box3 .block {
	width: auto!important;
}

}

@media screen and  ( min-width : 1060px ) {
	.mainimage .main_message_yellow > div:last-child ul li,.mainimage .main_message_blue > div:last-child ul li{
		min-width: 120px;
	}
}

.slick-box3 .slick-slide {
	position: relative;
}
/*.slick-box3 .slick-slide:before {
	position: absolute;
	content: "";
	background: rgba(34,34,34,.8);
	width: 100%;
	height:100%;
	top:0;
	left:0;
	z-index: 1;
}
.slick-box3 .slick-slide.slick-center:before {
	content: none;
}*/
@media screen and  ( min-width : 768px ) {

.slick-box3 .slick-slide:before {
	position: absolute;
	content: "";
	background: rgba(34,34,34,.8);
	width: 100%;
	height:100%;
	top:0;
	left:0;
	z-index: 1;
	-webkit-transition: 0;
	transition: 0;
}
/*.slick-box3 .slick-slide.slick-current + .slick-slide:before,
.slick-box3 .slick-slide.slick-current + .slick-slide + .slick-slide:before {
	content: none;
}*/
.slick-box3 .slick-slide.slick-current + .slick-slide:before,
.slick-box3 .slick-slide.slick-current:before {
	content: none;
}
}
/*
@media ( min-width : 768px ) and  ( max-width : 1500px ) {
.slick-box3 .slick-slide:before {
	position: absolute;
	content: "";
	background: rgba(34,34,34,.8);
	width: 100%;
	height:100%;
	top:0;
	left:0;
	z-index: 1;
	-webkit-transition: 0;
	transition: 0;
}
.slick-box3 .slick-slide.slick-current + .slick-slide:before,
.slick-box3 .slick-slide.slick-current:before {
	content: none;
}
}*/
@media screen and  ( max-width : 767px ) {
	.slick-box3 .slick-slide:not(.slick-current):before {
		position: absolute;
		content: "";
		background: rgba(34,34,34,.8);
		width: 100%;
		height:100%;
		top:0;
		left:0;
		z-index: 1;
		-webkit-transition: 0;
		transition: 0;
	}
}
/*.slick-box3 .box3:nth-child(3n) {
	margin-right:0;
}*/

.top .contents03 {
	padding: 0;
	margin-bottom: 0;
	background: #fff;
}

.top .contents03 h2 {
    text-align: right;
    color: #c6c6c6;
}

.top .contents03 .underContents .blockLine {
    display: flex;
    flex-wrap: wrap;
}

.top .contents03 .worksCta {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin: 32px auto 96px;
}

.top .contents03 .worksCta .matterCtaBtn {
    background: #222222;
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-right: 32px;
    max-width: 320px;
    line-height: 64px;
    height: 64px;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.top .contents03 .worksCta .matterCtaBtn span {
    position: relative;
}

.top .contents03 .worksCta .matterCtaBtn::before {
    position: absolute;
    top: 0;
    left: 64px;
    width: 110%;
    height: 500%;
    content: '';
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-70%) rotate(135deg);
    transform: translateX(-98%) translateY(-70%) rotate(135deg);
    background: #F0D45F;
}

.top .contents03 .worksCta .matterCtaBtn:hover {
    color: #222222;
}

.top .contents03 .worksCta .matterCtaBtn:hover::before {
    -webkit-transform: translateX(-9%) translateY(-25%) rotate(135deg);
    transform: translateX(-9%) translateY(-25%) rotate(135deg);
}

.top .contents03 .worksCta .venueCtaBtn {
    background: #222222;
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    max-width: 320px;
    line-height: 64px;
    height: 64px;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.top .contents03 .worksCta .venueCtaBtn span {
    position: relative;
}

.top .contents03 .worksCta .venueCtaBtn::before {
    position: absolute;
    top: 0;
    left: 64px;
    width: 110%;
    height: 500%;
    content: '';
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-70%) rotate(135deg);
    transform: translateX(-98%) translateY(-70%) rotate(135deg);
    background: #0068B7;
}

.top .contents03 .worksCta .venueCtaBtn:hover:before {
    -webkit-transform: translateX(-9%) translateY(-25%) rotate(135deg);
    transform: translateX(-9%) translateY(-25%) rotate(135deg);
}

@media screen and  ( max-width : 767px) {
    .top .contents03 .worksCta {
        flex-flow: column;
        margin: 16px auto 64px;
    }

    .top .contents03 .worksCta .matterCtaBtn {
        margin-right: 0;
        margin-bottom: 16px;
    }
}

/*.top .contents03 h2 span {*/
/*	text-align: right;*/
/*	color: #222;*/
/*}*/

/*.top .contents03 figure {*/
/*	position: relative;*/
/*  display: table;*/
/*  margin: auto;*/
/*  padding: 0 24px 18px;*/
/*}*/

/*.top .contents03 figure > a{*/
/*	position: absolute;*/
/*	top: 0;*/
/*	bottom: 0;*/
/*	right: 0;*/
/*	left: 0;*/
/*	margin: auto;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	z-index: 10;*/
/*	display: block;*/
/*}*/

/*.top .contents03 figure > figcaption {*/
/*	position: absolute;*/
/*	bottom: 0;*/
/*	right: 0;*/
/*	margin: auto;*/
/*	background: #434343;*/
/*	display: -webkit-box;*/
/*	display: -ms-flexbox;*/
/*	display: flex;*/
/*	-webkit-box-pack: center;*/
/*	    -ms-flex-pack: center;*/
/*	        justify-content: center;*/
/*	-webkit-box-align: center;*/
/*	    -ms-flex-align: center;*/
/*	        align-items: center;*/
/*	width: 160px;*/
/*	height: 160px;*/
/*	color: #fff;*/
/*}*/

/*.top .contents03 figure > figcaption p {*/
/*    position: relative;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    line-height: 1;*/
/*    text-align: center;*/
/*    display: table;*/
/*    vertical-align: middle;*/
/*    font-size: 17px;*/
/*    font-weight: 500;*/
/*    letter-spacing: 0.1em;*/
/*}*/
/*.top .contents03 .zmdi {*/
/*	margin-right: 5px;*/
/*	font-size: 18px;*/
/*}*/
/*.contents03 figure > figcaption p:before {
	content: '';
	position: absolute;
	top: 0;
	left: -1.5em;
	bottom:0;
	margin: auto;
	width: 14px;
	height: 14px;
	background: url(/img/arrow.png) no-repeat center / cover;
}*/

.top .contents04 {
	padding: 0 43px 76px;
	margin-bottom: 0;
	background: #dcdcdc;
}
.contents04 {
	padding: 40px 43px 76px;
	margin-bottom: 0;
	background: #dcdcdc;
}

.contents04 h2 {
	padding: 0 0 .4em;
	margin: 0;
}
.contents04 .block {
	margin: 0;
	width: auto;
	max-width: 50%;
	/*margin-right: -1px;*/
}


.contents04 figure {
	position: relative;
  display: table;
  margin: auto;
}

.contents04 figure > a {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: block;
}

.contents04 figure > figcaption {
	background: #fff;
	color: #222;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	padding: 0;
	margin: 0 auto;
	position: relative;
	-webkit-transition: .4s;
	transition: .4s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 66px;
}

.contents04 figure > figcaption:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0.6em;
	bottom:0;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 1px solid #222;
	border-right: 1px solid #222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.contents04 figure:hover > figcaption {
	background: #F0D45F;
	-webkit-transition: .4s;
	transition: .4s;
}

.btn_style.btn2 {
	text-align: center;
}
.btn_style.btn2 a {
  width: 33%;
}
.contents04　.btn_style.btn2 a {
  	max-width: 355px;
}
.btn_style.btn2 a {
	border-radius: 0;
	background: #fff;
	border: 0;
	padding: 1.5em .5em;
	font-weight: bold;
	font-size: 14px;
}
.btn_style.btn2 a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 1em;
	bottom:0;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 1px solid #222;
	border-right: 1px solid #222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.btn_style.btn2 a:hover {
	background: #F0D45F;
	border: 1px solid #F0D45F;
	-webkit-transition: .4s;
	transition: .4s;
}

.contents04 .inner {
	position: relative;
}

@media screen and  ( max-width : 767px ) {
.contents04 h2 {
	padding: 0;

}
	.contents04 .btn_style.btn2 a {
		margin: 24px auto 40px;
		width: 100%;
		max-width: inherit;
		padding: 1.85em .5em;
		border: 1px solid #707070;
	}
	.contents04　.flexBox2 {
		width: 100%;
		margin: 0;
		padding: 0;
		overflow: hidden;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: top;
		-ms-flex-align: top;
		align-items: top;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.top .contents04,.contents04 {
		padding: 2em 0 40px;
	}
	.contents04 .flexBox .block:nth-child(even) figcaption {
    border-left: 1px solid #f6f6f6;
}
.contents04 figure img {
    width: auto;
    max-width: 100%;
    min-height: 99px;
    object-fit: cover;
}
}


@media screen and  ( min-width : 1001px ) {
.contents04 .btn_style.btn2 a {
    position: absolute;
    top: 14%;
    bottom: auto;
    right: 8.5%;
    left: auto;
    margin: auto;
    max-width: 355px;
    padding: 1.85em .5em;
    border: 1px solid #707070;
    box-sizing: border-box;
}
}
@media (min-width: 768px) and (max-width: 1000px) {
.contents04 .btn_style.btn2 a {
    position: absolute;
    top: 8%;
    bottom: auto;
    right: 8.5%;
    left: auto;
    margin: auto;
    max-width: 355px;
    padding: 1.85em .5em;
}
}

.top .contents05 {
	padding: 2em 0 5em;
	margin-bottom: 0;
	background: #fff;
}

.top .contents05 h2 {
	text-align: right;
	color: #c6c6c6;
}
.top .contents05 h2 span {
	text-align: right;
	color: #222;
}

.top .contents05 h3 {
	color: #222222;
	font-size: 14px;
}

.top .contents05 .slick-slide img {
}

.top .contents05 .slick-slide p {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 8px;
}

.slick-box2 a {
	text-decoration: none;
}
.slick-box2 .slick-slide{
	margin: 0 8px;
}
.slick-box2 .slick-track {
    margin: 0;
}
.slick-initialized .slick-slide {
	padding: 0;
}

time {
	font-size: 12px;
	font-weight: lighter;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.2em;
	line-height: 2;
}

.top .contents05 .btn_style {
	margin-top: 30px;
}

.top .contents06 {
	padding: 2em 0;
}
.top .contents06 .btn_style.pc a {
	position: relative;
	z-index: 10000;
}
.top .contents06 {
	padding: 2em 0 5em;
	margin-bottom: 0;
	background: #dcdcdc;
}

@media screen and  ( min-width : 768px ) {
.top .contents06 dl {
	margin-top: 5em;
}
}
@media screen and  ( max-width : 767px ) {
.top .contents06 {
	padding: 2em 0 40px;
}
}

.top .contents07 {
	padding: 0;
	margin-bottom: 0;
	background: #fff;
}

.bnrBlock {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
	padding-bottom: calc(100% * 313 / 683 / 2);
	position: relative;
	overflow: hidden;
}
.bnrBlock img {
    position: absolute;
    width: 100%;
    height: auto;
}
@media screen and  ( max-width : 767px ) {
.bnrBlock {
	padding-bottom: calc(100% * 313 / 683);
}
.top .contents07 .flexBox {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: top;
	-ms-flex-align: top;
	align-items: top;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
}

/*.contents07 .bnrBlock:first-child {
	background: url(/img/top_img003.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transition: all .3s;
	transition: all 0.5s ease-out;
	will-change: transform;
}

.contents07 .bnrBlock:last-child {
	background: url(/img/top_img004.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transition: all .3s;
	transition: all 0.5s ease-out;
	will-change: transform;
}

.bnrBlock:hover {
	background-size: 105%!important;
	-webkit-transition: all .3s;
	transition: all 0.5s ease-out;
}*/

.bnrBlock > div {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	/* padding:2.5em;*/
	width: 100%;
	height: 100%;
	background: #222;
}
.top .contents07 .scaleBox > span img,
.top .contents07 .scaleBox:hover > span img {
    opacity: .5;
}
.top .contents07 div > a{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 20;
}

.top .contents07 figcaption {
	font-family: 'Roboto', sans-serif;
	font-size: 50px;
	font-weight: 300;
	letter-spacing: .025em;
	line-height: 1.1;
	color: #C6C6C6;
	z-index: 10;
  position: relative;
	padding: 5%;
}

.top .contents07 figcaption span {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	color: #fff;
}

@media screen and  ( max-width : 767px ) {
	.top .contents07 figcaption {
		font-size: 17px;
		padding: 40px 24px;
	}
	.top .contents07 figcaption span {
    margin-top: 3px;
    letter-spacing: 0.1em;
}
}

.contents08 {
	padding: 2em 0 4em;
	margin-bottom: 0;
	background: #F0D45F;
}

.contents08 h2 {
	font-size: 50px;
	color: #434343;
	line-height: 1;
}
.contents08 h2 span {
	font-size: 14px;
	color: #434343;
  margin-top: 0;
}

.whiteBox {
	padding: 3em 0 2em;
	background: #fff;
	text-align: center;
	position: relative;
	margin: 48px 0 0;

}

.contents08 .whiteBox {
	-ms-flex-preferred-size: calc(50% - 8px);
	    flex-basis: calc(50% - 8px);
}

@media screen and  ( min-width : 768px ) {
.contents08 .whiteBox:first-child {
	margin-right: 16px;
}
}

.contents08 .whiteBox img {
	position: absolute;
	top: -40px;
	left: 15px;
	margin: auto;
	max-height: 72px;
}

.contents08 p {
	font-size: 17px;
	letter-spacing: .1em;
	line-height: 1.7;
}

.contents08 .hub {
	width: 50px;
	font-size: 13px;
	display: inline-block;
	text-align: center;
	color: #777;
}

.telNo {
	font-size: 32px;
	font-family: 'Roboto', sans-serif;
}

.contents08 .telNo {
	font-size: 16px;
	font-weight: bold;
}

.contents08 .btn_style a {
	width: 200px;
}
.contents08 .btn_style a:hover {
	text-decoration: none;
	opacity: 1.0;
}
@media screen and  ( max-width : 767px ) {
	.contents08 h2 {
		font-size: 17px!important;
		padding-left: 19px;
		margin-bottom: 0;
	}
	.contents08 {
		padding: 40px 0;
	}
}

.contents09 {
	padding: 0;
	margin: 0;
	background: #fff;
    -webkit-transition: .4s;
    transition: .4s;
}
.contents09:hover {
	background: #0068B7;
    -webkit-transition: .4s;
    transition: .4s;
}
.contents09 p {
	margin: 0;
}

.contents09 p img {
	vertical-align: middle;
}
.contents09 a {
    width: 100%;
    display: table;
	padding: 1em;
	color: #0068B7;
}
.contents09 a span {
    position: relative;
	padding-left: 1em;
	font-size: 14px;
}
.contents09 a span:before,
.contents09 a span:after {
	position: absolute;
	content: "";
}
.contents09 a span:before{
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	bottom:0;
	margin: auto;
  width: 5px;
	height: 5px;
	border-top: 1px solid #0068B7;
	border-right: 1px solid #0068B7;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
/*.contents09 a span:after{
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #fff;
    top: 6px;
    left: -12px;
}*/
.contents09:hover a {
	color: #fff;
	text-decoration: none;
	opacity: 1.0;
		-webkit-transition: .7s;
		transition: .7s;
}
.contents09:hover a span:before {
	border-color: #fff;
	-webkit-transition: .4s;
    transition: .4s;
}
.contents09:hover a span:after {
	border-left: 4px solid #fff;
	-webkit-transition: .4s;
    transition: .4s;
}

/*/-----------------under01*/





	 @media only screen and (min-width: 768px) {
	 .pc {display: block;}
	 .sp {display: none!important;}
	 }
	 @media only screen and (max-width: 767px) {
	 .pc{ display: none!important;}
	 .sp {display: block;}
	 }


/* fadeIn */
/* 画面外にいる状態 */
.fadeIn {
    opacity : 0.1;
    -webkit-transform : translate(0, 100px);
            transform : translate(0, 100px);
    -webkit-transition : all 1000ms;
    transition : all 1000ms;
    }

/* 画面内に入った状態 */
.fadeIn.scrollin {
    opacity : 1;
    -webkit-transform : translate(0, 0);
            transform : translate(0, 0);
 }
@media screen and (max-width: 767px) {
.fadeIn {
        opacity: 1;
        -webkit-transform: none!important;
                transform: none!important;
        -webkit-transition: none!important;
        transition: none!important;
    }
}

/*/-----------------20181219追記*/

.zmdi.zmdi-chevron-right {
	font-size: 17px;
}

/*/-----------------下層共通*/

.under main {
	margin-top: 66px;
	display: block;
}

@media screen and  ( min-width : 768px ) {
	.under main　.innner {
		padding: 0 5px;
	}
}

.underContents {
	max-width: 1064px;
	margin: 0 auto 60px;
}

.underContents.serviceTopWideSection {
    max-width: 1280px;
    margin: 192px auto 0;
    padding: 0 12px;
}

.underContents.topWideSection {
    max-width: 1280px;
    margin: 32px auto;
    padding: 0 12px;
}

@media screen and ( max-width : 767px) {
    .underContents.serviceTopWideSection {
        margin: 64px auto 0;
        padding: 0;
    }
    .underContents.topWideSection {
        padding: 0;
    }
    .underContents.topWideSection .inner {
        padding: 0;
    }
}

.underContents p {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.9;
}

.underBtn a {
	padding: 1.5em 1em;
}

.underTitle {
	margin-bottom: 40px;
	position: relative;
}
.underTitle:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: rgba(2, 2, 2, .5);
	z-index: 0;
}

.underContents h2 {
	font-size: 17px;
	letter-spacing: 0.1em;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
	color: #222222;
	padding: .6em 0;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #ececec;
	z-index: 1;
}
.works .underContents h1 {
    font-size: 24px!important;
    letter-spacing: 0.1em;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    color: #222222;
    padding: .6em 0;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #ececec;
    z-index: 1;
}
.underContents h3 {
	font-size: 24px!important;
	font-weight: bold;
	text-align: left;
	letter-spacing: 0.1em;
	padding-bottom: .5em;
	margin-bottom: 32px;
	border-bottom: 1px solid #222;
	display: table;
	color: #222;
}

.under.tertiary .underTitle {
	background: #fff!important;
	margin-bottom: 26px;
}
.under.tertiary .underTitle:before {
	content: none;
}

.under.tertiary .underTitle h1,
.news01 .underTitle p {
	font-size: 90px;
	color: #c6c6c6;
	padding: 20px 43px 20px;
    margin-bottom: 0;
}

.works.tertiary .underTitle p,
.service.tertiary .underTitle p,
.process01.tertiary .underTitle p,
.rental01.tertiary .underTitle p,
.rental02.tertiary .underTitle p,
.rental03.tertiary .underTitle p,
.rental04.tertiary .underTitle p,
.rental05.tertiary .underTitle p,
.rental06.tertiary .underTitle p,
.rental_detail .underTitle p {
    font-size: 90px;
    color: #c6c6c6;
    padding: 20px 43px 20px;
    margin-bottom: 0;
	text-align: left;
    position: relative;
    letter-spacing: 0;
    font-weight: lighter;
    vertical-align: middle;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

@media screen and  ( max-width : 1000px ) {
	.works.tertiary .underTitle p,
	.service.tertiary .underTitle p,
	.process01.tertiary .underTitle p,
	.rental01.tertiary .underTitle p,
	.rental02.tertiary .underTitle p,
	.rental03.tertiary .underTitle p,
	.rental04.tertiary .underTitle p,
	.rental05.tertiary .underTitle p,
	.rental06.tertiary .underTitle p,
	.rental_detail .underTitle p {
	    padding: 20px 24px;
	    font-size: 50px !important;
	}
}

.works.tertiary .underTitle span,
.service.tertiary .underTitle span,
.process01.tertiary .underTitle span,
.rental01.tertiary .underTitle span,
.rental02.tertiary .underTitle span,
.rental03.tertiary .underTitle span,
.rental04.tertiary .underTitle span,
.rental05.tertiary .underTitle span,
.rental06.tertiary .underTitle span,
.rental_detail.tertiary .underTitle span {
    display: block;
	font-size: 24px;
    color: #222;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    margin-top: -1.2em;
}

@media screen and  ( max-width : 767px ) {
	.under.tertiary .underTitle p span {
		font-size: 24px;
		margin-top: -.8em;
		color: #222;
	}
}



@media screen and  ( min-width : 768px ) {
}

@media screen and  ( max-width : 1000px ) {
	.under main {
		margin-top: 49px;
	}
	.underContents .inner {
		padding: 0 1.6em;
	}
}

@media screen and  ( max-width : 767px ) {
.underContents h2 {
	font-size: 17px!important;
}
.under.tertiary .underTitle h1,
.news01.tertiary .underTitle p {
	padding: 20px 24px;
}
}

/* Utility */
.font12 {font-size: 12px!important; letter-spacing: 0.1em;}
.font17 {font-size: 17px!important; letter-spacing: 0.1em;}
.font16 {font-size: 16px!important; letter-spacing: 0.1em;}
.font21 {font-size: 21px!important; letter-spacing: 0.1em;}
.font24 {font-size: 24px!important; letter-spacing: 0.1em;}
.font34 {font-size: 34px!important; letter-spacing: 0.1em;}
.font42 {font-size: 42px!important; letter-spacing: 0.1em;}
.color03 {color: #686868!important}
.color04 {color: #8e8e8e!important}
.color05 {color: #0168b7!important}
.displayNone {display: none;}

.hatching {background-color: #e2e2e2; background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent)); -webkit-background-size: 7px 7px; display: inline-block; padding: 5px 10px !important}


/*/-----------------孫リンク*/

.underLinks {
	margin: 0 auto 80px;
}

.underLinks .block > p {
	display: table;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: normal;
	margin: auto;
	padding: .5em 0;
	line-height: 1.3;
	height: 44px;
	border: 1px solid #707070;
	opacity: .7;
	-webkit-transition: .2s;
	transition: .2s;
	width: 100%;
}

.underLinks .block > p > a{
	display: table-cell;
	text-decoration: none;
	vertical-align: middle;
}

.underLinks .block > p.current {
	pointer-events: none;
}

.underLinks .block > p.current,
.underLinks .block > p:hover {
	border: 5px solid #707070;
	opacity: 1;
	-webkit-transition: .2s;
	transition: .2s;
	font-weight: bold;
}

@media screen and  ( max-width : 767px ) {
.underLinks {
    margin: 0 auto 30px;
}
}
/*/-----------------アンカーリンク*/

.anchorLink {
	text-align: center;
	width: 100%;
	max-width: 808px;
	margin: 0 auto;
}

.about03 .anchorLink {
	text-align: left;
	font-size: 0;
}

.anchorLink a {
	display: inline-block;
	background: #dcdcdc;
	border-radius: 5px;
	text-align: center;
	padding: .8em 1em;
	margin: 2px;
	max-width: 200px;
	width: calc(100% / 4 - 8px);
	height: 34px;
	line-height: 1;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-decoration: none;
	position: relative;
}
.anchorLink a:before {
	content: '↓';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1em;
	height: 1em;
	margin: auto;
	display: inline-block;
	vertical-align: middle;
	line-height: 100%;
}

#a01, #a02, #a03, #a04, #a05, #a06, #a07, #a08, #a09, #a10 {
	padding-top: 77px;
	margin-top: -77px;
}
@media screen and  ( max-width : 1000px ) {
#a01, #a02, #a03, #a04, #a05, #a06, #a07, #a08, #a09, #a10 {
	padding-top: 52px;
	margin-top: -52px;
}
}
/*/-----------------ページ送り*/

.pageFeed {
	width: 100%;
	padding: 40px 0 0;
	margin: 0 auto 40px;
	text-align: center;
	border-top: 1px solid #e2e2e2;
	position: relative;
}

.pageFeed li {
	display: inline-block;
	margin: 1.3%;
	vertical-align: middle;
}

.pageFeed li a {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: underline;
}

.pageFeed li:not(.firstPage):not(.lastPage) a {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	transition: .4s;
	background: #fff;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	transition: .4s;
	text-decoration: none;
}
.pageFeed li.current a,
.pageFeed li a:hover {
	background: #222!important;
	color: #fff;
	transition: .4s;
}

.pageFeed li.firstPage a:hover,
.pageFeed li.lastPage a:hover {
	background: #fff!important;
	color: #222!important;
	text-decoration: none;
}

.pageFeed li.current a {
	pointer-events: none;
}

.pageFeed li a:hover {
	text-decoration: none;
}

.pageFeed .btn_style {
	display: inline;
}

.pageFeed .nextArrow,
.pageFeed .prevArrow {
	border: 1px solid #222;
	font-weight: bold;
}

.pageFeed li .nextArrow:hover,
.pageFeed li .prevArrow:hover {
	background: #F0D45F!important;
	border-color: #F0D45F;
	color: #222!important;
}

@media  ( min-width : 768px ) and  ( max-width : 1000px ) {
	.underLinks .block > p {
		font-size: 10px!important;
	}
}

@media screen and  ( max-width : 767px ) {
	.anchorLink a {
		font-size: 10px;
		width: 48%;
		padding: 1.1em 1em;
		text-align: center;
		line-height: 150%;
	}
	.anchorLink {
		/*text-align: left;*/
	}
	.underLinks .block > p {
		font-size: 12px!important;
		height: 53px;
	}
	.pageFeed {
		padding-bottom: 50px;
	}
	.pageFeed li.firstPage {
		position: absolute;
		bottom: 0;
		left: 2.5em;
	}
	.pageFeed li.lastPage {
		position: absolute;
		bottom: 0;
		right: 2.5em;
	}
}

/*/-----------------トーガシについて*/

.under.about .underTitle {
	background: url(/img/h1_about.png) no-repeat top center / cover;
}


@media screen and  ( min-width : 768px ) {
	.accessMap .block:nth-child(odd) {
		padding-right: 16px;
	}
	.accessMap .block:nth-child(even) {
		padding-left: 16px;
	}
	.about04 #a01 .googlemap {
		padding-top: 50%;
	}
}
.accessMap .block {
	margin-bottom: 80px;
}
.accessMap .block p {
	line-height: 2.1;
}
@media screen and  ( max-width : 767px ) {
.about04 .underContents {
    margin: 0px auto 36px;
}
.about04 #a01 .mb80 {
    margin-bottom: 40px!important;
}
.about04 #a01 .googlemap {
	padding-top: 140%;
}
}
/*/-----------------レンタル商品*/

@media screen and  ( min-width : 768px ) {
/*.rental .underLinks .block p {
	border-width: 0 0 1px;
}*/
}

/* logo add 20/04 */
.under.rental .underTitle {
  background: url(/img/h1_rental.png) no-repeat center bottom / cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.under.rental .underTitle h1 {
  margin-bottom: 0;
}
.under.rental .underTitle figure {
  position: relative;
  display: block;
  margin: inherit;
  width: auto;
  z-index: 1;
  padding-right: 3%;
}
.under.rental .underTitle figure img {
  width: 100%;
}
@media screen and  ( max-width : 768px ) {
.under.rental .underTitle figure {
  width: 18%;
}
}
@media screen and  ( max-width : 425px ) {
.under.rental .underTitle figure {
  margin-top: 8vw;
}
}
.under.rental .underTitle {
	background: url(/img/h1_rental.png) no-repeat center bottom / cover;
}
.under.rental01 .categolyTitle {
	background: url(/img/h1_rental01.png) no-repeat top center / cover;
}
.under.rental02 .categolyTitle {
	background: url(/img/h1_rental02.png) no-repeat top center / cover;
}
.under.rental03 .categolyTitle {
	background: url(/img/h1_rental03.png) no-repeat top center / cover;
}
.under.rental04 .categolyTitle {
	background: url(/img/h1_rental04.png) no-repeat top center / cover;
}
.under.rental05 .categolyTitle {
	background: url(/img/h1_rental05.png) no-repeat top center / cover;
}
.under.rental06 .categolyTitle {
	background: url(/img/h1_rental06.png) no-repeat top center / cover;
}

.under.rental .rental_caution {
	margin-bottom: 50px;
}

.under.rental .rental_caution li {
	margin-bottom: 5px;
	line-height: 150%;
}

.under.rental .rental_caution li:before {
	content: "\203B";
	display: inline-block;
}

.categolyTitle {
	position: relative;
	margin-bottom: 40px;
}

.categolyTitle:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: rgba(2, 2, 2, .4);
	z-index: 1;
}

.categolyTitle p,
.rental .categolyTitle h1 {
	text-align: center;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	padding: 2.5em 0;
	margin: auto;
	z-index: 2;
	position: relative;
}

.works .categolyTitle h1,
.service .categolyTitle p {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    padding: 2.5em 0;
    margin: auto;
    z-index: 2;
    position: relative;
}
@media screen and  ( max-width : 767px ) {
	.works .categolyTitle h1,
	.service .categolyTitle h1 {
	    font-size: 34px!important;
	    padding: 1.5em 1em;
	    line-height: 1.4;
		text-align: center;
	    font-weight: bold;
	    letter-spacing: 0.1em;
	    font-family: 'Noto Sans JP', sans-serif;
	    color: #fff;
	    margin: auto;
	    z-index: 2;
	    position: relative;
	}
}
@media screen and  ( max-width : 767px ) {
.categolyTitle p,
.under main .categolyTitle h1 {
	font-size: 34px!important;
    padding: 1.5em 1em;
    line-height: 1.4;
	}
}

.service main h1 {
	color: #000;
	font-size: 32px;
	text-align: center;
	font-weight: bold;
}

@media screen and  ( max-width : 767px ) {
	.service main h1 {
		font-size: 28px !important;
		padding: 0;
		text-align: left;
	}
}

.rental main .underContents h1 {
    font-size: 24px;
}
.rentalBanner {
	position: relative;
}
.rentalBanner figcaption {
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	background: #434343;
	color: #fff;
	text-align: center;
	padding: .6em 0;
	width: 238px;
	height: 32px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
}

.rentalBanner a {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	-webkit-transition: .4s;
	transition: .4s;
}

.rentalBanner a:hover {
	background: rgba(2, 2, 2, .4);
	-webkit-transition: .4s;
	transition: .4s;
}

.rentalDate {
	width: 100%;
	margin: 8px auto 0 20px;
}
.blocks_4 > .block .rentalDate {
	margin: 8px auto 0;
}

.rentalDate dt,
.rentalDate dd {
	font-size: 14px;
	letter-spacing: 0.1em;
	font-weight: bold;
	line-height: 1.5;
}

.rentalDate dt {
	font-weight: 300;
	color: #c9c9c9;
}
@media screen and  ( min-width : 768px ) {
.rental .block.auto {
	width: auto;
	max-width: 49%;
}
}
@media screen and  ( max-width : 767px ) {
.rentalDate {
	margin: 10px auto;
}
}

/*/-----------------ニュース*/

.under.news .underTitle {
	background: url(/img/h1_news.png) no-repeat top center / cover;
}

.underContents .newsContent dt {
	width: 22%;
	margin-bottom: 25px;
}

.underContents .newsContent dd {
	width: 76%;
	margin-bottom: 25px;
}

@media screen and  ( max-width : 767px ) {
	.underContents .newsContent dt,
	.underContents .newsContent dd {
		width: 100%;
		float: none;
	}
	.underContents .newsContent dt {
		margin-bottom: 0;
	}
}

article .newsContent dt,
article .newsContent h1 {
	width: 100%!important;
	float: none!important;
}

article .newsContent h1 {
	font-size: 24px !important;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #222;
	padding: 0 .1em 1.5em;
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 40px!important;
}

/*/-----------------採用情報*/

.under.recruit .underTitle {
	background: url(/img/h1_recruit.png) no-repeat top center / cover;
}

.mb120 {margin-bottom: 120px!important}

.under.recruit .anchorLink {
	/*max-width: 600px;*/
}

.under.recruit .anchorLink a {
	/*background: #fff;
	border-radius: 0;
	border: 1px solid #222;
	margin: 0;
	min-width: 200px;*/
}

.under.recruit main .btn_style.btn2 a {
    border: 1px solid #222;
    width: 100%;
    max-width: 355px;
    padding: 1.75em .5em;
}
.recruit h2 {
	margin-bottom:0;
}
@media screen and  ( max-width : 767px ) {
	.under.recruit .anchorLink a {
		/*min-width: inherit;*/
		line-height: 150%;
	}
}

/*/-----------------お問い合わせ*/

.contactForm {
	border: 1px solid #222;
	padding: 80px 0;
	margin: 40px auto 80px;
}

.contactBtn ul {
	width: 100%;
	margin: 0;
}

.contactBtn .btn_style.btn2 a {
	border: 1px solid #222;
	width: 100%;
	max-width: 355px;
	padding: 1.75em .5em;
}
.contactPage footer {
	border-top: 1px solid #434343;
}
.contactPage .contactForm {
	margin: 20px auto;
}
@media screen and  ( min-width : 768px ) {
.contactBtn {
	position: relative;
	margin: -120px auto 0;
	padding-left: 10%;
	max-width: 1064px;
}

}

@media screen and  ( max-width : 767px ) {
.contactForm {
	margin: 20px auto 80px;
	padding: 20px 0 80px;
}
.contactBtn {
	margin-bottom: 80px;
}
.contactBtn .btn_style.btn2 a {
	max-width: inherit;
    font-size: 12px;
    padding: 2em .5em;
}
.contactPage .underContents span.textSmall.color03 {
		display: block;
	}
}

/*/-----------------トーガシが選ばれる理由*/

.under.process .underTitle {
	background: url(/img/h1_process.png) no-repeat top center / cover;
}

/*@media screen and  ( min-width : 768px ) {
	.under.process .font21.bold.mb40 {
		padding-left: 60px;
	}
}*/


.processBanner {
	position: relative;
	margin: 16px auto;
}

.processBanner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: rgba(2, 2, 2, .5);
	z-index: 1;
}

.processBanner > a {
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.processBanner figcaption {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 1;
	color: #fff;
	display: table;
	padding: 0 25px;
}

.processBanner figcaption p {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	font-size: 17px!important;
	letter-spacing: 0.1em;
}

.processLead {
	font-size: 26px;
}

.interviewTxt {
	padding:0;
	overflow: hidden;
	width: 100%;
  margin: 0 auto;
}

.interviewTxt dl {
	width: 100%;
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans JP', sans-serif;
}

.interviewTxt dt {
	display: block;
  width: 50px;
  float: left;
  text-align: center;
	letter-spacing: 0.1em;
	font-weight: 300;
}

.interviewTxt dd {
    display: block;
    width: calc(100% - 50px);
    padding: 0 0 0 1em;
    margin: 0 0 2em;
    float: left;
		font-weight: 200;
}

/*.name02 {	background: #6f6cd4!important;}
.name03 {	background: #2da578!important;}
.name04 {	background: #3399cc!important;}*/

.name01, .name02, .name03 {
	font-weight: 500;
}

@media screen and  ( max-width : 767px ) {
.processBanner img {
    width: auto;
    height: 100%;
    max-height: 310px;
    object-fit: cover;
}
.interviewTxt dt {
    display: block;
    width: 100%;
    float: none;
	text-align: left;
	margin-bottom: 5px;
}
.interviewTxt dd {
    display: block;
    width: 100%;
    padding: 0;
	float: none;
}
}

.processTitle {
    text-align: left;
    font-weight: bold;
}
.processTitle .new {
    margin: 0 0 15px;
}
.processTitle .processLead {
    font-size: 34px;
    color: #000;
    margin: 0;
    font-weight: bold;
    padding-bottom: 10px;
}

.under main .processTitle h1 {
	padding: 0;
	font-size: 16px;
	color: #000;
	font-weight: bold;
}
@media screen and  ( max-width : 768px ) {
	.under main .processTitle h1 {
		font-size: 16px !important;
	}
}
.processTitleImg {
    overflow: hidden;
	margin-bottom: 10%;
}
.processTitle .whiteBorder {
    color: #222;
    border: 1px solid #222;
}

.process00 .processBanner {
    margin: 0 auto 32px;
    display: block;
}
.process00 .processBanner img {
    object-fit: cover;
    width: 100%;
    height: 420px;
}
.process01_box {
    background: #434343;
    color: #fff;
    padding: 32px;
    /*width: 40%;*/
	width: 524px;
    float: right;
	margin-top: -18%;
}
.process01_box p {
	line-height: 2;
	margin-bottom:0;
	font-weight: 200;
	letter-spacing: 0.1em;
}

.underContents.interview figure {
	display: block;
}

@media screen and  ( min-width : 768px ) {
.process01 .underContents.interview {
    max-width: 848px;
}
.process01 .block.wd40 {
	width: 36.5%;
}
.process01 .block.wd60 {
	width: 61%;
}
.processTitleImg figure {
    margin: 0;
    text-align: left;
	float: left;
}
}
@media screen and  ( max-width : 767px ) {
.processTitleImg .inner {
	padding:0;
}
.process01_box {
    width: 85%;
    float: none;
    margin: -8% auto 0;
    z-index: 10;
    position: relative;
}
.imgSmall figure img {
    max-width: 308px;
}
}
/*/-----------------サービス*/

.under.service .underTitle {
	background: url(/img/h1_service.png) no-repeat top center / cover;
}
@media screen and  ( max-width : 767px ) {
.under.service .underTitle {
	background: url(/img/sp_h1_service.png) no-repeat top center / cover;
}
}

/* 追加：実績（一部） */
.under.service .underContents .blockLine {
  display: flex;
  flex-wrap: wrap;
}

.under.service.service00 .contents04 {
	padding: 80px 0;
}
.service00 .content01 {
    margin: 0 auto 120px;
}
.service00 .content01 .blockLine {
    margin: 0 auto 80px;
    position: relative;
}
/*.service00 .content01 .blockLine:before {
    position: absolute;
	content: "×";
	color:#707070;
	font-size: 100px;
	top: 30%;
	right: 0;
	left: 0;
	margin:auto;
	font-weight: 100;
}*/
.service00 .content01 .blockLine:before{
  position: absolute;
  content: "";
  margin: auto;
  width: 100px;
  height: 1px;
	top: 50%;
	right: 0;
	left:0;
	margin:auto;
  background: #707070;
  transform: rotate(45deg);
}
.service00 .content01 .blockLine:after{
  position: absolute;
  content: "";
  margin: auto;
  width: 100px;
  height: 1px;
	top: 50%;
	right: 0;
	left:0;
	margin:auto;
  background: #707070;
  transform: rotate(-45deg);
}
.service00 .content01 .blockLine figure figcaption {
    text-align: center;
    font-weight: bold;
    margin: 40px 0 0;
    line-height: 1.6;
}
@media screen and  ( max-width : 767px ) {
.service00 .content01 .block:first-child {
	margin-bottom: 180px;
}
.service00 .content01 .blockLine:before,
.service00 .content01 .blockLine:after {
	top:53%;
}
}

.under.service .contents04 figcaption.current {
	background: #F0D45F;
	pointer-events: none;
}

@media screen and  ( min-width : 768px ) {
.under.service .contents04 .bold.font24 {
	padding-left: 0;
}
.under.service .contents04 .underContents {
	margin: 0 auto 40px;
}
}

.featureBox h2 {
	color: #c6c6c6;
	padding-top: 0;
}
.under.service .underContents .textCenter.mb40 {
	line-height: 1.2;
}
.featureBox .font34 {
	margin-bottom: 40px;
}
.featureText {
	max-width: 632px;
	margin: auto;
}

@media screen and  ( min-width : 768px ) {
	.featureBox .block p {
		padding-right: 10%;
		padding-left: 2%;
		letter-spacing: 0.15em;
		margin-bottom: 0;
	}
	.featureBox .reversal .block p {
		margin-left: 12%;
		padding: 10px 20px;
}
	.featureBox .block:first-child {
		padding-left: 12px;
	}
}

@media screen and  ( max-width : 767px ) {
	.featureBox h2 {
		font-size: 150px!important;
	}
	.featureBox h2 span {
		font-size: 20px;
		margin-top: -1.8em;
	}
}

.under.service01 .categolyTitle {
	background: url(/img/h1_service01.png) no-repeat center center / cover;
}
.under.service02 .categolyTitle {
	background: url(/img/h1_service02.png) no-repeat center center / cover;
}
.under.service03 .categolyTitle {
	background: url(/img/h1_service03.png) no-repeat center center / cover;
}
.under.service04 .categolyTitle {
	background: url(/img/h1_service04.png) no-repeat center center / cover;
}
.under.service05 .categolyTitle {
	background: url(/img/h1_service05.png) no-repeat center center / cover;
}
.under.service06 .categolyTitle {
	background: url(/img/h1_service06.png) no-repeat center center / cover;
}

/*.serviceBanner {
	border: 15px solid #434343;
	text-align: center;
	display: table;
	width: 100%;
	max-width: 200px;
	margin: auto;
	padding: 33% 0;
}
.serviceBanner p {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	font-size: 17px;
	font-weight: bold;
	line-height: 0.1em;
	color: #222;
}*/
.serviceBanner {
    width: auto;
	max-width: 416px;
    display: table;
    margin: 0 auto;
}
.serviceBanner li {
    border: 11px solid #434343;
    text-align: center;
    width: 128px;
    height: 128px;
    margin: 0 16px 16px 0;
    padding: 43px 0 0;
    float: left;
    border-radius: 50%;
    vertical-align: initial;
    background: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
}
.serviceBanner li:nth-child(3n) {
	margin: 0 0 16px 0;
}
@media screen and  ( max-width : 767px ) {
	/*.serviceBanner {
		padding: inherit;
		height: 200px;
	}*/
.serviceBanner {
	max-width: 272px;
}
.serviceBanner li:nth-child(2n) {
	margin: 0 0 16px 0;
}
.serviceBanner li:nth-child(3n) {
	margin: 0 16px 16px 0;
}
}

.service_box {
    border: 1px solid #E66D6D;
    border-radius: 5px;
}
.service_box.con02 {
    border: 1px solid #C38AD5;
}
.service_box.con03 {
    border: 1px solid #72B6E2;
}
.service_box.con04 {
    border: 1px solid #65C98B;
}
.service_box.con05 {
    border: 1px solid #EDAE64;
}
.service_box .service_title {
    background: #E66D6D;
    padding: 30px 0 20px;
}
.service_box.con02 .service_title {
    background: #C38AD5;
}
.service_box.con03 .service_title {
    background: #72B6E2;
}
.service_box.con04 .service_title {
    background: #65C98B;
}
.service_box.con05 .service_title {
    background: #EDAE64;
}
.service_box .service_title p{
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
	letter-spacing: 0.05em;
	margin-bottom: 0;
}
.service_box .service_title p img{
	display: block;
	margin-bottom: 5px;
	height: 43px;
}
.service_title .service_title-heading {
  border: none;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 17px !important;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  line-height: 1.9;
  padding: 0;
}
.service_box .service_title > div img{
	display: block;
	margin-bottom: 5px;
	height: 43px;
}
.service_box .service_txt {
    padding: 20px 0;
	min-height: 250px;
}
.service_txt ul {
    display: table;
    margin: 0 auto;
}
.service_txt ul li{
    line-height: 2.2;
	font-size: 12px!important;
	letter-spacing: 0.05em;
}
.service .contents02 {
    margin-bottom: 120px;
    background: none;
    padding: 0;
}
@media screen and  ( min-width : 768px ) {
.serviceField .block:not(:first-child):not(:nth-child(4)) {
	border-left: 1px solid #222;
	padding-left: 5%;
}
}
@media screen and  ( max-width : 767px ) {
.service .contents02 {
    margin-bottom: 80px;
}
.service_box {
    width:100%;
    border: 0;
	margin-bottom: 40px;
    overflow: hidden;
}
.service_box .service_title {
    border-radius: 5px;
	    width: 40%;
    max-width: 140px;
	float: left;
}
.service_box .service_txt {
    float: left;
    padding: 0;
    margin-left: 16px;
	min-height: 100%;
}
.service_box.con02, .service_box.con03, .service_box.con04, .service_box.con05 {
    border: 0;
}
}

.serviceField .block {
	margin-bottom: 70px;
}

.serviceList > * {
	display: inline-block;
	vertical-align: top;
	margin-right: 4%;
}

.serviceList .ul01 li {
	margin-bottom: 8px;
	opacity: .4;
}

.serviceList figure {
	opacity: .4;
}

.serviceList .current {
	opacity: 1;
}
@media screen and  ( max-width : 767px ) {
	.serviceList figure {
		display: block;
		margin: 0 auto 30px;
	}
}

.rentalBtn {
    width: 100%;
    margin-bottom:20px;
	background: url(/img/rental.png) no-repeat center;
    background-size: cover;
}
.rentalBtn a {
    background: rgba(34, 34, 34, .5) ;
    text-align: center;
    width: 100%;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 4em 0;
}
.rentalBtn a:hover {
    background: rgba(34, 34, 34, .3) ;
}
@media screen and  ( max-width : 767px ) {
.rentalBtn {
	background: url(/img/sp_rental.png) no-repeat center;
    background-size: cover;
	margin-bottom:5px;
}
.rentalBtn a {
    padding: 4.5em 0;
}
}
.highlight {
    background: #dcdcdc;
    padding: 40px 0;
    margin-bottom: 80px;
}
.number_p {
    font-size: 24px!important;
    font-weight: bold;
    line-height: 1.4!important;
    margin: 0;
    padding: 0;
    letter-spacing: 0.1em!important;
		color: #222222;
}
@media screen and  ( max-width : 767px ) {
  .number_p {
    font-size: 20px !important;
  }
}
.number {
    color: rgba(68, 68, 68, .3);
    font-size: 50px;
    margin: 0 24px 0 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
	vertical-align: middle;
	letter-spacing: 0.05em;
}
@media screen and  ( max-width : 767px ) {
.number_p {
    text-align: left;
	line-height: 1.9!important;
	margin-bottom: 16px;
}
.number {
	display: block;
	line-height: 1.0!important;
}
}

.sub-index {
  font-size: .85em;
}

@media screen and  ( max-width : 767px ) {
  .sub-index {
    display: block;
    font-size: .75em;
  }
}

.faqBanner {
	width: 100%;
	position: relative;
	border: 1px solid #707070;
	margin-bottom: 24px;
}

.faqBanner > p {
	padding: 1.1em 1.5em;
	position: relative;
	margin: 0;
	cursor: pointer;
	font-size: 17px;
}
.faqBanner > p:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5%;
	margin: auto;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #222;
	border-right: 2px solid #222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: .4s;
	transition: .4s;
}

.faqBanner > p.active:after {
	content: '';
	-webkit-transform: rotate(225deg);
	        transform: rotate(225deg);
	-webkit-transition: .4s;
	transition: .4s;
}
.faqBanner .pulldown {
	border: 0;
	padding: 0 1.5em 1.5em;
	margin: auto;
}
@media screen and  ( max-width : 767px ) {
.faqBanner > p {
    padding: .7em 1.6em 1.1em;
}
}

.faqBanner .quession {
	padding: 1.1em 1.5em;
	position: relative;
	margin: 0;
	cursor: pointer;
	font-size: 17px;
}
.faqBanner .quession:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5%;
	margin: auto;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #222;
	border-right: 2px solid #222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: .4s;
	transition: .4s;
}

.faqBanner .quession.active:after {
	content: '';
	-webkit-transform: rotate(225deg);
	        transform: rotate(225deg);
	-webkit-transition: .4s;
	transition: .4s;
}

@media screen and  ( max-width : 767px ) {
  .faqBanner .quession {
    font-size: 17px !important;
    padding: .7em 1.6em 1.1em;
  }
}  

.quession {
	position: relative;
	text-align: left;
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding-left: 5em!important;
}

h3.quession {
  border-bottom: none;
  display: block;
	position: relative;
	text-align: left;
	font-size: 17px !important;
	font-weight: bold;
	letter-spacing: 0.1em;
  line-height: 1.9;
  margin: 0;
	padding: 1.1em 1.5em;
}

.quession:before {
	content: 'Q.';
	position: absolute;
	top: 10px;
	left: 24px;
	margin: auto;
	line-height: 1;
	font-size: 34px;
	font-weight: bold;
	color: #434343;
	font-family: 'Roboto', sans-serif;
}

h3.quession::before {
  background: transparent;
  height: auto;
  width: auto;
}

.answer {
	position: relative;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.8;
	letter-spacing: 0.1em;
	padding-left: 3.5em;
	padding-top: 1.5em;
}

.answer:before {
	content: 'A.';
	position: absolute;
	top: 16px;
	left: 0;
	margin: auto;
	line-height: 1;
	font-size: 34px;
	font-weight: bold;
	color: #0068B7;
	font-family: 'Roboto', sans-serif;
}

.answer:after {
	display: block;
	content: "";
	clear: both;
}

/*
.answer:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 98%;
	height: 1px;
	background: #e9e9e9;
	clear: both;
}*/

.answer img {
	float: left;
	padding: 0 20px 20px 0;
}



/*/-----------------実績*/

.under.works01 .categolyTitle {
	background: url(/img/h1_works01.png) no-repeat top center / cover;
}
.under.works01 main h2 {
	font-size: 20px!important;
	border: none;
	margin-bottom: 0.5em;
}
.under.works01 .tagList {
    font-weight: bold;
	font-size:12px!important;
}

#refine-select {
	border-bottom: 1px solid #dadada;
	padding-bottom: 5px;
}

#refine-select dt {
	width: 100px;
	letter-spacing: 0.1em;
	color: #818181;
	padding-top: .5em;
	margin-bottom: 15px;
}

	#refine-select dd {
		margin-bottom: 20px
	}


#refine-select button {
	cursor: pointer;
	display: inline-block;
	position: relative;
	margin: 0 5px 15px;
	padding: .7em 1em;
	text-align: center;
	background: none;
	color: #737373;
	text-decoration: none;
	border-radius: 30px;
	font-size: 12px;
	width: auto;;
	font-weight: bold;
	letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #434343;
  -webkit-transition: .4s;
  transition: .4s;
	line-height: 1;
}

#refine-select button:hover {
  border-color: #F0D45F;
  background: #F0D45F;
	-webkit-transition: .4s;
	transition: .4s;
	text-decoration: none;
}

#refine-select .resetBtn button {
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #434343;
	color: #222;
	font-size: 14px;
}

#refine-select .resetBtn button:hover {
	background: none;
	border-color: #fff;
}
#refine-select dd.resetBtn {
    width: 100%!important;
}

#refineList .flexBox {
	display: block;;
}

.worksList {
	width: 100%;
	margin: 0 auto 40px;
}

.worksList figure {
	display: block;
}

.worksList figure a {
	background: #434343;
}

#refineList li {
	float: left;
}

@media screen and (min-width: 768px) {
	#refineList li {
		max-width: 254px;
		overflow: hidden;
		width: 23.873%;
		margin-right: 1.5%;
		min-height: 400px;
	}
	#refineList li.n4 {
		margin-right: 0;
	}
}

/*#refineList li:nth-child(2n) {
	margin: 0 15px;
}*/

@media screen and (max-width: 767px) {
	#refineList li.n2,#refineList li.n4 {
		margin: 0;
	}
}

/*#refineList li:nth-child(4n) {
	margin: 0 0 0 15px;
}*/

@media screen and (max-width: 767px) {
	#refineList .flexBox li {
	    -ms-flex-preferred-size: calc(96% / 2);
	    flex-basis: calc(96% / 2);
	    width: calc(96% / 2);
			min-height:330px;
	}

	#refineList .flexBox li.n2,#refineList .flexBox li.n4 {
		margin-left: 4%;
	}
}

.worksList figure a {
	text-decoration: none;
	display: block;
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.worksList figure a {
		height: 30.5vw;
	}
}

@media screen and (max-width: 375px) {
	.worksList figure a {
		height: 29.9vw;
	}
}

@media screen and (max-width: 320px) {
	.worksList figure a {
		height: 29.5vw;
	}
}


.worksList img {
	display: inline-block;
    height: auto;
    max-width: initial;
    object-fit: cover;
    transform: scale(1.1);
    width: 100%;
}

@media screen and (max-width: 767px) {
	.worksList img {
		top: 50%;
	    left: 50%;
	    -webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	    transform: translate(-50%, -50%);
	    width: auto;
	    position: absolute;
	    max-width: 2000px;
	    max-height: 191px;
	}
}

@media screen and (max-width: 767px) {
	.worksList img {
		max-height: 33vw;
		height: auto;
	}
}

.worksList figcaption {
	line-height: 1.5;
	letter-spacing: 0.1em;
	/*height: 44px;*/
	font-weight: bold;
	text-decoration: none;
}

.catName {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin-bottom: 0;
}

.tagList {
	font-size: 10px!important;
	letter-spacing: 0.1em;
	color: #a7a7a7;
}

.worksData {
	padding-left: 5%;
}
.worksData {
	width: 100%;
	margin-top: 80px;
    position: relative;
}
.worksData:before {
	position: absolute;
	content: "";
	background: #d6d6d6;
	width: 92px;
	height: 1px;
	top:-40px;
	left: 0;
}
.worksArticle {
    display: table;
    float: right;
    word-break: break-all;
}
.worksArticle .catName {
	font-size: 17px;
}
.worksData th {
	letter-spacing: 0.1em;
	color: #a8a8a8;
	padding: 4px 0;
	line-height: 1.5;
}
.worksData td {
	letter-spacing: 0.1em;
	font-weight: bold;
	padding: 4px 0 16px;
	line-height: 1.5;
}
@media screen and  ( min-width : 768px ) {
.worksData {
	padding-left: 5%;
}
}
@media screen and  ( max-width : 767px ) {
.worksArticle {
    display: table;
    float: none;
    word-break: break-all;
}
}


#matter_content {
	max-width: 400px;
}

#matter_content h3 {
	font-size: 14px!important;
	border-bottom: none;
	margin-bottom: 10px;
	color: #a8a8a8;
	font-weight: 400;
}

#matter_content h4 {
	font-size: 14px!important;
	border-bottom: none;
	margin-bottom: 10px;
	color: #000;
	padding: 0;
	font-weight: bold;
}

#matter_content h4:after {
	display: none;
}

#matter_content p {
	color: #333;
}

#matter_content img {
	display: block;
	margin: 0 auto 20px auto;
}

#works-slider{
  width: 100%;
  margin:0 auto 15px;
}

@media screen and  ( max-width : 767px ) {
	#main #works-slider .slide-item:before {
        content: "";
        display: block;
		padding-top: 100%;
	}

    #main #works-slider .slide-item{
/*		max-height: 50vw; */
        height: auto;
		margin: 0 1vw;
        position: relative;
	}
 /*   #works-slider .slide-item img{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    } */
}
@media screen and (max-width:768px) {
	 .rental #works-slider .slide-item img {
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
		width: auto;
		position: absolute;
		max-width: 2000px;
	}
	 #works-slider .slide-item img {
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%) scale(1.1);
		-ms-transform: translate(-50%, -50%) scale(1.1);
		transform: translate(-50%, -50%) scale(1.1);
		width: auto;
		position: absolute;
		max-width: 2000px;
	}
}

/*@media screen and  ( max-width : 767px ) {
	#main #works-slider .slide-item  img{
		max-height: 67vw;
	}
} */
#thumbnail-list{
  margin: 0 auto;
  justify-content: space-between;
}
.thumbnail-item{
  margin-bottom: 10px;
  box-sizing: border-box;
  position:relative;
cursor: pointer;
text-align: center;
width: calc(100% / 5 - 12px);
max-width: 92px;
float: left;
margin: 0 16px 10px 0;
}
.thumbnail-item:nth-child(5n) {
    margin: 0 0 10px;
}
.thumbnail-item.thumbnail-current:after {
    border: 7px solid #F0D45F;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.thumbnail-item img:not(#thumbnail-list) {
    width: auto;
	max-width: 100%;
    margin: 0 auto;
}
@media screen and  ( max-width : 767px ) {
#works-slider{
  margin:0 auto 40px;
}
/*.under.works02 .underTitle h1 {
    padding: 40px 24px 10px;
}*/
}

/*/-----------------アルバイト募集*/
.arbeit .breadcrumb {
	margin-top: 40px;
}
.arbeitTitleImg {
    margin-bottom: 24px;
	color: #434343;
	overflow: hidden;
}
.arbeitTitleImg figure {
    float: right;
}
.arbeitTitleImg .arbeit_box {
    float: left;
	margin-top: -50%;
}
.contactBox {
    border: 1px solid #434343;
    padding: 33px 33px 23px;
	color: #434343;
	min-height: 495px;
}
.contactBox .telNo {
	color: #434343;
	text-decoration: none;
}
.contactBox .textSmall {
    font-size: 80%!important;
    vertical-align: super;
    font-weight: 100;
}
.contactFlow {
    margin: 20px auto 40px;
}
.contactFlow p {
    background: #dcdcdc;
    text-align: center;
    color: #222;
    font-size: 12px;
	font-weight: bold;
    padding: 0.5em 0;
    position: relative;
	margin-bottom: 16px!important;
	display: block!important;
}
.contactFlow p:after {
 display: block;
 content: "";
 position: absolute;
 bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
 width: 0px;
 height: 0px;
 border: 6px solid transparent;
 border-top: 3px solid #7a7a7a;
}
.contactFlow p:last-child:after {
	content: none;
}
@media screen and  ( max-width : 980px ) {
.contactBox {
	min-height: 520px;
}
}
@media screen and  ( max-width : 767px ) {
.arbeitTitleImg {
    margin: 40px 0 24px;
}
.arbeitTitleImg .arbeit_box {
	margin-top: 0;
}
.arbeitTitleImg figure {
    margin-bottom: 20px;
}
.contactBox .textSmall {
    display: block;
}
.contactBox {
	min-height: 100%;
}
.contactBox p {
    display: table;
    margin: 0 auto;
}
.contactBox .zmdi-phone {
	font-size: 30px!important;
	width: 13px;
}
.contactBox .font16 .zmdi-phone {
    font-size: 17px!important;
    width: auto;
}
}

/*/-----------------案件実績*/
.tagList a {
	text-decoration: none;
	color: #a7a7a7;
}
.tagList a:hover {
	text-decoration: underline;
}
.tagList a + a {
	margin-left: .8em;
}
.tagList a.catName {
	color: #333;
}
.single-image {
    width: 100%;
    max-width: 520px;
    height: 390px;
    overflow: hidden;
    background: #434343;
    position: relative;
    z-index: 0;
}
.single-image img {
    height: 390px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 3000px;
    max-height: 390px;
    z-index: 1;
}

/*/-----------------会場実績*/
.areaMenu {
  width: 100%;
  left: 0;
  z-index: 299;

}
.nav {
  display: none;
  transition: .1s;
}
.fixed {
    position: fixed;
    top: 66px!important;
    left: 0;
    width: 100%;
	display: block;
	transition: .1s;

}
@media screen and  ( min-width : 1001px ) {
.areaMenu {
  background: #fff;
}
}
@media screen and  ( max-width : 1000px ) {
.areaMenu {
    position: absolute;
	top:160px!important;
}

.nav {
  display: block;
}
.fixed {
    top: 50px!important;
	position: fixed;
}
}
@media screen and  ( min-width : 641px ) {
	.scrollBarBox,.scrollBar {
		display: none;
	}
}
.scrollBarBox {
  border-bottom: 1px solid #d7d7d7;
  position: absolute;
  left: 0;
  top: 33px;
  width: 100vw;
  z-index: 121;
}
.scrollBar {
  border-top: 1px solid #000;
  position: absolute;
  left: 0;
  top: 33px;
  z-index: 122;
}
.areaMenu .flexBox {
	overflow: inherit;
}
.areaList {
	text-align: center;
	background: #fff;
	position: relative;
}
.listLabel {
	position: relative;
	width: 100%;
	/*border-right: 1px solid #d7d7d7;*/
	color: #222;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 1.2em 1em;
	/*cursor: pointer;*/
	margin: 0 auto;
	transition: .4s;
}
.areaList:last-child .listLabel {
	border-right: 0;
}
.listLabel:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid rgba(68, 68, 68, .3);
	border-right: 1px solid rgba(68, 68, 68, .3);
	transform: rotate(45deg);
}
.areaList > ul {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	margin: auto;
  height: 0;
	width: 100%;
	opacity: 0;
	z-index: 999;
	transition: all .3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.areaList ul li {
	position: relative;
	width: 100%;
	display: block;
	background: #fff;
}
.areaList ul li button {
	width: 100%;
	color: #222;
	font-size: 10px;
	font-weight: normal;
	letter-spacing: 0.1em;
	padding: .6em 1em;
	cursor: pointer;
	transition: .4s;
	position:relative;
	text-align: left;
	padding-left: 2em;
}
.areaList ul li button:before {
    content: '↓';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5%;
    margin: auto;
    font-weight: normal;
    font-size: 10px;
    color: #222;
    display: table;
    }
.areaList > ul > li,
.areaList > ul > li >button{
  height: 0;
  overflow: hidden;
}
.areaList:hover,
.areaList ul li button:hover {
	background: #F0D45F;
	transition: .4s;
  cursor: pointer;
}
.areaList:hover > ul {
	opacity: 1;
  height: auto;
	top: 100%;
	visibility: visible;
	transition: all .3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.areaList:hover > ul > li {
  height: auto;
  overflow: inherit;
}
.areaList:hover > ul > li > button {
  height: auto;
  overflow: inherit;
}
.areaList > ul > li > ul {
  /**/position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  margin-right: -100%;
  opacity: 0;
  height: 0;
}
.areaList:hover > ul > li > ul {opacity: 0; top: 0;}
.areaList > ul > li:hover > ul {
  opacity: 1;
  height: auto;
}
.areaList:hover > ul > li.tokyolisthead::after,
.tokyolisthead::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 1px solid rgba(68, 68, 68, .3);
    border-right: 1px solid rgba(68, 68, 68, .3);
    transform: rotate(45deg);
}
.areaList ul li ul li button {
  color:#0068B7;
	display: block;/*追記*/
}
.areaList ul li ul li button:before {
    color:#0068B7
}
.map {
	display: block;
	position: relative;
	width: 100%;
	padding-top: 48%;
	background: url(/img/map.png) no-repeat center / contain;
	margin: 0 auto 80px;
}

.maparea {
  position: relative;
}
.maparea button {
  box-sizing: border-box;
  width: 100%;
	opacity: 1;
	transition: .4s;
}
.maparea button:hover {
	opacity: .6;
	transition: .4s;
}
.maparea .map-select {
  position: absolute;
  width: 187px;
  height: 41px;
  border-radius: 4px;
  box-shadow:0px 2px 6px rgba(0,0,0,.2);
  font-size: 11px;
  background: #fff;
	transition: all .3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	cursor: pointer;
}
.maparea .map-select .listLabel {
  line-height: 41px;
  position: relative;
  text-align: center;
  border:none;
  box-sizing: border-box;
  font-size: 11px;
  padding: 0;
	transition: all .3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.maparea .map-select .listLabel:after {
	width: 7px;
	height: 7px;
	border-bottom: 2px solid rgba(68, 68, 68, .3);
	border-right: 2px solid rgba(68, 68, 68, .3);
  right: 14px;
}
.maparea .map-select ul {
  height: 0;
  overflow: hidden;
}
.maparea .map-select > ul > li > button {
  padding: 10px 20px;
}
.maparea .map-select ul li button {
  text-align: left;
  cursor: pointer;
	padding-left: 2.5em;
	position: relative;
}
.maparea .map-select ul li button:before {
    content: '↓';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10%;
    margin: auto;
    font-weight: normal;
    font-size: 10px;
    color: #222;
    display: table;
}
.maparea .map-select:hover {
  z-index: 999;
  height: auto;
}
.maparea .map-select:hover ul {
  overflow: visible;
}
.maparea .map-select:hover > ul > li {
  border-top:1px solid #eee;

}
.maparea .map-select.area02:hover .listLabel:after,
.maparea .map-select.area03:hover .listLabel:after,
.maparea .map-select.area04:hover .listLabel:after {
	transform: rotate(-135deg);
}
.maparea .map-select:hover ul {
  height: auto;
}
.maparea .area01 {
  top: 31.4%;
  left: 48.3%;
}
.maparea .area02 {
  top: 55%;
  left: 55.6%;
}
.maparea .area02 .listLabel > a {
	cursor: default;
}
.maparea .area03 {
  top: 56.3%;
  left: 36.5%;
}
.maparea .area03 .listLabel > a {
	cursor: default;
}
.maparea .area04 {
  top: 66.8%;
  left: 27%;
}
.maparea .area04 .listLabel > a {
	cursor: default;
}
.maparea .area05 {
    bottom: 13.5%;
    left: 37%;
}
.maparea .area06 {
  bottom: 7%;
  left: 17.8%;
}
.maparea .area07 {
  top: 20.3%;
  left: 14.2%;
}

.maparea .map-select > ul > li {
  position: relative;
}
.maparea .map-select > ul > li >ul {
  display: none;
}
.maparea .map-select > ul > li:hover >ul {
  display: block;
  position: absolute;
  width: 100%;
  margin-right: -100%;
  top: 0;
  right: 0;
  background: #fff;
  box-shadow:0px 2px 6px rgba(0,0,0,.2);
}
.maparea .map-select > ul > li >ul li button {
  padding: 0px 20px
}
.maparea .map-select > ul > li:hover >ul li {
  border-top:1px solid #eee;
}
.maparea .map-select > ul > li:hover >ul li button {
  padding: 8px 20px;
}
.maparea .map-select > ul > li ul button {
  color: #0068B7;
  padding-left: 2.5em!important;
}
.maparea .map-select > ul > li ul button:before {
  color: #0068B7;
}

/*.mapList {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: auto;
	display: block;
}

.listLabel {
	max-width: 200px;
	margin: 0;
	padding: 1.3em 0;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	background: #fff;
	border-radius: 6px;
	-moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
	-webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
	box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
	position: relative;
}*/


.area {
font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.1em;
    background: #d7d7d7;
    padding: .75em 1em;
}
.area p {
	max-width: 1064px;
	margin: auto;
	display: block;
	font-size: 17px;
}
.locale {
	font-size: 17px!important;
	font-weight: bold;
	color: #222222;
	letter-spacing: 0.1em;
	padding: .3em 1em;
	border-bottom: 2px solid #dfdfdf;
    margin-top: 24px;
}
.city {
	font-size: 12px;
	font-weight: bold;
	color: #0068B7;
	letter-spacing: 0.1em;
	padding: .3em 1em;
	margin: 0;
}
.touroku {
    font-size: 12px;
    color: #0068B7;
    border: 1px solid #0068B7;
    padding: 2px 16px;
}
.sitei {
    font-size: 12px;
    color: #E60012;
    border: 1px solid #E60012;
    padding: 2px 16px;
}
.registration {
    font-size: 12px;
    color: #41A70C;
    border: 1px solid #41A70C;
    padding: 2px 16px;
}
.recommendation {
    font-size: 12px;
    color: #434343;
    border: 1px solid #434343;
    padding: 2px 16px;
}
.prefList ul li {
	max-width: 1280px;
	margin: auto;
	display: block;
}
.prefList .stripeTable th,
.prefList .stripeTable td {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #222222;
	font-weight: 300;
}
#prefList ul {
    margin-bottom:60px;
}
#prefList li {
    overflow: hidden;
}
#prefList ul li:not(.wd100) {
    max-width: 1064px;
    margin: 0 auto;
}
#prefList .stripeTable {
    margin-bottom: 20px!important;
    max-width: 1064px;
    margin: 0 auto;
}
#prefList .stripeTable th, #prefList .stripeTable td {
    padding: .5em 1em .75em;
}

#prefList .wd100 > table {
	margin: 40px auto 80px auto;
}

#prefList .stripeTable th {
 	width: 42%;
}

#prefList .stripeTable td:nth-child(2) {
	width: 38%;
}

#prefList .stripeTable td:nth-child(3) {
	width: 10%;
}


.linkBt a {
	font-size: 12px;
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #434343;
	text-align: center;
	border: 1px solid #434343;
	border-radius: 24px;
	padding: .5em 1em;
	text-decoration: none;
	transition: .4s;
}
.linkBt a:hover {
	background: #F0D45F;
	border-color: #F0D45F;
	transition: .4s;
}
.works02 .underTitle.pc	{
	display: block!important;
}
.works02 .underTitle.sp	{
	display: none!important;
}
.areaList {
	position: relative;
}
.areaList:after {
    position: absolute;
    width: 1px;
    height: 20px;
    background: #d7d7d7;
    content: "";
    right: 0;
    top: 12px;
}
.areaList:last-child:after {
    content: none;
}
.maparea_info {
	max-width: 1064px;
	margin: 0 auto;
	font-size: 12px;
}
@media screen and  ( max-width : 1000px ) {
.areaList:after {
    top: 7px;
}
.works02 .underTitle.pc	{
	display: none!important;
}
.works02 .underTitle.sp	{
	display: block!important;
	margin-bottom: 0;
	padding:0 0 15%;
}

.maparea {display: none;}
.areaMenu .inner {
    overflow-x: scroll;
	white-space:nowrap;
    padding: 0;
	-ms-overflow-style:none;/* IE */
    overflow: -moz-scrollbars-none;/* Firefox */
}
.areaMenu .inner::-webkit-scrollbar {
    display: none;
	/*background: #dcdcdc;
	height: 1px;
	margin-top:5px;*/
}
.areaMenu .inner::-webkit-scrollbar-thumb {
	background: #434343;
}
.areaMenu .flexBox {
	width: 1000px;
	margin: 0;
	padding: 0;
	/*overflow: hidden;*/
	/*overflow-x: hidden;*/
	display: block;
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
}
.areaMenu .flexBox.flexLeft {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: start;
}
.areaMenu .flexBox.between {
	-webkit-box-pack: space-between;
	    -ms-flex-pack: space-between;
	        justify-content: space-between;
}
.areaMenu .flexBox.blocks_6 > * {
	-ms-flex-preferred-size: calc(100% / 6);
	    flex-basis: calc(100% / 6);
	width: calc(100% / 6);
	float: left;
}
.areaList > ul {
    position: relative;
	/*overflow: visible;*/
}
.listLabel {
	/*border-bottom: 1px solid #d7d7d7;*/
	padding: .75em 1em;
}
.listLabel:hover {
	/*border-bottom: 1px solid #434343;*/
}
#prefList .stripeTable th, #prefList .stripeTable td {
    padding: .25em 1em;
	display: block;
	width: 100%;
	max-width: 100%;
}
#prefList .stripeTable tr {
    display: block;
    padding: .75em 0;
}
}

/*/-----------------個人情報保護方針*/
.policy .contents01 {
	padding: 0;
}
.policy_box {
    border: 2px solid #c7c7c7;
    padding: 60px 35px 45px;
    box-sizing: border-box;
	margin:0 0 40px;
}
.name {
    font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
    font-weight: bold;
    font-size: 20px;
}
.policy_contact {
    display: table;
    float: right;
}
@media screen and  ( max-width : 767px ) {
.underContents h3 {
	font-size: 20px!important;
}
.name {
    font-size: 17px;
}
}

/*/-----------------サイトマップ*/
ul.ul_stripe li {
	text-align: left;
	padding: 1em 1em 1em 2em;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-weight: 400;
	word-break: break-all;
	position: relative;
}
ul.ul_stripe li:before {
    display: block;
    content: "";
    position: absolute;
    top: 20px;
    left: 10px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left: 5px solid #222;
}
ul.ul_stripe li:nth-child(odd) {
	background: #ffffff;
}
ul.ul_stripe li:nth-child(even) {
	background: #f2f2f2;
}
ul.ul_stripe li .sub li:before {
    top: 14px;
}
ul.ul_stripe li .sub li {
    background: none;
	padding: .5em 1em .5em 2em;
}
ul.ul_stripe li a {
    text-decoration: none;
}
ul.ul_stripe li a:hover {
    text-decoration: underline;
}


/*/-----------------190123追記*/

.vBase {
	vertical-align: baseline!important;
}

.mt40 { margin-top: 40px!important}

.contactFlow {
	margin-bottom: 22px;
}

.contactBtn .btn_style.btn2 a:hover {
	border-color: #F0D45F;
}

.contactBox .telNo {
	line-height: 1.5;
}

.pageFeed .btn_style a {
	padding: 1.3em 1em;
}

.anchorLink a {
	opacity: 1;
	transition: .4s;
	padding: .9em 1em 0;
}
.anchorLink a:hover {
	opacity: .7;
	transition: .4s;
}

.underContents h3.font17 {
	font-size: 17px!important;
}

.top .contents01 p {
	font-size: 16px;
}


@media screen and  ( min-width : 768px ) {
	.btn_style.btn2 a + a {
		margin-left: 16px;
	}
 }

@media screen and  ( max-width : 767px ) {
	.worksList {
		padding: 0px;
	}

	.pageFeed .btn_style a {
		max-width: 160px;
	}

	.pulldown {
		padding: 20px 0 60px;
	}
	.contactBox {
		padding: 20px 20px;
	}
	.contactBox .telNo {
		font-size: 27px;
	}

	.serviceBanner li:nth-child(even) {
		margin: 0 0 16px 0;
	}

	.top .contents07 figcaption {
		padding: 2em 1em;
	}
}

@media ( min-width : 768px ) and  ( max-width : 910px ) {
	.serviceBanner li:nth-child(3n) {
		margin: 0 16px 16px 0;
	}
}

.rental .blockLine .block .rentalTitle {
	font-weight: bold;
	height: auto;
	padding-top: 10px;
}

.rentalDate dt {
	margin-bottom: 4px;
}
.rentalDate dd {
	margin-bottom: 16px;
}

::placeholder {
	color: rgba(2, 2, 2, .3);
}

::-webkit-input-placeholder {
	color: rgba(2, 2, 2, .3);
}


:-ms-input-placeholder {
	color: rgba(2, 2, 2, .3);
}


::-ms-input-placeholder {
	color: rgba(2, 2, 2, .3);
}

#rental-content h3 {
	border: none;
	padding: 0;
}

#rental-content p {
	margin-bottom: 40px;
}

#rental-content img {
	margin: 0 auto 20px auto;
	display: block;
}

#rental-content .img2col:after {
	clear: both;
	display: block;
	content: "";
}

#rental-content .img2col li {
    width: 49%;
    float: left;
}

#rental-content .img2col li:nth-child(2) {
	margin-left: 2%;
}

#rental-content .img2col li span {
	font-size: 16px;
	margin-bottom: 10px;
	display: block;
	font-weight: bold;
}

#rental-content .img2col li img {
	margin: 0;
}


/*/-----------------190127追記*/
.listLabel a {
    text-decoration: none;
	display: block;
}
#hokkaido, #kanto, #chubu, #kinki, #chugoku, #kyushu, #kaigai {
    padding-top: 120px;
    margin-top: -120px;
}
@media screen and  ( max-width : 1000px ) {
.works02 .underContents h2 {
	font-size: 17px!important;
}
.works02 .under.tertiary .underTitle h1 {
	padding: 20px 24px;
}
.works02 main h1 {
    font-size: 50px!important;
    padding: 1em 24px;
}
.works02 main h1 span {
    font-size: 24px!important;
    margin-top: -.8em;
}
.works02 .underTitle.sp	{
	padding:0 0 60px;
}
}

/*/-----------------190201追記*/
@media screen and  ( min-width : 641px ) {
	header li.menu-dropdown-icon:nth-child(1) ul.service ul li a {
		padding: 70px 0;
	}
}
@media screen and  ( min-width : 641px ) {
	header li.menu-dropdown-icon:nth-child(2) ul.works li a {
		padding: 150px 0;
	}
}
.top .contents02 figure img {
  height: 422px;
  object-fit: cover;
  width: 100%;
}
.worksData th {
	text-align: left;
}
.areaMenu .flexBox.blocks_6 > * {
	-ms-flex-preferred-size: 14.28%;
	    flex-basis: 14.28%;
	width:14.28%;
}
@media screen and  ( max-width : 1060px ) {
.top .contents02 figure img {
    height: 388px;
}
}
@media screen and  ( max-width : 860px ) {
.top .contents02 figure img {
    height: 310px;
}
}
@media screen and  ( max-width : 767px ) {
.top .contents02 figure img {
    height: 343px;
}
.processBanner img {
	height: 310px;
}
}
@media all and (-ms-high-contrast:none){
figure {
	display: block!important;
}
.rental00 .underContents figure {
	display: table!important;
}
.underTitle {
	margin-top: 66px;
}
.arbeit .breadcrumb {
	margin-top: 106px;
}
}
@media ( max-width : 1000px ) and (-ms-high-contrast:none){
.underTitle {
	margin-top: 49px;
}
.arbeit .underContents.mb80 {
	margin-top: 49px;
}
}
@supports (-ms-ime-align:auto) {
.processBanner figcaption {
	padding:12%  10px;
}
}

/*/-----------------案件実績*/
.sp_pull > p {
	background: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 1em;
	position: relative;
	margin: 0;
	cursor: pointer;
	border: 1px solid #434343;
}
.sp_pull > p:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5%;
	margin: auto;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #222;
	border-right: 2px solid #222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: .4s;
	transition: .4s;
}
.sp_pull > p.active:after {
	content: '';
	-webkit-transform: rotate(225deg);
	        transform: rotate(225deg);
	-webkit-transition: .4s;
	transition: .4s;
	top:7px;
}
.sp_pull #refine-select {
	display: none;
	border: 0;
}
@media screen and  ( min-width : 768px ) {
.sp_pull #refine-select {
	display: block;
}	
.sp_pull {
	border-bottom: 1px solid #dadada;
}
.sp_pull > p {
	margin-bottom: 30px;
	border: 0;
    display: table;
	padding: 1em 1em 1em 0;
}
.sp_pull > p:after {
	right: 0;
}
}
@media screen and  ( max-width : 767px ) {
.sp_pull #refine-select dt {
    text-align: center;
    color: #fff;
    background: #c5c5c5;
    padding: .8em;
    display: block;
    width: 100%;
}
.sp_pull #refine-select dd {
    display: block;
    width: 100%;
}
.sp_pull #refine-select dt.null {
    padding: 0;
    background: none;
}
}

@media screen and (min-width:767px) {
	.rental #works-slider .slick-list.draggable {
		width: 524px;
		height: 524px;
	}
	#works-slider .slick-list.draggable {
		width: 524px;
		height: 371px;
	}
}

@media screen and (min-width:767px) {
	.rental #works-slider .slide-item {
		width: 524px !important;
	}

	#works-slider .slide-item {
		width: 524px !important;
	}
}

#works-slider .slide-item {
	height: 371px;
	overflow: hidden;
    background: #434343;
}

.rental #works-slider .slick-track {
    position: relative
}
@media screen and (min-width:767px) {
    .rental #works-slider .slide-item:before {
        display: block;
        content: "";
        padding-top: 100%;
    }
    .rental #works-slider .slide-item {
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #434343;
    }
}

@media screen and (max-width:766px) {
	.rental #works-slider .slide-item {
		height: 71vw !important;
	}
	#works-slider .slide-item {
		height: 49vw !important;
	}
}

@media screen and (max-width:375px) {
	#works-slider .slide-item {
		height: 48.3vw !important;
	}
}

@media screen and (max-width:320px) {
	#works-slider .slide-item {
		height: 47.3vw !important;
	}
}

.rental #thumbnail-list .thumbnail-item {
	max-width: 92px;
	width: 92px;
	height: 92px;
	background: #434343;
	overflow: hidden;
}

@media screen and (min-width:1000px) {
	#thumbnail-list {
		width: 524px;
	}
}

#thumbnail-list .thumbnail-item {
	max-width: 92px;
	width: 92px;
	height: 65px;
	background: #434343;
	overflow: hidden;
}

.rental #thumbnail-list .thumbnail-item img {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	position: absolute;
	max-width: 2000px;
	max-height: 92px;
	height: 92px;
}

#thumbnail-list .thumbnail-item img {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(1.07);
	-ms-transform: translate(-50%, -50%) scale(1.07);
	transform: translate(-50%, -50%) scale(1.07);
	width: auto;
	position: absolute;
	max-width: 2000px;
	max-height: 65px;
	height: 65px;
}

@media screen and  ( min-width : 768px ) {
#works-slider .slide-item img {
	top: 50%;
	left: 50%;
	height: 390px;
	-webkit-transform: translate(-50%, -50%) scale(1.05);
	-ms-transform: translate(-50%, -50%) scale(1.05);
	transform: translate(-50%, -50%) scale(1.05);
	width: auto;
	position: absolute;
	max-width: 3000px;
	max-height: 390px;
}
.rental #works-slider .slide-item img {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	position: absolute;
    width: auto;
    height: auto;
	max-width: 3000px;
	max-height: 524px;
}
}
/*/-----------------会場実績*/
.btn01.onbtn,
.btn02.onbtn,
.btn03.onbtn,
.btn04.onbtn,
.btn05.onbtn,
.btn06.onbtn,
.btn07.onbtn {
	background: #F0D45F;
}
.areaList .btn02 > a,
.areaList .btn03 > a,
.areaList .btn04 > a {
	cursor: default;
}

/*/-----------------190204追記*/

.featureBox .underContents:first-child {
	display: table;
	max-width: inherit;
}

.maparea .map-select.area01 .listLabel:after,
.maparea .map-select.area05 .listLabel:after,
.maparea .map-select.area06 .listLabel:after,
.maparea .map-select.area07 .listLabel:after {
	content: none;
}

.maparea .map-select.area01 .listLabel:before,
.maparea .map-select.area05 .listLabel:before,
.maparea .map-select.area06 .listLabel:before,
.maparea .map-select.area07 .listLabel:before {
	content: '↓';
	position: absolute;
	/*font-family: 'Material Icons';*/
	top: 0;
	bottom: 0;
	left: 5%;
	margin: auto;
	font-weight: 500;
	font-size: 20px;
	color: #434343;
}

.maparea .map-select.area01 .listLabel:hover,
.maparea .map-select.area05 .listLabel:hover,
.maparea .map-select.area06 .listLabel:hover,
.maparea .map-select.area07 .listLabel:hover {
	opacity: .6;
	transition: .4s;
}

.areaList:nth-child(1) .listLabel:after,
.areaList:nth-child(5) .listLabel:after,
.areaList:nth-child(6) .listLabel:after,
.areaList:nth-child(7) .listLabel:after {
	content: none;
}

.areaList:nth-child(1) .listLabel:before,
.areaList:nth-child(5) .listLabel:before,
.areaList:nth-child(6) .listLabel:before,
.areaList:nth-child(7) .listLabel:before {
	content: '↓';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5%;
	margin: auto;
	font-weight: normal;
	font-size: 12px;
	color: #434343;
	display: table;
}

@media screen and  ( max-width : 767px ) {
	.bnrBlock > div {
		background: none;
	}
	.top .contents07 .scaleBox > span img, .top .contents07 .scaleBox:hover > span img {
		opacity: inherit;
	}
}

@media screen and  ( min-width : 768px ) {
	.recruitRight {
		padding-top: 78px;
		padding-left: 17%;
	}

	.recruit .flexBox > img:first-child {
		margin-left: 0;
	}
}

#thanks {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2%;
	box-sizing: border-box;
}

#thanks h2 {
	text-align: center;
	font-size: 28px;
	color: #333;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 40px;
}

@media screen and  ( max-width : 767px ) {
	#thanks h2 {
		font-size: 24px!important;
		margin-bottom: 20px;
	}
}

#thanks p {
	font-size: 16px;
	margin-bottom: 0px;
}

.recruit .flexBox {
	flex-wrap: nowrap;
}

.recruit .flexBox > img:first-child,
.recruit .flexBox > img:nth-child(2) {
    max-width: 308px;
    max-height: 222px;
    height: 100%;
		width: 29%;
}

.recruit .flexBox > img:nth-child(3) {
    max-width: 416px;
    max-height: 222px;
    height: 100%;
		width: 39%;
}

.contents04 .btn_style.btn2 a:hover {
	border: 1px solid #F0D45F;
}

/* Firefox対応 */
@-moz-document url-prefix() {
.areaList ul li button:before {
top: 5px;
}
.areaList:nth-child(1) .listLabel:before, .areaList:nth-child(5) .listLabel:before, .areaList:nth-child(6) .listLabel:before, .areaList:nth-child(7) .listLabel:before {
	padding-top: 9px;
}
.maparea .map-select ul li button::before {
	top:12px;
}
}

/* IE対応 */
@media all and (-ms-high-contrast: none){
.areaList ul li button:before {
top: 5px;
}
.areaList:nth-child(1) .listLabel:before, .areaList:nth-child(5) .listLabel:before, .areaList:nth-child(6) .listLabel:before, .areaList:nth-child(7) .listLabel:before {
	padding-top: 9px;
}
.maparea .map-select ul li button::before {
	top:12px;
}

table.mailform .zipCode:before {
	top:30%;
}	
}
@media  (max-width: 820px)  and (-ms-high-contrast: none){
.contents04 .block {
	width:50%;
}
}

/*IE11はメディアクエリの入れ子非対応のため*/
@media screen and (max-width: 1700px) {
.slick-prev { left: 8%;}
.slick-next { right: 8%;}
}
@media screen and (max-width: 1600px) {
.slick-prev { left: 6%;}
.slick-next { right: 6%;}
}
@media screen and (max-width: 1600px) {
.slick-prev { left: 5%;}
.slick-next { right: 5%;}
}
@media screen and (max-width: 1300px) {
.slick-prev { left: 3%;}
.slick-next { right: 3%;}
}
@media screen and (max-width: 1200px) {
.slick-prev { left: 1%;}
.slick-next { right: 1%;}
}


/*/-----------------1900221追記*/

/* 案件実績 */
.worksArticle {
    float: none;
}
@media screen and (min-width: 768px) {
.worksArticle {
    padding-left:23%;
}	
}

/* 会場実績 */
#prefList .stripeTable th {
    font-weight: bold;
}
#prefList .stripeTable td:nth-child(2) {
    color: #222;
    font-size: 12px!important;
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
}
@media screen and (max-width: 1000px) {
#prefList .stripeTable td:nth-child(2), 
#prefList .stripeTable td:nth-child(3) {
    width: 100%;
}
#prefList .linkBt {
    float: right;
    margin-top: -30px;
	position: relative;
}	
#prefList .stripeTable th {
    padding: 0 1.25em;
}	
#prefList .stripeTable td:nth-child(2) {	
    padding: .5em 1.5em;
}
.city {
    padding: .3em 1.5em;
}	
}

/* レンタル商品 */
.rental main .underContents h1 {
	font-size: 17px;
    margin: 0;
    color: #333;
    padding: 0;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    color: #222222;
    padding: .6em 0;
    border-bottom: 1px solid #ececec;
    z-index: 1;
}

@media screen and (max-width: 767px) {
	.rental main .underContents h1 {
		font-size: 17px !important;
	}
}
.rental .pulldown {
	padding: 20px 0;
}
/* @media screen and (min-width: 768px) {
.rental00 .blockLine .block:nth-child(2) {
    padding-left: 4%;
}
} */
@media screen and (max-width: 767px) {
.rental00 .blockLine .block {
    text-align: center;
}	
}
.rental00 .underContents .block:nth-child(2n-1) {
	margin-left: 0 !important;
}

/* 採用情報 */
.under.recruit main .btn_style.btn2 a:hover {
    border: 1px solid #F0D45F;
}
@media screen and (max-width: 420px) {
.recruit .font34 {
    font-size: 28px!important;
}
}
@media screen and (max-width: 380px) {
.recruit .font34 {
    font-size: 24px!important;
}
}

/*/-----------------190308追記*/

/* 会場実績 */
@media screen and (max-width: 1000px) {
	
	.areaList > ul > li > ul {
		visibility: hidden;
		width: 0;
		height: 0;
		overflow: hidden;
	}
	.areaList > ul:hover > li > ul {
	visibility: visible;
		height: auto;
		width: 100%;
		overflow: inherit;
	}
.areaList:hover {
	background: none;
	transition: .4s;
  cursor: pointer;
}
.listLabel {
	background: #fff;	
}
.listLabel:hover, 
.areaList ul li button:hover {
	background: #F0D45F;
	transition: .4s;
  cursor: pointer;
}
.listLabel > .areaList ul li button:hover {
	background: #F0D45F;
}	
	
.areaList {
	/*overflow:hidden;*/
}
}

/*/-----------------190308追記*/
.process .interview .reversal {
    overflow: visible;
}
.process .interview .reversal:after {
    content: "";
    display: block;
    clear: both;
}
.process .interview .mt0 {
    margin-top: 0;
    margin-bottom: 0;
}
@media screen and (min-width:768px) {
    .interview .reversal > .block.wd60 {
      float: left;
      margin-bottom: 0;      
    }
}

/*/-----------------190418追記*/
.square-fit:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.square-fit {
    position: relative;
}
.blockLine.mb50 .square-fit {
	width: 100%;
}
.square-fit .square-inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.square-fit figure {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.square-fit figure a {
    display: block;
    height: 100%;
    position: relative;
}
.square-fit figure a img {
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (min-width:768px) {
.blocks_2 > .block:nth-child(2n+1) {    
	margin-left: 0;
}
.blocks_3 > .block {
	width: calc(100% / 3 - 9px);
	margin-left: 10px;
}
.blocks_3 > .block:nth-child(3n+1) {
	width: calc(100% / 3 - 9px);
	margin-left: 0;
}
.blocks_4 > .block {
	width: calc(100% / 4 - 10px);
	margin-left: 10px;
	margin-right: 0;
}
.blocks_4 > .block:nth-child(4n+1) {
	width: calc(100% / 4 - 10px);
	margin-left: 0;
}
.blocks_5 > .block {
	width: calc(100% / 5 - 9px);
	margin-left: 10px;
}
.blocks_5 > .block:nth-child(5n+1) {
	width: calc(100% / 5 - 9px);
	margin-left: 0;
}
.blocks_6 > .block {
	width: calc(100% / 6 - 9px);
	margin-left: 10px;
}
.blocks_6 > .block:nth-child(6n+1) {
	width: calc(100% / 6 - 9px);
	margin-left: 0;
}
.blocks_7 > .block {
    width: calc(100% / 7 - 9px);
	margin-left: 10px;
}
.blocks_7 > .block:nth-child(7n+1) {
	width: calc(100% / 7 - 9px);
	margin-left: 0;
}
}

.rental .underLinks .blockLine .block p {
	height: 70px;
}

@media screen and (min-width:768px) {
	#text404 {
		text-align: center;
	}
}

#totop {
	margin: 40px auto 0 auto;
	padding: 0;
    width: 250px;
}

#totop a {
	padding: 2.3em .5em 2.5em 1.75em;
    border: 1px solid #c6c6c6;
    height: 82px;
    text-decoration: none;
    margin: 0 auto;
    display: block;
    position: relative;
    font-weight: bold;
    line-height: 100%;
}

#totop a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 1em;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#totop a:hover {
	background: #F0D45F;
	border: 1px solid #F0D45F;
	-webkit-transition: .4s;
	transition: .4s;
}

/* 20200415追記 */
.service.service02 .breadcrumb li:first-child a {
    background: none;
}

.service.service01 .categolyTitle h1,
.service.service02 .categolyTitle h1,
.service.service03 .categolyTitle h1,
.service.service04 .categolyTitle h1,
.service.service05 .categolyTitle h1,
.service.service06 .categolyTitle h1,
.service.service07 .categolyTitle h1,
.service.service10 .categolyTitle h1 {
	text-align: center;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	padding: 2.5em 0;
	margin: auto;
	z-index: 2;
	position: relative;
}
@media screen and  ( max-width : 767px ) {
.service.service02.under.tertiary .underTitle p {
	padding: 20px 24px;
	font-size: 50px!important;
}
.service.service02.under .underTitle p span {
    font-size: 24px!important;
    margin-top: -.8em!important;
}

	
}


/* 20200415追記 */
.service.service02 .breadcrumb li:first-child a {
    background: none;
}

.service.service01 .categolyTitle h1,
.service.service02 .categolyTitle h1,
.service.service03 .categolyTitle h1,
.service.service04 .categolyTitle h1,
.service.service05 .categolyTitle h1,
.service.service06 .categolyTitle h1,
.service.service07 .categolyTitle h1,
.service.service10 .categolyTitle h1 {
	text-align: center;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	padding: 2.5em 0;
	margin: auto;
	z-index: 2;
	position: relative;
}
@media screen and  ( max-width : 767px ) {
.service.service02.under.tertiary .underTitle p {
	padding: 20px 24px;
	font-size: 50px!important;
}
.service.service02.under .underTitle p span {
    font-size: 24px!important;
    margin-top: -.8em!important;
}
.service.service02 .categolyTitle h1 {
	font-size: 34px!important;
    padding: 1.5em 1em;
    line-height: 1.4;
	}
	
}

.notfound .underTitle span {
	line-height: 150%;
	margin-top:0 !important;
}

.slider {
	display: none;
}

.slider.slick-initialized {
	display: block;
}

/* ブログカード用スタイル START */
.blog-card {
    background: rgba(251, 140, 0, 0.02);
    border: 1px solid #F0D45F;
    word-wrap: break-word;
    max-width: 100%;
    border-radius: 4px;
    margin: 16px 10px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.blog-card:hover {
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .2);
    -moz-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.blog-card:before {
    position: absolute;
    padding: 4px 8px 6px 8px;
    content: "関連記事";
    background-color: #F0D45F;
    color: #222222;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.blog-card a {
    text-decoration: none;
}

.blog-card-thumbnail {
    width: 35%;
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
}

.blog-card-thumbnail img {
    padding: 0;
    margin: 0 !important;
}

.blog-card-content {
    display: table-cell;
    vertical-align: middle;
}

.blog-card-title {
    font-size: 1em;
    margin: 5px 10px 5px 0;
    font-weight: bold;
    line-height: 1.4;
}

.blog-card-title:hover {
    text-decoration: underline;
}

.blog-card-excerpt {
    font-size: .74em;
    color: #4c4c4c;
    margin: 0 10px 5px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card .clear {
    clear: both;
}

/* 外部リンク用ブログカードのスタイル */
.blog-card-external {
    background: rgba(251, 140, 0, 0.02);
    border: 1px solid #0068B7;
    word-wrap: break-word;
    max-width: 100%;
    border-radius: 4px;
    margin: 16px 10px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.blog-card-external:hover {
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .2);
    -moz-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.blog-card-external:before {
    position: absolute;
    padding: 4px 8px 6px 8px;
    content: "詳細を見る";
    background-color: #0068B7;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.blog-card-external a {
    text-decoration: none;
}

.blog-card-external .clear {
    clear: both;
}

@media screen and (max-width: 500px) {
    .blog-card:before {
        font-size: .56em;
    }
    .blog-card-external:before {
        font-size: .56em;
    }
    .blog-card-title {
        font-size: .70em;
    }
    .blog-card-excerpt {
        font-size: .60em;
    }
}
/* ブログカード用スタイル END */

/* 追加汎用エフェクト */
/* ホバー時画像が薄暗くなる */
.transparent-bg-darkgray {
    background-color: #434343;
    display: block;
}
.transparent-bg-darkgray img {
	-webkit-transition: .4s;
	transition: .4s;
}
.transparent-bg-darkgray:hover img {
  opacity: .6;
	-webkit-transition: .4s;
	transition: .4s;
}

.delete-style-h2-qa {
  border-bottom: none !important;
  padding: 0 !important;
}

.service-matter-sub {
  font-size: 11.2px !important;
  font-weight: normal !important;
  margin-top: 0;
}

h3.service-matter-title {
  border-bottom: none;
  font-size: 14px !important;
  margin: 10px 0;
  text-align: left;
  padding: 0;
}

/* トップページ - process */
.section__process {
  padding-bottom: 5rem !important;
}
@media screen and (max-width:767px) {
  .section__process {
    padding-bottom: 2rem !important;
  }
}
.section__process__heading {
  margin-bottom: 2rem;
  text-align: right;
}
.section__process__paragraph {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width:767px) {
  .section__process__paragraph {
    margin: 1.5rem auto;
    width: 90%;
  }
}
.section__process__paragraph p {
  font-size: 20px;
}
@media screen and (max-width:767px) {
  .section__process__paragraph p {
    font-size: 16px !important;
  }  
  .section__process__paragraph br {
    display: none;
  }  
}
.section__process__paragraph span {
  color: #f44336;
  font-weight: bold;
}
.section__process__single {
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 1600px;
  width: 99.5%;
}
.section__process__single > * {
  display: block;
  margin: 0 0.5%;
  width: calc(100%/3);
}
.section__process__single > * figure {
  display: block;
}
@media screen and (max-width: 1400px) {
  .top .contents02 figure > figcaption > h3 .subtitle {
    font-size: 1.2vw;
  }
  .top .contents02 figure > figcaption > h3 .pc {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 1130px) {
  .section__process__single > * {
    max-height: 300 !important;
    width: 49% !important;
  }
  .section__process__single > * img {
    height: 100% !important;
    min-height: 350px !important;
    max-width: auto !important;
    width: 100% !important;
  }
  .section__process__single > * figure {
    min-height: 200px !important;
    height: auto !important;
  }
  .section__process__single > * figcaption {
    padding: 8px 20px !important;
  }
  .section__process__single figcaption .subtitle {
    font-size: 14px !important;
    margin-bottom: 1rem;
  }
  .section__process__single figcaption .pc {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 980px) {
  .section__process__single {
    width: 96%;
  }
  .section__process__single > * {
    margin: 0 1.5%;
  }
  .section__process__single > *:last-child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .section__process__single > * figcaption {
    padding: 15px 20px !important;
  }
  .section__process__single > * img {
    min-height: 300px !important;
  }
  .section__process__single figcaption .subtitle {
    font-size: 14px !important;
    margin-bottom: 3rem;
  }
  .section__process__single figcaption .sp {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 530px) {
  .section__process__single {
    justify-content: space-between;
  }
  .section__process__single > * {
    display: block;
    margin: 0;
    max-height: 200px !important;
    max-width: auto !important;
  }
  .section__process__single > * img {
    min-height: 200px !important;
  }
  .section__process__single figcaption .subtitle {
    font-size: 10px !important;
    margin-bottom: 3rem;
  }
  .section__process__single figcaption .sp {
    font-size: 14px !important;
  }
}


/* 固定ページ用ボタン */
.button-card {
  box-shadow: 0 2px 2px rgba(0,0,0,0.2);
  margin: 0 0 2rem;
  max-width: 225px;
  width: 100%
}
@media screen and (max-width: 767px) {
  .button-card {
    max-width: initial;
    max-width: auto;
    width: 100%;
  }
}
.button-card > a:not(.button-card-wrap) {
  background: #0068B7;
  display: block;
  text-decoration: none;
}
.button-card > a:not(.button-card-wrap):hover img {
  opacity: 0.8;
}
.button-card.center {
  margin: auto;
}
.button-card.wide {
  max-width: 355px;
}
.button-card-wrap {
  align-items: center;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  margin-left: 2px;
  overflow: hidden;
  padding: 14px 20px 6px 34px;
  position: relative;
  text-decoration: none;
}
.button-card-wrap:hover {
  background: #0068B7;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.8;
}
.button-card-wrap div:first-child {
  /* text */
  width: 85%;
}
.button-card-wrap div:last-child {
  /* icon */
  text-align: center;
  width: 15%;
}
.button-card-wrap h3 {
  border-bottom: none;
  border-left: none;
  font-size: 16px !important;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 7px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .button-card-wrap h3 {
    font-size: 4.5vw !important;
  }
}
.button-card-wrap:hover h3 {
  color: #ffffff;
}
.button-card-wrap p {
  color: #999999;
  font-size: 0.8em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .button-card-wrap p {
    font-size: 1vw;
  }
}
.button-card-wrap:hover p {
  color: #ffffff;
}
.button-card-wrap.color {
  color: #ffffff;
  padding: 14px 20px 6px 24px;
}
.button-card-wrap.color h3,
.button-card-wrap.color p {
  color: #ffffff;
}
.wide .button-card-wrap.color p br {
  display: none;
}