@charset "UTF-8";
* {
  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;
  color: #424242;
  padding: 70px 0 22px;
}

@media only screen and (max-width: 800px) and (min-width: 300px) {
  body {
    padding-top: 50px;
  }
}
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-left: 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: #008e80;
    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 */
}
header nav ul {
  display: flex;
  align-items: center;
  background: #fff;
  /* li */
}
header nav ul li {
  /* a */
}
header nav ul li a {
  color: #008e80;
  font-size: 1.7rem;
  font-weight: bold;
  display: block;
  height: 70px;
  line-height: 70px;
  padding: 0 25px;
}
header nav ul li a:hover {
  opacity: 1;
  background: #e7f9f5;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul li a:hover {
    background: #05cab3;
  }
}
header nav ul li a span {
  display: inline-block;
  border-bottom: 2px solid #f4f0c8;
  padding-bottom: 3px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul li a span {
    border-bottom: none;
    padding: 0;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul li a {
    color: #fff;
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0;
    background: #00baa3;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul li ~ li {
    margin: 0;
    border-top: 1px solid #fff;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul li {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul {
    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;
    padding: 0 15px;
  }
}
/* ============================== ▲▲▲ ヘッダー ▲▲▲ ============================== */
/* ============================== ▼▼▼ トップページ ▼▼▼ ============================== */
/* -------------------- ▽▽▽ メイン画像 ▽▽▽ -------------------- */
.hero {
  aspect-ratio: 1/0.4;
  background: url(images/top/hero.jpg) no-repeat left top/cover;
  position: relative;
  /* .catch */
}
.hero .catch {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 50px;
}
.hero .catch p {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero .catch p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero .catch {
    padding: 0 5%;
  }
}

/* .hero */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero {
    aspect-ratio: 1/0.7;
  }
}
/* -------------------- △△△ メイン画像 △△△ -------------------- */
/* -------------------- ▽▽▽ コンテンツ ▽▽▽ -------------------- */
main#top {
  /* .contents */
}
main#top .contents {
  display: flex;
  /* li */
}
main#top .contents li {
  width: 33.3333333333%;
  padding: 50px 2.5%;
  word-break: break-all;
  /* strong */
  /* &:first-of-type */
  /* &:nth-of-type(2) */
  /* &:nth-of-type(3) */
}
main#top .contents li h1 {
  height: 25px;
  line-height: 25px;
  padding-left: 45px;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #008e80;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contents li h1 {
    padding-left: 45px;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
main#top .contents li p:first-of-type {
  font-family: sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 2.1rem;
  opacity: 0.3;
  margin-bottom: 20px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contents li p:first-of-type {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
main#top .contents li p:nth-of-type(2) {
  font-size: 1.4rem;
  line-height: 1.5;
}
main#top .contents li strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.5;
  border-bottom: 1px solid #00baa3;
  padding-bottom: 3px;
  margin-bottom: 10px;
}
main#top .contents li a {
  display: block;
  width: 14em;
  background: linear-gradient(to right, #008e80, #00baa3);
  color: #fff;
  font-size: 1.6rem;
  font-family: sans-serif;
  font-weight: 400;
  font-style: italic;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 20px auto 0;
}
main#top .contents li:first-of-type h1 {
  background: url(images/top/01.svg) no-repeat left center/auto 25px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .contents li:first-of-type h1 {
    background-size: 35px;
  }
}
main#top .contents li:nth-of-type(2) {
  border-left: 1px solid #efefef;
}
main#top .contents li:nth-of-type(2) h1 {
  background: url(images/top/02.svg) no-repeat left center/auto 25px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .contents li:nth-of-type(2) h1 {
    background-size: 35px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contents li:nth-of-type(2) {
    border-top: 1px solid #efefef;
    border-left: none;
    background: #eff9f6;
  }
}
main#top .contents li:nth-of-type(3) {
  border-left: 1px solid #efefef;
}
main#top .contents li:nth-of-type(3) h1 {
  background: url(images/top/03.svg) no-repeat left center/auto 25px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .contents li:nth-of-type(3) h1 {
    background-size: 35px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contents li:nth-of-type(3) {
    border-top: 1px solid #efefef;
    border-left: none;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contents li {
    width: 100%;
    padding: 30px 2.5%;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contents {
    display: block;
  }
}

/* main#top */
/* -------------------- △△△ コンテンツ △△△ -------------------- */
/* ============================== ▲▲▲ トップページ ▲▲▲ ============================== */
/* ============================== ▼▼▼ 中ページ ▼▼▼ ============================== */
main#in {
  /* -------------------- ▽▽▽ タイトル ▽▽▽ -------------------- */
  /* h1 */
  /* -------------------- △△△ タイトル △△△ -------------------- */
  /* -------------------- ▽▽▽ ぱんくず ▽▽▽ -------------------- */
  /* ul */
  /* -------------------- △△△ ぱんくず △△△ -------------------- */
  /* -------------------- ▽▽▽ 事業内容ページ ▽▽▽ -------------------- */
  /* &.service */
  /* -------------------- △△△ 事業内容ページ △△△ -------------------- */
  /* -------------------- ▽▽▽ 料金ページ ▽▽▽ -------------------- */
  /* &.price */
  /* -------------------- △△△ 料金ページ △△△ -------------------- */
  /* -------------------- ▽▽▽ 料金ページ ▽▽▽ -------------------- */
  /* &.company */
  /* -------------------- △△△ 料金ページ △△△ -------------------- */
}
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: #389d91 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: 30px;
  background: #00baa3;
  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.service {
  /* section */
}
main#in.service section {
  display: flex;
  /* div */
}
main#in.service section div {
  width: 33.3333333333%;
  padding: 50px 20px;
  /* ul */
  /* ul + p */
}
main#in.service section div:nth-of-type(2), main#in.service section div:nth-of-type(3) {
  border-left: 1px solid #efefef;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section div:nth-of-type(2), main#in.service section div:nth-of-type(3) {
    border-top: 1px solid #efefef;
    border-left: none;
  }
  main#in.service section div:nth-of-type(2) {
    background: #eff9f6;
  }
}
main#in.service section div h1 {
  color: #008e80;
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section div h1 br {
    display: none;
  }
}
main#in.service section div h1 + p {
  font-size: 1.6rem;
  font-family: sans-serif;
  font-weight: 400;
  font-style: italic;
  opacity: 0.3;
  margin: 3px 0 15px;
}
main#in.service section div img {
  width: 100%;
  height: auto;
}
main#in.service section div ul {
  margin-top: 15px;
  /* li */
}
main#in.service section div ul li {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 1.3em;
  position: relative;
}
main#in.service section div ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #a3e5dd;
}
main#in.service section div ul + p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section div {
    width: 100%;
    padding: 30px 2.5%;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service section {
    display: block;
  }
}
main#in.price {
  /* section */
}
main#in.price section {
  width: 640px;
  margin: 0 auto;
  padding: 50px 0;
  /* dl */
}
main#in.price section dl {
  /* dt */
  /* dd */
}
main#in.price section dl dt {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #008e80;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid #008e80;
}
main#in.price section dl dt ~ dt {
  margin-top: 25px;
}
main#in.price section dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
main#in.price section dl dd strong {
  display: block;
  margin-bottom: 3px;
}
main#in.price section p {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.price section {
    width: 95%;
  }
}
main#in.company {
  /* section */
}
main#in.company section {
  width: 640px;
  margin: 0 auto;
  padding: 50px 0;
  /* h1 */
  /* table */
  /* p */
}
main#in.company section h1 {
  font-size: 1.8rem;
  line-height: 1.5;
  border-left: 5px solid #00baa3;
  border-bottom: 1px solid #00baa3;
  padding: 0 0 3px 10px;
  margin-bottom: 20px;
}
main#in.company section h1 ~ h1 {
  margin-top: 50px;
}
main#in.company section table {
  width: 100%;
  /* tr */
}
main#in.company section table th {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
  padding: 10px 0 10px 1em;
  width: 8em;
  background: #f0f8f6;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section table th {
    display: block;
    width: 100%;
    padding: 10px 0 3px 1em;
  }
}
main#in.company section table td {
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 10px 1em 10px 0;
  background: #f0f8f6;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section table td {
    display: block;
    width: 100%;
    padding: 0 1em 10px 1em;
  }
}
main#in.company section table tr:nth-of-type(2n) th, main#in.company section table tr:nth-of-type(2n) td {
  background: none;
}
main#in.company section p {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.company section p + p {
  margin-top: 1.5em;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section {
    width: 95%;
  }
}

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

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