<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 14px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #000;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

li {
  list-style: none;
}

/**********************************************************************
* base
*********************************************************************/
:root {
  --primeColor: #0c3085;
  --textColor: #222;
  --serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --roboto: "Roboto", serif;
}

body {
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
body img {
  width: 100%;
  height: auto;
  max-width: unset;
}
body .c-serif {
  font-family: var(--serif);
}
body .c-roboto {
  font-family: var(--roboto);
}
body a {
  opacity: 1;
  transition: opacity 0.3s;
}
body a:hover {
  opacity: 0.7;
}

/**********************************************************************
* utility
*********************************************************************/
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

/**********************************************************************
* component
*********************************************************************/
.c-button__link {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background-image: linear-gradient(to top, #68921a 0%, rgb(135 190 34) 80%, #87be22 100%);
  border: 2px solid #fff;
  display: flex
;
  justify-content: center;
  align-items: center;
  column-gap: 6px;
  padding: 20px 15px;
  position: relative;
}
.c-button__link::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  background-color: currentColor;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: 10%;
  translate: 0 -50%;
}

.c-section {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .c-section {
    padding: 80px 0;
  }
}

.c-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 32px;
  }
}
.c-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 7px;
  background-color: #63bfff;
  transform: skewX(-45deg);
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .c-title::after {
    width: 86px;
  }
}
.c-title--strong {
  font-size: 1.2em;
}

.c-cta {
  padding: 50px 0;
  background-image: url("../image/bg-cta_01.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 1500px auto;
}
@media screen and (min-width: 768px) {
  .c-cta {
    background-position: top -80px center;
    background-size: 2540px auto;
  }
}
.c-cta__text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.7);
}
.c-cta__button {
  margin: 10px auto 0;
  width: 325px;
}
.c-cta__link {
  padding: 10px 15px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
}

/**********************************************************************
* layout
*********************************************************************/
.l-inner {
  width: 100%;
  max-width: 1040px;
  padding: 0 16px;
  margin: 0 auto;
}

.l-header {
  background-color: #f5f5f5;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 50;
    padding: 20px 0;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 250px;
  }
}
.l-header__logo img {
  vertical-align: middle;
}
.l-header__contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__contact {
    display: flex;
    align-items: center;
    column-gap: 30px;
    color: var(--primeColor);
    line-height: 1;
  }
}
.l-header__number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.l-header__number::before {
  content: "";
  display: block;
  width: 1.1em;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -125% -50%;
  background-image: url("../image/icon-tel_01.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-header__time {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-top: 12px;
}
.l-header__link {
  background-image: unset;
  background-color: var(--primeColor);
  color: #fff;
  padding: 15px 20px;
  font-size: 20px;
}
.l-header__link::after {
  position: static;
  translate: unset;
}

.l-footer {
  padding: 35px 0;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 40px 0;
  }
}
.l-footer__copyright {
  text-align: center;
}

.l-follow {
  position: sticky;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .l-follow {
    display: none;
  }
}
.l-follow__inner {
  display: flex;
  justify-content: center;
  column-gap: 16px;
}
.l-follow__link {
  padding: 5px 10px;
  font-size: 20px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
  width: calc((100% - 16px) / 2);
}
.l-follow__link:has(.l-follow__text) {
  background-image: unset;
  background-color: var(--primeColor);
  color: #fff;
}
.l-follow__link::after {
  right: 5%;
}
.l-follow__text {
  font-size: 10px;
  font-weight: 500;
}
.l-follow__text--small, .l-follow__text--strong {
  display: block;
  line-height: 1.25;
  text-align: center;
}
.l-follow__text--strong {
  font-size: 2em;
}

/**********************************************************************
* project
*********************************************************************/
.p-solution__line, .p-worries__line {
  text-decoration: underline;
  text-decoration-color: #fff600;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}

.p-faq__body::before, .p-faq__heading::before {
  left: var(--position);
  font-family: var(--roboto);
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
}

.p-mv {
  background-image: url("../image/bg-mv_01_sp.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background-image: url("../image/bg-mv_01_pc.jpg");
    background-size: contain;
  }
}
.p-mv__inner {
  padding: 75px 0 160px;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding-top: 125px;
    padding-bottom: 108px;
    display: flex;
    justify-content: center;
    align-items: start;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    width: 55%;
    padding-top: 20px;
  }
}
.p-mv__contact {
  display: block;
  width: 92%;
  background-color: #fff;
  position: relative;
  padding-top: 20px;
  margin: 10px auto
}
.p-mv__contact::after {
  content: "";
  display: block;
  width: 90px;
  aspect-ratio: 1/1;
  position: absolute;
  top: -7px;
  right: -7px;
  background-image: url("../image/txt-mv_02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
 .p-mv__contact {
   width: 45%;
   margin:0;
   padding-top: 25px;
 }
 .p-mv__contact::after {
   width: 110px;
   top: -8px;
   right: -8px;
 }
}
.p-mv__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}
.p-mv__heading small {
  display: inline-block;
  background: #b77930;
  border-radius: 4px;
  margin-right: 8px;
  padding: 1px 8px 0;
  color: #ffffff;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-mv__heading {
    font-size: 20px;
  }
  .p-mv__heading small {
    font-size: 14px;
  }
}
.p-mv__link {
  font-size: 18px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  width: 71.64%;
  margin: 15px auto 0;
}
@media screen and (min-width: 768px) {
  .p-mv__link {
    display: none;
  }
}

.p-worries {
  background-color: #000;
  background-image: url("../image/bg-worries_01.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
.p-worries__title {
  width: 333px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-worries__title {
    width: 409px;
  }
}
.p-worries__inner {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 7.1%;
}
.p-worries__box {
  width: 100%;
  max-width: 450px;
  background-color: rgba(255, 255, 255, 0.851);
  margin-top: 20px;
  padding: 20px 0 25px;
}
@media screen and (min-width: 768px) {
  .p-worries__box {
    margin-top: 30px;
    padding: 20px 0 25px;
  }
}
.p-worries__title-sub {
  background-color: #333;
  color: #fff;
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 25px;
  translate: -10px 0;
}
@media screen and (min-width: 768px) {
  .p-worries__title-sub {
    font-size: 22px;
    padding: 10px 30px;
  }
}
.p-worries__list {
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-worries__list {
    margin-top: 15px;
    padding: 0 30px 0 20px;
  }
}
.p-worries__item {
  position: relative;
  padding-left: 0.8lh;
}
.p-worries__item::before {
  content: "";
  display: block;
  height: 1lh;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.04%2022.4%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23000%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%205px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%222.5%209.49%209.85%2019.9%2023.54%202.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40% auto;
}
.p-solution {
  background-color: #e9eef7;
  position: relative;
}
.p-solution::before {
  content: "";
  display: block;
  width: 120px;
  aspect-ratio: 240/93;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #202125;
  position: absolute;
  top: -1px;
  left: 50%;
  translate: -50% 0;
}
.p-solution__inner {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-solution__box {
    position: relative;
  }
  .p-solution__box:nth-child(odd) .p-solution__text-box {
    right: 0;
  }
  .p-solution__box:nth-child(even) .p-solution__image {
    margin-left: auto;
  }
  .p-solution__box:nth-child(even) .p-solution__text-box {
    left: 0;
  }
}
.p-solution__box + .p-solution__box {
  margin-top: 45px;
}
.p-solution__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-solution__image {
    max-width: 404px;
  }
}
.p-solution__text-box {
  width: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px 20px 35px;
  margin-top: -20px;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-solution__text-box {
    width: 100%;
    max-width: 664px;
    position: absolute;
    bottom: 20px;
    margin: 0;
  }
}
.p-solution__title-sub {
  font-size: 24px;
  font-weight: 600;
}
.p-solution__list {
  margin-top: 10px;
}
.p-solution__item {
  position: relative;
  padding-left: 0.65lh;
  font-size: 16px;
  font-weight: 500;
}
.p-solution__item::before {
  content: "";
  display: block;
  height: 1lh;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../image/icon-dia_01.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40%;
}
.p-strengths {
  background-color: #f6f6f6;
}
.p-strengths__inner {
  margin-top: 70px;
  counter-reset: number;
}
@media screen and (min-width: 768px) {
  .p-strengths__inner {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(auto-fit, 30.5%);
  }
}
.p-strengths__box {
  counter-increment: number;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-strengths__box {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}
.p-strengths__box::before {
  content: counter(number);
  color: var(--primeColor);
  font-family: var(--roboto);
  font-style: italic;
  font-weight: 300;
  font-size: 75px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  translate: 25% -55%;
}
@media screen and (min-width: 768px) {
  .p-strengths__box::before {
    translate: 0 -55%;
  }
}
.p-strengths__box + .p-strengths__box {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .p-strengths__box + .p-strengths__box {
    margin-top: 0;
  }
}
.p-strengths__roboto {
  font-size: 1.5em;
  font-style: italic;
  font-weight: 500;
  color: var(--primeColor);
  line-height: 1;
}
.p-strengths__text-box {
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: -25px;
  position: relative;
  padding: 44px 30px 20px;
}
@media screen and (min-width: 768px) {
  .p-strengths__text-box {
    padding: 44px 15px 20px;
  }
}
.p-strengths__title-sub {
  font-size: 21px;
  font-weight: 700;
}
.p-strengths__text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}
.p-strengths__text--small {
  font-size: 0.78em;
}

.p-solve {
  position: relative;
}
.p-solve::before {
  content: "";
  display: block;
  width: 100%;
  height: 380px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #f6f6f6;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-solve::before {
    height: 376px;
  }
}
:where(.p-solve__title, .p-solve__inner) {
  position: relative;
}
.p-solve__inner {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-solve__inner {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(auto-fit, 30.5%);
  }
}
.p-solve__box {
  background-color: #fff;
  border: 2px solid #ccc;
  padding: 20px 35px;
}
@media screen and (min-width: 768px) {
  .p-solve__box {
    padding: 20px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
.p-solve__box + .p-solve__box {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-solve__box + .p-solve__box {
    margin-top: 0;
  }
}
.p-solve__image {
  display: grid;
  place-content: center;
}
.p-solve__image img {
  aspect-ratio: 1/1;
}
.p-solve__image--size1 img {
  width: 147.5px;
}
.p-solve__image--size2 img {
  width: 115px;
}
.p-solve__image--size3 img {
  width: 132px;
}
.p-solve__title-sub {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
.p-solve__text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

.p-voice {
  background-color: #e6eef9;
}
.p-voice__inner {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-voice__inner {
    margin-top: 60px;
  }
}
.p-voice__box {
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-voice__box {
    padding: 40px 40px 20px;
    display: flex;
    column-gap: 40px;
  }
}
.p-voice__box + .p-voice__box {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-voice__box + .p-voice__box {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-voice__image {
    width: 290px;
  }
}
.p-voice__name {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.p-voice__name--strong {
  font-weight: 700;
  margin-right: 1em;
}
@media screen and (min-width: 768px) {
  .p-voice__name {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-voice__text-box {
    width: calc(100% - 290px - 40px);
  }
}
.p-voice__title-sub {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-voice__title-sub {
    font-size: 26px;
    margin-top: 0;
  }
}
.p-voice__tag {
  font-size: 18px;
  font-weight: 500;
  background-color: #e6eef9;
  width: fit-content;
  padding: 0.15em 0.8em;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-voice__tag {
    padding: 0.15em 1em;
  }
}
.p-voice__text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}

.p-staff__list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-staff__list {
    margin-top: 85px;
    row-gap: 90px;
  }
}
.p-staff__item {
  background-color: #f3f3f3;
  padding-bottom: 20px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-staff__item {
    width: 45%;
    padding-bottom: 30px;
  }
}
.p-staff__image {
  position: relative;
  margin-left: -20px;
}
@media screen and (min-width: 768px) {
  .p-staff__image {
    width: 87.78%;
    translate: -20px -45px;
    margin-left: 0;
  }
}
.p-staff__name {
  position: absolute;
  bottom: 20px;
  right: 15.19%;
  font-size: 19px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-staff__name {
    font-size: 20px;
  }
}
.p-staff__position {
  display: block;
  font-size: 0.75em;
}
.p-staff__text {
  padding: 10px 20px 0;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-staff__text {
    margin-top: -25px;
    padding: 0 30px;
  }
}

.p-service__notes {
  font-size: 10px;
  text-align: right;
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .p-service__notes {
    font-size: 12px;
  }
}

.p-flow {
  background-color: #e6eef9;
}
.p-flow__inner {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    margin-top: 40px;
  }
}
.p-flow__text {
  font-size: 18px;
}
.p-flow__list {
  margin-top: 40px;
  counter-reset: flow;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
   display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 20px;
   flex-wrap: wrap
  }
}
@media screen and (max-width: 767px) {
 .p-flow__list::before {
   content: "";
   display: block;
   width: 25px;
   height: 95%;
   background-color: #63bfff;
   position: absolute;
   top: 0;
   left: 50%;
   translate: -50% 0;
 }
}
@media screen and (min-width: 768px) {
  .p-flow__list::before {
    width: 95%;
    height: 25px;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
}
.p-flow__item {
  display: grid;
  place-content: center;
  position: relative;
  counter-increment: flow;
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  aspect-ratio: 335/72;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    width: 20%;
    max-width: 150px;
    margin-bottom: 20px;
    aspect-ratio: 6/5;
    font-size: 21px;
  }
  .p-flow__item:not(:last-child)::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: -24px;
    top: 42%;
    width: 16px;
    height: 16px;
    margin: 0 10px;
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    transform: rotate(45deg);
  }
  .arrow {
      list-style:  none;
      padding:  0;
  }
}
.p-flow__item::before {
  content: counter(flow);
  position: absolute;
  top: 50%;
  left: 0;
  translate: -50% -50%;
  font-family: var(--roboto);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  color: #63bfff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-flow__item::before {
    top: 0;
    left: 50%;
    translate: -50% -70%;
    font-size: 36px;
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-flow__item + .p-flow__item {
    margin-top: unset;
  }
}

.p-faq__list {
  --position: 20px;
  margin: 40px auto 0;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    --position: 15px;
  }
}
.p-faq__box + .p-faq__box {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-faq__box + .p-faq__box {
    margin-top: 35px;
  }
}
.p-faq__heading {
  background-color: #e6eef9;
  padding: 15px calc(var(--position) + 2em);
  position: relative;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-faq__heading {
    padding: 20px calc(var(--position) + 2em);
  }
}
.p-faq__heading::before, .p-faq__heading::after {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.p-faq__heading::before {
  content: "Q";
  color: #63bfff;
}
.p-faq__heading::after {
  content: "";
  height: 1lh;
  aspect-ratio: 1/1;
  position: absolute;
  right: var(--position);
  rotate: 0deg;
  transition: rotate 0.3s;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2029.14%2017.28%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%2363bfff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%205px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%222.5%202.5%2014.57%2014.78%2026.64%202.5%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-faq__heading.is-open::after {
  rotate: 180deg;
}
.p-faq__body {
  padding: 15px 0 0 calc(var(--position) + 2em);
  position: relative;
  font-size: 18px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-faq__body {
    padding: 20px calc(var(--position) + 2em) 0;
  }
}
.p-faq__body::before {
  content: "A";
  color: var(--primeColor);
  position: absolute;
  top: 15px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-faq__body::before {
    top: 20px;
  }
}

.p-company {
  background-image: url("../image/bg-company_01-sp.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.p-company__list {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 35px auto 0;
  padding: 40px 20px 30px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
   .p-company {
     background-image: url("../image/bg-company_01.jpg");
     background-repeat: no-repeat;
     background-position: top center;
     background-size: cover;
   }
  .p-company__list {
    margin-top: 40px;
    padding: 30px 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-company__box {
    display: flex;
  }
}
.p-company__box + .p-company__box {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-company__box + .p-company__box {
    margin-top: 8px;
  }
}
.p-company__heading {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-company__heading {
    width: 25%;
    padding: 5px 0;
  }
}
.p-company__body {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-company__body {
    width: 75%;
    padding: 5px 0 5px 1em;
    border-left: 2px solid #ccc;
  }
}
.p-company__link {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  color: inherit;
}

/**********************************************************************
* table
*********************************************************************/
.sectTbl :is(th, td) {
  vertical-align: top;
}

.pcNone {
  display: none;
}

.spNone {
  display: block;
}

#Contents #TopPage.artCont #TblSect .sectTbl .colorY .wrap.bgPink {
  background-color: #ffd6d6;
  border: 2px solid #fff;
}

@media screen and (max-width: 780px) {
  .pcNone {
    display: block;
  }
  .spNone {
    display: none;
  }
}
.txtCenter {
  text-align: center;
}

#Contents #TopPage.artCont #TblSect .sectTbl {
  border-collapse: separate;
  border-spacing: 8px 0;
  height: 100%;
  width: 100%;
  margin: 30px auto 0;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  #Contents #TopPage.artCont #TblSect .sectTbl {
    margin-top: 40px;
  }
}

#Contents #TopPage.artCont #TblSect .sectTbl .row01 {
  background: #FDE67C;
  padding: 8px 8px 0;
  border-radius: 5px 5px 0 0;
  font-size: 19px;
  font-weight: bold;
  color: #004F99;
  text-align: center;
  height: auto;
}

#Contents #TopPage.artCont #TblSect .sectTbl .row01 .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#Contents #TopPage.artCont #TblSect .sectTbl tr:nth-child(1) th {
  height: 30px;
}

#Contents #TopPage.artCont #TblSect .sectTbl .row02 {
  background: #D1D1D1;
  padding: 8px;
  border-radius: 5px 5px 0 0;
}

#Contents #TopPage.artCont #TblSect .sectTbl .row03 {
  background: #D1D1D1;
  padding: 8px;
  border-radius: 5px 5px 0 0;
}

#Contents #TopPage.artCont #TblSect .sectTbl .row02 .wrap, #Contents #TopPage.artCont #TblSect .sectTbl .row03 .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  color: #004F99;
}

#Contents #TopPage.artCont #TblSect .sectTbl .colTit {
  width: 22.65%;
  max-width: 183px;
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-bottom: 8px solid rgba(255, 255, 255, 0);
}

#Contents #TopPage.artCont #TblSect .sectTbl .colTit span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  background: #004F99;
  padding: 20px 14px;
  border-radius: 5px;
 font-size:20px;
}

#Contents #TopPage.artCont #TblSect .sectTbl .colorY {
  background: #FDE67C;
  height: 100%;
  padding: 0 8px 8px;
}

#Contents #TopPage.artCont #TblSect .sectTbl tr:nth-child(3) .colorY {
  padding-top: 0;
}

#Contents #TopPage.artCont #TblSect .sectTbl .colorY .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #004F99;
  line-height: 1.25;
}

#Contents #TopPage.artCont #TblSect .sectTbl .pFont {
  font-size: 35px;
}

#Contents #TopPage.artCont #TblSect .sectTbl .fontS {
  font-size: 15px;
}

#Contents #TopPage.artCont #TblSect .sectTbl tr:nth-child(4) .fontS,
#Contents #TopPage.artCont #TblSect .sectTbl tr:nth-child(5) .fontS {
  margin-top: 10px;
}

#Contents #TopPage.artCont #TblSect .sectTbl .colorY .colorR {
  color: #C71616;
  font-size: 17px;
  width: 100%;
  text-align: center;
  margin-top: -20px;
}

#Contents #TopPage.artCont #TblSect .sectTbl .colTit .fontS {
  font-size: 12px;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row;
}

#Contents #TopPage.artCont #TblSect .sectTbl td {
  background: #D1D1D1;
  height: 100%;
  padding: 0 8px 8px;
  width: 25.8%;
  max-width: 214px;
  line-height: 1.25;
}

#Contents #TopPage.artCont #TblSect .sectTbl td .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  background: #fff;
  width: 100%;
  height: 100%;
  padding:2px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #004F99;
}

#Contents #TopPage.artCont #TblSect .sectTbl tr:nth-child(8) td {
  border-radius: 0 0 5px 5px;
}

@media screen and (max-width: 1020px) {
  #Contents #TopPage.artCont #TblSect .subTit {
    font-size: 4.6vw;
  }
}
@media screen and (max-width: 780px) {
  #Contents #TopPage.artCont #TblSect .sectMain {
    padding: 66px 0 40px;
  }
  #Contents #TopPage.artCont #TblSect .subTit {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl {
    border-spacing: 3px 0;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .row01 .wrap {
    font-size: 11px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl tr:nth-child(1) th {
    height: 20px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .row02 .wrap, #Contents #TopPage.artCont #TblSect .sectTbl .row03 .wrap {
    font-size: 11px;
    line-height: 1.2;
    height: 100%;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .colTit {
    border-bottom: 4px solid rgba(255, 255, 255, 0);
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .colTit span {
    font-size: 10px;
    padding: 20px 6px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .colorY {
    padding: 0 4px 4px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .colorY .wrap {
    font-size: 11px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .pFont {
    font-size: 25px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .fontS {
    font-size: 10px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .colorY .colorR {
    font-size: 10px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl .colTit .fontS {
    font-size: 10px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl td {
    padding: 0 4px 4px;
  }
  #Contents #TopPage.artCont #TblSect .sectTbl td .wrap {
    font-size: 11px;
  }
}
</pre></body></html>