@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-top: 70px;
}

@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: #1d5193;
    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 */
  /* &.companyList */
}
header nav ul.mainNavi li.mainNaviList a {
  color: #1d5193;
  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.2;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul.mainNavi li.mainNaviList a span {
    color: #fff;
    opacity: 0.4;
  }
}
header nav ul.mainNavi li.mainNaviList a:hover {
  opacity: 1;
  background: #e7f4f9;
}
@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, #3d81ff, #5de2e9);
  }
}
@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, #3d81ff, #5de2e9);
  }
}
@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.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: #ccebff;
  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: #98d7fc;
  }
}
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;
    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 {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.2) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* p */
}
.hero .catch p {
  font-size: 3rem;
  color: #1d5193;
  font-weight: bold;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 2em;
}
.hero .catch p span {
  display: inline-block;
  background: linear-gradient(-180deg, #3d81ff, #5de2e9);
  background: linear-gradient(90deg, #3d81ff, #5de2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  line-height: 2;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero .catch p {
    font-size: 2.1rem;
    padding: 0 1em;
  }
}

/* .hero */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero {
    aspect-ratio: 1/0.7;
  }
}
/* -------------------- △△△ メイン画像 △△△ -------------------- */
/* -------------------- ▽▽▽ 説明文 ▽▽▽ -------------------- */
.lead {
  text-align: center;
  padding: 30px 0;
}
.lead h1 {
  font-size: 1.8rem;
  color: #009bd9;
  margin-bottom: 15px;
}
.lead p {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* .lead */
/* -------------------- △△△ 説明文 △△△ -------------------- */
/* -------------------- ▽▽▽ メインエリア ▽▽▽ -------------------- */
main#top {
  /* -------------------- ▽▽▽ 01〜03 ▽▽▽ -------------------- */
  /* .point */
  /* -------------------- △△△ 01〜03 △△△ -------------------- */
  /* -------------------- ▽▽▽ 問い合わせ ▽▽▽ -------------------- */
  /* .contact */
  /* -------------------- △△△ 問い合わせ △△△ -------------------- */
}
main#top .point {
  display: flex;
  /* .pointWrap */
}
main#top .point .pointWrap {
  padding: 70px 20px;
  width: 33.3333333333%;
  background: #e8f5fd;
  position: relative;
  /* strong */
  /* a */
  /* &:first-of-type */
  /* &:nth-of-type(2) */
  /* &:nth-of-type(3) */
}
main#top .point .pointWrap h1 {
  height: 30px;
  line-height: 30px;
  padding-left: 50px;
  font-size: 2.4rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap h1 {
    padding-left: 45px;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
main#top .point .pointWrap p:first-of-type {
  font-family: "Roboto", 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 .point .pointWrap p:first-of-type {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
main#top .point .pointWrap p:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#top .point .pointWrap strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.5;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
  margin-bottom: 10px;
}
main#top .point .pointWrap a {
  display: block;
  background: linear-gradient(to right, #3d81ff, #5de2e9);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
}
main#top .point .pointWrap a span {
  display: block;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  position: absolute;
  bottom: 5px;
  right: 8px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap a {
    /* span */
  }
  main#top .point .pointWrap a span {
    position: static;
    bottom: auto;
    right: auto;
    text-align: center;
    height: 40px;
    line-height: 40px;
  }
  main#top .point .pointWrap a span br {
    display: none;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap a {
    clip-path: none;
    position: static;
    right: auto;
    bottom: auto;
    width: 200px;
    height: 40px;
    margin: 20px auto 0;
  }
}
main#top .point .pointWrap:first-of-type h1 {
  background: url(images/top/01.svg) no-repeat left center/auto 30px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap:first-of-type h1 {
    background-size: 35px;
  }
}
main#top .point .pointWrap:nth-of-type(2) {
  background: #ccebff;
}
main#top .point .pointWrap:nth-of-type(2) h1 {
  background: url(images/top/02.svg) no-repeat left center/auto 30px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap:nth-of-type(2) h1 {
    background-size: 35px;
  }
}
main#top .point .pointWrap:nth-of-type(3) h1 {
  background: url(images/top/03.svg) no-repeat left center/auto 30px;
}
@media only screen and (max-width: 1200px) and (min-width: 300px) {
  main#top .point .pointWrap:nth-of-type(3) h1 {
    background-size: 35px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap {
    padding: 35px 2.5% 15px;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point {
    display: block;
  }
}
main#top .contact {
  padding: 70px 0;
  /* h1 */
  /* ul */
}
main#top .contact h1 {
  text-align: center;
}
main#top .contact h1 p:first-of-type {
  display: inline-block;
  background: linear-gradient(-180deg, #3d81ff, #5de2e9);
  background: linear-gradient(90deg, #3d81ff, #5de2e9);
  -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;
  font-weight: normal;
}
@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, #3d81ff, #5de2e9);
  /* 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 */
/* -------------------- △△△ メインエリア △△△ -------------------- */
/* ============================== ▲▲▲ トップページ ▲▲▲ ============================== */
/* ============================== ▼▼▼ 中ページ ▼▼▼ ============================== */
main#in {
  /* -------------------- ▽▽▽ タイトル ▽▽▽ -------------------- */
  /* h1 */
  /* -------------------- △△△ タイトル △△△ -------------------- */
  /* -------------------- ▽▽▽ ぱんくず ▽▽▽ -------------------- */
  /* ul */
  /* -------------------- △△△ ぱんくず △△△ -------------------- */
  /* -------------------- ▽▽▽ リード文 ▽▽▽ -------------------- */
  /* .lead */
  /* -------------------- △△△ リード文 △△△ -------------------- */
  /* -------------------- ▽▽▽ コンテンツ部分共通 ▽▽▽ -------------------- */
  /* section */
  /* -------------------- △△△ コンテンツ部分共通 △△△ -------------------- */
  /* ------------------------------ ▽▽▽ 会社情報 ▽▽▽ ------------------------------ */
  /* &.company */
  /* ------------------------------ △△△ 会社情報 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ サービス一覧 ▽▽▽ ------------------------------ */
  /* &.service */
  /* ------------------------------ △△△ サービス一覧 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ お知らせ一覧 ▽▽▽ ------------------------------ */
  /* &.news */
  /* ------------------------------ △△△ お知らせ一覧 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ 問い合わせ ▽▽▽ ------------------------------ */
  /* &.contact */
  /* ------------------------------ △△△ 問い合わせ △△△ ------------------------------ */
}
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: #415d9d 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: #009bd9;
  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, #3d81ff, #5de2e9);
  background: linear-gradient(90deg, #3d81ff, #5de2e9);
  -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 #aae6ff;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, #aae6ff, #94b6ff) 1;
     border-image: linear-gradient(to right, #aae6ff, #94b6ff) 1;
  line-height: 1.5;
}
main#in section article {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
@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.company {
  /* section */
}
main#in.company section {
  /* h2.companyTitle */
  /* ---------- ▽▽▽ 企業理念 ▽▽▽ ---------- */
  /* &.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: #98d7fc;
}
@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%;
}
@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 {
  /* .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, #aae6ff, #94b6ff) 1;
     border-image: linear-gradient(to right, #aae6ff, #94b6ff) 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, #3d81ff, #5de2e9);
  background: linear-gradient(90deg, #3d81ff, #5de2e9);
  -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;
}
main#in.company section.guide article .text p.dash span {
  display: inline-block;
  padding: 5px 6em 7px 0;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #a3e3ff, rgba(255, 255, 255, 0)) 1;
     border-image: linear-gradient(to right, #a3e3ff, rgba(255, 255, 255, 0)) 1;
}
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%;
  background: url(images/company/image01.jpg) no-repeat center/cover;
}
@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: #f5f5f5;
  /* 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, #3d81ff, #5de2e9);
  background: linear-gradient(90deg, #3d81ff, #5de2e9);
  -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%;
  background: url(images/company/image02.jpg) no-repeat center/cover;
}
@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;*/
  display: block;
  /* table */
}
main#in.company section.overview article table { /*width: 70%;*/
  width: 100%;
  /* 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 #98d7fc;
  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 #98d7fc;
  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%;
}
main#in.company section.overview article .image img {
  width: 100%;
  height: auto;
}
@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: #f5f5f5;
  /* article */
}
main#in.company section.office article {
  display: block;
  align-items: normal;
}
main#in.company section.office article dl {
  margin-bottom: 15px;
  /* dt */
  /* dd */
}
main#in.company section.office article dl dt {
  font-weight: bold;
  color: #1d5193;
  font-size: 1.7rem;
  margin-bottom: 5px;
}
main#in.company section.office article dl dt ~ dt {
  margin-top: 1em;
}
main#in.company section.office article dl dd {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.company section.office article dl dd a {
  color: #424242;
}
main#in.company section.office article p {
  font-size: 1.6rem;
  line-height: 1.5;
}
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.service {
  /* section */
}
main#in.service section {
  /* .text, dd */
  /* .text */
  /* dl */
  /* .image */
}
main#in.service section strong.strong {
  background: linear-gradient(90deg, #7ec3d3, #50abef);
  background: linear-gradient(-180deg, #7ec3d3, #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, #7ec3d3, #50abef);
  background: linear-gradient(-180deg, #7ec3d3, #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: #9acbed;
  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: #50abef;
  margin: 1em 0 3px;
  padding-left: 1.2em;
  position: relative;
}
main#in.service section .text h4::before {
  content: "▼";
  color: #7ec3d3;
  opacity: 0.5;
  position: absolute;
  left: 0;
}
main#in.service section .text ul {
  padding: 10px;
  border: 1px solid #50abef;
  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: #f5f5f5;
}
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 #1d5193;
  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: #1d5193;
}
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 #1d5193;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news section ul li {
    display: block;
  }
}
main#in.contact {
  /* .contactWrap */
}
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, #3d81ff, #5de2e9);
  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 #1d5193;
  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 #1d5193;
  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 #1d5193;
}
@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, #3d81ff, #5de2e9);
  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 */
/* ============================== ▲▲▲ 中ページ ▲▲▲ ============================== */
/* ============================== ▼▼▼ フッター ▼▼▼ ============================== */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: #1d5193;
}
footer small {
  color: #fff;
  font-size: 1.1rem;
}

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