@charset "UTF-8";
/* CSS Document */

/*--------------*/
/*    共通項目    */
/*--------------*/

*{
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.clearfix:before,.clearfix:after {
	display: table;
	content: " ";
}
.clearfix:after {
	clear: both;
}
.pc-only {
  display: none;
}
.sp-only {
  display: block;
}
.green {
  color: #0a0;
}
.red {
  color: #f00;
}
a.green:hover {
  color: #0a0;
  opacity: 0.7;
}
.text-center {
  text-align: center;
}
.text-center-sp {
  text-align: center;
}
.text-right {
  text-align: right;
}

body {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #555;
  font-size: 15px;
  -webkit-font-smoothing: subpixel-antialiased;
}
p {
  line-height: 1.8;
}
ul,ol,dl{
  line-height: 1.8;
}
a {
  color: #555;
  text-decoration: none;
}
a:hover {
  color: #aaa;
}
h1 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 26px;
  color: #333;
  line-height: 1.5;
}
h2 {
  font-size: 22px;
  color: #333;
  line-height: 1.5;
}
main {
  display: block;
  margin-bottom: 90px;
}
#headerbar {
  width: 100%;
  background-color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
}
.main-logo {
  margin: 10px auto 10px 0;
  width: 150px;
  height: 54px;
}
.main-logo a {
  display: block;
  text-decoration: none;
  padding-left: 10px;
}
.header-sp-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
}
.header-sp-button p {
  text-align: center;
  line-height: 1;
  color: #888;
  font-size: 14px;
}
.btn-toggle {
  padding: 11px 9px;
  border-radius: 4px;
	outline: none;
	background: none;
	font-size: 2rem;
	cursor: pointer;
  border: 1px solid #ddd;
}
.btn-toggle:hover {
	opacity: 0.5;
}
.icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #888;
}
.icon-bar+.icon-bar {
  margin-top: 4px;
}
.main-navi {
  display: none;
}
.main-navi ul li {
  list-style-type: none;
  position: relative;
}
.main-navi ul a {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
}
body .main-navi ul a:hover {
  color: #0a0;
}
.main-navi-sub-in {
  display: none;
}
.main-navi-sub-in li a{
  padding-left: 40px;
}
.main-navi li.active-link > a {
  color: #0a0;
}

.container {
  padding: 50px 10px 0;
}
.container-full {
  padding: 75px 0 0;
}
section {
  margin: 0 auto;
}
footer {
  background-color: #fafafa;
  font-size: 0.85rem;
  line-height: 2;
  border-top: 1px solid #ddd;
}
footer .container {
  padding: 30px 10px;
}
.footer-bottom {
  background-color: #111;
  color: #eee;
  padding: 5px 0;
  text-align: center;
  font-size: 0.9rem;
}
footer p {
  line-height: 1.5;
}
.footer-ttl {
  font-weight: bold;
}
footer ul a:hover {
  color: #0a0;
}
.footer-bottom small span {
  font-family: Verdana, Roboto,"Droid Sans",sans-serif;
  color: #eee;
}

@media (min-width: 480px){
  
  h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 28px;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none !important;
  }
  .text-center-sp {
    text-align: left;
  }
  #headerbar {
    margin-top: 10px;
  }
  .header-inner {
    float: left;
  }
  .main-logo {
    margin-top: 0px;
  }
  .header-sp-button {
    display: none;
  }
  .main-navi {
    display: block !important;
    float: right;
    margin-top: 5px;
  }
  .main-navi ul li {
    display: inline-block;
  }
  .main-navi ul a {
    background-color: rgba(255,255,255,0.6);
    color: #555;
  }
  .main-navi ul a:hover {
    background-color: rgba(255,255,255,0.6);
    color: #aaa;
  }
  .main-navi-sub-in {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .main-navi-sub:hover ul {
    visibility: visible;
    opacity: 1;
  }
  .main-navi-sub-in li {
    width: 10rem;
  }
  .main-navi-sub-in li a{
    visibility: hidden;
    opacity: 0;
    padding-left: 20px;
  }
  .main-navi-sub:hover .main-navi-sub-in li a{
    visibility: visible;
    opacity: 1;
  }
  .main-navi-sub-in {
    z-index: 1000;
  }
  
  .btn-toggle {
		display: none;
	}
  .container {
    padding: 75px 20px 0;
  }
  section {
    max-width: 1140px;
    margin: 0 auto;
  }
  .flex-box { /* フレックスボックス */
    display: flex;
  }
  footer .container {
    max-width: 1140px;
    margin: 0 auto;
    border: none;
    padding: 30px 20px;
  }
  footer .flex-box {
    justify-content: space-between;
  }
}




/*----------------*/
/*    page-top    */
/*----------------*/


.wrapper {
  position: relative;
}

/*トップへ戻るボタン*/
.topBtn {
  position:fixed; /*固定*/
  bottom:20px; /*場所を右下に移動*/
  right:20px; /*場所を右下に移動*/
  display:block; /*aタグをblock要素に変更*/
  background-color:rgba(0,0,0,0.5); /*以下、デザインはご自由に！！*/
  color:#fff;
  text-decoration:none;
  padding: 10px 18px;
}

.topBtn:hover {
  opacity:0.7;
}



/*---------------*/
/*    sp_full    */
/*---------------*/

.sp-full {
  width: 100%;
  overflow:hidden;
  background-color: #000;
}
@media (min-width: 480px) {
.sp-full {
  height: auto !important;
  width: auto;
  overflow: visible;
}
}
@media (max-width: 480px) and (orientation:landscape) {
  .sp-full {
    height: auto !important;
    width: auto;
    overflow: visible;
  }
}



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

/*.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  display: none;
}*/
  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 5%;
    width: 100%;
    display: block;
  }



.bxslider li {
  position: relative;
}

.slide-inner {
  position: absolute;
  color: #fff;
}

.slide-inner p {
  font-size: 1.2rem;
}
.slide-inner .slide-p-large {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: "Times New Roman", Times, "serif"
}
.slide-inner .slide-p-large-black {
  color: #333;
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-family: "Times New Roman", Times, "serif"
}
.slide-inner-1 {
  top: 15%;
  left: 10%;
  width: 80%;
  margin: 0 auto;
 }
.slide-inner-2 {
   top: 35%;
   left: 10%;
   width: 80%;
   margin: 0 auto;
}
.bx-wrapper .slide-animate-logo img {
  width: 220px;
  height: auto;
  margin: 0 auto;
}


@media (min-width: 480px){
  
  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 5%;
    width: 100%;
    display: block;
  }
  .slide-inner p {
    font-size: 2vw;
  }
  .slide-inner .slide-p-large {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
  .slide-inner .slide-p-large-black {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
  .slide-inner-1 {
    top: 29%;
    left: 10%;
  }
  .slide-inner-2 {
    top: 38%;
    left: 10%;
  }
  .text-shadow-pc {
    text-shadow: 2px 2px 4px #222;
  }
  .bx-wrapper .slide-animate-logo img {
    width: 300px;
    height: auto;
    margin: 0 auto;
  }
}


/* アニメーションの定義 */
@keyframes slideUp {
  0% {
    visibility: visible;
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-animate-01, .slide-animate-02 {
  visibility: hidden; /* 初期状態では非表示 */
  opacity: 0;
}

.animate {
  visibility: visible; /* アニメーションを開始 */
  animation: slideUp 1s ease forwards;
}

.slide-animate-01.animate {
  animation-delay: 0.5s;
}

.slide-animate-02.animate {
  animation-delay: 1s;
}





/*-----------*/
/*    TOP    */
/*-----------*/

/*------------ top-img-loop -----------*/

.top-loop {
  background-color: #33aa66;
  padding: 40px 0 20px;
}

.top-loop-text {
  padding: 0 10px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.top-loop-text h1 {
  margin-bottom: 10px;
  color: #fff;
}

.top-loop-img {
  display: flex;
  overflow: hidden;
}

.top-loop-img-box {
  display: flex;
  animation: loop-list 25s linear infinite;
}

.top-loop-img-box li {
  width: calc(100vw / 2);
}

.top-loop-img-box img {
  width: 100%;
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .top-loop {
    max-width: 100%;
    padding: 80px 0 35px;
  }

  .top-loop-text h2 {
    font-size: 3rem;
  }

  .top-loop-img-box li {
    width: calc(100vw / 4);
  }
}


/*------------　contents-btn　-----------*/

.contents-btn-wrap {
  padding: 50px 0;
}
.contents-btn {
  padding: 0 20px;
}
.btn-box {
  display: block;
  margin-bottom: 30px;
  position: relative;
}
.btn-box:last-of-type {
  margin-bottom: 0;
}
.btn-box-img {
  overflow: hidden;
}
.btn-box:hover img {
  overflow: hidden;
  transform: scale(1.1);
  transition: 0.3s;
}
.btn-box-img img {
  transition: 0.3s;
  vertical-align: top;
  width: 100%;
  height: auto;
}
.btn-box-name {
  background-color: rgba(255, 255, 255, 0.9);
  width: 150px;
  padding: 15px 0;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.top-btn-flex a:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

@media (min-width: 480px){
  .contents-btn {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .contents-btn .flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .btn-box {
    width: 48%;
  }
  .btn-box:nth-child(n+3) {
    margin-bottom: 0;
  }
}

@media (min-width: 900px){
  .contents-btn-wrap {
    padding: 100px 0;
  }
  .btn-box {
    width: 24%;
    margin-bottom: 0;
  }
}


.contents-btn .flex-box [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.contents-btn .flex-box [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}

.contents-btn .flex-box [data-aos="slide-btn"]:nth-of-type(odd) {
  transform: translateX(-150px);
}

.contents-btn .flex-box [data-aos="slide-btn"]:nth-of-type(even) {
  transform: translateX(150px);
}

.contents-btn .flex-box [data-aos="slide-btn"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 900px) {
  .contents-btn .flex-box [data-aos="slide-btn"]:nth-of-type(odd) {
      transform: translateY(150px);
  }

  .contents-btn .flex-box [data-aos="slide-btn"]:nth-of-type(even) {
    transform: translateY(150px);
}

  .contents-btn .flex-box [data-aos="slide-btn"].aos-animate {
      transform: translateY(0);
  }
}


/*------------　top-recruit top-contact-----------*/

.top-recruit .h2-center,
.top-contact .h2-center {
  text-align: center;
}

.top-recruit h2,
.top-contact h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
}

.top-recruit h2:before,
.top-contact h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .top-recruit h2,
  .top-contact h2 {
    margin-bottom: 90px;
    font-size: 3rem;
  }

  .top-recruit h2:before,
  .top-contact h2:before {
    bottom: -25px;
    width: 80px;
  }
}


/*------------　top-recruit　-----------*/

.top-recruit {
  overflow: hidden;
}

.top-recruit-content {
  background-image: url(../images/top/recruit-bg.jpg);
  background-position: center center;
  background-size: cover;
  padding: 40px 20px 50px;
}

.top-recruit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-recruit-btn a {
  width: 100%;
  color: #333;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-recruit-btn a::after {
  content:"\e5c8";
  font-family:"Material Symbols Outlined";
  margin-left: 5px;
}

.top-recruit-btn a:hover {
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
  .top-recruit-content {
    padding: 80px 30px 90px;
  }

  .top-recruit-inner {
		max-width: 1200px;
		margin: 0	auto;
  }

  .top-recruit-btn a {
    max-width: 500px;
  }
}

.top-recruit [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-recruit [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}


/*------------　top-contact-----------*/

.top-contact {
  overflow: hidden;
  background-color: #faf5ee;
}

.top-contact-content {
  background-image: url(../images/top/contact-bg.jpg);
  background-position: center center;
  background-size: cover;
  padding: 40px 20px 50px;
}

.top-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-contact-btn a {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-contact-btn a::after {
  content:"\e5c8";
  font-family:"Material Symbols Outlined";
  margin-left: 5px;
}

.top-contact-btn a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
  color: #fff;
}

@media (min-width: 768px) {
  .top-contact-content {
    padding: 80px 30px 90px;
  }

  .top-contact-inner {
		max-width: 1200px;
		margin: 0	auto;
  }

  .top-contact-btn a {
    max-width: 500px;
  }
}


.top-contact [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-contact [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}


/*------------　top-btn-link　-----------*/

.top-btn-link {
  background-color: #fff;
  overflow: hidden;
}

.top-btn-link-inner {
	padding: 50px 20px 0;
}

.top-btn-link-flex a {
	display: flex;
	margin-bottom: 30px;
	border: 1px solid #ddd;
}

.top-btn-link-flex a:last-of-type {
	margin-bottom: 0;
}

.top-btn-link-img {
	overflow: hidden;
	width: 130px;
	height: 130px;
  border-right: 1px solid #eee;
}

.top-btn-link-img img {
	transition: 0.3s;
	vertical-align: top;
	width: 100%;
	height: auto;
}

.top-btn-link-flex a:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.top-btn-link-text {
	color: #333;
	flex: 1;
	padding-right: 10px;
	padding-left: 10px;
	background-color: #fff;
}

.top-btn-link-flex a:hover .top-btn-link-text {
	background-color: #f8fcf9;
}
.top-btn-link-text p {
  font-size: 14px;
	line-height: 1.6;
}
.top-btn-link-text p:first-child {
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: bold;
  font-size: 16px;
}

@media (min-width: 768px) {
	.top-btn-link-inner {
		padding: 90px 20px 0;
		max-width: 1140px;
		margin: 0	auto;
	}

	.top-btn-link-flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.top-btn-link-flex a {
		width: 48%;
	}

	.top-btn-link-text p:first-child {
		font-size: 16px;
	}

	.top-btn-link-img {
		width: 140px;
		height: 140px;
	}
}

@media (min-width: 960px) {
  .top-btn-link-flex a {
		width: 32%;
		margin-bottom: 0;
	}
}


.top-btn-link-flex [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.top-btn-link-flex [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}

.top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(odd) {
  transform: translateX(-150px);
}

.top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(even) {
  transform: translateX(150px);
}

.top-btn-link-flex [data-aos="slide-btn"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(odd) {
      transform: translateY(150px);
  }

  .top-btn-link-flex [data-aos="slide-btn"]:nth-of-type(even) {
    transform: translateY(150px);
  }

  .top-btn-link-flex [data-aos="slide-btn"].aos-animate {
      transform: translateY(0);
  }
}


/*---------------　top-sns--------------*/

.top-sns {
  padding: 50px 20px 0;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}
.top-sns a:hover {
  opacity: 0.8;
}
.top-sns-inner {
  margin: 0 auto;
  padding: 10px;
  border: 8px solid #c21500;
  border-image: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  border-image-slice: 1;
}
.top-sns p:first-child {
  margin-bottom: 10px;
}
.top-sns p {
  line-height: 1.4;
}
.top-sns img {
  width: 60px;
  height: auto;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .top-sns {
    padding: 90px 30px 0;
  }
  .top-sns-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    padding: 20px;
  }
  .top-sns a {
    display: inline-block;
    width: 500px;
  }
  .top-sns p:first-child {
    margin-right: 30px;
  }
}

.top-sns [data-aos="slide-btn"] {
  opacity: 0;
  transition-property: transform, opacity;
}
.top-sns [data-aos="slide-btn"].aos-animate {
  opacity: 1;
}
.top-sns [data-aos="slide-btn"] {
  transform: translateX(150px);
}
.top-sns [data-aos="slide-btn"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .top-sns [data-aos="slide-btn"] {
      transform: translateY(150px);
  }
  .top-sns [data-aos="slide-btn"].aos-animate {
      transform: translateY(0);
  }
}



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

.head-img-service {
  background: url(../images/service/head-img-service.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}
.service h2 {
  margin-bottom: 15px;
}
.service-subttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0a0;
  line-height: 1.6;
}
.service-plan img {
  width: 100%;
}

.service-rent {
  margin-top: 20px;
  background-color: #eee;
  padding: 10px;
}
.service-rent dl {
  margin-top: 10px;
}
.service-rent li {
  list-style: disc inside;
  padding-left: 1rem;
  text-indent: -1rem;
}
.service-rent p:first-child {
  font-size: 20px;
  font-weight: bold;
  color: #0a0;
  border-left: 5px solid #0a0;
  padding-left: 7px;
  line-height: 1;
  margin-bottom: 12px;
}
.service-rent p+p {
  font-weight: bold;
}

.service-sistem ol {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
}
.service-sistem ol li {
  position: relative;
  line-height: 1.5em;
  padding: 10px 10px 10px 45px;
  margin-bottom: 20px;
  background-color: #eee;
}
.service-sistem ol li:last-child {
  margin-bottom: 0;
}
.service-sistem ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #0a0;
  color: white;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 10px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align:center;
  /*以下 上下中央寄せのため*/
  top: 20px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.service-sistem ol ul {
  margin: 10px 0;
}
.service-sistem ol ul li {
  margin-bottom: 0;
  list-style: disc inside;
  padding: 0;
}
.service-sistem ol ul li:before {
  display: none;
}

.service-after img {
  width: 100%;
}
.service-after2 {
  margin-top: 20px;
  background-color: #eee;
  padding: 10px;
}
.service-after2 ul {
  margin-top: 10px;
}
.service-after2 li {
  list-style: disc inside;
  padding-left: 1rem;
  text-indent: -1rem;
}
.service-after2 p:first-child {
  font-size: 18px;
  font-weight: bold;
  color: #0a0;
  border-left: 5px solid #0a0;
  padding-left: 7px;
  line-height: 1.2;
  margin-bottom: 12px;
}

@media (min-width: 480px) {
  .service h2 {
    margin-bottom: 30px;
  }
  .head-img-service {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .service-subttl {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .service-plan div {
    float: left;
    width: 48%;
  }
  .service-plan div+p {
    float: right;
    width: 48%;
  }
  .service-rent {
    padding: 20px;
  }
  .service-rent dt {
    float: left;
    clear: left;
  }
  .service-rent dd {
    padding-left: 7em;
  }
  .service-sistem ol li {
    position: relative;
    padding: 20px 20px 20px 45px;
  }
  .service-sistem ol li:before {
    top: 30px;
  }
  .service-after div {
    float: left;
    width: 48%;
  }
  .service-after div+p {
    float: right;
    width: 48%;
  }
  .service-after2 {
    padding: 20px;
  }
  .service-after2 p:first-child {
    font-size: 20px;
  }
}



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

.head-img-company {
  background: url(../images/company/head-img-company.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}
.head-img-results {
  background: url(../images/company/head-img-results.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}
.company-ttl {
  font-size: 26px;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.dl-company-address dt {
  font-weight: normal;
}
.dl-company-address dd:last-child {
  margin-bottom: 0;
}
.table-company {
  width: 100%;
  padding: 0;
  border-spacing: 0;
  border-collapse: collapse;
}
.table-company th {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  text-align: left;
}
.table-company td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
.access-map {
  white-space: nowrap;
}
@media (min-width: 480px) {
  .head-img-company {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .head-img-results {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .table-company {
    width: 100%;
    padding: 0 6%;
    border-spacing: 0;
  }
  .dl-company-address dd {
    position: relative;
  }
  .access-map {
    position: absolute;
    top: 0;
    right: 3em;
  }
}
@media (max-width: 950px) and (min-width: 660px) {
  .access-map {
    position: absolute;
    top: 1.42857143em;
    right: 1em;
    white-space: nowrap;
  }
}
@media (max-width: 660px) and (min-width: 481px) {
  .access-map {
    position: static;
    white-space: nowrap;
    display:block;
    text-align: right;
    padding-right: 1rem;
  }
}



/*---------------*/
/*      flow     */
/*---------------*/

.head-img-flow {
  background: url(../images/flow/head-img-flow.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}
.flow section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.dl-flow dt {
  font-size: 18px;
  font-weight: bold;
  color: #0a0;
  position: relative;
  line-height: 1.5em;
  padding: 10px 10px 10px 40px;
  counter-increment: number;
  box-sizing: border-box;
}
.dl-flow dt:before {
  position: absolute;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #0a0;
  color: white;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 10px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align:center;
  /*以下 上下中央寄せのため*/
  top: 23px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#rental,#sell {
  counter-reset: number 4;
}

.dl-flow dd {
  background-color: #eee;
  padding: 10px;
  margin-bottom: 20px;
}
.dl-flow dd:last-child {
  margin-bottom: 0;
}
.dl-flow dd span {
  display: block;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  box-sizing: border-box;
 }
.flow1-tel a,.flow1-form a {
  color: #fff;
  display: block;
  padding: 10px;
  background-color: #0a0;
}
.flow1-tel a:hover,.flow1-form a:hover {
  opacity: 0.7;
}
.flow-select {
  margin: 20px auto 0;
}
.flow-select p {
  float: left;
  width: 48%;
  text-align: center;
  font-size: 16px;
}
.flow-select p:last-child {
  float: right;
}
.flow-select a {
  display: block;
  width: 100%;
  padding: 15px 0;
  background-color: #0a0;
  color: #fff;
  cursor: pointer;
}
.flow-select a:hover {
  opacity: 0.8;
}
.flow-select-down {
  text-align: center;
  color: #0a0;
  margin-top: 20px;
}

@media (min-width: 480px) {
  .head-img-flow {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .flow section h2 {
    margin-bottom: 30px;
  }
  .dl-flow dt {
    font-size: 20px;
    clear: left;
    float: left;
    width: 29%;
    padding: 20px 20px 20px 40px;
  }
  .dl-flow dt:before {
    top: 35px;
  }
  .dl-flow dd {
    margin-left: 30%;
    padding: 20px;
  }
  .dl-flow dd span {
    width: 48%;
    text-align: center;
    margin-top: 20px;
  }
  .flow1-tel {
    float: left;
  }
  .flow1-form {
    float: right;
  }
  .flow-select p {
    font-size: 20px;
  }
}



/*-------------*/
/*   results   */
/*-------------*/

.results section {
  margin-top: 30px;
}
.results table {
  border-collapse: collapse;
  margin-top: 10px;
  width: 100%;
}
.results th, .results td {
  padding: 10px 2px;
  border: 1px solid #ccc;
  line-height: 1.4;
}
.results table th {
  background-color: #eee;
  font-weight: normal;
}
.results table th.motouke {
  width: 17%
}
.results table th.kojimeisyo {
  width: 39%
}
.results table th.nonyubasyo {
  width: 12.5%
}
.results table th.kisyu {
  width: 21%
}
.results table th.nounyubi {
  width: 10.5%
}
@media (min-width: 480px) {
  .results section {
    margin-top: 70px;
  }
  .results th, .results td {
    padding: 15px;
    line-height: 1.5;
  }
}



/*-------------*/
/*      qa     */
/*-------------*/

.head-img-qa {
  background: url(../images/qa/head-img-qa.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}

.dl-qa {
  margin-top: 40px;
  margin-bottom: 30px;
}
.dl-qa dt {
  background-color: #eee;
  padding: 20px;
  margin-bottom: 10px;
}
.dl-qa dt:hover {
  cursor: pointer;
  background-color: #eef9ee;
}
.dl-qa dd {
  padding: 20px 55px;
  margin-bottom: 10px;
}
.fa-qa {
  color: #0a0;
  vertical-align: sub;
  margin-right: 10px;
}

@media (min-width: 480px) {
  .head-img-qa {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .dl-qa {
    margin-top: 70px;
    margin-bottom: 30px;
  }
}



/*------------------*/
/*      privacy     */
/*------------------*/

.pp-ttl-sub {
  max-width: 800px;
  margin: 0 auto;
}
.dl-pp {
  margin-top: 40px;
}
.dl-pp li {
  list-style: disc inside;
  padding-left: 1rem;
  text-indent: -1rem;
}
.dl-pp p {
  margin-bottom: 20px;
}
.dl-pp dt {
  background-color: #eee;
  padding: 20px;
  margin-bottom: 10px;
}
.dl-pp dd {
  padding: 20px;
  margin-bottom: 10px;
}
.dl-pp dd:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.dl-pp-inner dt {
  font-weight: bold;
  background-color: #fff;
  padding: 0px;
  margin-bottom: 0px;
}
.dl-pp-inner dd {
  padding: 20px 20px 20px 40px;
}
.dl-pp-inner dd:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
p.pp-contact {
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .dl-pp {
    margin-top: 70px;
  }
  .dl-pp-inner dd {
    padding: 20px 40px;
  }
}



/*-------------------*/
/*      business     */
/*-------------------*/

.head-img-business {
  background: url(../images/business/head-img-business.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}
.business h2 {
  margin-bottom: 10px;
  color: #0a0;
}
.business-float-box img, .business-float-box2 img {
  width: 100%;
}
.business-float-box div ul, .business-float-box div ol, .business-float-box dl {
  margin-top: 20px;
  margin-bottom: 20px;
}
.business-float-box div ul {
  margin-left: 0.5rem;
}
.business-float-box dl ul {
  margin-top: 0;
}
.business-float-box div ul li {
  list-style: disc inside;
  text-indent: -1rem;
  padding-left: 1rem;
}
.business-float-box div ol {
  margin-left: 0.5rem;
}
.business-float-box dl ol {
  margin-top: 0;
}
.business-float-box div ol li {
  list-style: decimal inside;
  text-indent: -1rem;
  padding-left: 1rem;
}
.business-float-box dt {
  font-weight: bold;
  color: #0a0;
}
.business-float-box dd {
  margin-bottom: 10px;
}
.business-float-box2 {
  margin-top: 20px;
  background-color: #eee;
  padding: 10px;
}
.business-float-box2 table {
  border-collapse: collapse;
  width: 100%;
}
.business-float-box2 th {
  background-color: #eef9ee;
  border: 1px solid #ccc;
  padding: 3px;
  font-weight: normal;
}
.business-float-box2 td {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 3px;
}
.business-float-box2>div p:first-child {
  font-size: 18px;
}
.business-float-box2 table+p {
  margin-top: 10px;
}
.table-wide {
  margin-top: 0;
  overflow: scroll;
}
.business-float-left {
  margin-bottom: 10px;
}

.muddy section+section {
  margin-top: 50px;
}
.neutralization section+section {
  margin-top: 50px;
}

@media (min-width: 480px) {
  .head-img-business {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .business-float-left {
    float: left;
    width: 48%;
  }
  .business-float-right {
    float: right;
    width: 48%;
  }
  .business-float-box2 th {
    padding: 8px;
  }
  .business-float-box2 td {
    padding: 8px;
  }
  .business-float-box2 {
    padding: 30px;
  }
  .business-float-right img {
    margin-top: 5px;
  }
  .table-wide {
    margin-top: 30px;
    overflow: auto;
  }
}



/*-------------------*/
/*      contact      */
/*-------------------*/

.head-img-contact {
  background: url(../images/contact/head-img-contact.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}
.contact h2 {
  margin-bottom: 15px;
}
.contact-tel {
  font-size: 30px;
  font-weight: bold;
}
form {
  margin-top: 30px;
}
.form-top {
  text-align: right;
}
form p,form dl {
  margin-top: 30px;
}
form dl dt {
  font-weight: bold;
  margin-top: 10px;
}
form div {
  margin-bottom: 15px;
}
form label {
  padding-top: 5px;
  font-weight: bold;
}
form input, form select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form select {
  width: auto;
}
.form-horizon {
  display: inline-block;
  width: 5em;
}
.form-radio {
  margin-bottom: 0;
}
.form-radio span {
  padding-right: 10px;
}
.form-radio div input {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
}
form textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form-btn {
  text-align: center;
}
.form-btn input {
  display: inline-block;
  width: auto;
  color: #fff;
}.form-btn input:hover {
  opacity: 0.7;
}
.btn-reset {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-submit {
  background-color: #0a0;
  border-color: #090;
  margin-right: 20px;
}
.form-term input {
  margin-bottom: 5px;
}

@media (min-width: 480px) {
  .head-img-contact {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .contact h2 {
    margin-bottom: 30px;
  }
  .contact {
    max-width: 960px;
    margin: 0 auto;
  }
  form {
    margin: 30px auto 0;
  }
  form dl {
    margin-top: 50px;
  }
  form label {
    display: block;
    float: left;
    width: 25%;
  }
  .form-radio span {
    padding-right: 30px;
  }
  .form-term input {
    margin-bottom: 0;
  }
  form input, form select {
    width: 72%;
  }
  form textarea {
    width: 72%;
  }
  form select {
    width: auto;
  }
}



.thanks {
  margin-top: 40px;
}

@media (min-width: 480px) {
  .thanks {
    margin-top: 70px;
    margin-bottom: 120px;
  }
}



/*--------------------------------------------*/
/*      recruit  (contactと共通あり)      */
/*--------------------------------------------*/

.head-img-recruit {
  background: url(../images/recruit/head-img-recruit.jpg) center center no-repeat;
  background-size: cover;
  height: 180px;
}
.recruit h1 {
  margin-top: -10px;
  margin-bottom: -20px;
}
.recruit section {
  margin-bottom: 60px;
}
.recruit h2 {
  margin-bottom: 20px;
  background-color: #eee;
  padding: 5px;
}
.recruit h3 {
  color: #0a0;
  font-size: 26px;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
  margin-top: 30px;
  margin-bottom: 20px;
}
.oubo-youkou dt {
  font-weight: bold;
}
.oubo-youkou dd {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ccc;
}
.oubo-youkou dd .oubo-youkou-ul-inner li {
  list-style: disc;
  margin-left: 2em;
}
.recruit .career-contents {
  margin-top: 70px;
}
.recruit section span {
  margin-right: 5px;
}
.graduate-docu {
  margin: 15px 0 15px 30px;
}
.entry-btn {
  display: block;
  padding: 20px;
  background-color: #0a0;
  color: #fff;
  border-radius: 5px;
  width: 200px;
  text-align: center;
  margin: 30px auto;
}
.entry-btn:hover {
  color: #fff;
  opacity: 0.7;
}


@media (min-width: 480px) {
  .head-img-recruit {
    background-size:contain;
    height: 0;
    padding-top: 20.68%;
  }
  .recruit h1 {
    margin-bottom: -10px;
  }
  .recruit h2 {
    margin-bottom: 40px;
  }
  .recruit {
    max-width: 960px;
    margin: 0 auto;
  }
  .oubo-youkou dt {
    clear: left;
    float: left;
    padding-left: 1em;
  }
  .oubo-youkou dd {
    padding-left: 280px;
  }
}



/*--------------------------------------------*/
/*      recruit career (contactと共通あり)      */
/*--------------------------------------------*/

.career h2 {
  margin-top: -20px;
  margin-bottom: 15px;
}
.career h3 {
  background-color: #0a0;
  color: #fff;
  text-align: center;
  padding: 5px;
  margin-top: 30px;
  margin-bottom: 30px;
}


@media (min-width: 480px) {
  .career h2 {
    margin-bottom: 30px;
  }
  .career {
    max-width: 960px;
    margin: 0 auto;
  }
  .graduate-year {
    float: left;
    margin-right: 30px;
  }
}