@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;700&display=swap");
@font-face {
  font-family: 'futura-pt';
  src: url("../fonts/FuturaCyrillicLight.woff") format("woff"); }
/*
/* 
---------------------------------------
reset
---------------------------------------
*/
body, header, footer, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  width: 100%;
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth; }

body {
  width: 100%;
  position: relative;
  font-family: 'IBM Plex Sans JP', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  color: #1A1A1A;
  overflow: hidden; }

img {
  max-width: 100%;
  -webkit-backface-visibility: hidden; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top; }

th {
  text-align: left; }

li {
  list-style: none; }

a {
  outline: none;
  text-decoration: none; }

address {
  font-style: normal; }

h1, h2, h3, h4, h5, h6, p, th, td, table, dl, dt, dd, ul, ol, li {
  font-weight: normal; }

/*
---------------------------------------------
アニメーション
---------------------------------------------
*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
  transition-delay: 0.2s; }

.fadein.active {
  opacity: 1;
  transform: translateY(0); }

/*
------------------------------------------
共通
------------------------------------------
*/
/*inner幅指定　大・小*/
.inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%; }

/*text*/
.uppercase {
  text-transform: uppercase; }

.capitalize {
  text-transform: capitalize; }

/*Btnデザイン*/
.btn {
  position: relative;
  background: #7DA2AF;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
  padding: 10px 0;
  margin-top: 80px; }
  .btn .btn-txt {
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #fff; }
  .btn .circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s; }
    .btn .circle p {
      background: #fff;
      -webkit-background-clip: text;
      /* 背景をテキストにクリップ */
      -webkit-text-fill-color: transparent;
      /* テキストの色を透明に */
      transition: 1s; }
      .btn .circle p i {
        font-size: 18px; }

.btn:hover .circle {
  transform: translateX(5px);
  transition: 0.5s; }

.btn:hover .circle p {
  background: linear-gradient(90deg, #22c6fc 0%, #ea9fdf 50%, #fc6f7f 100%);
  -webkit-background-clip: text;
  /* 背景をテキストにクリップ */
  -webkit-text-fill-color: transparent;
  /* テキストの色を透明に */
  transition: 1s; }

.btn .chatworkLogo {
  margin-right: 10%; }
  .btn .chatworkLogo img {
    display: block;
    width: 40px; }

.btn .quotationLogo {
  margin-right: 10%; }
  .btn .quotationLogo img {
    display: block;
    width: 30px; }

/*共通タイトル*/
body.sub {
  position: relative;
  background-image: url("../img/common/subpage_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right  top; }

#submv {
  position: relative;
  height: 100vh;
  max-height: 450px; }
  #submv .submv__textwrap {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column; }
    #submv .submv__textwrap .subtitle {
      font-size: 18px;
      font-weight: 700;
      position: relative;
      z-index: 2;
      padding-left: 10px; }
    #submv .submv__textwrap .subtitle__en {
      font-size: 100px;
      line-height: 1;
      font-weight: 100;
      font-family: "futura-pt", sans-serif;
      color: #64b4d2; }

/*共通テキスト*/
.text {
  font-size: 16px;
  line-height: 2; }

/*パンくず*/
nav[aria-label="breadcrumb"] {
  padding: 8px 16px;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  right: 0; }

nav[aria-label="breadcrumb"] ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0; }

nav[aria-label="breadcrumb"] li {
  margin-right: 8px; }

nav[aria-label="breadcrumb"] li.border {
  position: relative;
  width: 24px;
  height: 22px; }

nav[aria-label="breadcrumb"] li.border::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 1px;
  background: #DDDDDD;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); }

nav[aria-label="breadcrumb"] li a {
  text-decoration: none;
  color: #1A1A1A;
  font-size: 15px;
  text-decoration: underline; }

nav[aria-label="breadcrumb"] li a:hover {
  text-decoration: underline; }

nav[aria-label="breadcrumb"] li[aria-current="page"] {
  color: #1A1A1A;
  font-size: 15px; }

/*-------------------------------------------------------
case
---------------------------------------------------------*/
#case #case__contents {
  margin-top: 140px;
  margin-bottom: 160px; }
  #case #case__contents .case__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 45px;
    grid-row-gap: 80px; }
  #case #case__contents .case__item {
    width: 30.7%; }
  #case #case__contents .item__image img {
    height: auto; }
  #case #case__contents .item__title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    color: #1A1A1A; }
    #case #case__contents .item__title span {
      font-size: 18px; }
  #case #case__contents .item__tags {
    display: flex;
    column-gap: 10px;
    margin-top: 20px; }
    #case #case__contents .item__tags li {
      background: #9EBED9;
      border-radius: 15px;
      font-size: 15px;
      font-weight: 400;
      text-align: center;
      color: #fff;
      padding: 2px 10px; }

@media screen and (max-width: 1350px) {
  #case #case__contents .case__list {
    column-gap: 35px; } }
/*-------------------------------------------------------
faq
---------------------------------------------------------*/
#faq .faq__contents {
  margin-top: 140px;
  margin-bottom: 160px; }
  #faq .faq__contents .qa-list {
    margin-top: 70px; }
    #faq .faq__contents .qa-list dl {
      width: 100%;
      position: relative;
      cursor: pointer;
      margin-bottom: 30px; }
      #faq .faq__contents .qa-list dl:before {
        position: absolute;
        z-index: 2;
        background: #333333;
        top: 50px;
        right: 2.1%;
        display: block;
        width: 17px;
        height: 1px;
        margin: auto;
        content: ''; }
      #faq .faq__contents .qa-list dl:after {
        position: absolute;
        z-index: 2;
        background: #333333;
        transform: rotate(90deg);
        top: 50px;
        right: 2.1%;
        display: block;
        width: 17px;
        height: 1px;
        margin: auto;
        content: '';
        transition: 0.3s; }
      #faq .faq__contents .qa-list dl dt {
        position: relative;
        margin: 0;
        padding: 25px 4%;
        font-weight: bold;
        font-size: 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background: #EAEFF0;
        border-radius: 10px; }
        #faq .faq__contents .qa-list dl dt .questionMark {
          display: flex;
          justify-content: center;
          align-items: center;
          color: #fff;
          font-size: 30px;
          font-weight: 100;
          font-family: "futura-pt", sans-serif;
          background: #64B4D2;
          border-radius: 50%;
          width: 50px;
          height: 50px;
          margin-right: 20px; }
        #faq .faq__contents .qa-list dl dt .questionText {
          font-size: 20px;
          font-weight: 600;
          width: 70%; }
      #faq .faq__contents .qa-list dl dd {
        padding: 40px 4% 20px;
        position: relative;
        height: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        background: #fff;
        border-radius: 0 0 10px 10px;
        border: 1px solid #EAEFF0; }
        #faq .faq__contents .qa-list dl dd .answerMark {
          display: flex;
          justify-content: center;
          align-items: center;
          color: #fff;
          font-size: 30px;
          font-weight: 100;
          font-family: "futura-pt", sans-serif;
          background: linear-gradient(90deg, #87bfcc 0%, #d3c0d8 60%, #f59fb1 100%);
          border-radius: 50%;
          width: 50px;
          height: 50px;
          margin-right: 20px; }
        #faq .faq__contents .qa-list dl dd .answerText {
          font-size: 16px;
          font-weight: 400;
          width: 100%;
          padding-top: 10px; }
  #faq .faq__contents .qa-list dl:last-child {
    margin-bottom: 0; }
  #faq .faq__contents .qa-list .open:after {
    transform: rotate(0deg);
    transition: 0.3s; }
  #faq .faq__contents .qa-list dl.open dt {
    border-radius: 10px 10px 0 0; }

/*-------------------------------------------------------
price
---------------------------------------------------------*/
#price .price__contents {
  margin-top: 140px; }
#price .price__lead {
  font-size: 36px;
  margin-bottom: 52px;
  text-align: center; }
#price .text {
  text-align: center; }
#price .price__cal {
  margin-top: 50px;
  background: #F5F8FA;
  padding: 50px clamp(50px, 2vw, 100px); }
#price .cal__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px; }
#price .multiplied, #price .equal {
  width: 35px; }
  #price .multiplied img, #price .equal img {
    height: auto; }
#price .sum {
  width: 290px;
  background: #A3C1DB;
  border-radius: 10px;
  text-align: center;
  padding: 30px 0; }
  #price .sum p {
    color: #fff;
    font-size: 28px;
    font-weight: 600; }
#price .listitem {
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  column-gap: 27px;
  padding: 20px 2.5%; }
  #price .listitem .page {
    width: 85px; }
    #price .listitem .page img {
      height: auto; }
  #price .listitem .item__text {
    font-size: 24px;
    font-weight: 600; }
#price .price__table {
  margin-top: 76.7px;
  margin-bottom: 100px; }
  #price .price__table .top {
    width: 100%; }
  #price .price__table .top_row1 {
    width: 17%; }
  #price .price__table .top_row2 {
    background: #E5F2F7;
    border-radius: 10px;
    text-align: center;
    padding: 15px 0;
    width: 27.5%;
    border-right: 6px solid #fff;
    border-top: 8px solid #fff; }
    #price .price__table .top_row2 .top__image {
      width: 76px;
      height: auto;
      text-align: center; }
      #price .price__table .top_row2 .top__image img {
        height: auto; }
  #price .price__table .top__lead {
    font-size: 20px;
    font-weight: 600; }
  #price .price__table tr.top th {
    padding: 42px 0;
    background: #E5E5E5;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border-right: 6px solid #fff;
    width: 25%; }
  #price .price__table tr.top th.top_row1 {
    background: #fff;
    border-top: 0px solid #fff; }
  #price .price__table tr.front td {
    border-top: 8px solid #fff;
    border-right: 6px solid #fff;
    background: #F7FBFD;
    text-align: center;
    font-size: 18px;
    font-weight: 600; }
    #price .price__table tr.front td span {
      font-size: 36px; }
  #price .price__table tr.front1 .top_row2 {
    border-radius: 10px 0 0 0; }
  #price .price__table tr.front:last-child th {
    border-radius: 0 0 0 10px; }
  #price .price__table tr.top th:nth-child(2) {
    border-radius: 10px 0 0 0; }
  #price .price__table tr.top th:nth-child(4) {
    border-radius: 0 10px 0 0; }
  #price .price__table tr.front:last-child td:last-child {
    border-radius: 0 0 10px 0; }
  #price .price__table .th_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 30px; }
#price .price__estimate {
  background: #F5F8FA;
  padding-top: 90px;
  padding-bottom: 160px; }
#price .estimate__title {
  font-size: 36px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 78px; }
#price .estimate__table thead tr th {
  width: 33%;
  border-radius: 10px 10px 0 0;
  padding: 22px 0;
  text-align: center;
  border-right: 9px solid #F5F8FA;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1; }
  #price .estimate__table thead tr th span {
    font-size: 20px; }
#price .estimate__table thead tr th:nth-child(1) {
  background: linear-gradient(90deg, #98c0d0 0%, #c0c2d8 100%); }
#price .estimate__table thead tr th:nth-child(2) {
  background: linear-gradient(90deg, #c2c2d8 0%, #dfbad1 100%); }
#price .estimate__table thead tr th:nth-child(3) {
  background: linear-gradient(90deg, #e0b9d1 0%, #f0a6b9 100%);
  border-right: 0px solid #F5F8FA; }
#price .estimate__table tbody tr td {
  border-right: 9px solid #F5F8FA; }
#price .estimate__table tbody tr td:last-child {
  border-right: 0px solid #F5F8FA; }
#price .estimate__table tbody tr .box {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 26px 7%; }
  #price .estimate__table tbody tr .box .item {
    width: 100%;
    font-size: 20px;
    font-weight: 600; }
  #price .estimate__table tbody tr .box .price {
    font-size: 24px;
    font-weight: 600;
    display: flex; }
    #price .estimate__table tbody tr .box .price span {
      font-size: 20px; }
#price .estimate__table tbody tr.cording td:nth-child(1) .price {
  justify-content: space-between;
  align-items: center;
  width: 100%; }
  #price .estimate__table tbody tr.cording td:nth-child(1) .price span.fee span {
    font-size: 20px; }
  #price .estimate__table tbody tr.cording td:nth-child(1) .price span.note {
    font-size: 18px;
    font-weight: 400; }
#price .estimate__table tfoot tr th {
  background: #E5E5E5;
  border-radius: 0 0 10px 10px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  border-right: 9px solid #F5F8FA;
  padding: 22px 0; }
  #price .estimate__table tfoot tr th span {
    font-size: 24px; }
#price .estimate__table tfoot tr th:last-child {
  border-right: 0px solid #F5F8FA; }

@media screen and (max-width: 1150px) {
  #price .listitem .item__text {
    font-size: 20px; }

  #price .sum {
    width: clamp(220px, 2vw, 240px); }
    #price .sum p {
      font-size: 24px; }

  #price .price__table tr.front td {
    font-size: 16px; }
    #price .price__table tr.front td span {
      font-size: 32px; } }
/*-------------------------------------------------------
service
---------------------------------------------------------*/
#service__contents {
  padding-top: 138px; }
  #service__contents .service__wrap1 {
    margin-top: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 120px; }
    #service__contents .service__wrap1 .service__box {
      width: 50%; }
    #service__contents .service__wrap1 .service__image {
      width: 40%; }
      #service__contents .service__wrap1 .service__image img {
        height: auto; }
    #service__contents .service__wrap1 .service__title--jp {
      font-size: 36px;
      font-weight: 500;
      margin-bottom: 37px; }
  #service__contents .service__wrap2 {
    background: #CCE6F0;
    padding-top: 120px;
    padding-bottom: 160px; }
    #service__contents .service__wrap2 .service__list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      grid-row-gap: 60px; }
    #service__contents .service__wrap2 .service__list--item {
      width: 47%;
      background: #fff;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      padding: 50px 3%;
      box-shadow: 6px 7px 1px #a3c1db; }
    #service__contents .service__wrap2 .list__head {
      display: flex;
      align-items: center;
      margin-bottom: 27px; }
    #service__contents .service__wrap2 .service__image {
      width: 12%;
      margin-right: 17px; }
      #service__contents .service__wrap2 .service__image img {
        height: auto; }
    #service__contents .service__wrap2 .list__title {
      font-size: 24px;
      font-weight: 600; }
    #service__contents .service__wrap2 .list__title-en {
      font-size: 18px;
      font-family: "futura-pt", sans-serif;
      color: #9dadbc;
      white-space: nowrap; }
    #service__contents .service__wrap2 .service__heading {
      width: 75%;
      font-size: 22px;
      font-weight: 700; }
