@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
  font-size: 100%;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* contact form ハック */
div.wpcf7 .wpcf7-spinner {
  display: block;
}

/*--------------------------------
	HTML
--------------------------------*/
html {
  font-size: 62.5%;
  margin-top: 0 !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05rem;
  font-weight: 500;
  font-style: normal;
  height: 100%;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

p {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.6rem;
  }
}

button,
input[type=submit] {
  cursor: pointer;
}

/*--------------------------------
	font icon
--------------------------------*/
.material-symbols-outlined {
  font-size: 1.7rem;
}

/* ---  テキスト位置  --- */
.txt-r {
  text-align: right;
}

.txt-c {
  text-align: center;
}

/* ---  マージン調整  --- */
.mgt10 {
  margin-top: 2rem;
}

.mgt20 {
  margin-top: 2rem;
}

.mgt30 {
  margin-top: 3rem;
}

.mgt40 {
  margin-top: 4rem;
}

.mgb20 {
  margin-bottom: 2rem;
}

.mgb30 {
  margin-bottom: 3rem;
}

.mgb40 {
  margin-bottom: 4rem;
}

/* ---  表示調整  --- */
.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.wpcf7 p {
  display: inline;
  font-size: inherit;
  margin: 0;
}

/**----------------
  アニメーション
----------------**/
/* フェイドイン */
.fadeIn {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  opacity: 0;
}

.fadeIn.is-active {
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* スライドイン */
.slideLeft.is-active {
  -webkit-animation: slideLIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideLIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideLIn {
  0% {
    -webkit-transform: translateX(-880px);
            transform: translateX(-880px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50%, 100% {
    opacity: 1;
  }
}

@keyframes slideLIn {
  0% {
    -webkit-transform: translateX(-880px);
            transform: translateX(-880px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50%, 100% {
    opacity: 1;
  }
}
.slideRight.is-active {
  -webkit-animation: slideRIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideRIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideRIn {
  0% {
    -webkit-transform: translateX(1180px);
            transform: translateX(1180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slideRIn {
  0% {
    -webkit-transform: translateX(1180px);
            transform: translateX(1180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.slideDown.is-active {
  -webkit-animation: slideDown 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideDown 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80%, 100% {
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80%, 100% {
    opacity: 1;
  }
}
.slideBottom.is-active {
  -webkit-animation: slideBottom 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideBottom 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideBottom {
  0% {
    -webkit-transform: translateY(180px);
            transform: translateY(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50%, 100% {
    opacity: 1;
  }
}

@keyframes slideBottom {
  0% {
    -webkit-transform: translateY(180px);
            transform: translateY(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50%, 100% {
    opacity: 1;
  }
}
/* テキスト背景が流れる */
.bgSlide-wrap.is-active .bgSlide::before {
  -webkit-animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: rgb(28, 33, 137);
  background: -webkit-gradient(linear, left top, right top, from(rgb(28, 33, 137)), color-stop(50%, rgb(47, 128, 237)), to(rgb(76, 178, 201)));
  background: linear-gradient(90deg, rgb(28, 33, 137) 0%, rgb(47, 128, 237) 50%, rgb(76, 178, 201) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.bgSlide-wrap .bgSlide span {
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 1;
}

@-webkit-keyframes bg {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0) translateX(-10%);
            transform: scaleX(0) translateX(-10%);
  }
  40% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
  }
  100% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}

@keyframes bg {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0) translateX(-10%);
            transform: scaleX(0) translateX(-10%);
  }
  40% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
  }
  100% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
/* 文字がスライド式に表示 */
.slideFont {
  overflow: hidden;
  position: relative;
}
.slideFont.is-active::before {
  -webkit-animation: txt-wrap 0.5s cubic-bezier(0.42, 0, 1, 1) forwards;
          animation: txt-wrap 0.5s cubic-bezier(0.42, 0, 1, 1) forwards;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@-webkit-keyframes txt-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes txt-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

/*--------------------------------
	main
--------------------------------*/
.ly-mainContent {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background: #f9f9f9;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30rem, #fff), color-stop(30rem, #f9f9f9), to(#f9f9f9));
  background: linear-gradient(180deg, #fff 0%, #fff 30rem, #f9f9f9 30rem, #f9f9f9 100%);
}
@media screen and (min-width: 1000px) {
  .ly-mainContent {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(58rem, #fff), color-stop(58rem, #f9f9f9), to(#f9f9f9));
    background: linear-gradient(180deg, #fff 0%, #fff 58rem, #f9f9f9 58rem, #f9f9f9 100%);
  }
}

.page-content {
  margin-top: 9rem;
  background: #fff;
}
@media screen and (min-width: 1000px) {
  .page-content {
    margin-top: 18rem;
  }
}

/*--------------------------------
	ヘッダー
--------------------------------*/
.ly-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 1rem 1rem;
  height: 6.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  z-index: 99;
}
.ly-header.scr-header {
  -webkit-filter: drop-shadow(0 3px 3px #cfcfcf);
          filter: drop-shadow(0 3px 3px #cfcfcf);
}
@media screen and (min-width: 1000px) {
  .ly-header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 13rem;
  }
}

@media screen and (min-width: 1000px) {
  .bl-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.bl-logo span {
  display: none;
}
@media screen and (min-width: 1199px) {
  .bl-logo span {
    display: inline-block;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 900;
    margin-left: 0.5rem;
  }
}
.bl-logo img {
  width: 7rem;
}
@media screen and (min-width: 1000px) {
  .bl-logo img {
    height: auto;
    width: 13rem;
  }
}
@media screen and (min-width: 1199px) {
  .bl-logo img {
    height: auto;
    width: 8rem;
  }
}

/*--------------------------------
	フッター
--------------------------------*/
.ly-footer {
  background: #205DB0;
  padding: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ly-footer {
    background: #205DB0;
  }
}
@media screen and (min-width: 1000px) {
  .ly-footer {
    padding: 5rem 1.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .footer-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-nav li {
  font-size: 1.4rem;
}
.footer-nav li a {
  color: #fff;
  display: inline-block;
  margin-right: 2.5rem;
}

.footer-company {
  text-align: center;
  margin-top: 8rem;
}
@media screen and (min-width: 1000px) {
  .footer-company {
    margin-top: 0;
  }
}
.footer-company p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .footer-company p {
    text-align: right;
  }
}
@media screen and (min-width: 1000px) {
  .footer-company p.footer-company-name {
    font-size: 2rem;
    font-weight: 900;
  }
}

/*--------------------------------
	見出し
--------------------------------*/
.el-tl-m {
  font-size: 1.7rem;
  font-weight: 900;
}
@media screen and (min-width: 1000px) {
  .el-tl-m {
    font-size: 4.4rem;
    line-height: 1.2;
  }
}
.el-tl-m .tl-m-s {
  font-size: 1.1rem;
  display: block;
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  .el-tl-m .tl-m-s {
    font-size: 1.2rem;
  }
}

.el-tl-l {
  z-index: 10;
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .el-tl-l {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1000px) {
  .el-tl-l {
    font-size: 7rem;
    line-height: 1.1;
  }
}
.el-tl-l .tl-l-b {
  display: inline-block;
}
.el-tl-l .tl-l-b:first-letter {
  color: #205DB0;
}
.el-tl-l .tl-l-s {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .el-tl-l .tl-l-s {
    letter-spacing: 0.5rem;
    font-size: 1.5rem;
    margin-left: 0.6rem;
  }
}
.el-tl-l.el-tl-center {
  text-align: center;
}

/*  スマホ用　バーガーメニュー　*/
.nav-icon,
.nav-check {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

.nav-check {
  opacity: 0;
  z-index: 100;
}
.nav-check.is-close {
  opacity: 0;
}

.nav-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 90;
}
@media screen and (min-width: 1000px) {
  .nav-icon {
    display: none;
  }
}

.nav-icon span {
  width: 100%;
  height: 3px;
  background: #000;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.nav-check:checked ~ .nav-icon span:nth-last-child(1) {
  -webkit-transform: rotate(-45deg) translate(-1px, 0px);
          transform: rotate(-45deg) translate(-1px, 0px);
  background: #fff;
}

.nav-check:checked ~ .nav-icon span:nth-last-child(2) {
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
  opacity: 0;
}

.nav-check:checked ~ .nav-icon span:nth-last-child(3) {
  -webkit-transform: rotate(45deg) translate(0px, -1px);
          transform: rotate(45deg) translate(0px, -1px);
  background: #fff;
}

.nav-check:checked ~ .nav-list {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

/*  メインナビ　*/
@media screen and (min-width: 1000px) {
  .main-nav {
    margin-right: 12rem;
  }
}

.nav-list {
  position: absolute;
  top: 0;
  left: 0;
  background: #205DB0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(28, 33, 137)), color-stop(50%, rgb(47, 128, 237)), to(rgb(76, 178, 201)));
  background: linear-gradient(0deg, rgb(28, 33, 137) 0%, rgb(47, 128, 237) 50%, rgb(76, 178, 201) 100%);
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  padding: 10rem 2rem 5rem;
}
@media screen and (min-width: 1000px) {
  .nav-list {
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.nav-list li:first-of-type .nav-list-item {
  border-top: 1px solid #fff;
}
.nav-list .nav-list-item {
  font-weight: 700;
  display: inline-block;
  padding: 2rem 0 2rem 1.5rem;
  border-bottom: 1px solid #fff;
  color: #fff;
  width: 100%;
  position: relative;
}
.nav-list .nav-list-item:hover {
  color: #205DB0;
}
.nav-list .nav-list-item:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 1000px) {
  .nav-list .nav-list-item {
    margin-right: 3rem;
    font-size: 1.6rem;
    border: none;
    color: #000;
  }
}
@media screen and (min-width: 1199px) {
  .nav-list .nav-list-item {
    margin-right: 5rem;
  }
}

.nav-contact {
  display: none;
}
@media screen and (min-width: 1000px) {
  .nav-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    font-weight: 900;
    position: fixed;
    top: 0;
    right: 0;
    background: #205DB0;
    width: 13rem;
    height: 13rem;
  }
}
.nav-contact a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*--------------------------------
	block　レイアウト
--------------------------------*/
.bl-cont {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .bl-cont {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .bl-cont:last-of-type {
    margin-bottom: 0;
  }
}

.bl-inner {
  position: relative;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .bl-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 1199px) {
  .bl-inner {
    max-width: 1000px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .bl-inner {
    max-width: 100%;
    width: auto;
    padding-left: 13.1616161616vw;
    padding-right: 13.1616161616vw;
  }
}

.bl-r {
  text-align: right;
}

.bl-c {
  text-align: center;
}

.bl-cont-wrap {
  background: #fff;
}

/*--------------------------------
	ボタン
--------------------------------*/
.btn-round_blue {
  border-radius: 5rem;
  color: #fff;
  text-align: center;
  font-weight: 900;
  padding: 1rem 5.5rem;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  -webkit-transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  min-width: 23rem;
}
.btn-round_blue span {
  position: relative;
}
.btn-round_blue:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.btn-round_blue {
  background: #205DB0;
  border: none;
}
.btn-round_bk {
  border-radius: 5rem;
  color: #fff;
  text-align: center;
  font-weight: 900;
  padding: 1rem 5.5rem;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  -webkit-transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  min-width: 23rem;
}
.btn-round_bk span {
  position: relative;
}
.btn-round_bk:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.btn-round_bk {
  background: #000;
}
.btn-round_s {
  border-radius: 5rem;
  font-weight: 700;
  padding: 0.3rem 1.3rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  -webkit-transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  min-width: 13rem;
  text-align: center;
}
.btn-round_s span {
  position: relative;
  display: inline-block;
}
.btn-round_s:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .btn-round_s {
    min-width: 12rem;
    font-size: 1.2rem;
  }
}
.btn-round_gray {
  background: #cccccc;
  border: none;
  border-radius: 5rem;
  color: #000;
  font-weight: 900;
  padding: 1rem 5.5rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  -webkit-transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  min-width: 23rem;
}
@media screen and (min-width: 768px) {
  .btn-round_gray {
    min-width: 35rem;
    font-size: 2rem;
  }
}
.btn-round_gray:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.btn-arrow-shadow {
  position: relative;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 5rem;
  padding: 0.5rem 5rem 0.5rem 2.2rem;
  color: #fff;
}
.btn-arrow-shadow::before, .btn-arrow-shadow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5rem;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn-arrow-shadow::before {
  right: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  border: 7px solid transparent;
  border-left: 10px solid #fff;
}
.btn-arrow-shadow::after {
  right: 2rem;
  width: 10px;
  height: 5px;
  border-left: 20px solid #fff;
}

/*--------------------------------
	table
--------------------------------*/
.bl-table-line {
  border-bottom: 1px solid #000;
}
.bl-table-line th, .bl-table-line td {
  display: block;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .bl-table-line th, .bl-table-line td {
    border-top: 1px solid #000;
    font-size: 2rem;
    padding: 3.5rem 0;
    display: table-cell;
  }
}
.bl-table-line th {
  border-top: 1px solid #000;
  width: 100%;
  vertical-align: top;
  text-align: left;
  padding: 2rem 0 0;
}
@media screen and (min-width: 768px) {
  .bl-table-line th {
    width: 30%;
    padding: 3.5rem 2rem;
  }
}
.bl-table-line td {
  width: 100%;
  padding: 0 0 2rem;
}
@media screen and (min-width: 768px) {
  .bl-table-line td {
    width: auto;
    padding: 3.5rem 2rem;
  }
}

/*--------------------------------
	フォーム周り
--------------------------------*/
input[type=text],
input[type=tel],
input[type=date],
input[type=number],
input[type=email] {
  padding: 1rem;
  border: 1px solid #ddd;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=number]:focus,
input[type=email]:focus {
  outline: 0;
  border: 2px solid #2196f3;
}

textarea {
  padding: 1rem;
  border: 1px solid #ddd;
}

select {
  padding: 1rem;
  border: 1px solid #ddd;
}
select:focus {
  outline: 0;
  border: 2px solid #2196f3;
}

/* コンタクトフォーム7　カスタマイズ */
.wpcf7 textarea {
  width: 100%;
}

.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email] {
  width: 100%;
}

.wpcf7 input[type=text].post-code {
  width: 8rem;
}

/* ---  フォーム用必須項目  --- */
.form-required {
  display: inline-block;
  background: #DE0000;
  color: #fff;
  padding: 0.2rem;
  margin-left: 2rem;
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 0.5rem;
}

/**----------------
  TOP
----------------**/
.top-content {
  overflow: hidden;
}

/* ---  mainimg  --- */
.top-mainCopy {
  margin-top: 5rem;
}
@media screen and (min-width: 1000px) {
  .top-mainCopy {
    margin-left: 7rem;
    margin-top: 18rem;
  }
}
.top-mainCopy .top-copy-ja {
  color: #000;
  font-weight: 900;
  font-size: 4.2rem;
  position: relative;
  z-index: 1;
  margin: 0 0 0 3rem;
  -webkit-transform: skewX(-5deg);
          transform: skewX(-5deg);
  line-height: 1, 3;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .top-mainCopy .top-copy-ja {
    font-size: 5rem;
    -webkit-transform: skewX(-25deg);
            transform: skewX(-25deg);
  }
}
@media screen and (min-width: 1000px) {
  .top-mainCopy .top-copy-ja {
    font-size: 6.2rem;
  }
}
@media screen and (min-width: 1199px) {
  .top-mainCopy .top-copy-ja {
    font-size: 7.2rem;
  }
}
.top-mainCopy .top-copy-ja span {
  color: #205DB0;
}
.top-mainCopy .top-copy-en {
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0.8rem 0.5rem;
  line-height: 1;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  position: relative;
  z-index: 1;
  margin: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-mainCopy .top-copy-en {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-mainCopy .top-copy-en {
    font-size: 3rem;
    margin: 0;
  }
}
@media screen and (min-width: 1199px) {
  .top-mainCopy .top-copy-en {
    font-size: 4rem;
  }
}

.top-mainimg {
  overflow: hidden;
  position: relative;
}
.top-mainimg::before {
  -webkit-animation: img-wrap 0.5s cubic-bezier(0.42, 0, 1, 1) forwards;
          animation: img-wrap 0.5s cubic-bezier(0.42, 0, 1, 1) forwards;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@-webkit-keyframes img-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes img-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.top-mainimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: url(../../img/mainimg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  height: 35rem;
  position: relative;
  top: -2rem;
}
@media screen and (min-width: 1000px) {
  .top-mainimg {
    width: 95%;
    float: right;
    height: 58rem;
  }
}

/* ---  topics  --- */
.top-topics {
  position: relative;
  top: -5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .top-topics {
    clear: both;
    position: relative;
    height: auto;
    min-height: 30rem;
  }
}
.top-topics .top-topics-in {
  width: 90%;
  background: #fff;
  margin: 1.5rem auto;
  padding: 2.5rem 1.5rem;
}
@media screen and (min-width: 1000px) {
  .top-topics .top-topics-in {
    padding: 3.5rem;
    position: absolute;
    top: -1rem;
    right: 0;
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1000px) {
  .top-topics .top-topics-in .top-topics-tl {
    width: 25%;
  }
}
.top-topics .top-topics-in .top-topics-list {
  margin: 2rem 0 3rem;
}
@media screen and (min-width: 1000px) {
  .top-topics .top-topics-in .top-topics-list {
    width: 75%;
    margin-top: 0;
  }
}
.top-topics .top-topics-in .top-topics-list li {
  font-size: 1.5rem;
  border-bottom: 1px solid #cdcdcd;
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .top-topics .top-topics-in .top-topics-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.top-topics .top-topics-in .top-topics-list li:last-child {
  border-bottom: none;
}
.top-topics .top-topics-in .top-topics-list time {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-topics .top-topics-in .top-topics-list a {
    display: inline-block;
    margin-left: 1rem;
  }
}
.top-topics .top-topics-btn {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .top-topics .top-topics-btn {
    width: 100%;
    margin-right: 10rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-topics .top-topics-btn {
    margin-right: 0;
  }
}

/* ---  service  --- */
.top-service {
  position: relative;
}
.top-service:before {
  content: "";
  position: absolute;
  top: -200px;
  right: -120px;
  background: url(../../img/circle_blue.svg) no-repeat;
  background-size: 100%;
  height: 320px;
  width: 320px;
  z-index: 0;
}
@media screen and (min-width: 1000px) {
  .top-service:before {
    top: -300px;
    right: -110px;
    height: 600px;
    width: 600px;
  }
}

.top-service .el-tl-l {
  position: relative;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .top-service .el-tl-l {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 1199px) {
  .top-service .el-tl-l {
    max-width: 1000px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .top-service .el-tl-l {
    max-width: 100%;
    width: auto;
    padding-left: 13.1616161616vw;
    padding-right: 13.1616161616vw;
  }
}
.top-service .el-tl-l {
  margin-bottom: 3rem;
}

.top-service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.top-service-list .service-box {
  background: #fff;
  padding: 2.5rem 2rem;
  width: 95%;
  margin-bottom: 5rem;
}
@media screen and (min-width: 1000px) {
  .top-service-list .service-box {
    width: 85%;
    padding: 5rem;
  }
}
@media screen and (min-width: 1199px) {
  .top-service-list .service-box {
    padding: 10rem;
  }
}
.top-service-list .service-box:nth-child(odd) {
  justify-self: flex-start;
}
@media screen and (min-width: 1000px) {
  .top-service-list .service-box:nth-child(odd) {
    padding-left: 10rem;
  }
}
.top-service-list .service-box:nth-child(odd) .service-box-tl {
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .top-service-list .service-box:nth-child(odd) .service-box-tl {
    text-align: right;
  }
}
.top-service-list .service-box:nth-child(odd) .service-box-tl span {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .top-service-list .service-box:nth-child(odd) .service-box-tl span {
    margin-left: 2rem;
  }
}
.top-service-list .service-box:nth-child(even) {
  justify-self: flex-end;
  margin-left: auto;
}
@media screen and (min-width: 1000px) {
  .top-service-list .service-box:nth-child(even) {
    padding-right: 15rem;
  }
}
.top-service-list .service-box:nth-child(even) .service-box-tl {
  text-align: right;
}
.top-service-list .service-box:nth-child(even) .service-box-tl span {
  margin-left: 2rem;
}
.top-service-list .service-box:first-child .service-box-desc {
  position: relative;
}
.top-service-list .service-box:first-child .service-box-desc::before {
  content: "01";
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12rem;
  letter-spacing: -0.5rem;
  opacity: 0.1;
  line-height: 1;
  color: #205DB0;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
.top-service-list .service-box:nth-child(2) .service-box-desc {
  position: relative;
}
.top-service-list .service-box:nth-child(2) .service-box-desc::before {
  content: "02";
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12rem;
  letter-spacing: -0.5rem;
  opacity: 0.1;
  line-height: 1;
  color: #205DB0;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
.top-service-list .service-box:nth-child(3) .service-box-desc {
  position: relative;
}
.top-service-list .service-box:nth-child(3) .service-box-desc::before {
  content: "03";
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12rem;
  letter-spacing: -0.5rem;
  opacity: 0.1;
  line-height: 1;
  color: #205DB0;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
.top-service-list .service-box:nth-child(4) .service-box-desc {
  position: relative;
}
.top-service-list .service-box:nth-child(4) .service-box-desc::before {
  content: "04";
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12rem;
  letter-spacing: -0.5rem;
  opacity: 0.1;
  line-height: 1;
  color: #205DB0;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .service-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-box:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.service-box .service-box-tl {
  font-size: 2rem;
  font-weight: 900;
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .service-box .service-box-tl {
    font-size: 2.7rem;
    margin-bottom: 4rem;
  }
}
.service-box .service-box-tl span {
  font-size: 1.2rem;
  display: block;
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .service-box .service-box-tl span {
    font-size: 1.6rem;
    display: inline-block;
    line-height: 1.5;
  }
}
.service-box .service-case-list-h {
  display: inline-block;
  background: #205DB0;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.8rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.3rem 2rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1000px) {
  .service-box .service-case-list-h {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.service-box .service-case-list {
  margin-bottom: 2rem;
}
.service-box .service-case-list li {
  text-indent: -1.5rem;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .service-box .service-case-list li {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .service-box .service-box-desc {
    width: 58%;
  }
}
@media screen and (min-width: 768px) {
  .service-box .service-box-img {
    width: 38%;
  }
}

/* ---  profile  --- */
.top-profile {
  position: relative;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .top-profile {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 1199px) {
  .top-profile {
    max-width: 1000px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .top-profile {
    max-width: 100%;
    width: auto;
    padding-left: 13.1616161616vw;
    padding-right: 13.1616161616vw;
  }
}
.top-profile:before {
  content: "";
  position: absolute;
  top: -230px;
  left: -90px;
  background: url(../../img/circle_gray.svg) no-repeat;
  background-size: 100%;
  height: 320px;
  width: 320px;
  z-index: 0;
}
@media screen and (min-width: 1000px) {
  .top-profile:before {
    top: -430px;
    left: -150px;
    height: 600px;
    width: 600px;
  }
}
@media screen and (min-width: 1000px) {
  .top-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 18rem;
  }
  .top-profile .el-tl-l {
    width: 40%;
    max-width: none;
  }
  .top-profile .bl-inner {
    width: 60%;
  }
  .top-profile .bl-inner .profle-table {
    width: 100%;
  }
}

@media screen and (min-width: 1000px) {
  .profle-table {
    margin-left: 5rem;
  }
}
.profle-table th {
  padding: 2rem 0;
  border-bottom: 2px solid #205DB0;
  width: 20%;
}
.profle-table td {
  padding: 2rem;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 1000px) {
  .profle-table td br {
    display: none;
  }
}

/* ---  message  --- */
.top-message {
  background: url(../../img/messasge_bg.jpg) no-repeat;
  background-size: contain;
  margin-top: 7rem;
  background-position: 1rem -4rem;
}
@media screen and (min-width: 768px) {
  .top-message {
    background-size: 80%;
    height: 50rem;
    position: relative;
  }
}
@media screen and (min-width: 1000px) {
  .top-message {
    background-position: -14rem -4rem;
  }
}
.top-message .message-innerbox {
  background: #fff;
  padding: 2.5rem 1.5rem;
  margin: 0 3rem;
  margin-top: 10rem;
}
@media screen and (min-width: 768px) {
  .top-message .message-innerbox {
    padding: 5rem;
    width: 60%;
    max-width: 110rem;
    position: absolute;
    right: 0;
    top: 19rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-message .message-innerbox {
    padding: 5rem;
    width: 50%;
    max-width: 70rem;
    position: absolute;
    right: 0;
  }
}
@media screen and (min-width: 1199px) {
  .top-message .message-innerbox {
    right: 10rem;
  }
}

/* ---  philosophy  --- */
@media screen and (min-width: 768px) {
  .top-philosophy {
    margin-top: 20rem;
  }
}

.philosophy-img {
  max-width: 100rem;
  margin: 5rem auto 0;
  padding: 0 1.5rem;
}
@media screen and (min-width: 1000px) {
  .philosophy-img {
    margin: 10rem auto 0;
  }
}

/* ---  recruit  --- */
.top-recruit-wrap {
  display: block;
}
.top-recruit-wrap:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.top-recruit {
  position: relative;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .top-recruit {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 1199px) {
  .top-recruit {
    max-width: 1000px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .top-recruit {
    max-width: 100%;
    width: auto;
    padding-left: 13.1616161616vw;
    padding-right: 13.1616161616vw;
  }
}
@media screen and (min-width: 1000px) {
  .top-recruit {
    max-width: 100rem;
  }
}
@media screen and (min-width: 1199px) {
  .top-recruit {
    max-width: none;
  }
}
.top-recruit .recruit-in {
  color: #fff;
  background: url(../../img/top_recruit_bg.jpg) no-repeat;
  background-size: 100%;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-recruit .recruit-in {
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-recruit .recruit-in {
    padding: 2rem 5rem 7rem;
    max-width: 100rem;
    margin: auto;
  }
}
@media screen and (min-width: 1199px) {
  .top-recruit .recruit-in {
    background-position: center;
  }
}
.top-recruit .recruit-in .recruit-tl {
  font-size: 3.2rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .top-recruit .recruit-in .recruit-tl {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-recruit .recruit-in .recruit-tl {
    font-size: 5.2rem;
  }
}
.top-recruit .recruit-in .recruit-tl .recruit-tl-s {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
}
.top-recruit .recruit-in p {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-recruit .recruit-in p {
    display: block;
    font-size: 1.4rem;
  }
}
.top-recruit .recruit-in .recruit-copy {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  position: relative;
  left: 6rem;
}
@media screen and (min-width: 768px) {
  .top-recruit .recruit-in .recruit-copy {
    width: 14rem;
    height: 14rem;
    margin-left: 5rem;
    position: relative;
    top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .top-recruit .recruit-in .recruit-copy {
    width: 15rem;
    height: 15rem;
    margin-left: 10rem;
  }
}
.top-recruit .recruit-in .recruit-btn {
  text-align: right;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .top-recruit .recruit-in .recruit-btn {
    bottom: 6rem;
    right: 3.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-recruit .recruit-in .recruit-btn .btn-round_s {
    min-width: 18rem;
    font-size: 1.6rem;
  }
}

/* ---  access  --- */
.top-access p {
  margin-top: 2rem;
}
@media screen and (min-width: 1000px) {
  .top-access p {
    margin-top: 5rem;
  }
}

/* ---  contact  --- */
.top-contact {
  background: url(../../img/contact_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
  padding-bottom: 2rem;
  margin-top: 5rem;
}
@media screen and (min-width: 1000px) {
  .top-contact {
    padding-bottom: 15rem;
  }
}
.top-contact .el-tl-l {
  color: #fff;
}
.top-contact .bl-form {
  background: #fff;
  margin: 2rem;
  padding: 1rem;
}
@media screen and (min-width: 1000px) {
  .top-contact .bl-form {
    padding: 5rem;
  }
}
.top-contact .bl-form p {
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .top-contact .bl-form p {
    text-align: center;
  }
}
.top-contact .contact-btn {
  text-align: center;
  margin-top: 3rem;
}

.contact-table {
  width: 100%;
  margin: auto;
  margin-top: 4rem;
}
@media screen and (min-width: 1000px) {
  .contact-table {
    max-width: 70rem;
  }
}
.contact-table th,
.contact-table td {
  display: block;
  width: 100%;
  font-size: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .contact-table th,
  .contact-table td {
    display: table-cell;
    font-size: 1.6rem;
  }
}
.contact-table th {
  vertical-align: top;
  text-align: left;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 1000px) {
  .contact-table th {
    width: 40%;
    padding: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .contact-table td {
    width: 60%;
    padding: 1rem;
  }
}

.contact-btn-flex {
  margin-top: 5rem;
}
@media screen and (min-width: 1000px) {
  .contact-btn-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-btn-flex input {
    margin: 0 1rem;
    max-width: 20rem;
    min-width: 20rem;
  }
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

/**----------------
  トピックス
----------------**/
.bl-single-tl {
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 10rem;
}
@media screen and (min-width: 1000px) {
  .bl-single-tl {
    font-size: 2.6rem;
  }
}

.bl-single-time {
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 2rem;
}

ul:first-child .bl-topics-item {
  border-top: 1px solid #000;
}

.bl-topics-item {
  padding: 2rem 0;
  border-bottom: 1px solid #000;
  width: 100%;
}
.bl-topics-item time {
  display: block;
}
@media screen and (min-width: 1000px) {
  .bl-topics-item time {
    margin-right: 5rem;
    display: inline-block;
  }
}
.bl-topics-item:hover {
  text-decoration: underline;
}/*# sourceMappingURL=styles.css.map */