@charset "UTF-8";
/*!
foundation > breakpoint
------------------------------
*/
/*!
foundation > color
------------------------------
*/
:root {
  --fonts-color-base: #000000;
  --fonts-color-top: #00289E;
  --background-color-base: #ffffff;
  --background-color-sub: #F5F7F7;
  --button-color-darken: #A83900;
  --button-color-lighten: #FF7400;
  --color-blue: #004FC2;
  --color-blue-darken: #0094EA;
  --color-blue-darken-sp: #00A5ED;
  --color-blue-lighten:#33C8E7;
  --color-blue-lighten-sp:#39D0EB;
  --color-gray: #B6B6B6;
  --color-line-gray:#dddddd;
  --color-yellow-lighten: #FFFF5B;
  --color-yellow-darken: #FFC100;
}

/*!
foundation > content-width
------------------------------
*/
:root {
  --layout-width-inner: 1040px;
}

/*!
foundation > typography
------------------------------
*/
:root {
  --font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  --font-size-base: 1.6rem;
  --font-weight-base: 600;
  --font-family-arial: Arial;
}

/*!
foundation > reset
------------------------------
*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

ul, ol {
  list-style: none;
  list-style-type: none;
}

code, kbd, pre, samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote, q {
  quotes: none;
}

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

address {
  font-style: normal;
}

/*!
foundation > base
------------------------------
*/
html {
  font-size: 62.5%;
  line-height: 1.46;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--fonts-color);
  background-color: var(--background-color-base);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: var(--fonts-color);
  text-decoration: none;
  cursor: pointer;
}

/* 共通
========================================================== */
.main {
  position: relative;
  background: var(--background-color-base);
  overflow: hidden;
}

/* fade-in-animation
========================================================== */
.animation-up {
  opacity: 0;
  perspective: 1000;
  -webkit-perspective: 1000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 1.4s;
  -webkit-transition: -webkit-transform all 1.4s;
  transform: translateY(70px);
}

.active {
  opacity: 1;
  perspective: 1000;
  -webkit-perspective: 1000;
  visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transform: translateY(0);
}

/*!
utility > only
------------------------------
*/
/* only
========================================================== */
.pc-only {
  display: none;
}
@media screen and (max-width: 960px) {
  .pc-only {
    display: block;
  }
}

.pc-down-only {
  display: none;
}
@media screen and (max-width: 920px) {
  .pc-down-only {
    display: block;
  }
}

.tab-up-only {
  display: none;
}
@media screen and (max-width: 799px) {
  .tab-up-only {
    display: block;
  }
}

.tab-down-only {
  display: none;
}
@media screen and (max-width: 660px) {
  .tab-down-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media screen and (max-width: 770px) {
  .tab-only {
    display: block;
  }
}

.sp-up-only {
  display: none;
}
@media screen and (max-width: 560px) {
  .sp-up-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp-only {
    display: block;
  }
}

.sp-down-only {
  display: none;
}
@media screen and (max-width: 330px) {
  .sp-down-only {
    display: block;
  }
}

/* none
========================================================== */
@media screen and (max-width: 960px) {
  .pc-none {
    display: none;
  }
}

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

@media screen and (max-width: 799px) {
  .tab-up-none {
    display: none;
  }
}

@media screen and (max-width: 770px) {
  .tab-none {
    display: none;
  }
}

@media screen and (max-width: 660px) {
  .tab-down-none {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .sp-up-none {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .sp-none {
    display: none;
  }
}

@media screen and (max-width: 330px) {
  .sp-down-none {
    display: none;
  }
}

/*!
foundation > c-title
------------------------------
*/
.c-section-title__unit {
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 770px) {
  .c-section-title__unit {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 660px) {
  .c-section-title__unit {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 560px) {
  .c-section-title__unit {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 450px) {
  .c-section-title__unit {
    padding: 1.5rem 0;
  }
}

.c-section__blue-lighten {
  background: url(/app/assets/images/pc/lp/skill/pc-title-line-01.png) no-repeat center center/cover;
}
@media screen and (max-width: 660px) {
  .c-section__blue-lighten {
    display: none;
  }
}

.c-section__blue-lighten_sp {
  background: url(/app/assets/images/pc/lp/skill/sp-title-line-01.png) no-repeat 40% center/cover;
}
@media screen and (max-width: 660px) {
  .c-section__blue-lighten_sp {
    display: block;
  }
}

.c-section__blue-darken {
  background: url(/app/assets/images/pc/lp/skill/pc-title-line-02.png) no-repeat center center/cover;
}
@media screen and (max-width: 660px) {
  .c-section__blue-darken {
    display: none;
  }
}

.c-section__blue-darken_sp {
  background: url(/app/assets/images/pc/lp/skill/sp-title-line-02.png) no-repeat 40% center/cover;
}
@media screen and (max-width: 660px) {
  .c-section__blue-darken_sp {
    display: block;
  }
}

.c-section-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--background-color-base);
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 770px) {
  .c-section-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 660px) {
  .c-section-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 560px) {
  .c-section-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 450px) {
  .c-section-title {
    font-size: 1.6rem;
  }
}

/*!
foundation > c-button
------------------------------
*/
.util_button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-align: center;
  background-color: var(--button-color-lighten);
  box-shadow: 0 6px 0 var(--button-color-darken), 0 10px 5px rgba(0, 0, 0, 0.3);
  border-radius: 100vh;
  padding: 0.5rem;
  width: 41rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.util_button:focus, .util_button:hover {
  box-shadow: none;
  opacity: 0.8;
}
@media screen and (max-width: 560px) {
  .util_button {
    width: 38rem;
  }
}
@media screen and (max-width: 450px) {
  .util_button {
    width: 30rem;
  }
}
@media screen and (max-width: 330px) {
  .util_button {
    width: 26rem;
  }
}

.util_link {
  letter-spacing: 1.8px;
  color: var(--background-color-base);
}

.button__text_top {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
@media screen and (max-width: 560px) {
  .button__text_top {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 450px) {
  .button__text_top {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 330px) {
  .button__text_top {
    font-size: 1.2rem;
  }
}

.button__text_down {
  font-size: 2.7rem;
  font-weight: 600;
}
@media screen and (max-width: 560px) {
  .button__text_down {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 450px) {
  .button__text_down {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 330px) {
  .button__text_down {
    font-size: 1.6rem;
  }
}

/*!
layout > l-footer
------------------------------
*/
.l-footer__inner {
  width: 100%;
  background-color: var(--color-blue-darken);
  padding: 2.8rem;
  text-align: center;
  color: white;
}

/*!
layout > l-header
------------------------------
*/
.l-header {
  background-color: var(--background-color-base);
  border-bottom: 3px solid var(--color-line-gray);
}

.l-header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 7rem;
}
@media screen and (max-width: 560px) {
  .l-header__inner {
    height: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .l-header__inner {
    height: 5rem;
  }
}

.l-header__logo_img {
  width: 22.3rem;
}
@media screen and (max-width: 560px) {
  .l-header__logo_img {
    width: 20rem;
  }
}
@media screen and (max-width: 450px) {
  .l-header__logo_img {
    width: 16rem;
  }
}

/*!
layout > l-inner
------------------------------
*/
.l-inner {
  width: 100%;
  max-width: var(--layout-width-inner);
  height: 100%;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 770px) {
  .l-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .l-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 330px) {
  .l-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/*!
project > p-commission
------------------------------
*/
.p-commission__container {
  padding: 10.4rem 0 11.4rem;
}
@media screen and (max-width: 920px) {
  .p-commission__container {
    padding: 6rem 0 7rem;
  }
}
@media screen and (max-width: 770px) {
  .p-commission__container {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 450px) {
  .p-commission__container {
    padding: 3rem 0 3.5rem;
  }
}

.p-commission__unit {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  border: 2px solid var(--color-blue-darken);
  border-bottom: none;
  box-shadow: 0 5px var(--color-blue-darken);
  border-radius: 2rem;
  padding: 1rem;
}

.p-commission__item {
  width: 33.333%;
  border-left: 1px solid var(--color-blue-darken);
  text-align: center;
}
.p-commission__item:first-child {
  border-left: none;
}

.p-commission__unit_left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
}

.p-commission__unit_left-head {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.64;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .p-commission__unit_left-head {
    font-size: 2.6rem;
  }
}

.p-commission__unit_center {
  display: flex;
  justify-content: space-between;
  width: 55%;
}

.p-commission__item__center {
  width: 33.3333%;
  border-left: 1px solid var(--color-blue-darken);
  padding: 3rem 1rem 4rem;
}
.p-commission__item__center:first-child {
  border-left: none;
}

.p-commission__item__center_company {
  display: inline-block;
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--background-color-base);
  border-radius: 100vh;
  background-color: var(--color-gray);
  padding: 0.3rem 4.5rem;
}

.p-commission__item__center_ratio {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 4rem;
}
@media screen and (max-width: 960px) {
  .p-commission__item__center_ratio {
    font-size: 2.6rem;
  }
}

.p-commission__unit_right {
  width: 30%;
}

.p-commission__unit_right__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 95%;
  height: 100%;
  background-color: var(--color-yellow-lighten);
  border-radius: 0.5rem;
  margin: 0 0 0 1rem;
}

.p-commission__unit_right_heading__text {
  display: inline-block;
  position: relative;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--background-color-base);
  border-radius: 100vh;
  background-color: var(--color-blue-darken);
  padding: 0.3rem 5rem;
}

.p-commission__unit_right_ratio {
  font-size: 4.3rem;
  font-weight: 700;
  margin-top: 3rem;
}
@media screen and (max-width: 960px) {
  .p-commission__unit_right_ratio {
    font-size: 4rem;
  }
}

/* pc-down
========================================================== */
.p-commission-sp__image {
  width: 80%;
}
@media screen and (max-width: 660px) {
  .p-commission-sp__image {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  .p-commission-sp__image {
    width: 95%;
  }
}

.p-commission_button__unit {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 450px) {
  .p-commission_button__unit {
    margin-top: 3rem;
  }
}

/*!
project > p-intro
------------------------------
*/
.p-intro__container {
  padding: 10rem 0;
}
@media screen and (max-width: 770px) {
  .p-intro__container {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 450px) {
  .p-intro__container {
    padding: 4rem 0;
  }
}

.p-intro-heading {
  text-align: center;
}

.p-intro-heading__title {
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.46;
}
@media screen and (max-width: 770px) {
  .p-intro-heading__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 660px) {
  .p-intro-heading__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 560px) {
  .p-intro-heading__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 450px) {
  .p-intro-heading__title {
    font-size: 1.8rem;
  }
}

.p-intro-heading__text {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.52;
  margin-top: 3rem;
}
@media screen and (max-width: 660px) {
  .p-intro-heading__text {
    font-size: 2.2rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .p-intro-heading__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 450px) {
  .p-intro-heading__text {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1rem;
  }
}

/* pc-image
========================================================== */
.p-intro-pc__container {
  margin-top: 8rem;
}
@media screen and (max-width: 770px) {
  .p-intro-pc__container {
    margin-top: 6rem;
  }
}

/* sp-image
========================================================== */
.p-intro-sp__container {
  margin-top: 4rem;
}
@media screen and (max-width: 560px) {
  .p-intro-sp__container {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .p-intro-sp__container {
    margin-top: 2rem;
  }
}

/*!
project > p-kv
------------------------------
*/
.p-kv {
  position: relative;
}

.p-kv-container {
  display: flex;
  justify-content: flex-start;
  padding-right: 0;
}
@media screen and (max-width: 660px) {
  .p-kv-container {
    padding-left: 0;
  }
}

.p-kv-container_left {
  position: relative;
  width: 47%;
}
@media screen and (max-width: 770px) {
  .p-kv-container_left {
    width: 55%;
  }
}
@media screen and (max-width: 450px) {
  .p-kv-container_left {
    width: 58%;
  }
}

.p-kv_title {
  position: absolute;
  top: 14%;
  left: 0;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--fonts-color-top);
  line-height: 1.25;
  letter-spacing: 4.4px;
}
@media screen and (max-width: 960px) {
  .p-kv_title {
    font-size: 5.4rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 770px) {
  .p-kv_title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 660px) {
  .p-kv_title {
    font-size: 4.5rem;
  }
}

.p-kv-container_right {
  width: 53%;
  margin-left: auto;
}
.p-kv-container_right img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 770px) {
  .p-kv-container_right {
    width: 45%;
  }
}
@media screen and (max-width: 450px) {
  .p-kv-container_right {
    width: 42%;
  }
}

.p-kv-body {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-kv-body {
    position: static;
      background-color: #66d6ed;
    /*background: var(--color-blue-lighten-sp);*/
  }
}
/** 0円キャンペーン中だけ */
@media screen and (max-width: 660px) {
    .p-kv-body {
        background-color: #33c5e5;
    }
}
.p-kv-body::before {
  content: "";
  position: absolute;
  display: block;
  background: rgba(51, 200, 231, 0.75);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .p-kv-body::before {
    display: none;
  }
}

.p-kv-body__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 960px) {
  .p-kv-body__inner {
    flex-direction: column;
  }
}

.p-kv-body_left {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-kv-body_left {
    width: 100%;
  }
}

.p-kv-body_title {
  font-size: 2.81rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 1.68px;
  color: var(--background-color-base);
}
@media screen and (max-width: 770px) {
  .p-kv-body_title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 450px) {
  .p-kv-body_title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 330px) {
  .p-kv-body_title {
    font-size: 1.6rem;
  }
}

.p-kv-body_left__image {
  margin-top: 0.5rem;
}
@media screen and (max-width: 660px) {
  .p-kv-body_left__image img {
    width: 90%;
    margin: 0 auto;
  }
}

.p-kv-body_price {
  display: inline-block;
  text-align: center;
  margin-left: 5rem;
}
.p-kv-body_price p {
  font-size: 4.32rem;
  font-weight: 700;
  line-height: 0.98;
  color: var(--background-color-base);
}
.p-kv-body_price p .span_once {
  margin-left: 7rem;
}
.p-kv-body_price p .span_sec {
  font-size: 3.44rem;
  font-weight: 500;
}
.p-kv-body_price p .span_three {
  font-size: 3.44rem;
  font-weight: 700;
}
@media screen and (max-width: 660px) {
  .p-kv-body_price {
    display: none;
  }
}

.p-kv-body_right {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .p-kv-body_right {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .p-kv-body_right {
    margin-top: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .p-kv-body_right {
    margin-top: 1.5rem;
  }
}

/* sp-container
========================================================== */
.p-kv-sp__container img {
  width: 100%;
  object-fit: cover;
}

/*!
project > p-merit
------------------------------
*/
.p-merit__container {
  padding: 10rem 0 11rem;
}
@media screen and (max-width: 920px) {
  .p-merit__container {
    padding: 6rem 0 7rem;
  }
}
@media screen and (max-width: 770px) {
  .p-merit__container {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 450px) {
  .p-merit__container {
    padding: 3rem 0 3.5rem;
  }
}

.p-merit__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 799px) {
  .p-merit__list {
    flex-direction: column;
  }
}

.p-merit__item {
  display: block;
  width: 30.6133333333%;
}
@media screen and (max-width: 799px) {
  .p-merit__item {
    width: 50%;
    margin: 3rem auto 0;
  }
}
@media screen and (max-width: 660px) {
  .p-merit__item {
    width: 60%;
  }
}
@media screen and (max-width: 450px) {
  .p-merit__item {
    width: 70%;
  }
}

.p-merit__item_image {
  display: flex;
  align-items: flex-end;
  height: 20rem;
}
@media screen and (max-width: 799px) {
  .p-merit__item_image {
    height: 100%;
    align-items: center;
  }
}
.p-merit__item_image img {
  width: 100%;
  object-fit: cover;
}

.image__right {
  width: 70%;
  margin: 0 auto;
}

.p-merit__item__text__body {
  text-align: center;
  margin-top: 1.5rem;
}

.p-merit__item__text {
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: 1.28px;
  padding: 2rem;
}
@media screen and (max-width: 799px) {
  .p-merit__item__text {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 450px) {
  .p-merit__item__text {
    font-size: 1.4rem;
  }
}

/* tab-only
========================================================== */
.p-merit_button__unit {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 450px) {
  .p-merit_button__unit {
    margin-top: 2rem;
  }
}

/*!
project > p-point
------------------------------
*/
.p-point__container {
  background: var(--background-color-sub);
  padding: 10rem 0 9rem;
}
@media screen and (max-width: 660px) {
  .p-point__container {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 450px) {
  .p-point__container {
    padding: 4rem 0;
  }
}

.p-point__item {
  display: flex;
  justify-content: flex-start;
  background-color: var(--background-color-base);
  border: 2px solid var(--color-blue-darken);
  border-bottom: none;
  box-shadow: 0 5px var(--color-blue-darken);
  border-radius: 2rem;
  padding: 1rem;
}
.p-point__item:nth-child(n+1) {
  margin-bottom: 3.2rem;
}
.p-point__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 799px) {
  .p-point__item {
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--color-blue-darken-sp);
    box-shadow: 0 5px var(--color-blue-darken-sp);
  }
}

.p-point__item_left {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 19rem;
  background-color: var(--color-yellow-lighten);
  border-radius: 0.5rem;
}
@media screen and (max-width: 799px) {
  .p-point__item_left {
    max-width: 100%;
  }
}

.p-point__item_left__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 4rem 1rem;
}
@media screen and (max-width: 799px) {
  .p-point__item_left__inner {
    justify-content: center;
    padding: 0;
  }
}

.p-point__item_left__head {
  color: var(--color-blue-darken);
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 799px) {
  .p-point__item_left__head {
    color: var(--color-blue-darken-sp);
  }
}
.p-point__item_left__head::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 13rem;
  background-color: var(--color-blue-darken);
  top: 50%;
  transform: translateY(-50%);
  left: 7rem;
}
@media screen and (max-width: 799px) {
  .p-point__item_left__head::after {
    width: 0.2rem;
    height: 5rem;
    left: 7.2rem;
    background-color: var(--color-blue-darken-sp);
  }
}
@media screen and (max-width: 560px) {
  .p-point__item_left__head::after {
    height: 4rem;
  }
}
@media screen and (max-width: 450px) {
  .p-point__item_left__head::after {
    height: 3.2rem;
  }
}

.p-point__item_left__number {
  font-size: 5.4rem;
  font-weight: 700;
  color: var(--color-blue-darken);
}
@media screen and (max-width: 799px) {
  .p-point__item_left__number {
    font-size: 4.8rem;
    margin-left: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .p-point__item_left__number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 450px) {
  .p-point__item_left__number {
    font-size: 3.2rem;
  }
}

.p-point__item_center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  margin-left: 4rem;
  margin-right: 4rem;
}
@media screen and (max-width: 799px) {
  .p-point__item_center {
    width: 30%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .p-point__item_center {
    width: 40%;
  }
}
@media screen and (max-width: 450px) {
  .p-point__item_center {
    width: 48%;
  }
}

.p-point__item_center_image img {
  width: 100%;
  object-fit: cover;
}

.point__image_second {
  width: 60%;
}
@media screen and (max-width: 920px) {
  .point__image_second {
    width: 70%;
  }
}

.p-point__item_right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 60%;
}
@media screen and (max-width: 799px) {
  .p-point__item_right {
    align-items: center;
    width: 100%;
    text-align: center;
  }
}

.p-point__item_right__head {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--color-blue-darken);
}
@media screen and (max-width: 960px) {
  .p-point__item_right__head {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 799px) {
  .p-point__item_right__head {
    color: var(--color-blue-darken-sp);
  }
}
@media screen and (max-width: 560px) {
  .p-point__item_right__head {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 450px) {
  .p-point__item_right__head {
    font-size: 2rem;
  }
}
@media screen and (max-width: 330px) {
  .p-point__item_right__head {
    font-size: 1.7rem;
  }
}

.p-point__item_right__description {
  font-weight: 600;
}
@media screen and (max-width: 799px) {
  .p-point__item_right__description {
    width: 70%;
  }
}
@media screen and (max-width: 560px) {
  .p-point__item_right__description {
    width: 80%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 450px) {
  .p-point__item_right__description {
    font-size: 1.3rem;
  }
}

.p-point__item_bold {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 560px) {
  .p-point__item_bold {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .p-point__item_bold {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 330px) {
  .p-point__item_bold {
    font-size: 1.3rem;
  }
}

/*!
project > p-skill
------------------------------
*/
.p-skill__container {
  background: var(--background-color-sub);
  padding: 8.5rem 0 10rem;
}
@media screen and (max-width: 660px) {
  .p-skill__container {
    padding: 6.5rem 0 8rem;
  }
}
@media screen and (max-width: 560px) {
  .p-skill__container {
    padding: 4.5rem 0 6rem;
  }
}
@media screen and (max-width: 450px) {
  .p-skill__container {
    padding: 2.5rem 0 4rem;
  }
}

.p-skill__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: -7rem;
}
@media screen and (max-width: 799px) {
  .p-skill__list {
    margin-top: -2rem;
  }
}
.p-skill__list::after {
  content: "";
  display: block;
  width: 29.2533333333%;
  height: 0;
}
@media screen and (max-width: 920px) {
  .p-skill__list::after {
    width: 30.6666666667%;
  }
}
@media screen and (max-width: 799px) {
  .p-skill__list::after {
    width: 48.5%;
  }
}

.p-skill__item {
  width: 29.2533333333%;
  margin-top: 7rem;
}
@media screen and (max-width: 920px) {
  .p-skill__item {
    width: 30.6666666667%;
  }
}
@media screen and (max-width: 799px) {
  .p-skill__item {
    width: 48.5%;
    margin-top: 2rem;
  }
}

.p-skill__item_image img {
  width: 100%;
  object-fit: cover;
}

.p-skill__item__text__body {
  text-align: center;
  padding: 1rem 1.8rem 1rem;
}

.p-skill__item__text {
  font-weight: 600;
  line-height: 1.44;
}
@media screen and (max-width: 660px) {
  .p-skill__item__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 560px) {
  .p-skill__item__text {
    font-size: 1.2rem;
  }
}

.p-skill-message {
  margin-top: 6.3rem;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .p-skill-message {
    margin-top: 4rem;
  }
}

.p-skill-message__unit {
  background-color: var(--background-color-base);
  display: inline-block;
  border-radius: 7rem;
  position: relative;
}
@media screen and (max-width: 799px) {
  .p-skill-message__unit {
    width: 100%;
    max-width: 98rem;
    border-radius: 0;
  }
}
.p-skill-message__unit::before {
  content: "";
  position: absolute;
  display: block;
  background: url(/app/assets/images/pc/lp/skill/skill-07.png) no-repeat center center/cover;
  top: 50%;
  transform: translateY(-50%);
  left: -11rem;
  width: 23.9rem;
  height: 16.1rem;
}
@media screen and (max-width: 799px) {
  .p-skill-message__unit::before {
    display: none;
  }
}

.p-skill__image_sp {
  width: 50%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.p-skill__image_sp img {
  width: 100%;
  object-fit: cover;
}

.p-skill-message__text {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-blue-darken);
  line-height: 1.5;
  letter-spacing: 2px;
  padding: 1rem 11rem;
}
@media screen and (max-width: 960px) {
  .p-skill-message__text {
    padding: 1rem 9rem;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 920px) {
  .p-skill-message__text {
    padding: 1rem 8rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 799px) {
  .p-skill-message__text {
    width: 100%;
    padding: 2rem 1rem 1rem;
  }
}
@media screen and (max-width: 560px) {
  .p-skill-message__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .p-skill-message__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 330px) {
  .p-skill-message__text {
    font-size: 1.2rem;
  }
}

.p-skill-message__confirm {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.54;
  letter-spacing: 1.04px;
  margin-top: 1rem;
}
@media screen and (max-width: 799px) {
  .p-skill-message__confirm {
    background: var(--background-color-base);
    margin-top: 0;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .p-skill-message__confirm {
    font-size: 1rem;
  }
}

/*!
project > p-step
------------------------------
*/
.p-step {
  background-image: url(/app/assets/images/pc/lp/skill/pc-step-back.png);
  width: 100%;
  height: 100%;
  background-position: 40% center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 11rem 0 16rem;
}
@media screen and (max-width: 799px) {
  .p-step {
    background-image: none;
    background-color: var(--color-blue-lighten-sp);
  }
}
@media screen and (max-width: 660px) {
  .p-step {
    padding: 11rem 0 8rem;
  }
}
@media screen and (max-width: 450px) {
  .p-step {
    padding: 9rem 0 5rem;
  }
}

.p-step__inner {
  position: relative;
}
.p-step__inner::after {
  content: "";
  position: absolute;
  background: url(/app/assets/images/pc/lp/skill/pc-step-speech.png) no-repeat center center/cover;
  top: 0;
  right: 3rem;
  width: 30.86rem;
  height: 8.945rem;
}
@media screen and (max-width: 920px) {
  .p-step__inner::after {
    display: none;
  }
}
@media screen and (max-width: 920px) {
  .p-step__inner::before {
    content: "";
    position: absolute;
    background: url(/app/assets/images/pc/lp/skill/sp-step-speech.png) no-repeat center center/cover;
    top: -10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: 70% 70%;
    width: 41.76rem;
    height: 10.938rem;
  }
}
@media screen and (max-width: 920px) and (max-width: 799px) {
  .p-step__inner::before {
    background-size: 60% 60%;
    top: -4%;
  }
}
@media screen and (max-width: 920px) and (max-width: 560px) {
  .p-step__inner::before {
    top: -7.5%;
  }
}
@media screen and (max-width: 920px) and (max-width: 450px) {
  .p-step__inner::before {
    background-size: 50% 50%;
    top: -7%;
  }
}

.p-step__title_container {
  display: block;
  text-align: center;
}

.p-step__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--background-color-base);
}
@media screen and (max-width: 660px) {
  .p-step__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 450px) {
  .p-step__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 330px) {
  .p-step__title {
    font-size: 1.8rem;
  }
}

.p-step__list__unit {
  margin-top: 9rem;
}
@media screen and (max-width: 799px) {
  .p-step__list__unit {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 450px) {
  .p-step__list__unit {
    margin-top: 1rem;
  }
}

.p-step__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 799px) {
  .p-step__list {
    flex-direction: column;
  }
}

.p-step__item {
  width: 17rem;
  background-color: var(--background-color-base);
  border-radius: 1rem;
  padding: 3rem 0.5rem 4rem 0.5rem;
  text-align: center;
}
@media screen and (max-width: 799px) {
  .p-step__item {
    width: 90%;
    margin: 2rem auto 0;
    padding: 1rem 0.5rem 1rem 0.5rem;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 450px) {
  .p-step__item {
    width: 100%;
    margin: 1rem auto 0;
  }
}

@media screen and (max-width: 799px) {
  .p-step__wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
@media screen and (max-width: 560px) {
  .p-step__wrapper {
    justify-content: space-between;
  }
}

@media screen and (max-width: 799px) {
  .p-step__item_heading {
    display: flex;
    align-items: center;
  }
}

.p-step__item_heading_en {
  font-size: 1.54rem;
  font-family: var(--font-family-arial);
  font-weight: 800;
  border-bottom: 2px solid var(--fonts-color-base);
}
@media screen and (max-width: 799px) {
  .p-step__item_heading_en {
    border-bottom: none;
    border-right: 2px solid var(--fonts-color-base);
    padding: 1rem;
  }
}

.p-step__item_heading_number {
  font-size: 2.56rem;
  font-family: var(--font-family-arial);
  font-weight: 800;
}
@media screen and (max-width: 799px) {
  .p-step__item_heading_number {
    padding: 1rem;
  }
}

.p-step__item_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15rem;
  text-align: center;
  padding: 3rem 2rem;
}
@media screen and (max-width: 799px) {
  .p-step__item_icon {
    padding: 1rem 1rem;
  }
}
@media screen and (max-width: 560px) {
  .p-step__item_icon {
    display: none;
  }
}
.p-step__item_icon img {
  width: 75%;
  object-fit: cover;
}

@media screen and (max-width: 799px) {
  .p-step__item_text__body {
    width: 12rem;
  }
}

.p-step__item_text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.44px;
}

.p-step__list_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-step_button__unit {
  margin-top: 11.5rem;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .p-step_button__unit {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 450px) {
  .p-step_button__unit {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 330px) {
  .p-step_button__unit {
    margin-top: 2rem;
  }
}

.campaign_word1 {
    color: white;
    top: 25px;
    position: relative;
    font-size: 19px;
}
.campaign_word2 {
    font-size: 22px;
    position: relative;
    top: 30px;
    color: yellow;
}
@media screen and (max-width: 960px) {
    .campaign_word1 {
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 440px) {
    .campaign_word1 {
        font-size: 15px;
        padding: 0 5px 20px 5px;
    }
    .campaign_word2 {
        font-size: 18px;
    }
}

.campaign_note {
    text-align: center;
    padding: 20px 5px 0 5px;
    font-size: 1.8rem;
    color: #ef4444;
}
@media screen and (max-width: 440px) {
    .campaign_note {
        font-size: 1.4rem;
    }
}
