@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-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: #F5AD6A;
    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 {
  border-left: 1px solid #e8e8e8;
  /* a */
  /* &.companyList */
}
header nav ul.mainNavi li.mainNaviList a {
  color: #F5AD6A;
  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: #fff3e8;
}
@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, #ffc2a0, #a0deff);
  }
}
@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, #ffc2a0, #a0deff);
  }
}
@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: rgba(255, 247, 230, 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: #a0deff;
  }
}
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;
    border-left: none;
  }
}
@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: 16/9;
  background: url(images/top/hero.jpg) no-repeat left top/cover;
  position: relative;
  /* .catch */
  /* .lead */
}
.hero .catch {
  position: absolute;
  left: 30px;
  top: 20px;
  /* p */
}
.hero .catch p {
  font-size: 3.7rem;
  line-height: 1.5;
  background: linear-gradient(to right, #04acda, #d38c29);
  mix-blend-mode: multiply;
  padding: 0 0.3em;
  display: inline-block;
  color: #fff;
  font-weight: bold;
}
.hero .catch p ~ p {
  margin-top: 10px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero .catch p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero .catch {
    left: 2.5%;
    width: 95%;
  }
}
.hero .lead {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  right: 30px;
  bottom: 20px;
  padding: 20px 30px;
  width: 500px;
  /* p */
}
.hero .lead p {
  font-size: 1.4rem;
  line-height: 1.5;
}
.hero .lead p:first-of-type {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero .lead {
    right: 2.5%;
    width: 95%;
  }
}

/* .hero */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero {
    aspect-ratio: 1/1.3;
  }
}
/* -------------------- △△△ キャッチコピーのエリア △△△ -------------------- */
main#top {
  /* -------------------- ▽▽▽ 01〜03 ▽▽▽ -------------------- */
  /* .point */
  /* -------------------- △△△ 01〜03 △△△ -------------------- */
  /* -------------------- ▽▽▽ 問い合わせ ▽▽▽ -------------------- */
  /* .contact */
  /* -------------------- △△△ 問い合わせ △△△ -------------------- */
}
main#top .point {
  display: flex;
  /* .pointWrap */
}
main#top .point .pointWrap {
  padding: 70px 20px;
  width: 33.3333333333%;
  /* strong */
  /* &:first-of-type */
  /* &:nth-of-type(2) */
  /* &:nth-of-type(3) */
}
main#top .point .pointWrap h1 {
  height: 40px;
  line-height: 40px;
  padding-left: 70px;
  font-size: 3rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap h1 {
    height: 35px;
    line-height: 35px;
    padding-left: 50px;
    font-size: 2.4rem;
    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.5rem;
  opacity: 0.3;
  margin-bottom: 30px;
}
@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: 1px solid #F5AD6A;
  padding-bottom: 3px;
  margin-bottom: 10px;
}
main#top .point .pointWrap 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, #ffc2a0, #a0deff);
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap a {
    margin-top: 20px;
  }
}
main#top .point .pointWrap:first-of-type 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 h1 {
    background-size: 35px;
  }
}
main#top .point .pointWrap:nth-of-type(2) {
  background: #fff3e8;
}
main#top .point .pointWrap:nth-of-type(2) 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) h1 {
    background-size: 35px;
  }
}
main#top .point .pointWrap:nth-of-type(3) 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) h1 {
    background-size: 35px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point .pointWrap {
    padding: 35px 2.5%;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .point {
    display: block;
  }
}
main#top .contact {
  padding: 70px 0;
  background: #c5e9ff;
  /* h1 */
  /* ul */
}
main#top .contact h1 {
  text-align: center;
}
main#top .contact h1 p:first-of-type {
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}
@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, #ffc2a0, #a0deff);
  /* 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;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#top .contact {
    padding: 50px 0;
  }
}

/* main#top */
/* ============================== ▲▲▲ トップページ ▲▲▲ ============================== */
/* ============================== ▼▼▼ 中ページ ▼▼▼ ============================== */
main#in {
  /* -------------------- ▽▽▽ タイトル ▽▽▽ -------------------- */
  /* h1 */
  /* -------------------- △△△ タイトル △△△ -------------------- */
  /* -------------------- ▽▽▽ ぱんくず ▽▽▽ -------------------- */
  /* ul */
  /* -------------------- △△△ ぱんくず △△△ -------------------- */
  /* -------------------- ▽▽▽ リード文 ▽▽▽ -------------------- */
  /* .lead */
  /* -------------------- △△△ リード文 △△△ -------------------- */
  /* -------------------- ▽▽▽ コンテンツ部分共通 ▽▽▽ -------------------- */
  /* section */
  /* -------------------- △△△ コンテンツ部分共通 △△△ -------------------- */
  /* ------------------------------ ▽▽▽ サービス一覧 ▽▽▽ ------------------------------ */
  /* &.service */
  /* ------------------------------ △△△ サービス一覧 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ 会社情報 ▽▽▽ ------------------------------ */
  /* &.company */
  /* ------------------------------ △△△ 会社情報 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ お知らせ一覧 ▽▽▽ ------------------------------ */
  /* &.news */
  /* ------------------------------ △△△ お知らせ一覧 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ お知らせ内容 ▽▽▽ ------------------------------ */
  /* &.news_in */
  /* ------------------------------ △△△ お知らせ内容 △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ アクセス ▽▽▽ ------------------------------ */
  /* &.access */
  /* ------------------------------ △△△ アクセス △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ 問い合わせ ▽▽▽ ------------------------------ */
  /* &.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: #af6b0c 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 {
  display: flex;
  align-items: center;
  padding: 10px 15px 0;
  /* li */
}
main#in .pankuzu li {
  font-size: 1.5rem;
}
main#in .pankuzu li a {
  color: #F5AD6A;
  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: #F5AD6A;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in .pankuzu {
    padding: 10px 2% 0;
  }
}
main#in .lead {
  width: 95%;
  max-width: 1200px;
  margin: 70px auto;
}
main#in .lead h1 {
  display: inline-block;
  background: linear-gradient(180deg, #ffc2a0, #a0deff);
  background: linear-gradient(-90deg, #ffc2a0, #a0deff);
  -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-top: 70px;
}
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 #F5AD6A;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, #F5AD6A, #54C2F0) 1;
     border-image: linear-gradient(to right, #F5AD6A, #54C2F0) 1;
  line-height: 1.5;
}
main#in section article {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
@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-top: 50px;
  }
}
main#in.service {
  padding-bottom: 70px;
  /* section */
}
main#in.service section {
  /* article */
  /* h3 */
  /* p */
  /* h4 */
  /* ul */
  /* dl */
  /* .image */
}
main#in.service section article {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
}
main#in.service section article::before {
  content: "";
  display: block;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
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: #f3a476;
}
main#in.service section h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 5px;
  color: #e0814b;
}
main#in.service section h3::before {
  content: "●";
  color: #ffd279;
  position: absolute;
  left: 0;
}
main#in.service section h3 ~ h3 {
  margin-top: 1.5em;
}
main#in.service section p {
  font-size: 1.6rem;
  line-height: 1.5;
}
main#in.service section p ~ p {
  margin-top: 1.5em;
}
main#in.service section h3 + p {
  margin-top: 0;
}
main#in.service section h4 {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #F5AD6A;
  margin: 1em 0 3px;
  padding-left: 1.2em;
  position: relative;
}
main#in.service section h4::before {
  content: "▼";
  color: #ffc425;
  opacity: 0.5;
  position: absolute;
  left: 0;
}
main#in.service section ul {
  padding: 10px;
  border: 1px solid #F5AD6A;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  /* li */
}
main#in.service section 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 ul li::before {
  content: "●";
  color: #ffe2c7;
  position: absolute;
  left: 0;
}
main#in.service section dl {
  /* 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;
}
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#consulting article {
  background: url(images/service/image01.jpg) no-repeat center/cover;
}
main#in.service section#contents article {
  background: url(images/service/image02.jpg) no-repeat center/cover;
}
main#in.service section article.retouch_article {
  background: url(images/service/image03.jpg) no-repeat center/cover;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.service {
    padding-bottom: 50px;
  }
}
main#in.company {
  /* section */
}
main#in.company section {
  /* article.back_image */
  /* h2.companyTitle */
  /* .image */
  /* ---------- ▽▽▽ 企業理念 ▽▽▽ ---------- */
  /* &.guide */
  /* ---------- △△△ 企業理念 △△△ ---------- */
  /* ---------- ▽▽▽ 会社情報 ▽▽▽ ---------- */
  /* &.purpose */
  /* ---------- △△△ 会社情報 △△△ ---------- */
  /* ---------- ▽▽▽ 会社概要 ▽▽▽ ---------- */
  /* &.overview */
  /* ---------- △△△ 会社概要 △△△ ---------- */
  /* ---------- ▽▽▽ オフィス ▽▽▽ ---------- */
  /* &.office */
  /* ---------- △△△ オフィス △△△ ---------- */
}
main#in.company section article.back_image {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
}
main#in.company section article.back_image::before {
  content: "";
  display: block;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
main#in.company section h2.companyTitle {
  border-left: none;
  font-size: 2.4rem;
  margin-bottom: 0px;
  background: linear-gradient(to right, #ffc2a0, #a0deff);
  border-bottom: none;
  color: #fff;
  padding-left: 0.7em;
}
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: rgba(255, 255, 255, 0.5);
}
@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/image01.jpg) no-repeat center/cover;
  /* p */
  /* h3 */
}
main#in.company section.guide article p {
  font-size: 1.6rem;
  line-height: 1.5;
  /* &.dash */
}
main#in.company section.guide article p ~ p {
  margin-top: 1.5em;
}
main#in.company section.guide article p strong {
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.guide article p strong {
    font-size: 2rem;
  }
}
main#in.company section.guide article p.dash {
  font-weight: bold;
  font-size: 1.8rem;
  text-shadow: 2px 2px 0px #fff;
}
main#in.company section.guide article p.dash span {
  display: inline-block;
  padding: 5px 6em 7px 0;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #ffcba3, rgba(255, 255, 255, 0)) 1;
     border-image: linear-gradient(to right, #ffcba3, rgba(255, 255, 255, 0)) 1;
}
main#in.company section.guide article p.dash + p {
  margin-top: 15px;
}
main#in.company section.guide article 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 h3 + p {
  margin-top: 0;
}
main#in.company section.guide article 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;
  }
}
main#in.company section.purpose {
  /* article */
}
main#in.company section.purpose article {
  background: url(images/company/image02.jpg) no-repeat center/cover;
  /* p */
}
main#in.company section.purpose article p {
  font-size: 1.6rem;
  line-height: 1.5;
  /* span */
}
main#in.company section.purpose article p ~ p {
  margin-top: 1.5em;
}
main#in.company section.purpose article p strong {
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.purpose article p strong {
    font-size: 2rem;
  }
}
main#in.company section.purpose article 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 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 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 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.overview {
  /* article */
}
main#in.company section.overview article {
  display: flex;
  align-items: flex-start;
  /* table */
}
main#in.company section.overview article table {
  width: 70%;
  /* tr */
}
main#in.company section.overview article table th {
  font-size: 1.6rem;
  line-height: 1.5;
  width: 9em;
  padding: 10px 1em;
  text-align: left;
  background: #f0f6f6;
}
main#in.company section.overview article table td {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 10px 1em 10px 0;
  background: #f0f6f6;
}
@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: 0 1em 10px;
  }
}
main#in.company section.overview article table tr:nth-of-type(2n) th, main#in.company section.overview article table tr:nth-of-type(2n) td {
  background: none;
}
@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;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.company section.overview article {
    display: block;
  }
}
main#in.company section.office {
  padding-bottom: 50px;
  /* article */
}
main#in.company section.office article {
  align-items: flex-start;
  flex-direction: row-reverse;
}
main#in.company section.office article dl {
  margin-bottom: 30px;
  /* dt */
  /* dd */
}
main#in.company section.office article dl dt {
  font-weight: bold;
  color: #F5AD6A;
  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.news {
  padding-bottom: 70px;
  /* 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 #F5AD6A;
  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: #F5AD6A;
}
main#in.news section ul li p.cate span.oshirase {
  background: #f2b3b3;
}
main#in.news section ul li p.cate span.shigotojouhou {
  background: #d7ce9c;
}
main#in.news section ul li p.cate span.cate3 {
  background: #aedba8;
}
main#in.news section ul li p.cate span.cate4 {
  background: #b6c9ed;
}
@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 #F5AD6A;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news section ul li {
    display: block;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.news {
    padding-bottom: 50px;
  }
}
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: #F5AD6A;
  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: #fff3e8;
  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 {
  padding-bottom: 70px;
  /* .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: #e98e8f;
  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, #ffc2a0, #a0deff);
  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 #F5AD6A;
  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 #F5AD6A;
  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 #F5AD6A;
}
@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, #ffc2a0, #a0deff);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  width: 9em;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
}
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;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main#in.contact {
    padding-bottom: 50px;
  }
}

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

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