@charset "UTF-8";
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Roboto:wght@100;400;900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@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;
  }
}

/* 変数宣言 */
/* 変数宣言 */
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/*------------------------------
SCSS - variables
------------------------------*/
/*------------------------------
HTML TAG STYLE
------------------------------*/
body {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.4;
  counter-reset: count;
}

p {
  line-height: 1.6;
  margin-bottom: 1em;
}

em {
  font-size: 1.2em;
  font-weight: 700;
  font-style: normal;
}

/*------------------------------
inline STYLE
------------------------------*/
/*------------------------------
class Layout STYLE
------------------------------*/
.container {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 640px) {
  .container {
    width: 100%;
    padding-right: .5em;
    padding-left: .5em;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    width: 80vw;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .container {
    width: 90vw;
  }
}

.container70 {
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 2em;
}

@media screen and (max-width: 640px) {
  .container70 {
    width: 100%;
    padding-right: .5em;
    padding-left: .5em;
  }
}

@media screen and (min-width: 1024px) {
  .container70 {
    width: 70vw;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .container70 {
    width: 80vw;
  }
}

@media screen and (max-width: 640px) {
  .br-mo {
    display: inline;
  }
}

@media screen and (min-width: 1024px) {
  .br-mo {
    display: none;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .br-mo {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .br-pc {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .br-pc {
    display: inline;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

/*------------------------------
Single Page Layout STYLE
------------------------------*/
@media screen and (min-width: 1025px) {
  .single-page-height {
    min-height: 100vh;
  }
}

.pos-centering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*------------------------------
vue-class-loader
------------------------------*/
.hideBeforeVue {
  visibility: hidden;
}

/*--------------------------------
 header
--------------------------------*/
.box-header {
  /*bottom size*/
  /*bottom size*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 640px) {
  .box-header {
    background-image: url("../img/p1_bg.jpg");
  }
}

@media screen and (min-width: 1024px) {
  .box-header {
    background-image: url("../img/p1_bg@2x.jpg");
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-header {
    background-image: url("../img/p1_bg.jpg");
  }
}

.box-header section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-header section.title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(100vh - (100px + 60px));
          flex: 0 1 calc(100vh - (100px + 60px));
}

@media screen and (max-width: 640px) {
  .box-header section.title img {
    width: 250px;
    padding-right: 1em;
    padding-left: 1em;
  }
}

@media screen and (min-width: 1024px) {
  .box-header section.title img {
    width: 400px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-header section.title img {
    width: 300px;
  }
}

.box-header section.mouse-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(100px + 60px);
          flex: 0 1 calc(100px + 60px);
}

@media screen and (max-width: 640px) {
  .box-header section.mouse-icon img {
    width: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .box-header section.mouse-icon img {
    width: 40px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-header section.mouse-icon img {
    width: 30px;
  }
}

/*--------------------------------
 overview
--------------------------------*/
.box-overview01 {
  padding-top: 2em;
  background-color: #bf1c4e;
  color: white;
}

.box-overview01 header h1 {
  padding-left: .5em;
}

.box-overview01 header h1 p {
  margin-bottom: auto;
  line-height: 1;
  word-break: break-all;
}

@media screen and (max-width: 640px) {
  .box-overview01 header h1 p {
    margin-left: auto;
  }
  .box-overview01 header h1 p:nth-child(1) {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
  }
  .box-overview01 header h1 p:nth-child(2) {
    font-size: 2rem;
    font-weight: 700;
  }
}

@media screen and (min-width: 1024px) {
  .box-overview01 header h1 p {
    margin-left: 5vw;
  }
  .box-overview01 header h1 p:nth-child(1) {
    font-size: 6rem;
    font-family: 'Roboto', sans-serif;
  }
  .box-overview01 header h1 p:nth-child(2) {
    font-size: 4rem;
    font-weight: 700;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-overview01 header h1 p {
    margin-left: auto;
  }
  .box-overview01 header h1 p:nth-child(1) {
    font-size: 5rem;
    font-family: 'Roboto', sans-serif;
  }
  .box-overview01 header h1 p:nth-child(2) {
    font-size: 3rem;
    font-weight: 700;
  }
}

.box-overview01 section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2em;
  margin-bottom: 5em;
}

@media screen and (max-width: 640px) {
  .box-overview01 section .left-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 90%;
            flex: 0 1 90%;
    padding-top: 2em;
    padding-right: .5em;
    padding-bottom: 6em;
    padding-left: .5em;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url("../img/p02_01.jpg");
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/p02_01.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) {
  .box-overview01 section .left-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 65vw;
            flex: 0 1 65vw;
    padding-top: 2em;
    padding-right: 10vw;
    padding-bottom: 2em;
    padding-left: .5em;
    background-image: url("../img/p02_01@2x.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-overview01 section .left-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70vw;
            flex: 0 1 70vw;
    padding-top: 2em;
    padding-right: .5em;
    padding-bottom: 17em;
    padding-left: .5em;
    background-image: url("../img/p02_01.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

.box-overview01 section .left-cell .text-area {
  margin-right: 5vw;
  margin-left: 5vw;
}

.box-overview01 section .left-cell .text-area h3 {
  font-size: 1.8em;
  margin-bottom: 1em;
}

.box-overview01 section .left-cell .text-area ul {
  padding-left: 1.5em;
  list-style-type: square;
}

.box-overview01 footer {
  position: relative;
  background-color: #dcd9ca;
  height: 100px;
}

.box-overview01 footer figure {
  position: absolute;
}

@media screen and (max-width: 640px) {
  .box-overview01 footer figure {
    right: 5vw;
    bottom: 78px;
    max-width: 800px;
  }
}

@media screen and (min-width: 1024px) {
  .box-overview01 footer figure {
    right: 5vw;
    bottom: 53px;
    max-width: 800px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-overview01 footer figure {
    right: 5vw;
    bottom: 53px;
    max-width: 800px;
  }
}

.box-overview01 footer figure img {
  width: 100%;
}

.box-overview02 {
  background-color: #dcd9ca;
}

.box-overview02 header {
  margin-bottom: 3em;
}

.box-overview02 header h3 {
  text-align: center;
  font-size: 2em;
}

.box-overview02 .list-merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 640px) {
  .box-overview02 .list-merit {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .box-overview02 .list-merit {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 80vw;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-overview02 .list-merit {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90vw;
  }
}

@media screen and (max-width: 640px) {
  .box-overview02 .list-merit .box-merit {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 3em;
  }
}

@media screen and (min-width: 1024px) {
  .box-overview02 .list-merit .box-merit {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-overview02 .list-merit .box-merit {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
}

.box-overview02 .list-merit .box-merit figure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: auto;
  margin-bottom: 1em;
  margin-left: auto;
  background-color: #ffffff;
  border-radius: 100%;
}

.box-overview02 .list-merit .box-merit figure figcaption {
  text-align: justify;
}

@media screen and (max-width: 640px) {
  .box-overview02 .list-merit .box-merit figure {
    width: 300px;
    height: 300px;
  }
  .box-overview02 .list-merit .box-merit figure img {
    width: 50%;
  }
  .box-overview02 .list-merit .box-merit figure figcaption {
    font-size: 1.1em;
    font-weight: 700;
    width: 60%;
  }
}

@media screen and (min-width: 1024px) {
  .box-overview02 .list-merit .box-merit figure {
    width: 260px;
    height: 260px;
  }
  .box-overview02 .list-merit .box-merit figure img {
    width: 50%;
  }
  .box-overview02 .list-merit .box-merit figure figcaption {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.2;
    width: 60%;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-overview02 .list-merit .box-merit figure {
    width: 200px;
    height: 200px;
  }
  .box-overview02 .list-merit .box-merit figure img {
    width: 50%;
  }
  .box-overview02 .list-merit .box-merit figure figcaption {
    font-size: .8em;
    font-weight: 700;
    width: 70%;
  }
}

.box-overview02 .list-merit .box-merit figure :before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 43%;
  border-style: solid;
  border-width: 2px;
  border-color: #bf1c4e;
  border-radius: 100%;
  white-space: pre;
  text-align: center;
  color: #bf1c4e;
}

@media screen and (max-width: 640px) {
  .box-overview02 .list-merit .box-merit div {
    padding-right: 1em;
    padding-left: 1em;
  }
}

.box-overview02 .list-merit .box-merit div p {
  text-align: justify;
}

.box-overview02 .cont-txt01 :before {
  margin-top: -1.5em;
  margin-right: -1.5em;
  content: "理想的\aな\aゴール";
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.2;
}

.box-overview02 .cont-txt02 :before {
  margin-top: -1.2em;
  margin-right: -1.2em;
  content: "強い\a意志";
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2;
}

.box-overview02 .cont-txt03 :before {
  margin-top: -1.5em;
  margin-right: -1.5em;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.2;
  content: "成果を\aあげる\a方法論";
}

/*--------------------------------
 service
--------------------------------*/
.service p {
  color: #444444;
  line-height: 1.6;
}

.service .box-service-main {
  padding-top: 2em;
  padding-bottom: 2em;
  background-color: #ffc654;
}

.service .box-service-main header h2 {
  text-align: right;
}

.service .box-service-main header h2 p {
  margin-bottom: auto;
  font-weight: 900;
  line-height: 1;
  word-break: break-all;
}

.service .box-service-main header h2 p:nth-child(1) {
  color: #bf1c4e;
}

@media screen and (max-width: 640px) {
  .service .box-service-main header h2 p {
    margin-left: auto;
  }
  .service .box-service-main header h2 p:nth-child(1) {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
  }
  .service .box-service-main header h2 p:nth-child(2) {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .service .box-service-main header h2 p {
    margin-left: 5vw;
  }
  .service .box-service-main header h2 p:nth-child(1) {
    font-size: 6rem;
    font-family: 'Roboto', sans-serif;
  }
  .service .box-service-main header h2 p:nth-child(2) {
    font-size: 4rem;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .service .box-service-main header h2 p {
    margin-left: auto;
  }
  .service .box-service-main header h2 p:nth-child(1) {
    font-size: 5rem;
    font-family: 'Roboto', sans-serif;
  }
  .service .box-service-main header h2 p:nth-child(2) {
    font-size: 3rem;
  }
}

.service .flex-service-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5em;
}

.service .flex-service-main .image-area figure {
  margin-top: -10em;
}

.service .flex-service-main .box-list {
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff;
  padding-top: .5em;
  padding-right: .5em;
  padding-bottom: .5em;
  padding-left: .5em;
}

.service .flex-service-main .box-list ol {
  list-style-type: decimal-leading-zero;
}

.service .flex-service-main .box-list ol li {
  font-size: .9em;
  margin-top: .5em;
  margin-bottom: .5em;
}

@media screen and (max-width: 640px) {
  .service .flex-service-main {
    margin-top: 1em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service .flex-service-main > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .service .flex-service-main .image-area figure {
    margin-top: 1em;
  }
}

@media screen and (min-width: 1024px) {
  .service .flex-service-main > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .service .flex-service-main .image-area {
    margin-right: 1em;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .service .flex-service-main > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .service .flex-service-main .image-area {
    margin-right: 1em;
  }
  .service .flex-service-main .image-area figure {
    margin-top: -6em;
  }
}

.box-service-base .flex-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.box-service-base .flex-service .text-area header {
  position: relative;
  margin-bottom: 1em;
  padding-top: 160px;
  padding-bottom: 1em;
}

.box-service-base .flex-service .text-area header:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 160px;
  width: 100px;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #bf1c4e;
  font-size: 40px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  counter-increment: count;
  content: "0" counter(count);
}

.box-service-base .flex-service .text-area header:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 4px;
  width: 100px;
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
  background-color: #bf1c4e;
}

@media screen and (max-width: 640px) {
  .box-service-base .flex-service .text-area header h3 {
    font-size: 2em;
    font-weight: 900;
  }
}

@media screen and (min-width: 1024px) {
  .box-service-base .flex-service .text-area header h3 {
    font-size: 3em;
    font-weight: 900;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-service-base .flex-service .text-area header h3 {
    font-size: 2em;
    font-weight: 900;
  }
}

.box-service-base .flex-service .text-area header h3 span {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
}

.box-service-base .flex-service .image-area {
  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;
  margin-top: 1em;
}

.box-service-base .flex-service .image-area img {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .box-service-base .flex-service {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .box-service-base .flex-service > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

@media screen and (min-width: 1024px) {
  .box-service-base .flex-service > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-service-base .flex-service > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
  }
}

.box-service-l {
  background-color: #e6e5e2;
}

.box-service-r {
  background-color: #f1f0ee;
}

.box-service-r .flex-service {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.time-n-cost {
  margin-top: 1em;
}

.time-n-cost div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
  border-style: solid;
  border-width: 1px;
  border-radius: 200px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.time-n-cost div > * {
  padding-top: .5em;
  padding-right: 1em;
  padding-bottom: .5em;
  padding-left: 1em;
}

.time-n-cost div h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 200px 0 0 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}

.time-n-cost div p {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65%;
          flex: 0 1 65%;
  margin-bottom: 0;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .time-n-cost div h4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
  .time-n-cost div p {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
            flex: 0 1 60%;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .time-n-cost div h4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
    font-size: .8em;
  }
  .time-n-cost div p {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
            flex: 0 1 60%;
    font-size: .8em;
  }
}

.time-n-cost div > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.time-n-cost div i {
  padding-right: .5em;
}

.time-n-cost div:nth-child(1) {
  border-color: #8b1a3d;
}

.time-n-cost div:nth-child(1) h4 {
  background-color: #8b1a3d;
  color: #ffffff;
}

.time-n-cost div:nth-child(1) p {
  color: #8b1a3d;
}

.time-n-cost div:nth-child(2) {
  border-color: #bf1c4e;
}

.time-n-cost div:nth-child(2) h4 {
  background-color: #bf1c4e;
  color: #ffffff;
}

.time-n-cost div:nth-child(2) p {
  color: #bf1c4e;
}

.time-n-cost div:nth-child(3) {
  border-color: #21387c;
}

.time-n-cost div:nth-child(3) h4 {
  background-color: #21387c;
  color: #ffffff;
}

.time-n-cost div:nth-child(3) p {
  color: #21387c;
}

.box-profile {
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  background-color: #ffffff;
}

@media screen and (max-width: 640px) {
  .box-profile {
    margin-top: 2rem;
    margin-right: 1rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .box-profile {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-profile {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}

.box-profile header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #FFDB92;
}

@media screen and (max-width: 640px) {
  .box-profile header {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}

.box-profile header figure {
  padding-top: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.box-profile header section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-align: left;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .box-profile header section {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

@media screen and (min-width: 1024px) {
  .box-profile header section {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% - 350px);
            flex: 0 1 calc(100% - 350px);
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-profile header section {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% - 350px);
            flex: 0 1 calc(100% - 350px);
  }
}

.box-profile header section div {
  margin-right: auto;
  margin-left: auto;
}

.box-profile header section div h3 {
  font-size: 2em;
  line-height: 1.5;
}

.box-profile header section div p {
  margin-bottom: 0;
}

.box-profile .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1.5em;
}

@media screen and (max-width: 640px) {
  .box-profile .text-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.box-profile .text-area h4 {
  font-size: 1.5rem;
}

.box-profile .text-area ul {
  margin-top: 1ex;
  padding-left: 1.5em;
}

.box-profile .text-area ul li {
  font-size: .9em;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .box-profile .text-area div {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

@media screen and (min-width: 1024px) {
  .box-profile .text-area div {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 1rem);
            flex: 0 1 calc(50% - 1rem);
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-profile .text-area div {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 1rem);
            flex: 0 1 calc(50% - 1rem);
  }
}

/*--------------------------------
 inquiry
--------------------------------*/
.inquiry {
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 640px) {
  .inquiry {
    padding-top: .5em;
    padding-bottom: .5em;
  }
}

@media screen and (min-width: 1024px) {
  .inquiry {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .inquiry {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

@media screen and (max-width: 640px) {
  .inquiry {
    background-image: url("../img/p12_bg.jpg");
  }
}

@media screen and (min-width: 1024px) {
  .inquiry {
    background-image: url("../img/p12_bg@2x.jpg");
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .inquiry {
    background-image: url("../img/p12_bg.jpg");
  }
}

.box-inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1024px;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  background-color: rgba(15, 26, 57, 0.5);
}

@media screen and (max-width: 640px) {
  .box-inquiry {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 1024px) {
  .box-inquiry {
    -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-inquiry {
    -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
  }
}

.box-inquiry .grid-inquiry {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  max-width: 1000px;
  -ms-grid-columns: (minmax(1fr, 250px))[3];
      grid-template-columns: repeat(3, minmax(1fr, 250px));
}

.box-inquiry .grid-inquiry figure {
  max-width: 100%;
}

.box-inquiry .grid-inquiry figure img {
  width: 100%;
}

.box-inquiry .grid-inquiry #cell01 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

.box-inquiry .grid-inquiry #cell02 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

.box-inquiry .grid-inquiry #cell03 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
}

.box-inquiry .grid-inquiry #cell04 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

.box-inquiry .grid-inquiry #cell05 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

.box-inquiry .grid-inquiry #cell06 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
}

.box-inquiry section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  max-width: 350px;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  background-color: #CF70B9;
}

@media screen and (max-width: 640px) {
  .box-inquiry section {
    margin-top: 10px;
    margin-left: 0px;
  }
}

@media screen and (min-width: 1024px) {
  .box-inquiry section {
    margin-left: 30px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .box-inquiry section {
    margin-left: 30px;
  }
}

.box-inquiry section div {
  color: #fff;
  font-weight: 700;
}

.box-inquiry section nav {
  margin-top: 2em;
}

.box-inquiry section nav .btn {
  display: block;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: .5em;
  padding-right: .5em;
  padding-bottom: .5em;
  padding-left: .5em;
  background-color: #ffffff;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  color: #000000;
  text-decoration: none;
  text-align: center;
}

.box-inquiry section nav .btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  background: #000;
}

.box-inquiry section nav .btn:hover {
  color: #fff;
  background-color: #000000;
}

.box-inquiry section nav .btn:hover:before {
  background-color: #fff;
}

/*--------------------------------
 footer
--------------------------------*/
.corp {
  padding-top: 5em;
  padding-bottom: 2em;
  background-color: #0f1a39;
}

.corp figure:nth-child(1) {
  margin-bottom: 5em;
}

@media screen and (max-width: 640px) {
  .corp figure:nth-child(1) img {
    width: 150px;
    padding-right: 1em;
    padding-left: 1em;
  }
}

@media screen and (min-width: 1024px) {
  .corp figure:nth-child(1) img {
    width: 200px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .corp figure:nth-child(1) img {
    width: 150px;
  }
}

@media screen and (max-width: 640px) {
  .corp figure:nth-child(2) img {
    width: 150px;
    padding-right: 1em;
    padding-left: 1em;
  }
}

@media screen and (min-width: 1024px) {
  .corp figure:nth-child(2) img {
    width: 200px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .corp figure:nth-child(2) img {
    width: 150px;
  }
}
/*# sourceMappingURL=style.css.map */