@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --fontcolor: #000;
  --fontcolor-gray: #818181;
  --maincolor: #E13F3F;
  --subcolor: #00A18D;
  --fwlight: 350;
  --fwnormal: 400;
  --fwmedium: 500;
  --fwbold: 600;
  --fwblack: 800;
  --fssmall: 0.8rem;
  --fsnormal: 1rem;
  --fslarge: 1.2rem;
  --fsreset: 18px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** LP web
******************************************************************************
----------------------------------------------------------------------------*/
.lp_mv.__web:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
  background: #849EB8;
  position: absolute;
}

.__web_title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10%;
  overflow: hidden;
}
.__web_title_sub {
  width: clamp(250px, 25vw, 482px);
}
.__web_title_sub img {
  width: 100%;
  display: block;
}
.__web_title h1 {
  font-size: clamp(2em, 4vw, 4em);
  color: white;
  margin-top: 1em;
  line-height: 1.3em;
}
.__web_title_btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 3em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 99px;
}

.__web_detail {
  position: absolute;
  right: 14%;
  width: 50%;
  top: 50%;
  max-width: 620px;
  width: 30vw;
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .__web_detail {
    display: none;
  }
}

.web_works_lead {
  text-align: center;
}
.web_works_lead span {
  display: inline-block;
  margin: 0 0.3em;
  color: var(--maincolor);
  font-size: 2em;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.web_works .works-swiper {
  position: relative;
}
.web_works .works-swiper .swiper-button-prev,
.web_works .works-swiper .swiper-button-next {
  color: #2b2b2b;
  font-size: 10px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 100vh;
  border: solid 1px #2b2b2b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.6784313725);
}
.web_works .works-swiper .swiper-button-prev:after,
.web_works .works-swiper .swiper-button-next:after {
  font-size: 20px;
  position: absolute;
  left: 54%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
}
.web_works .works-swiper .swiper-button-prev:after {
  left: 46%;
}
.web_works .works-swiper .swiper-button-next:after {
  left: 54%;
}
.web_works .works-swiper .swiper-pagination {
  -webkit-transform: translateY(calc(100% + 20px));
          transform: translateY(calc(100% + 20px));
}
.web_works .works-swiper .swiper-pagination .swiper-pagination-bullet {
  border: solid 1px #000;
  background: none;
}
.web_works .works-swiper .swiper-pagination .swiper-pagination-bullet-active {
  border: none;
  background: rgba(0, 0, 0, 0.4588235294);
}
.web_problem {
  background: #F6F5F2;
  position: relative;
  margin-top: 180px;
  padding-bottom: 100px;
}
.web_problem::before {
  content: "";
  width: 100%;
  aspect-ratio: 3840/164;
  background: url(../../images/web/problem-border.png) no-repeat center/contain;
  display: block;
  position: absolute;
  top: 1px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.web_problem::after {
  content: "";
  width: 100%;
  aspect-ratio: 3840/164;
  background: url(../../images/web/problem-bottom.png) no-repeat center/contain;
  display: block;
  position: absolute;
  bottom: 1px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.web_problem img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.web_problem_title {
  display: block;
  max-width: 626px;
  width: 90%;
  margin: auto;
}
.web_problem_img {
  display: block;
  max-width: 981px;
  width: 90%;
  margin: auto;
}

.web_solution {
  padding: 175px 0 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(86, 186, 245)), to(rgb(248, 255, 156)));
  background: linear-gradient(180deg, rgb(86, 186, 245) 0%, rgb(248, 255, 156) 100%);
}
.web_solution_lead {
  color: white;
  font-size: clamp(1.3em, 2vw, 2em);
  text-align: center;
  font-weight: var(--fwbold);
  margin-bottom: 50px;
}
.web_solution_wrap {
  width: 90%;
  background: white;
  border-radius: 20px;
  margin: 0 auto 100px;
  padding: 80px 0;
}
.web_solution_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.web_solution_item {
  width: 30%;
  gap: 10px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.web_solution_grid-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.web_solution_grid-item {
  -webkit-box-shadow: 4px 3px 7px rgba(0, 0, 0, 0.1294117647);
          box-shadow: 4px 3px 7px rgba(0, 0, 0, 0.1294117647);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
.web_solution_grid-item .textarea {
  width: 75%;
}
.web_solution_grid-item .textarea h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.web_solution_grid-item .textarea p {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.web_solution_grid-item figure {
  width: 20%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.web_solution_grid-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.web_solution_grid-item.__6fr {
  grid-column: span 6;
  grid-row: span 3;
}
.web_solution_grid-item.__6fr .textarea {
  width: 45%;
}
.web_solution_grid-item.__6fr .textarea h3 {
  font-size: 1.8em;
  margin-bottom: 0.8em;
}
.web_solution_grid-item.__6fr .textarea p {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.web_solution_grid-item.__6fr figure {
  width: 50%;
  overflow: hidden;
  aspect-ratio: 562/322;
}
.web_solution_grid-item.__6fr figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.web_solution_grid-item.__3fr {
  grid-column: span 3;
}
.web_solution_grid-item.__2fr {
  grid-column: span 2;
}

.web_solution_plan {
  margin-top: 150px;
  /* table */
  /* table */
}
.web_solution_plan_table {
  margin: 2em auto 0;
  background: #FFF;
  font-size: 1em;
  line-height: 1.2em;
  width: 90%;
}
.web_solution_plan_table small {
  font-size: 0.7em;
}
.web_solution_plan_table th,
.web_solution_plan_table td {
  text-align: center;
  width: 20%;
  min-width: 130px;
  padding: 10px;
  height: 60px;
  border: 1px solid #ccc;
}
.web_solution_plan_table th {
  background-color: #f0f0f0;
}
.web_solution_plan_table .head {
  background-color: #e2e2e2;
}
.web_solution_plan_table .red {
  color: #ED280E;
  font-weight: bold;
}
.web_solution_plan_table td:nth-child(3) {
  background-color: #fff6ee;
}
.web_solution_plan_table td:nth-child(4) {
  background-color: #fff2f2;
}
.web_solution_plan_table th:nth-child(3) {
  background-color: #ff7b00;
  color: #fff;
}
.web_solution_plan_table th:nth-child(4) {
  background-color: #ff0000;
  color: #fff;
}
.web_solution_plan_table tr.total__price td {
  background-color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}
.web_solution_plan_table tr.total__price td span {
  font-size: 0.9em;
  margin-right: 3px;
}
.web_solution_plan_table tr.total__price td:nth-child(2) {
  font-size: 1.3em;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.web_solution_plan_table tr.total__price td:nth-child(3) {
  color: #ff7b00;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.web_solution_plan_table tr.total__price td:nth-child(4) {
  color: #ff0000;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.web_solution_plan .price__explain {
  max-width: 900px;
  margin: auto;
  font-weight: 400;
  font-size: 0.9em;
  margin-top: 20px;
  font-weight: bold;
}
.web_solution_plan .web_solution_caution {
  display: block;
  width: 90%;
  text-align: right;
  margin: auto;
  margin-top: 10px;
}

.web_maint {
  background-color: #F6F5F2;
}
.web_maint_wrap {
  padding: 100px 0;
}
.web_maint_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.web_maint_item {
  width: 30%;
  max-width: 354px;
  padding: 40px 28px;
  background: white;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 15px;
}
.web_maint_item h3 {
  font-size: clamp(1.5em, 2vw, 2em);
  color: var(--subcolor);
}
.web_maint_item p {
  line-height: 2em;
  font-style: var(--fslarge);
}
.web_maint_lead {
  font-size: var(--fslarge);
  text-align: center;
}

.web_reason {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 52px 52px;
  background-repeat: repeat;
  background-position: center center;
  padding: 50px 0 80px;
}
.web_reason_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.web_reason_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.web_reason_item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.web_reason_figure {
  width: 40%;
  max-width: 504px;
}
.web_reason_text {
  width: calc(100% - 550px);
}
.web_reason_text p {
  font-size: var(--fslarge);
  line-height: 1.8em;
}
@media screen and (max-width: 1500px) {
  .web_reason_text {
    width: 55%;
  }
}
.web_reason_text_span {
  font-size: var(--fslarge);
  font-weight: var(--fwblack);
  color: #A7A7A7;
  margin-bottom: 0.5em;
  letter-spacing: 5px;
}
.web_reason_text h3 {
  font-size: clamp(1.5em, 2vw, 2em);
  margin-bottom: 0.5em;
}

.web_flow {
  background-color: #F6F5F2;
  padding: 80px 0;
}
.web_flow_select {
  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;
  gap: 30px;
}
.web_flow_select p {
  position: relative;
  cursor: pointer;
  height: 2em;
  font-size: var(--fslarge);
}
.web_flow_select p:before {
  content: "";
  height: 35px;
  width: 3px;
  display: block;
  background: url(../../images/web/dot-line.png) center center/contain no-repeat;
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.web_flow_select p:last-child:before {
  content: none;
}
.web_flow_select p.active {
  color: var(--maincolor);
}
.web_flow_box {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 37px;
}
.web_flow_item {
  width: 100%;
  max-width: 1200px;
  background-image: linear-gradient(150deg, transparent 30px, #ffffff 0);
  padding: 20px 5%;
  position: relative;
}
.web_flow_item:before {
  content: "";
  display: block;
  width: 53px;
  height: 23px;
  background: url(../../images/web/web_flow_arrow.png) center center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 30px);
          transform: translate(-50%, 30px);
}
.web_flow_item:last-child:before {
  content: none;
}
.web_flow_item dl dt {
  font-size: clamp(1.5em, 2vw, 2em);
  margin-bottom: 0.6em;
  font-weight: var(--fwbold);
}
.web_flow_item dl dt span {
  color: var(--maincolor);
}
.web_flow_item dl dt p {
  font-size: var(--fslarge);
  line-height: 1.9em;
}

.flow_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.web_faq {
  margin: 100px auto;
}
.web_faq_item {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 35px;
}
.web_faq_q {
  background: #1E2A38;
  color: white;
  font-weight: var(--fwbold);
  font-size: var(--fslarge);
  padding: 12px 12px 12px 60px;
  position: relative;
  border-radius: 100vh;
  cursor: pointer;
}
.web_faq_q:before {
  content: "";
  display: block;
  height: 48px;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  left: 6px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url(../../images/web/web_faq_qicon.png) center center/contain no-repeat;
  position: absolute;
}
.web_faq_a {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
}
.web_faq_a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  display: block;
  background: url(../../images/web/web_faq_a.png) center center/contain no-repeat;
  width: 48px;
  aspect-ratio: 1/1;
}/*# sourceMappingURL=web-style.css.map */