﻿@charset "UTF-8";

body {
  margin: 0;
  font-family: 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
}

.container {
  display: flex;
  justify-content: space-between;
}

h2 {
  margin: 30px auto;
  padding-bottom: 20px;
  color: #ff7777;
  text-align: center;
  width: 75%;
  max-width: 1000px;
  font-size: 40px;
  font-weight: normal;
  border-bottom: 2px solid #ff7777;
}

.br::before {
  content: "\A";
  white-space: pre;
}

/* ヘッダー */

.header {
  margin: 0;
}

.header .background {
  width: 100%;
  height: 500px;
  background-image: url(../img/header.jpg);
  background-size: cover;
  background-position: 80% 40%;
}

.header .background .container {
  max-width: 1280px;
  margin: 0 auto;
}

.header .background .logo {
  display: block;
  margin: 50px 0 0 50px;
  width: 302px;
  height: 99px;
  background-image: url(../img/logo.png);
  background-size: cover;
}

.header .background .contact {
  display: block;
  margin: -5px 10px 0px 0px;
  padding: 20px 20px 15px;
  width: auto;
  height: 70px;
  background-color: #ffa4a6;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  text-align: center;
  font-size: 30px;
  font-weight: 100;
  color: #fff;
  line-height: 35px;
  font-family: 'Yu Gothic', sans-serif;
}

.header .contact div {
  line-height: 30px;
}

.header .text1 {
  margin: 100px auto 0px;
  padding-left: 50px;
  font-size: 58px;
  color: #ff7777;
  letter-spacing: 8px;
  font-family: 'Yu Gothic', sans-serif;
  max-width: 1280px;
}

.header .text1 span:nth-child(1) {
  font-size: 1.3em;
}

.header .text1 span:nth-child(2) {
  font-size: 1.0em;
}

.header .text1 span:nth-child(3) {
  font-size: 1.2em;
}

.header .text2 {
  margin: -20px auto 0;
  padding-left: 50px;
  font-size: 36px;
  color: #000;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  max-width: 1280px;
}

.header .text2 span:nth-child(1) {
  color: #9ad75b;
  font-size: 1.6em;
}

.header .text2 span:nth-child(2) {
  margin: 0 2px;
  color: #9ad75b;
  font-size: 1.1em;
}

.header .text2 span:nth-child(3) {
  color: #f59496;
  font-size: 1.6em;
}

.header .mobile-background {
  display: none;
}

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

  .header .background {
    height: 350px;
    background-position: 80% 30%;
    position: relative;
    padding-top: 1px;
  }

  .header .background .logo {
    margin: 30px 30px;
  }

  .header .background .contact {
    position: absolute;
    top: 0%;
    right: 0px;
    font-size: 26px;
  }

  .header .text1 {
    margin: -20px 0 0 30px;
    padding: 0;
    font-size: 42px;
  }

  .header .text2 {
    margin: -10px 0 0 30px;
    padding: 0;
    font-size: 26px;
  }

}

@media (max-width: 767px) {

  .header .background {
    display: none;
  }

  .header .mobile-background {
    display: block;
    width: 100%;
    height: 60px;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    border
  }

  .header .mobile-background .container {
    flex-direction: row;
  }

  .header .mobile-background .logo {
    margin: 7px 0 0 0;
    width: 48.75px;
    height: 46.75px;
    background-image: url(../img/logo-small.png);
    background-size: cover;
  }
  
  .header .mobile-background .text {
    margin: 5px 0 0;
    width: 60px;
    font-size: 16px;
    text-align: center;
  }

  .header .mobile-background .contact {
    margin: 0;
    padding: 18px 0 0;
    width: 55%;
    max-width: 200px;
    height: 42px;
    background-color: rgba(220, 20, 20, 0.5);
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-family: 'Yu Gothic', sans-serif;
  }

  .header .menubtn {
    float: left;
    margin: 4px 0 0;
    padding: 20px 30px;
    border: none;
    background-color: #fff;
    position: relative;
  }

  .header .menubtn .bars {
    display: inline-block;
    width: 35px;
    height: 5px;
    border-radius: 5px;
    background-color: #4b864e;
    position: absolute;
    top: 10px;
    left: 12px;
    transition: all 0.5s;
  }

  .header .menubtn .bars:nth-child(2) {
    top: 22px;
  }

  .header .menubtn .bars:nth-child(3) {
    top: 34px;
  }

  .open .menubtn .bars:nth-of-type(1) {
    top: 2px;
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
  }

  .open .menubtn .bars:nth-of-type(2) {
    opacity: 0;
  }

  .open .menubtn .bars:nth-of-type(3) {
    top: 42px;
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
  }

  .menubtn:hover: {
    background-color: #ddd;
  }

  .menubtn:focus {
    outline: none;
  }

  .menubtn span {
    display: inline-block;
    text-indent: -9999px;
  }

}

/* ナビ */

.menu {
  margin: 0px auto;
  padding: 0;
  width: auto;
  max-width: 1280px;
}

.menu ul {
  display: flex;
  margin: 0;
  padding: 0px 0px;
  width: 100%;
  list-style: none;
  background-color: #ffdddd;
  text-align: center;
}

.menu li {
  display: block;
  position: relative;
  margin: 0px;
  padding: 0px 0px;
  width: 20%;
  box-sizing: border-box;
}

.menu li:before {
  position: absolute;
  content: '';
  top: 10%;
  left: 0;
  height: 80%;
  border-left: 2px solid #ffb0b0;
}

.menu li:first-child:before {
  border: 0px;
}

.menu li a {
  display: block;
  margin: 0px;
  padding: 20px 0;
  color: #ff777c;
  font-size: 20px;
  text-decoration: none;
  transition: 0.25s;
}

.menu li a:hover {
  background-color: rgba(203, 42, 55, 0.5);
  color: #fff;
}

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

  .menu li a {
    font-size: 18px;
  }

}

@media (max-width: 767px) {

  .menu {
    display: none;
    margin: 0px auto;
    width: 100%;
    position: relative;
    top: -5px;
    left: 0px;
  }

  .menu ul {
    display: block;
    margin-top: 5px;
    padding: 0px;
    background-color: rgba(230, 173, 179, 0.75);
  }

  .menu li {
    display: block;
    margin: 0px auto;
    padding: 0px;
    width: 100%;
    height: 65px;
    border-top: 1px solid #f00;
  }

  .menu li:nth-child(1) {
    border-top: none;
  }

  .menu li a {
    display: block;
    margin: 0px auto;
    padding: 20px 0px 0px;
    height: 45px;
    color: #000000;
    font-weight: bold;
  }

}

/* トップページ */

.index {
  display: block;
  margin: 0px auto;
  padding: 0px;
  max-width: 1280px;
}

.index .container .gaiyou {
  display: block;
  margin: 30px 15px 0px 30px;
  width: 50%;
  height: auto;
  padding-bottom: 30px;
  background-color: #f07d83;
  border-radius: 20px;
}

.index .container .gaiyou:nth-child(2) {
  margin: 30px 30px 0px 15px;
  background-color: #95d84f;
}

.index .gaiyou .msg {
  display: block;
  width: 90%;
  margin: 20px 0px -10px 30px;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
  font-size: 46px;
  color: #fff;
  letter-spacing: 8px;
}

.index .gaiyou .msg span:nth-child(2) {
  font-size: 30px;
  letter-spacing: 4px;
  vertical-align: middle;
}

.index .gaiyou .submsg {
  display: block;
  margin: 10px 30px;
  padding: 0px;
  width: 90%;
  font-size: 22px;
  color: #fff;
  font-family: 'HG丸ｺﾞｼｯｸM-PRO', sans-serif;
  line-height: 30px;
}

.index .gaiyou .submsg div {
  margin-top: 90px;
}

.index .link {
  margin: 30px auto;
}

.index .link a {
  display: block;
  border-radius: 8px;
  background-color: rgba(236, 143, 141, 1.0);
  box-shadow: 0px 15px 20px 0px rgba(255, 255, 255, 0.6) inset;
  margin: 0 auto;
  padding: 10px 0 0 0;
  width: 95%;
  height: 50px;
  font-size: 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  letter-spacing: 15px;
  transition: 0.25s;
  font-family: 'Courier New', 'MS PGothic', sans-serif;
}

.index .link a:hover {
  opacity: 0.8;
}

.index .work {
  background-color: #ffe4e4; 
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding-bottom: 1px;
  position: relative;
}

.index .work .bg-img {
  margin: 0;
  width: 156px;
  height: 149.6px;
  background-image: url(../img/logo-small.png);
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 35%;
  right: 50px;
}

.index .work .msg {
  display: block;
  margin: -20px auto 0px;
  text-align: center;
  font-size: 100px;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  font-family: 'Bradley Hand ITC', 'Georgia', sans-serif;
}

.index .work .msg span {
  font-size: 150px;
}

.index .work .submsg{
  display: block;
  margin: 0 auto 40px;
  width: 50%;
  font-size: 15px;
  color: #ff8890;
}

.index .work .link a {
  margin: 0 auto;
  width: 60%;
  letter-spacing: 1px;
}

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

  .index .container {
    flex-direction: column;
  }

  .index .container .gaiyou {
    margin: 30px auto 0px;
    width: 98%;
    height: auto;
  }

  .index .container .gaiyou:nth-child(2) {
    margin: 15px auto 0;
  }

  .index .gaiyou .msg {
    margin: 30px auto 0px;
    font-size: 34px;
    width: 80%;
  }

  .index .gaiyou .msg span:nth-child(2) {
    font-size: 24px;
    letter-spacing: 4px;
    vertical-align: middle;
  }

  .index .gaiyou .submsg {
    margin: 0 auto 10px;
    padding: 0px;
    width: 80%;
    font-size: 20px;
    line-height: 30px;
  }

  .index .gaiyou .submsg div {
    margin-top: 40px;
  }

  .index .link {
    margin: 30px auto;
  }

  .index .work {
    margin: 0;
    padding-bottom: 1px;
  }

  .index .work .bg-img {
    width: 97.5px;
    height: 94.5px;
    top: 40%;
    right: 30px;
  }

  .index .work .msg {
    margin: 0px auto;
    font-size: 90px;
  }

  .index .work .msg span {
    font-size: 135px;
  }
  
  .index .work .submsg{
    margin: 0 auto 30px;
    width: 61%;
    font-size: 14px;
  }

  .index .work .link a {
    font-size: 26px;
  }
  
}

@media (max-width: 767px) {

  .index .container {
    flex-direction: column;
  }

  .index .container .gaiyou {
    margin: 100px auto 0;
    width: 90%;
    height: auto;
  }

  .index .container .gaiyou:nth-child(2) {
    margin: 15px auto 0;
  }

  .index .gaiyou .msg {
    margin: 15px 0px 0px 20px;
    font-size: 28px;
    text-align: start;
    text-align-last: auto;
  }

  .index .gaiyou .msg span:nth-child(2) {
    font-size: 18px;
  }

  .index .gaiyou .submsg {
    width: 90%;
    margin: 0 0 0 20px;
    font-size: 16px;
    line-height: 30px;
  }

  .index .gaiyou .submsg div {
    margin-top: 40px;
  }

  .index .link {
    margin: 30px auto;
  }
  
  .index .link a {
    margin: 30px auto;
    height: 40px;
    font-size: 26px;
    letter-spacing: 5px;
  }

  .index .work {
    margin: 0;
  }

  .index .work .bg-img {
    display: none;
  }

  .index .work .msg {
    width: 90%;
    margin: 0px auto 10px;
    padding-top: 20px;
    font-size: 60px;
    line-height: 70px;
  }

  .index .work .msg span {
    font-size: 80px;
  }
  
  .index .work .submsg{
    margin-bottom: 30px;
    font-size: 14px;
    width: 64%;
  }

  .index .work .link a {
    padding: 13px 0 0px;
    width: 80%;
    height: 37px;
    font-size: 16px;
    line-height: 25px;
    min-width: 280px;
  }

}

/* フッター */

.footer {
  background-color: #ffed61;
  margin: 30px 0 0 0;
  padding-top: 1px;
  width: 100%;
  height: 400px;
  position: relative;
}

.footer .logo2 {
  display: block;
  margin: 30px auto 50px;
  width: 302px;
  height: 99px;
  background-image: url(../img/logo.png);
  background-size: cover;
}

.footer ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  display: block;
  font-size: 16px;
  padding: 10px 20px;
}

.footer li a {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  background-color: #cb2a37;
  width: 120px;
  text-align: center;
  padding: 10px 20px;
  color: #fff;
  transition: 0.25s;
}

.footer li a:hover {
  background-color: rgba(203, 42, 55, 0.7)
}

.footer #pageTop {
  display: none;
  margin: 0;
  position: fixed;
  top: 85%;
  right: 5%;
  width: 120px;
  height: 40px;
  background-color: #33aadd;
  border-radius: 10px;
  box-shadow: 0 3px 0 #203741;
}

#pageTop a {
  display: block;
  width: 120px;
  height: 40px;
}

#pageTop span {
  display: inline-block;
  margin: 10px 0 0 20px;
  width: 100px;
  height: 30px;
  color: #fff;
  vertical-align: bottom;
}

#pageTop:hover {
  background-color: #2266ff;
}

.copyright {
  display: block;
  margin-top: 80px;
  text-align: center;
}

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

  .footer li a {
    width: 90px;
    padding: 10px 10px;
    font-size: 14px;
  }

  .footer #pageTop {
    width: 120px;
    height: 40px;
  }

  #pageTop a {
    width: 120px;
    height: 40px;
  }

}

@media (max-width: 767px) {

  .footer {
    height: 630px;
  }

  .footer .logo2 {
    width: 272px;
    height: 90px;
  }

  .footer ul {
    display: block;
    margin: 0;
  }

  .footer li {
    display: block;
    margin: 0 auto 20px;
    padding: 0;
  }

  .footer li a {
    margin: 0 auto;
    width: 70%;
    padding: 10px 0px;
  }

  .footer #pageTop {
    width: 120px;
    height: 40px;
  }

  #pageTop a {
    width: 120px;
    height: 40px;
  }

}

/* 会社概要 */

.company {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
}

.company .subtitle {
  color: #ff7777;
  font-size: 40px;
  text-align: center;
}

.company .rinen {
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

.company dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  line-height: 50px;
  margin: 80px auto 30px;
  font-size: 20px;
}

.company dl dt {
  width: 7%;
  letter-spacing: 15px;
  margin-left: 280px;
}

.company dl dd {
  margin-left: 20px;
  width: 60%;
}

.company .container {
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
}

.company .map {
  margin: 0 30px 0 0;
  width: 440px;
  height: 228px;
  background-image: url(../img/map.jpg);
  background-size: cover;
}

.company .office {
  margin: 0;
  width: 331px;
  height: 232px;
  background-image: url(../img/office.jpg);
  background-size: cover;
}


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

  .company dl {
    width: 90%;
    font-size: 18px;
  }

  .company dl dt {
    width: 70px;
    margin-left: 110px;
  }

  .company dl dd {
    width: 60%;
    min-width: 450px;
  }

  .company .map {
    width: 385px;
    height: 199.5px;
  }

  .company .office {
    width: 294px;
    height: 206px;
  }

}

@media(max-width: 767px) {

  .company {
    margin: 120px auto 0;
  }

  .company .subtitle {
    font-size: 30px;
  }

  .company .rinen {
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    width: 90%;
    margin: 0 auto;
  }

  .company dl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    line-height: 50px;
    margin: 80px auto 30px;
  }

  .company dl dt {
    width: 70%;
    height: 40px;
    margin: 0 auto;
    padding-left: 10px;
    border-left: double 7px #3b3;
    border-bottom: solid 2px #3b3;
  }

  .company dl dt:nth-child(n+9):nth-child(n-13) {
    display: none;
  }

  .company dl dd {
    margin: 0 auto;
    width: 65%;
    font-size: 16px;
  }

  .company dl dd:nth-of-type(4) {
    margin-bottom: 5px;
  }

  .company .map {
    width: 420px;
    height: 228px;
    margin: 0 0 30px 0;
  }

  .company .office {
    width: 404px;
    height: 283px;
  }

  @media(max-width: 450px) {

    .company .map {
      width: 275px;
      height: 142.5px;
      margin: 0 0 30px 0;
    }

    .company .office {
      width: 294px;
      height: 206px;
    }

  }

}

/* サービス内容 */

.service {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
}

.service .midasi {
  margin: 0px 0 50px;
  padding-top: 30px;
  text-align: center;
  font-size: 30px;
}

.service .midasi span {
  font-size: 24px;
}

.service .back {
  width: 100%;
  height: 100%;
  margin: 30px 0;
  background-color: rgba(242, 231, 191, 0.7);
  position: relative;
}

.service .back .container:nth-of-type(2) {
  justify-content: flex-start;
  margin-left: 50px;
  padding-bottom: 150px;
}

.service .back .container:nth-of-type(3) {
  justify-content: flex-start;
  margin-left: 50px;
}

.service .maru {
  width: 200px;
  height: 200px;
  border: solid 5px #7ebd1f;
  border-radius: 100px;
  background-color: #fff;
  margin: 0;
  padding: 0px;
  font-size: 26px;
  text-align: center;
}

.service .maru p {
  margin: 50px auto 0;
  width: 140px;
  height: auto;
  font-size: 36px;
}

.service .maru span {
  font-size: 26px;
}

.service ul {
  margin: 0 0 0 20px;
  list-style: none;
  font-size: 20px;
  line-height: 40px;
  padding-left: 40px;
}

.service ul li {
  margin: 0;
  padding: 0;
  position: relative;
}

.service ul li:before {
  display: block;
  content: '';
  width: 15px;
  height: 15px;
  background: #7ebd1f;
  border-radius: 40px;
  position: absolute;
  top: 12px;
  left: -30px;
}

.service .back .container .uneasiness1 {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url(../img/uneasiness1.png);
  background-size: cover;
  right: 3%;
  top: 15%;
}

.service .back .container .uneasiness2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url(../img/uneasiness2.png);
  background-size: cover;
  right: 5%;
  top: 55%;
}

.service .back .container .house {
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 40%;
  top: 38%;
}

.service .back .container .house1 {
  width: 116px;
  height: 128px;
  background-image: url(../img/house1.png);
  background-size: cover;
}

.service .back .container .house2 {
  width: 120px;
  height: 108px;
  background-image: url(../img/house2.png);
  background-size: cover;
}

.service .back .container .house3 {
  width: 118px;
  height: 106px;
  background-image: url(../img/house3.png);
  background-size: cover;
}

.service .back .container:nth-of-type(4) {
  flex-direction: row;
  justify-content: center;
  margin: 30px 0;
}

.service .heart {
  margin: 0 50px;
  width: 70px;
  height: 120px;
  background-image: url(../img/heart.png);
  background-size: cover;
}

.service .hukidasi {
  font-size: 24px;
  width: 70%;
  padding: 20px 20px 10px;
  border-radius: 40px;
  border: solid 3px #aaa;
  background-color: #fff;
  position: relative;
}

.service .hukidasi:before {
  content: '';
  width: 0px;
  height: 0px;
  border: solid 20px transparent;
  border-right: solid 20px #aaa;
  position: absolute;
  margin-left: -40px;
  top: 35%;
  left: 0%;
}

.service .hukidasi:after {
  content: '';
  width: 0px;
  height: 0px;
  border: solid 20px transparent;
  border-right: solid 20px #fff;
  position: absolute;
  margin-left: -35px;
  top: 35%;
  left: 0%;
}

.service .hukidasi span {
  color: #e773bf;
}

.service > .container {
  flex-direction: row;
}

.service .container .gaiyou {
  display: block;
  margin: 30px 15px 30px;
  position: relative;
  width: 33%;
  height: auto;
  background-color: #f085b3;
  border-radius: 20px;
  padding-bottom: 120px;
}

.service .container .gaiyou:nth-child(2) {
  background-color: #ef8c3e;
}

.service .container .gaiyou:nth-child(3) {
  background-color: #5abf1d;
}

.service .gaiyou .msg {
  display: block;
  width: 90%;
  margin: 20px 20px 0px 20px;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0px;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
}

.service .gaiyou .msg span:nth-child(2) {
  font-size: 24px;
}

.service .gaiyou .submsg {
  display: block;
  margin: 0px 20px 10px 20px;
  padding: 0px;
  width: 90%;
  font-size: 20px;
  color: #fff;
  font-family: 'HG丸ｺﾞｼｯｸM-PRO', sans-serif;
  line-height: 30px;
}

.service .gaiyou .submsg div {
  margin-top: 30px;
}

.service .gaiyou .wheelchair {
  position: absolute;
  width: 131px;
  height: 164px;
  background-image: url(../img/wheelchair.png);
  background-size: cover;
  right: 20px;
  bottom: 30px;
}

.service .gaiyou .talk {
  position: absolute;
  width: 136px;
  height: 102px;
  background-image: url(../img/talk.png);
  background-size: cover;
  right: 20px;
  bottom: 20px;
}

.service .back2 {
  display: block;
  width: 100%;
  max-width: 1280px;
  height: auto;
  padding-bottom: 30px;
  background-color: #ffdddd;
  background-size: cover;
}

.service dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  max-width: 1280px;
  margin: 50px auto 50px;
  padding: 50px 0 0;
  font-size: 20px;
}

.service dl dt {
  width: 10%;
  margin-left: 0px;
}

.service dl dd {
  margin-left: 20px;
  width: 70%;
}

.service dl dd span:nth-of-type(1) {
  font-size: 20px;
  text-align: justify;
}

.service .telephone {
  font-size: 70px;
  text-align: center;
  line-height: 70px;
}

.service .fax {
  font-size: 40px;
  text-align: center;
}

.service .houmon {
  width: 60%;
  font-size: 24px;
  margin: 0 auto;
}

.service .street {
  margin: 20px auto;
  background-image: url(../img/street.png);
  width: 790px;
  height: 93px;
}


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

  .service {
    margin: 0 auto;
  }

  .service .midasi span:nth-child(2) {
    font-size: 24px;
  }

  .service .maru {
    width: 150px;
    height: 150px;
    margin-right: 10px;
  }

  .service .maru p {
    margin: 40px auto 0;
    width: 120px;
    font-size: 28px;
  }

  .service .maru span {
    font-size: 20px;
  }

  .service ul {
    margin: 0 0 0 0px;
    font-size: 18px;
  }

  .service ul li:before {
    top: 12px;
    left: -25px;
  }

  .service .back .container .uneasiness1 {
    width: 100px;
    height: 100px;
    right: 50px;
    top: 18%;
  }

  .service .back .container .uneasiness2 {
    width: 90px;
    height: 100px;
    right: 5%;
    top: 60%;
  }
  
  .service .back .container .house {
    left: 30%;
    top: 39%;
  }

  .service .back .container .house1 {
    width: 103px;
    height: 113px;
  }

  .service .back .container .house2 {
    width: 106px;
    height: 96px;
  }

  .service .back .container .house3 {
    width: 105px;
    height: 94px;
  }

  .service .heart {
    margin: 0 30px;
  }

  .service > .container {
    flex-direction: column;
  }

  .service .container .gaiyou {
    margin: 10px auto;
    width: 90%;
    min-width: 700px;
  }

  .service .container .gaiyou:nth-child(2) {
    padding-bottom: 40px;
  }

  .service .gaiyou .msg {
    margin: 10px 20px 0px 20px;
    font-size: 40px;
  }

  .service .gaiyou .msg span:nth-child(2) {
    font-size: 28px;
  }

  .service .gaiyou .submsg {
    margin: 0px 30px 10px;
    font-size: 22px;
  }

  .service .gaiyou:first-of-type .submsg {
    width: 80%;
  }
  
  .service .gaiyou .wheelchair {
    width: 100px;
    height: 125px;
    right: 40px;
    bottom: 20px;
  }

  .service .gaiyou .talk {
    right: 40px;
    bottom: 20px;
  }

  .service .gaiyou .submsg .br:before {
    content: '';
  }

  .service dl {
    margin: 30px auto;
  }

  .service dl dt {
    margin: 0;
    width: 20%;
  }

  .service dl dd {
    margin: 0;
    width: 60%;
  }

  .service .street {
    width: 632px;
  }

}

@media(max-width: 767px) {

  .service {
    margin: 120px auto 0;
  }

  .service .midasi {
    margin: 0 0 40px;
  }

  .service .back .container:nth-of-type(2) {
    flex-direction: column;
    justify-content: center;
    margin: 0px auto 30px;
    width: 80%;
    padding: 0;
  }

  .service .back .container:nth-of-type(3) {
    flex-direction: column;
    justify-content: center;
    margin: 0 auto 20px;
    width: 80%;
  }

  .service .maru {
    width: 150px;
    height: 150px;
    margin: 0px auto 20px;
  }

  .service .maru p {
    margin: 32px auto 0;
    width: 110px;
    font-size: 30px;
  }

  .service .maru span {
    font-size: 20px;
  }

  .service ul {
    margin: 0px auto;
    padding-left: 10px;
    font-size: 16px;
  }

  .service ul li:before {
    width: 12px;
    height: 12px;
    top: 13px;
    left: -20px;
  }

  .service .back .container .uneasiness1 {
    position: static;
    margin: -120px 0 0 -10px;
    width: 80px;
    height: 80px;
  }

  .service .back .container .uneasiness2 {
    position: static;
    margin: 70px 0px 0 auto;
    width: 80px;
    height: 80px;
  }

  .service .back .container .house {
    position: static;
    margin: 80px auto 0;
    padding-left: 80px;
  }

  .service .back .container .house1 {
    width: 64px;
    height: 71px;
  }

  .service .back .container .house2 {
    width: 66px;
    height: 60px;
  }

  .service .back .container .house3 {
    width: 65px;
    height: 59px;
  }

  .service .heart {
    margin: 0 10px 0 10px;
  }

  .service .hukidasi {
    font-size: 18px;
    width: 55%;
    padding: 20px;
  }

  .service .hukidasi:before {
    top: 50px;
    left: 0%;
  }

  .service .hukidasi:after {
    top: 50px;
    left: 0%;
  }

  .service > .container {
    flex-direction: column;
  }

  .service .container .gaiyou {
    margin: 10px auto;
    width: 90%;
    padding-bottom: 130px;
  }

  .service .container .gaiyou:nth-child(2) {
    padding-bottom: 40px;
  }

  .service .gaiyou .msg {
    margin: 10px 20px 0px 20px;
    font-size: 30px;
  }

  .service .gaiyou .msg span:nth-child(2) {
    font-size: 22px;
  }

  .service .gaiyou .submsg {
    margin: 0px 0px 10px 20px;
    font-size: 22px;
  }

  .service .gaiyou .wheelchair {
    width: 100px;
    height: 125px;
    right: 30px;
    bottom: 10px;
  }

  .service .gaiyou .talk {
    right: 40px;
    bottom: 20px;
  }

  .service .gaiyou .submsg .br:before {
    content: '';
  }

  .service dl {
    width: 100%;
    margin: 30px auto 20px;
    font-size: 18px;
  }

  .service dl dt {
    margin: 0 10px 0 0;
    width: 25%;
  }

  .service dl dd {
    margin: 0;
    width: 55%;
  }

  .service .telephone {
    font-size: 36px;
    line-height: 60px;
  }

  .service .fax {
    font-size: 30px;
  }

  .service .houmon {
    width: 80%;
    font-size: 18px;
    margin: 10px auto 0;
    padding-bottom: 20px;
  }

  .service .street {
    background-image: url(../img/street-small.png);
    width: 300px;
    height: 74px;
  }

}

/* 求人情報 */

.recruit {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
}

.recruit .background {
  display: flex;
  margin: 0;
  width: 100%;
  height: 400px;
  flex-direction: column;
  flex-wrap: wrap;
}

.recruit .msg {
  display: block;
  margin: 0px auto 50px;
  width: 50%;
  padding-top: 20px;
  line-height: 90px;
  font-size: 100px;
  color: #ff8890;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  font-family: 'Bradley Hand ITC', 'Georgia', sans-serif;
}

.recruit .msg span {
  font-size: 120px;
}

.recruit .presidentmessage {
  font-size: 34px;
  color: #dd8833;
  width: 50%;
  font-style: italic;
  text-align: center;
  margin: 0 auto;
  font-family: 'MS PMincho', 'Yu Mincho';
}

.recruit .submsg {
  color: #ff8890;
  margin: 30px 0;
  width: 30%;
  font-size: 18px;
  font-weight: bold;
}

.recruit .submsg span:last-of-type {
  display: block;
  margin-top: 10px;
  margin-right: 30px;
  color: #ffa500;
  font-size: 14px;
  text-align: right;
}

.recruit .logo {
  display: block;
  margin: 100px auto 50px;
  width: 590px;
  height: 195px;
  background-image: url(../img/logo.png);
  background-size: cover;
}

.recruit .youkou {
  margin: 0 auto;
  width: 80%;
}

.recruit .container {
  flex-direction: row;
  justify-content: flex-start;
}

.recruit .mark {
  display: inline-block;
  margin-top: 10px;
  background-image: url(../img/logo-small.png);
  background-size: cover;
  width: 39px;
  height: 37.4px;
}

.recruit .list {
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin: 8px 0 0 10px;
}

.recruit dl {
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto;
  max-width: 1280px;
  line-height: 26px;
  font-size: 18px;
}

.recruit dt {
  width: 15%;
  margin-bottom: 30px;
}

.recruit dd {
  width: 80%;
  margin-bottom: 30px;
}

.recruit .phone {
  font-size: 30px;
  font-weight: bold;
}

.recruit .tantou {
  margin: 15px 0 0;
  font-size: 14px;
}

.recruit .text {
  display: block;
  margin: 20px 0 0 50px;
}

.recruit .oubo {
  color: #ff8890;
  text-align: center;
  font-size: 34px;
  margin: 20px auto;
}

.recruit .arrow {
  display: block;
  width: 0px;
  height: 0px;
  border: solid 100px transparent;
  border-top: solid 60px #ff8890;
  border-bottom: none;
  margin: 0px auto 30px;
}

.recruit .bunner {
  display: block;
  width: 728px;
  height: 90px;
  margin: 0 auto;
}

.recruit .mobile-bunner {
  display: none;
}

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

  .recruit .background {
    height: 350px;
  }

  .recruit .msg {
    font-size: 80px;
  }

  .recruit .msg span {
    font-size: 100px;
  }

  .recruit .presidentmessage {
    font-size: 28px;
  }

  .recruit .submsg {
    font-size: 16px;
  }

  .recruit .submsg span:last-of-type {
    margin: 20px 0 0;
  }

  .recruit .logo {
    width: 454px;
    height: 150px;
  }

  .recruit .youkou {
    width: 90%;
  }

  .recruit dd {
    width: 75%;
  }

}

@media(max-width: 767px) {

  .recruit {
    margin: 120px auto 0;
  }

  .recruit .background {
    height: auto;
    flex-wrap: nowrap;
  }

  .recruit .msg {
    margin: 0px auto 30px;
    width: 100%;
    font-size: 80px;
  }

  .recruit .msg span {
    font-size: 100px;
  }

  .recruit .presidentmessage {
    font-size: 28px;
    margin: 0 auto 50px;
    width: 100%;
  }

  .recruit .submsg {
    margin: 0 auto;
    padding: 0 0 0 50px;
    width: 100%;
    box-sizing: border-box;
    max-width: 300px;
    font-size: 0.95em;
  }

  .recruit .submsg span:last-of-type {
    display: block;
    color: #ffa500;
    text-align: right;
  }

  .recruit .logo {
    width: 302px;
    height: 99px;
  }

  .recruit dl {
    margin: 15px auto 0px;
  }

  .recruit dt {
    min-width: 100px;
    margin-bottom: 20px;
    position: relative;
  }

  .recruit dt:before {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    background: #7ebd1f;
    border-radius: 10px;
    position: absolute;
    top: 6px;
    left: -15px;
  }

  .recruit dd {
    width: 90%;
    margin: 0 auto 30px;
  }

  .recruit .youkou .container:nth-of-type(3) {
    flex-direction: column;
  }

  .recruit .phone {
    font-size: 28px;
  }

  .recruit .tantou {
    margin: 0;
  }

  .recruit .text {
    margin: 20px 0 0 0;
  }

  .recruit .oubo span::before {
    content: "\A";
    white-space: pre;
  }

  .recruit .bunner {
    display: none;
  }
  
  .recruit .mobile-bunner {
    display: block;
    width: 300px;
    height: 250px;
    margin: auto;
  }
  
}

/* お問い合わせ */

.contact {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
}

.contact .container{
  justify-content: center;
  margin: 0 auto;
  width: 95%;
}

.contact iframe {
  width: 50%;
}

.contact #mailformpro {
  justify-content: center;
  width: 50%;
  margin: 0 0 0 30px;
  font-size: 20px;
  background-color: #95d84f;
}

.contact input[type=text]:nth-of-type(1) {
  margin-top: 40px;
}

.contact input[type=text], textarea {
  display: block;
  width: 85%;
  height: 40px;
  margin: 0 auto 20px;
  padding: 10px;
  font-size: 20px;
  font-family: 'Yu Gothic';
}

.contact input[type=radio] {
  display: none;
  width: 18px;
  height: 18px;
}

.contact #mailformpro .radiobutton {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto;
  padding: 0 20px 0 0;
  color: #fff;
  font-size: 16px;
}

.contact #mailformpro label {
  margin: 0px 5px 10px 0;
  padding: 5px;
  color: #999;
  background-color: #fff;
}

.contact #mailformpro label:hover {
  color: #fff;
  background-color: #7edcf1;
}

.contact textarea {
  margin: 20px auto;
  width: 85% !important;
  height: 200px !important;
/*
  width: 85%;
  height: 200px;
*/
}

.contact input[type=submit] {
  display: block;
  width: 150px;
  height: 50px;
  cursor: pointer;
  margin: 40px 35px 0 auto;
  font-size: 18px;
  color: #fff;
  background-color: #ff9b00;
  border: none;
  transition: 0.5s;
  border: solid 2px #fff;
  border-radius: 5px;
}

.contact input[type=submit]:hover {
  background-color: #ff8800;
}

.contact .bunner {
  display: block;
  margin: 50px auto 0;
  width: 728px;
  height; 90px;
}

.contact .mobile-bunner {
  display: none;
}

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

  .contact .container{
    flex-direction: column;
    max-width: 800px;
    width: 85%;
  }

  .contact iframe {
    margin: 0 auto 30px;
    width: 100%;
  }

  .contact #mailformpro {
    width: 100%;
    margin: 0 auto;
  }

  .contact input[type=text], textarea {
    width: 90%;
    height: 30px;
  }

  .contact #mailformpro .radiobutton {
    width: 90%;
  }

  .contact textarea {
    width: 90% !important;
    height: 150px !important;
/*
    width: 90%;
    height: 150px;
*/
  }

  .contact input[type=submit] {
    margin: 15px 40px 15px auto;
  }

}

@media(max-width: 767px) {

  .contact {
    margin: 120px auto 0;
  }

  .contact .container{
    flex-direction: column;
    width: 85%;
  }

  .contact iframe {
    margin: 0 auto 30px;
    width: 100%;
    height: 400px;
  }

  .contact #mailformpro {
    width: 100%;
    margin: 0 auto;
  }

  .contact input[type=text], textarea {
    width: 80%;
    height: 30px;
  }

  .contact #mailformpro .radiobutton {
    width: 80%;
  }

  .contact textarea {
/*
    width: 80% !important;
    height: 150px !important;
*/
    width: 80%;
    height: 150px;
  }

  .contact input[type=submit] {
    margin: 20px 40px 20px auto;
  }

  .contact .bunner {
    display: none;
  }

  .contact .mobile-bunner {
    display: block;
    margin: 50px auto 0;
    width: 300px;
    height: 250px;
  }
  
}

/* お問い合わせ完了 */

.thanks {
  margin: 0 auto;
  max-width: 1280px;
}

.thanks .midashi {
  margin: 50px;
  text-align: center;
  font-size: 30px;
}

.thanks .container {
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
  font-size: 18px;
}

.thanks .container .msg {
  margin: 0 0 20px 0;
}

.thanks ul {
  margin: 0 0 30px 0;
  padding-left: 30px;
  width: 90%;
}

.thanks ul li {
  margin: 30px 0;
}

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

  .thanks .container {
    font-size: 18px;
  }

}

@media(max-width: 767px) {

  .thanks .midashi {
    margin: 120px 0 50px 0;
  }

  .thanks .container {
    font-size: 16px;
  }

}