@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=RocknRoll+One&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique+Soft&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  min-height: 100vh;
  padding: 70px 0 22px;
  color: #424242;
}

@media only screen and (max-width: 800px) and (min-width: 300px) {
  body {
    padding: 50px 0 22px;
  }
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* a */
ul {
  list-style: none;
}

table {
  border-spacing: 0;
}

/* ============================== ▼▼▼ ヘッダー ▼▼▼ ============================== */
header {
  display: flex;
  height: 70px;
  width: 100%;
  align-items: center;
  padding: 0 15px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  border-bottom: 1px solid #e8e8e8;
  /* h1 */
  /* nav */
}
header h1 {
  height: 50px;
  /* a */
}
header h1 a img {
  width: auto;
  height: 100%;
  margin-right: 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header h1 {
    height: 35px;
  }
}
header input, header label {
  display: none;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header {
    /* label */
    /* input:checked + label */
  }
  header label {
    display: block;
    width: 35px;
    height: 20px;
    position: relative;
    margin-left: auto;
    /* span */
  }
  header label:hover {
    cursor: pointer;
  }
  header label span {
    display: block;
    width: 100%;
    height: 2px;
    background: #4bcde2;
    position: absolute;
    border-radius: 1px;
    transition: all 0.4s;
  }
  header label span:nth-of-type(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  header label span:last-of-type {
    bottom: 0;
    left: 0;
  }
  header input:checked + label span:first-of-type {
    transform: translate(-2px, 4px) rotate(-45deg);
    width: 15px;
  }
  header input:checked + label span:last-of-type {
    transform: translate(-2px, -4px) rotate(45deg);
    width: 15px;
  }
}
header nav {
  margin-left: auto;
  /* ul.mainNavi */
}
header nav ul.mainNavi {
  display: flex;
  align-items: center;
  background: #fff;
  /* li.mainNaviList */
}
header nav ul.mainNavi li.mainNaviList {
  /* a */
  /* &:last-of-type */
  /* &.companyList */
}
header nav ul.mainNavi li.mainNaviList a {
  color: #4bcde2;
  font-size: 1.7rem;
  font-weight: bold;
  display: block;
  height: 70px;
  line-height: 70px;
  padding: 0 18px;
}
header nav ul.mainNavi li.mainNaviList a span {
  opacity: 0.5;
}
header nav ul.mainNavi li.mainNaviList a:hover {
  opacity: 1;
  background: #edf7f9;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList a:hover {
    opacity: 0.8;
    background: linear-gradient(to right, #94d6ff, #ffbfe4);
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList a {
    color: #fff;
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0;
    background: linear-gradient(to right, #94d6ff, #ffbfe4);
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList ~ li.mainNaviList {
    margin: 0;
    border-top: 1px solid #fff;
  }
}
header nav ul.mainNavi li.mainNaviList:last-of-type {
  /* a */
}
header nav ul.mainNavi li.mainNaviList:last-of-type a {
  display: inline-block;
  background: #4bcde2;
  color: #fff;
  padding: 0 1em;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  margin-left: 15px;
}
header nav ul.mainNavi li.mainNaviList:last-of-type a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList:last-of-type a {
    display: block;
    background: linear-gradient(to right, #94d6ff, #ffbfe4);
    padding: 0;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    margin-left: 0px;
  }
}
header nav ul.mainNavi li.mainNaviList.companyList {
  position: relative;
  /* ul.companyNavi */
}
header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  display: none;
  width: 100%;
  /* li */
}
header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi li {
  font-weight: normal;
  /* a */
}
header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi li a {
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(204, 244, 255, 0.8);
  font-size: 1.4rem;
}
header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi li a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi li a {
    width: 100%;
    background: #ecdeff;
  }
}
header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi li ~ li {
  border-top: 1px solid #fff;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi {
    /* li */
  }
  header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi li {
    width: 50%;
    border-top: 1px solid #fff;
  }
  header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi li + li {
    border-left: 1px solid #fff;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList.companyList ul.companyNavi {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList.companyList {
    position: static;
    height: auto;
  }
}
header nav ul.mainNavi li.mainNaviList.companyList:hover ul.companyNavi {
  display: block;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList.companyList:hover ul.companyNavi {
    display: flex;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav {
    position: absolute;
    width: 100%;
    top: 50px;
    left: -1000px;
    opacity: 0;
    transition: all 0.5s;
  }
  header input:checked ~ nav {
    left: 0;
    opacity: 1;
  }
}

/* header */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header {
    height: 50px;
  }
}
/* ============================== ▲▲▲ ヘッダー ▲▲▲ ============================== */
/* ============================== ▼▼▼ トップページ ▼▼▼ ============================== */
/* -------------------- ▽▽▽ キャッチコピー ▽▽▽ -------------------- */
.catchCopy {
  text-align: center;
  padding: 45px 2.5%;
}
.catchCopy p {
  display: inline-block;
  background: linear-gradient(180deg, #94d6ff, #ffbfe4);
  background: linear-gradient(-90deg, #94d6ff, #ffbfe4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 4.5rem;
  line-height: 1.5;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .catchCopy p {
    font-size: 3rem;
  }
}

/* catchCopy */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .catchCopy {
    text-align: left;
    padding: 30px 2.5%;
  }
}
/* -------------------- △△△ キャッチコピー △△△ -------------------- */
/* -------------------- ▽▽▽ 仮(リニューアル中) ▽▽▽ -------------------- */
main#provisional {
  background: url(images/top/hero_pc.jpg) no-repeat center/cover;
  height: calc(100vh - 92px);
  position: relative;
}
main#provisional p {
  font-size: 1.6rem;
  width: 20em;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.6;
  padding: 20px 0;
}

/* main#provisional */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#provisional {
    height: calc(100vh - 72px);
  }
}
/* -------------------- △△△ 仮(リニューアル中) △△△ -------------------- */
main#top {
  /* -------------------- ▽▽▽ 画像と紹介文 ▽▽▽ -------------------- */
  /* .image */
  /* -------------------- △△△ 画像と紹介文 △△△ -------------------- */
  /* -------------------- ▽▽▽ 01〜03 ▽▽▽ -------------------- */
  /* .point */
  /* -------------------- △△△ 01〜03 △△△ -------------------- */
  /* -------------------- ▽▽▽ 問い合わせ ▽▽▽ -------------------- */
  /* .contact */
  /* -------------------- △△△ 問い合わせ △△△ -------------------- */
}
main#top .image {
  background: url(images/top/hero_pc.jpg) no-repeat center/cover;
  aspect-ratio: 1/0.521;
  position: relative;
  /* div */
}
main#top .image div {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 50px 0;
  /* p */
}
main#top .image div p {
  font-size: 1.7rem;
  line-height: 1.7;
}
main#top .image div p:first-of-type {
  font-weight: bold;
}
main#top .image div p ~ p {
  margin-top: 1.5em;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .image div p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .image div {
    padding: 30px 2.5%;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .image {
    background: url(images/top/hero_sp.jpg) no-repeat center/cover;
    aspect-ratio: 1/1.172;
  }
}
main#top .point {
  /* .pointWrap */
}
main#top .point .pointWrap {
  padding: 70px 0;
  /* article */
  /* &:first-of-type */
  /* &:nth-of-type(2) */
  /* &:nth-of-type(3) */
}
main#top .point .pointWrap article {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* .text */
  /* .pointImage */
}
main#top .point .pointWrap article .text {
  width: 550px;
  /* strong */
}
main#top .point .pointWrap article .text h1 {
  height: 40px;
  line-height: 40px;
  padding-left: 70px;
  font-size: 3rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap article .text h1 {
    height: 35px;
    line-height: 35px;
    padding-left: 50px;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
main#top .point .pointWrap article .text p:first-of-type {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 30px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap article .text p:first-of-type {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
main#top .point .pointWrap article .text p:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#top .point .pointWrap article .text strong {
  display: block;
  font-size: 1.7rem;
  background: linear-gradient(to top, #fff 47%, #4bcde2 48%, #4bcde2 52%, #fff 53%);
  line-height: 1.5;
  margin-bottom: 10px;
}
main#top .point .pointWrap article .text strong span {
  display: inline-block;
  background: #fff;
  padding-right: 0.5em;
}
main#top .point .pointWrap article .text a {
  display: block;
  margin: 30px auto 0;
  width: 10em;
  height: 40px;
  line-height: 40px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  border-radius: 10px;
  background: linear-gradient(to right, #94d6ff, #ffbfe4);
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap article .text a {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap article .text {
    width: 100%;
  }
}
main#top .point .pointWrap article .pointImage {
  width: 600px;
}
main#top .point .pointWrap article .pointImage img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap article .pointImage {
    width: 100%;
    max-width: 640px;
    margin: 30px auto 0;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap article {
    width: 95%;
    display: block;
  }
}
main#top .point .pointWrap:first-of-type {
  /* div.text */
}
main#top .point .pointWrap:first-of-type div.text {
  margin-right: 50px;
}
main#top .point .pointWrap:first-of-type div.text h1 {
  background: url(images/top/01.svg) no-repeat left center/auto 40px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap:first-of-type div.text div.text {
    margin-right: 0px;
  }
  main#top .point .pointWrap:first-of-type div.text h1 {
    background-size: 35px;
  }
}
main#top .point .pointWrap:nth-of-type(2) {
  background: #edf7f9;
}
main#top .point .pointWrap:nth-of-type(2) article {
  flex-direction: row-reverse;
  /* div.text */
}
main#top .point .pointWrap:nth-of-type(2) article div.text {
  margin-left: 50px;
  /* strong */
}
main#top .point .pointWrap:nth-of-type(2) article div.text strong {
  background: linear-gradient(to top, #edf7f9 47%, #4bcde2 48%, #4bcde2 52%, #edf7f9 53%);
}
main#top .point .pointWrap:nth-of-type(2) article div.text strong span {
  background: #edf7f9;
}
main#top .point .pointWrap:nth-of-type(2) article div.text h1 {
  background: url(images/top/02.svg) no-repeat left center/auto 40px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap:nth-of-type(2) article div.text h1 {
    background-size: 35px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap:nth-of-type(2) article div.text {
    margin-left: 0px;
  }
}
main#top .point .pointWrap:nth-of-type(3) {
  /* div.text */
}
main#top .point .pointWrap:nth-of-type(3) div.text {
  margin-right: 50px;
}
main#top .point .pointWrap:nth-of-type(3) div.text h1 {
  background: url(images/top/03.svg) no-repeat left center/auto 40px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap:nth-of-type(3) div.text div.text {
    margin-right: 0px;
  }
  main#top .point .pointWrap:nth-of-type(3) div.text h1 {
    background-size: 35px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap {
    padding: 50px 0;
  }
}
main#top .contact {
  padding: 70px 0;
  background: #fffaff;
  /* h1 */
  /* ul */
  /* .cleaning_link */
}
main#top .contact h1 {
  text-align: center;
}
main#top .contact h1 p:first-of-type {
  display: inline-block;
  background: linear-gradient(180deg, #94d6ff, #ffbfe4);
  background: linear-gradient(-90deg, #94d6ff, #ffbfe4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact h1 p:first-of-type {
    font-size: 4rem;
  }
}
main#top .contact h1 p:last-of-type {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 5px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact h1 p:last-of-type {
    font-size: 2.1rem;
  }
}
main#top .contact ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  /* li */
}
main#top .contact ul li {
  width: 380px;
  height: 80px;
  padding: 10px;
  background: linear-gradient(to right, #94d6ff, #ffbfe4);
  /* a */
  /* &:first-child */
}
main#top .contact ul li a {
  display: block;
  width: 100%;
  height: 60px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #fff;
}
main#top .contact ul li a span {
  display: inline-block;
  padding-left: 40px;
  height: 60px;
  line-height: 60px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact ul li a span {
    padding-left: 30px;
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact ul li a {
    font-size: 1.7rem;
    height: 50px;
  }
}
main#top .contact ul li:first-child {
  margin-right: 50px;
}
main#top .contact ul li:first-child span {
  background: url(images/top/mail.svg) no-repeat center left/30px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact ul li:first-child span {
    background-size: 25px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact ul li:first-child {
    margin: 0 auto 20px;
  }
}
main#top .contact ul li:last-child span {
  background: url(images/top/tel.svg) no-repeat center left/30px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact ul li:last-child span {
    background-size: 25px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact ul li {
    margin: 0 auto;
    max-width: 95%;
    height: 70px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact ul {
    display: block;
  }
}
main#top .contact .cleaning_link {
  display: block;
  width: 380px;
  height: 80px;
  padding: 10px;
  text-align: center;
  background: linear-gradient(to right, #c1eac8, #f3eda8);
  margin: 30px auto 0;
  color: #109d00;
}
main#top .contact .cleaning_link span {
  font-size: 1.6rem;
  line-height: 1.5;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-weight: bold;
  border: 1px solid #fff;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact .cleaning_link span {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact .cleaning_link {
    max-width: 95%;
    height: 70px;
    margin-top: 20px;
  }
}

/* main#top */
/* ============================== ▲▲▲ トップページ ▲▲▲ ============================== */
/* ============================== ▼▼▼ 中ページ ▼▼▼ ============================== */
main#in {
  /* -------------------- ▽▽▽ タイトル ▽▽▽ -------------------- */
  /* h1 */
  /* -------------------- △△△ タイトル △△△ -------------------- */
  /* -------------------- ▽▽▽ ぱんくず ▽▽▽ -------------------- */
  /* ul */
  /* -------------------- △△△ ぱんくず △△△ -------------------- */
  /* -------------------- ▽▽▽ リード文 ▽▽▽ -------------------- */
  /* .lead */
  /* -------------------- △△△ リード文 △△△ -------------------- */
  /* -------------------- ▽▽▽ コンテンツ部分共通 ▽▽▽ -------------------- */
  /* section */
  /* -------------------- △△△ コンテンツ部分共通 △△△ -------------------- */
  /* ------------------------------ ▽▽▽ サービス一覧 ▽▽▽ ------------------------------ */
  /* &.service */
  /* ------------------------------ △△△ サービス一覧 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ 会社情報 ▽▽▽ ------------------------------ */
  /* &.company */
  /* ------------------------------ △△△ 会社情報 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ お知らせ一覧 ▽▽▽ ------------------------------ */
  /* &.news */
  /* ------------------------------ △△△ お知らせ一覧 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ お知らせ内容 ▽▽▽ ------------------------------ */
  /* &.news_in */
  /* ------------------------------ △△△ お知らせ内容 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ アクセス ▽▽▽ ------------------------------ */
  /* &.access */
  /* ------------------------------ △△△ アクセス △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ 問い合わせ ▽▽▽ ------------------------------ */
  /* &.contact */
  /* ------------------------------ △△△ 問い合わせ △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ 巡回清掃事業 ▽▽▽ ------------------------------ */
  /* &.cleaning */
  /* ------------------------------ △△△ 巡回清掃事業 △△△ ------------------------------ */
}
main#in h1.pageTitle {
  aspect-ratio: 1/0.182;
  position: relative;
  background: url(images/header.jpg) no-repeat center/cover;
}
main#in h1.pageTitle p {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #fff;
  text-shadow: #0c90af 1px 0 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in h1.pageTitle p {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in h1.pageTitle {
    aspect-ratio: 1/0.391;
    background-image: url(images/header-sp.jpg);
  }
}
main#in .pankuzu {
  height: 35px;
  background: #4bcde2;
  display: flex;
  align-items: center;
  padding: 0 20px;
  /* li */
}
main#in .pankuzu li {
  font-size: 1.5rem;
}
main#in .pankuzu li a {
  color: #fff;
  text-decoration: underline;
}
main#in .pankuzu li p {
  margin-left: 17px;
  padding-left: 27px;
  background: url(images/pankuzu.svg) no-repeat center left/13px;
  color: #fff;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in .pankuzu {
    padding: 0 2%;
  }
}
main#in .lead {
  width: 95%;
  max-width: 1200px;
  margin: 70px auto;
}
main#in .lead h1 {
  display: inline-block;
  background: linear-gradient(180deg, #94d6ff, #ffbfe4);
  background: linear-gradient(-90deg, #94d6ff, #ffbfe4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in .lead h1 {
    font-size: 2.4rem;
  }
}
main#in .lead p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in .lead {
    margin: 50px auto;
  }
}
main#in section {
  padding: 70px 0;
}
main#in section h2 {
  font-size: 1.8rem;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 5px 0 5px 10px;
  border-left: 10px solid #94d6ff;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, #94d6ff, #ffbfe4) 1;
     border-image: linear-gradient(to right, #94d6ff, #ffbfe4) 1;
  line-height: 1.5;
}
main#in section article {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in section article {
    display: block;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in section {
    padding: 50px 0;
  }
}
main#in.service {
  /* section */
}
main#in.service section {
  /* .text, dd */
  /* .text */
  /* dl */
  /* .image */
}
main#in.service section h2 span {
  font-size: 2.4rem;
  font-family: "Zen Antique Soft", serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 0px 0px 3px rgba(255, 215, 244, 0.8), 0px 0px 5px rgba(255, 234, 39, 0.5);
  color: #f498d5;
}
main#in.service section strong.strong {
  background: linear-gradient(90deg, #0cc1c1, #50abef);
  background: linear-gradient(-180deg, #0cc1c1, #50abef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
  font-size: 1.8rem;
}
main#in.service section .text, main#in.service section dd {
  /* h3 */
}
main#in.service section .text h3, main#in.service section dd h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 5px;
}
main#in.service section .text h3 span, main#in.service section dd h3 span {
  background: linear-gradient(90deg, #0cc1c1, #50abef);
  background: linear-gradient(-180deg, #0cc1c1, #50abef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main#in.service section .text h3::before, main#in.service section dd h3::before {
  content: "●";
  color: #70eced;
  position: absolute;
  left: 0;
}
main#in.service section .text h3 ~ h3, main#in.service section dd h3 ~ h3 {
  margin-top: 1.5em;
}
main#in.service section .text {
  width: 65%;
  /* p */
  /* h4 */
  /* ul */
}
main#in.service section .text p {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.service section .text p ~ p {
  margin-top: 1.5em;
}
main#in.service section .text h3 + p {
  margin-top: 0;
}
main#in.service section .text h4 {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #4bcde2;
  margin: 1em 0 3px;
  padding-left: 1.2em;
  position: relative;
}
main#in.service section .text h4::before {
  content: "▼";
  color: #ffc425;
  opacity: 0.5;
  position: absolute;
  left: 0;
}
main#in.service section .text ul {
  padding: 10px;
  border: 1px solid #4bcde2;
  border-radius: 10px;
  background: #fff;
  /* li */
}
main#in.service section .text ul li {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-right: 5px;
  position: relative;
  padding-left: 1.1em;
}
main#in.service section .text ul li::before {
  content: "●";
  color: #baeef4;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section .text {
    width: 100%;
  }
}
main#in.service section dl {
  width: 65%;
  /* dt */
  /* dd */
}
main#in.service section dl dt {
  font-size: 1.8rem;
  line-height: 1.5;
  background: url(images/service/square.svg) no-repeat left center/20px;
  padding-left: 27px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 1px solid #424242;
}
main#in.service section dl dt ~ dt {
  margin-top: 25px;
}
main#in.service section dl dd {
  font-size: 1.6rem;
  line-height: 1.5;
  /* p */
}
main#in.service section dl dd p {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.service section dl dd p ~ p {
  margin-top: 1.5em;
}
main#in.service section dl dd p span.under {
  border-bottom: 1px solid #50abef;
  padding-bottom: 2px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section dl {
    width: 100%;
  }
}
main#in.service section .image {
  width: 32%;
  margin-left: 3%;
  /* img */
}
main#in.service section .image img {
  width: 100%;
  height: auto;
}
main#in.service section .image img.sp {
  display: none;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section .image img.pc {
    display: none;
  }
  main#in.service section .image img.sp {
    display: inline-block;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section .image {
    width: 100%;
    margin: 20px 0 0;
  }
}
main#in.service section:nth-of-type(2n) {
  background: #edf7f9;
}
main#in.company {
  /* section */
}
main#in.company section {
  /* h2.companyTitle */
  /* .image */
  /* ---------- ▽▽▽ 企業理念 ▽▽▽ ---------- */
  /* &.guide */
  /* ---------- △△△ 企業理念 △△△ ---------- */
  /* ---------- ▽▽▽ 会社情報 ▽▽▽ ---------- */
  /* &.purpose */
  /* ---------- △△△ 会社情報 △△△ ---------- */
  /* ---------- ▽▽▽ 会社概要 ▽▽▽ ---------- */
  /* &.overview */
  /* ---------- △△△ 会社概要 △△△ ---------- */
  /* ---------- ▽▽▽ スタッフ紹介 ▽▽▽ ---------- */
  /* ul */
  /* ---------- △△△ スタッフ紹介 △△△ ---------- */
  /* ---------- ▽▽▽ オフィス ▽▽▽ ---------- */
  /* &.office */
  /* ---------- △△△ オフィス △△△ ---------- */
}
main#in.company section h2.companyTitle {
  border-left: none;
  padding-left: 0;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
main#in.company section h2.companyTitle span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  margin-left: 0.5em;
  color: #4bcde2;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section h2.companyTitle {
    font-size: 2rem;
  }
}
main#in.company section .text {
  width: 70%;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section .text {
    width: 100%;
  }
}
main#in.company section .image {
  width: 27%;
}
main#in.company section .image img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section .image {
    width: 100%;
    max-width: 300px;
  }
}
main#in.company section.guide {
  /* article */
}
main#in.company section.guide article {
  background: url(images/company/back_guide.jpg) no-repeat left bottom/auto 70%;
  /* .text */
}
main#in.company section.guide article .text {
  /* h1 */
  /* p */
  /* h3 */
}
main#in.company section.guide article .text h1 {
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, #94d6ff, #ffbfe4) 1;
     border-image: linear-gradient(to right, #94d6ff, #ffbfe4) 1;
  padding-bottom: 7px;
  margin-bottom: 20px;
}
main#in.company section.guide article .text h1 strong {
  display: block;
  font-size: 2.2rem;
}
main#in.company section.guide article .text h1 span {
  display: block;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  opacity: 0.3;
  margin-top: 7px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.guide article .text h1 strong {
    font-size: 2rem;
  }
  main#in.company section.guide article .text h1 span {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.guide article .text h1 {
    width: 100%;
  }
}
main#in.company section.guide article .text p {
  font-size: 1.6rem;
  line-height: 1.5;
  /* &.dash */
}
main#in.company section.guide article .text p ~ p {
  margin-top: 1.5em;
}
main#in.company section.guide article .text p strong {
  display: inline-block;
  background: linear-gradient(180deg, #94d6ff, #ffbfe4);
  background: linear-gradient(-90deg, #94d6ff, #ffbfe4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.guide article .text p strong {
    font-size: 2rem;
  }
}
main#in.company section.guide article .text p.dash {
  font-weight: bold;
  font-size: 1.8rem;
  background: url(images/company/line.jpg) no-repeat right center/100% 1px;
  text-shadow: 2px 2px 0px rgba(75, 205, 226, 0.4);
}
main#in.company section.guide article .text p.dash span {
  display: inline-block;
  padding-right: 0.5em;
  background: #fff;
}
main#in.company section.guide article .text h3 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 1.5em;
  background: url(images/service/square.svg) no-repeat left center/16px;
  padding-left: 23px;
}
main#in.company section.guide article .text h3 + p {
  margin-top: 0;
}
main#in.company section.guide article .text h3:first-of-type {
  margin-top: 2.5em;
}
main#in.company section.guide article .image {
  margin-left: 3%;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.guide article .image {
    margin: 20px auto 0;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.guide article {
    background: none;
  }
}
main#in.company section.purpose {
  background: #edf7f9;
  /* article */
}
main#in.company section.purpose article {
  flex-direction: row-reverse;
  background: url(images/company/back_purpose.png) no-repeat right bottom/auto 90%;
  /* .text */
}
main#in.company section.purpose article .text {
  /* p */
}
main#in.company section.purpose article .text p {
  font-size: 1.6rem;
  line-height: 1.5;
  /* span */
}
main#in.company section.purpose article .text p ~ p {
  margin-top: 1.5em;
}
main#in.company section.purpose article .text p strong {
  display: inline-block;
  background: linear-gradient(180deg, #94d6ff, #ffbfe4);
  background: linear-gradient(-90deg, #94d6ff, #ffbfe4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.purpose article .text p strong {
    font-size: 2rem;
  }
}
main#in.company section.purpose article .text p span {
  display: inline-block;
  font-weight: bold;
  mix-blend-mode: multiply;
  font-size: 1.9rem;
  line-height: 1.7;
}
main#in.company section.purpose article .text p span.no1 {
  background: linear-gradient(180deg, #dbf200, #63d676);
  background: linear-gradient(-90deg, #dbf200, #63d676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  font-style: normal;
}
main#in.company section.purpose article .text p span.no2 {
  background: linear-gradient(180deg, #ffaeec, #ff9343);
  background: linear-gradient(-90deg, #ffaeec, #ff9343);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
}
main#in.company section.purpose article .text p span.no3 {
  background: linear-gradient(180deg, #48e9ed, #50abef);
  background: linear-gradient(-90deg, #48e9ed, #50abef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
main#in.company section.purpose article .image {
  margin-right: 3%;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.purpose article .image {
    margin: 20px auto 0;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.purpose article {
    background: none;
  }
}
main#in.company section.overview {
  /* article */
}
main#in.company section.overview article {
  align-items: flex-start;
  /* table */
}
main#in.company section.overview article table {
  width: 70%;
  /* tr:first-of-type */
  /* tr:last-of-type */
}
main#in.company section.overview article table th {
  font-size: 1.6rem;
  line-height: 1.5;
  width: 9em;
  border-bottom: 1px dotted #4bcde2;
  padding: 10px 0;
  text-align: left;
}
main#in.company section.overview article table td {
  font-size: 1.6rem;
  line-height: 1.5;
  border-bottom: 1px dotted #4bcde2;
  padding: 10px 0;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.overview article table th {
    display: block;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: none;
  }
  main#in.company section.overview article table td {
    display: block;
    width: 100%;
    padding-top: 0;
  }
}
main#in.company section.overview article table tr:first-of-type th, main#in.company section.overview article table tr:first-of-type td {
  padding-top: 0;
}
main#in.company section.overview article table tr:last-of-type th, main#in.company section.overview article table tr:last-of-type td {
  padding-bottom: 0;
  border-bottom: none;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.overview article table tr:last-of-type th {
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.overview article table {
    width: 100%;
  }
}
main#in.company section.overview article .image {
  margin-left: 3%;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.overview article .image {
    margin: 20px auto 0;
  }
}
main#in.company section ul {
  width: 95%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  /* li */
}
main#in.company section ul li {
  width: 18%;
  /* small */
}
main#in.company section ul li img {
  width: 100%;
  height: auto;
}
main#in.company section ul li strong {
  display: block;
  font-size: 1.6rem;
  margin: 5px 0;
}
main#in.company section ul li small {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  padding: 3px 7px;
}
main#in.company section ul li small.cameraman {
  background: #e2d7ba;
}
main#in.company section ul li small.designer {
  background: #d5bae0;
}
main#in.company section ul li ~ li {
  margin-left: 2.5%;
}
main#in.company section ul li:nth-of-type(6n) {
  margin-left: 0;
}
main#in.company section ul li:nth-of-type(n+6) {
  margin-top: 15px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section ul li ~ li {
    margin-left: 4%;
  }
  main#in.company section ul li:nth-of-type(3n) {
    margin-left: 0;
  }
  main#in.company section ul li:nth-of-type(n+3) {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section ul li {
    width: 48%;
  }
}
main#in.company section.office {
  background: #edf7f9;
  /* article */
}
main#in.company section.office article {
  align-items: flex-start;
  flex-direction: row-reverse;
  /* .text */
}
main#in.company section.office article .text {
  width: 60%;
}
main#in.company section.office article .text dl {
  margin-bottom: 30px;
  /* dt */
  /* dd */
}
main#in.company section.office article .text dl dt {
  font-weight: bold;
  color: #4bcde2;
  font-size: 1.7rem;
  margin-bottom: 5px;
}
main#in.company section.office article .text dl dt ~ dt {
  margin-top: 1em;
}
main#in.company section.office article .text dl dd {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.company section.office article .text dl dd a {
  color: #424242;
}
main#in.company section.office article .text p {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.office article .text {
    width: 100%;
  }
}
main#in.company section.office article .image {
  width: 37%;
  margin-right: 3%;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.office article .image {
    width: 100%;
    margin: 20px auto 0;
  }
}
main#in.company section.office .map {
  width: 95%;
  max-width: 1200px;
  margin: 30px auto 0;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.office .map {
    width: 100%;
  }
}
main#in.company section.office iframe {
  width: 100%;
  aspect-ratio: 1/0.3;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.office iframe {
    aspect-ratio: 1/0.6;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.office {
    padding-bottom: 0;
  }
}
main#in.news {
  /* section */
}
main#in.news section {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  /* ul */
}
main#in.news section ul {
  /* li */
}
main#in.news section ul li {
  display: flex;
  border-top: 1px solid #4bcde2;
  padding: 20px 0;
  align-items: center;
  /* p */
}
main#in.news section ul li p {
  font-size: 1.6rem;
  line-height: 1.5;
  /* &.cate */
  /* &.title */
}
main#in.news section ul li p.date {
  width: 7em;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news section ul li p.date {
    width: 100%;
  }
}
main#in.news section ul li p.cate {
  width: 8em;
  /* span */
}
main#in.news section ul li p.cate span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  padding: 5px 7px;
  background: #4bcde2;
}
main#in.news section ul li p.cate span.oshirase {
  background: #b3cdf2;
}
main#in.news section ul li p.cate span.shigotojouhou {
  background: #e2b0d8;
}
main#in.news section ul li p.cate span.cate3 {
  background: #b1ddbc;
}
main#in.news section ul li p.cate span.cate4 {
  background: #e5d8b1;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news section ul li p.cate span {
    display: inline-block;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news section ul li p.cate {
    width: 100%;
    padding: 3px 0;
  }
}
main#in.news section ul li p.title {
  width: calc(100% - 15em);
  padding-left: 2em;
}
main#in.news section ul li p.title a {
  color: #424242;
  text-decoration: underline;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news section ul li p.title {
    width: 100%;
    padding: 0;
  }
}
main#in.news section ul li:last-of-type {
  border-bottom: 1px solid #4bcde2;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news section ul li {
    display: block;
  }
}
main#in.news_in {
  /* section */
}
main#in.news_in section {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  /* .date_cate */
  /* .newsContent */
}
main#in.news_in section h2 {
  width: 100%;
}
main#in.news_in section .date_cate {
  /* span */
}
main#in.news_in section .date_cate small {
  opacity: 0.7;
  font-size: 1.5rem;
}
main#in.news_in section .date_cate span {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  padding: 5px 7px;
  background: #4bcde2;
  margin-left: 7px;
}
main#in.news_in section .date_cate span.cate1 {
  background: #b3cdf2;
}
main#in.news_in section .date_cate span.cate2 {
  background: #e2b0d8;
}
main#in.news_in section .date_cate span.cate3 {
  background: #b1ddbc;
}
main#in.news_in section .date_cate span.cate4 {
  background: #e5d8b1;
}
main#in.news_in section .newsContent {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.news_in section .newsContent p {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.news_in section .newsContent img {
  max-width: 100%;
  height: auto;
}
main#in.access {
  /* .frame */
  /* ul.information */
}
main#in.access .frame {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
main#in.access .frame iframe {
  width: 100%;
  aspect-ratio: 1/0.4;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.access .frame iframe {
    aspect-ratio: 1/0.6;
  }
}
main#in.access ul.information {
  display: flex;
  width: 95%;
  max-width: 1200px;
  margin: 50px auto 0;
  /* li */
}
main#in.access ul.information li {
  width: 48%;
  background: #edf7f9;
  padding: 20px;
  border-radius: 10px;
  /* table */
  /* &:last-of-type */
}
main#in.access ul.information li p {
  font-size: 1.8rem;
  height: 20px;
  line-height: 20px;
  font-weight: bold;
  padding-left: 25px;
  background: url(images/service/square.svg) no-repeat center left/20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.access ul.information li p {
    font-size: 1.6rem;
    height: 18px;
    line-height: 18px;
    padding-left: 23px;
    background-size: 18px;
  }
}
main#in.access ul.information li table {
  width: 100%;
}
main#in.access ul.information li table th {
  color: #4bcde2;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  vertical-align: top;
}
main#in.access ul.information li table td {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.access ul.information li table {
    /* tr ~ tr */
  }
  main#in.access ul.information li table th {
    display: block;
    width: 100%;
  }
  main#in.access ul.information li table td {
    display: block;
    width: 100%;
  }
  main#in.access ul.information li table tr ~ tr th {
    margin-top: 5px;
  }
}
main#in.access ul.information li:first-of-type th {
  width: 4em;
}
main#in.access ul.information li:last-of-type {
  margin-left: 4%;
}
main#in.access ul.information li:last-of-type th {
  width: 10em;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.access ul.information li:last-of-type {
    margin: 10px 0 0;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.access ul.information li {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.access ul.information {
    display: block;
    margin-top: 20px;
  }
}
main#in.contact {
  /* .contactWrap */
  /* ---------- ▽▽▽ 巡回清掃事業用 ▽▽▽ ---------- */
  /* &.blue */
  /* ---------- △△△ 巡回清掃事業用 △△△ ---------- */
}
main#in.contact h2 ~ h2 {
  margin-top: 50px;
}
main#in.contact .contactWrap {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  /* table */
  /* button */
  /* table.formTableSubmit */
  /* .submitBtn */
}
main#in.contact .contactWrap p {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.contact .contactWrap a.tel {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 3.2em;
  color: #424242;
}
main#in.contact .contactWrap table.formTable {
  margin-top: 30px;
  width: 100%;
  /* th */
  /* td */
}
main#in.contact .contactWrap table.formTable th {
  font-size: 1.6rem;
  text-align: left;
  width: 11em;
}
main#in.contact .contactWrap table.formTable th span {
  display: inline-block;
  font-size: 1.2rem;
  background: #f969c6;
  padding: 3px 6px;
  border-radius: 5px;
  margin-left: 3px;
  color: #fff;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTable th {
    display: block;
    width: 100%;
  }
}
main#in.contact .contactWrap table.formTable td {
  /* input */
}
main#in.contact .contactWrap table.formTable td input, main#in.contact .contactWrap table.formTable td textarea {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background: #ededed;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.contact .contactWrap table.formTable td input {
  padding: 0 3px;
  height: 30px;
}
main#in.contact .contactWrap table.formTable td input.name {
  width: 60%;
}
main#in.contact .contactWrap table.formTable td input.email, main#in.contact .contactWrap table.formTable td input.title {
  width: 80%;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTable td input.name, main#in.contact .contactWrap table.formTable td input.email, main#in.contact .contactWrap table.formTable td input.title {
    width: 100%;
  }
}
main#in.contact .contactWrap table.formTable td textarea {
  resize: none;
  width: 100%;
  height: 10em;
  padding: 3px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTable td textarea {
    height: 20em;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTable td {
    display: block;
    width: 100%;
    padding-top: 5px;
  }
}
main#in.contact .contactWrap table.formTable tr ~ tr th, main#in.contact .contactWrap table.formTable tr ~ tr td {
  padding-top: 15px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTable tr ~ tr td {
    padding-top: 5px;
  }
}
main#in.contact .contactWrap button {
  display: block;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(to right, #94d6ff, #ffbfe4);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  width: 150px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  margin: 30px auto 0;
  border-radius: 10px;
}
main#in.contact .contactWrap button:hover {
  opacity: 0.8;
  cursor: pointer;
}
main#in.contact .contactWrap table.formTableSubmit {
  margin-top: 30px;
  width: 100%;
  /* tr:last-of-type */
}
main#in.contact .contactWrap table.formTableSubmit th {
  border-top: 1px solid #4bcde2;
  padding: 10px 0;
  width: 12em;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTableSubmit th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
main#in.contact .contactWrap table.formTableSubmit td {
  border-top: 1px solid #4bcde2;
  padding: 10px 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTableSubmit td {
    display: block;
    width: 100%;
    padding-top: 0;
    border-top: none;
  }
}
main#in.contact .contactWrap table.formTableSubmit tr:last-of-type th, main#in.contact .contactWrap table.formTableSubmit tr:last-of-type td {
  border-bottom: 1px solid #4bcde2;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact .contactWrap table.formTableSubmit tr:last-of-type th {
    border-bottom: none;
  }
}
main#in.contact .contactWrap .submitBtn {
  margin-top: 30px;
  text-align: center;
  /* input */
}
main#in.contact .contactWrap .submitBtn input {
  display: inline-block;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(to right, #94d6ff, #ffbfe4);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  width: 9em;
  text-align: center;
  height: 40px;
  line-height: 40px;
}
main#in.contact .contactWrap .submitBtn input + input {
  margin-left: 10px;
}
main#in.contact .contactWrap .submitBtn input:hover {
  opacity: 0.8;
  cursor: pointer;
}
main#in.contact .contactWrap p.center {
  text-align: center;
}
main#in.contact .contactWrap .errorContents {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 30px 0;
}
main#in.contact.blue {
  /* -------------------- ▽▽▽ タイトル ▽▽▽ -------------------- */
  /* h1 */
  /* -------------------- △△△ タイトル △△△ -------------------- */
  /* -------------------- ▽▽▽ ぱんくず ▽▽▽ -------------------- */
  /* ul */
  /* -------------------- △△△ ぱんくず △△△ -------------------- */
  /* -------------------- ▽▽▽ メインエリア ▽▽▽ -------------------- */
  /* section */
  /* -------------------- △△△ メインエリア △△△ -------------------- */
}
main#in.contact.blue h1.pageTitle {
  background: url(images/cleaning/header.jpg) no-repeat center/cover;
}
main#in.contact.blue h1.pageTitle p {
  text-shadow: #109d00 1px 0 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact.blue h1.pageTitle {
    background-image: url(images/cleaning/header-sp.jpg);
  }
}
main#in.contact.blue .pankuzu {
  background: #85da8f;
  /* li */
}
main#in.contact.blue .pankuzu li {
  font-size: 1.5rem;
}
main#in.contact.blue .pankuzu li p {
  background: url(images/cleaning/pankuzu.svg) no-repeat center left/13px;
}
main#in.contact.blue section {
  /* table.formTableSubmit */
  /* .submitBtn */
}
main#in.contact.blue section h2 {
  border-left: 10px solid #85da8f;
  -o-border-image: linear-gradient(to right, #85da8f, #e7ffc5) 1;
     border-image: linear-gradient(to right, #85da8f, #e7ffc5) 1;
}
main#in.contact.blue section button {
  background: linear-gradient(to right, #85da8f, #cff697);
}
main#in.contact.blue section table.formTableSubmit {
  /* tr:last-of-type */
}
main#in.contact.blue section table.formTableSubmit th {
  border-top: 1px solid #85da8f;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact.blue section table.formTableSubmit th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
main#in.contact.blue section table.formTableSubmit td {
  border-top: 1px solid #85da8f;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact.blue section table.formTableSubmit td {
    display: block;
    width: 100%;
    padding-top: 0;
    border-top: none;
  }
}
main#in.contact.blue section table.formTableSubmit tr:last-of-type th, main#in.contact.blue section table.formTableSubmit tr:last-of-type td {
  border-bottom: 1px solid #85da8f;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact.blue section table.formTableSubmit tr:last-of-type th {
    border-bottom: none;
  }
}
main#in.contact.blue section .submitBtn { /* input */ }
main#in.contact.blue section .submitBtn input {
  background: linear-gradient(to right, #85da8f, #cff697);
}
main#in.cleaning {
  /* -------------------- ▽▽▽ タイトル ▽▽▽ -------------------- */
  /* h1 */
  /* -------------------- △△△ タイトル △△△ -------------------- */
  /* -------------------- ▽▽▽ ぱんくず ▽▽▽ -------------------- */
  /* ul */
  /* -------------------- △△△ ぱんくず △△△ -------------------- */
  /* -------------------- ▽▽▽ メインエリア ▽▽▽ -------------------- */
  /* section */
  /* -------------------- △△△ メインエリア △△△ -------------------- */
  /* -------------------- ▽▽▽ 問い合わせ ▽▽▽ -------------------- */
  /* .contact_section */
  /* -------------------- △△△ 問い合わせ △△△ -------------------- */
}
main#in.cleaning h1.pageTitle {
  background: url(images/cleaning/header.jpg) no-repeat center/cover;
}
main#in.cleaning h1.pageTitle p {
  text-shadow: #109d00 1px 0 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning h1.pageTitle {
    background-image: url(images/cleaning/header-sp.jpg);
  }
}
main#in.cleaning .pankuzu {
  background: #85da8f;
  /* li */
}
main#in.cleaning .pankuzu li {
  font-size: 1.5rem;
}
main#in.cleaning .pankuzu li p {
  background: url(images/cleaning/pankuzu.svg) no-repeat center left/13px;
}
main#in.cleaning section {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  /* article */
}
main#in.cleaning section article {
  width: 100%;
  display: block;
  /* .contents */
  /* table */
  /* .flow */
}
main#in.cleaning section article ~ article {
  margin-top: 50px;
}
main#in.cleaning section article h2 {
  border-left: 10px solid #85da8f;
  -o-border-image: linear-gradient(to right, #85da8f, #e7ffc5) 1;
     border-image: linear-gradient(to right, #85da8f, #e7ffc5) 1;
  width: 100%;
}
main#in.cleaning section article p {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.cleaning section article .contents {
  display: flex;
  flex-wrap: wrap;
  /* li */
}
main#in.cleaning section article .contents li {
  width: 24%;
}
main#in.cleaning section article .contents li img {
  width: 100%;
  height: auto;
}
main#in.cleaning section article .contents li ~ li {
  margin-left: 1.33333%;
}
main#in.cleaning section article .contents li:nth-of-type(5) {
  margin-left: 0;
}
main#in.cleaning section article .contents li:nth-child(n+5) {
  margin-top: 20px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning section article .contents li ~ li {
    margin-left: 0;
  }
  main#in.cleaning section article .contents li:nth-of-type(2n) {
    margin-left: 2%;
  }
  main#in.cleaning section article .contents li:nth-child(n+3) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning section article .contents li {
    width: 49%;
  }
}
main#in.cleaning section article table {
  width: 800px;
  margin-bottom: 20px;
  border: 1px solid #85da8f;
  /* th */
  /* td */
}
main#in.cleaning section article table th {
  font-size: 1.6rem;
  text-align: left;
  padding: 15px 1em;
  border-bottom: 1px solid #85da8f;
  background: #e0ffde;
  width: 50%;
}
main#in.cleaning section article table th + th {
  border-left: 1px solid #85da8f;
}
main#in.cleaning section article table td {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 15px 1em;
}
main#in.cleaning section article table td + td {
  border-left: 1px solid #85da8f;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning section article table {
    width: 100%;
  }
}
main#in.cleaning section article .flow {
  /* li */
}
main#in.cleaning section article .flow li {
  padding: 20px;
  background: #e9fbe8;
  border-radius: 10px;
  /* h3 */
}
main#in.cleaning section article .flow li h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #00a426;
}
main#in.cleaning section article .flow li h3 span {
  display: inline-block;
  margin-right: 2px;
  color: #85da8f;
}
main#in.cleaning section article .flow li ~ li {
  margin-top: 15px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning section article .flow li {
    padding: 10px 1.6rem;
  }
}
main#in.cleaning section:last-of-type {
  padding-bottom: 0;
}
main#in.cleaning .contact_section {
  margin-top: 50px;
  background: url(images/cleaning/contact.jpg) no-repeat center/cover;
  padding: 50px 2.5%;
  text-align: center;
  /* h4 */
  /* .address */
}
main#in.cleaning .contact_section h4 {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  text-shadow: #007d9d 1px 0 10px;
}
main#in.cleaning .contact_section h4 br {
  display: none;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section h4 br {
    display: inline;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section h4 {
    font-size: 2.1rem;
  }
}
main#in.cleaning .contact_section .address {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  /* li */
}
main#in.cleaning .contact_section .address li {
  width: 380px;
  height: 80px;
  padding: 10px;
  background: linear-gradient(to right, #4bcde2, #cff697);
  /* a */
  /* &:first-child */
}
main#in.cleaning .contact_section .address li a {
  display: block;
  width: 100%;
  height: 60px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #fff;
}
main#in.cleaning .contact_section .address li a span {
  display: inline-block;
  padding-left: 40px;
  height: 60px;
  line-height: 60px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section .address li a span {
    padding-left: 30px;
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section .address li a {
    font-size: 1.7rem;
    height: 50px;
  }
}
main#in.cleaning .contact_section .address li:first-child {
  margin-right: 50px;
}
main#in.cleaning .contact_section .address li:first-child span {
  background: url(images/top/mail.svg) no-repeat center left/30px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section .address li:first-child span {
    background-size: 25px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section .address li:first-child {
    margin: 0 auto 20px;
  }
}
main#in.cleaning .contact_section .address li:last-child span {
  background: url(images/top/tel.svg) no-repeat center left/30px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section .address li:last-child span {
    background-size: 25px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section .address li {
    margin: 0 auto;
    max-width: 95%;
    height: 70px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.cleaning .contact_section .address {
    display: block;
  }
}

/* main#in */
/* ============================== ▲▲▲ 中ページ ▲▲▲ ============================== */
/* ============================== ▼▼▼ フッター ▼▼▼ ============================== */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: #4675c1;
}
footer small {
  color: #fff;
  font-size: 1.1rem;
}

/* footer */
/* ============================== ▲▲▲ フッター ▲▲▲ ============================== *//*# sourceMappingURL=common.css.map */