@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);
}

/*
------------------------------------------
共通
------------------------------------------
*/
/*Btnデザイン*/
.btn {
  position: relative;
  background: #7DA2AF;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding: 10px 0;
  margin-top: 80px;
}
.btn .btn-txt {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  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, rgb(34, 198, 252) 0%, rgb(234, 159, 223) 50%, rgb(252, 111, 127) 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;
}

/*共通タイトル*/
.section__titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.section__titleBox .title {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.section__titleBox .title__en {
  font-size: 72px;
  line-height: 1;
  font-weight: 100;
  font-family: "futura-pt", sans-serif;
  color: #9DADBC;
}

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

/*
---------------------------------------------
ローディング
---------------------------------------------
*/
.loaded {
  opacity: 0;
  visibility: hidden;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 5s, visibility 5s;
}

#loading {
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  border-radius: 50%;
}

.loader-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-wrap img {
  height: auto;
}

/*
---------------------------------------------
MV
---------------------------------------------
*/
#mv {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 960px;
  background-image: url("../img/webp/index/mv.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 24% bottom 0;
}

.mv__textwrap {
  position: absolute;
  left: 10%;
  top: 19%;
}
.mv__title {
  font-size: clamp(70px, 6vw, 120px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-family: "futura-pt", sans-serif;
  color: #dddddd;
  margin-bottom: 6vh;
  position: relative;
  z-index: 10;
  mix-blend-mode: multiply;
}
.mv__lead {
  font-size: clamp(30px, 3vw, 60px);
  line-height: 2;
}
.mv__lead span {
  background: linear-gradient(#fff 100%, transparent 0);
}

.mv__title.fadein.active {
  transition-delay: 0.4s;
}

.mv__lead.fadein.active {
  transition-delay: 0.7s;
}

/*---------------------------------------
about
---------------------------------------*/
#about {
  padding-top: 264px;
  padding-bottom: 244px;
  position: relative;
}

.about__image {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 36.3%;
  height: auto;
}
.about__image img {
  height: auto;
}
.about__wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.about__box {
  width: 50.8%;
}
.about__title--en {
  font-size: 30px;
  font-weight: 300;
  font-family: "futura-pt", sans-serif;
  color: #9EBED9;
  margin-bottom: 12px;
}
.about__title--jp {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.about__btn {
  max-width: 400px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

/*---------------------------------------
number
---------------------------------------*/
#number {
  background: #eaeff0;
  padding-top: 120px;
  padding-bottom: 140px;
}

.number__content {
  display: flex;
}
.number__title {
  writing-mode: vertical-rl;
  font-size: 40px;
  font-weight: 500;
  width: 10%;
  display: flex;
  align-items: flex-end;
}
.number__wrap {
  width: 90%;
  display: flex;
  flex-direction: column;
}
.number__box1 {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  grid-template-rows: auto;
  gap: 30px;
  padding-bottom: 30px;
}
.number__box2 {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.number__item {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.number__item h3 {
  margin-top: 44px;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  padding-bottom: 19px;
  margin-bottom: 19.2px;
}
.number__item h3:before {
  content: "";
  width: 60px;
  height: 3px;
  background: #9DADBC;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.number__item .detail {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
  padding: 0 10%;
  text-align: left;
}
.number__item .detail span {
  font-size: 120px;
  font-weight: 500;
  font-family: "Lato";
  color: #64B4D2;
}
.number__item .notes {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  padding: 0 10%;
}
.number__item .number__image {
  position: absolute;
  height: auto;
}
.number__item1 {
  grid-column: 1/2;
  grid-row: 1/3;
}
.number__item1 .number__image1 {
  bottom: 50px;
  left: -7%;
  width: 113%;
}
.number__item2 {
  grid-column: 2/3;
  grid-row: 1/2;
  padding-bottom: 46.8px;
}
.number__item2 .number__image2 {
  right: -17px;
  bottom: -40px;
}
.number__item3 {
  grid-column: 2/3;
  grid-row: 2/3;
  padding-bottom: 41px;
}
.number__item3 .detail, .number__item3 .notes {
  text-align: center;
}
.number__item3 .number__image3 {
  left: -10px;
  bottom: -14px;
}
.number__item3 .number__image4 {
  right: 34px;
  bottom: 30px;
}
.number__item4 {
  width: 50%;
  padding-bottom: 227px;
}
.number__item4 .detail {
  text-align: center;
}
.number__item4 .notes {
  padding: 0 16%;
}
.number__item4 .number__image5 {
  width: 110%;
  left: -5%;
  bottom: 50px;
  height: auto;
}
.number__item4 .number__image5 img {
  height: auto;
}
.number__item5 {
  width: 50%;
}
.number__item5 .detail {
  text-align: center;
}
.number__item5 .number__image6 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -10px;
  width: 82%;
}

@media screen and (max-width: 1190px) {
  .number__item .detail {
    font-size: 21px;
  }
  .number__item .detail span {
    font-size: 90px;
  }
  .number__item .number__image2 {
    right: -57px;
  }
  .number__item .number__image2 img {
    width: 70%;
  }
  .number__item .number__image3 img {
    width: 80%;
  }
}
/*--------------------.-------------------
service
---------------------------------------*/
#service {
  background-image: url("../img/webp/index/service_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 28% bottom 20%;
  padding-top: 120px;
  padding-bottom: 160px;
}

.service__contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.service .section__titleBox {
  align-items: flex-start;
  width: 20%;
}
.service__list {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.service__list--item {
  width: 47%;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 50px 6%;
  box-shadow: 6px 7px 1px #a3c1db;
}
.service .list__head {
  display: flex;
  align-items: center;
  margin-bottom: 27px;
}
.service__image {
  width: 21%;
  margin-right: 17px;
}
.service__image img {
  height: auto;
}
.service .list__title {
  font-size: 24px;
  font-weight: 600;
}
.service .list__title-en {
  font-size: 18px;
  font-family: "futura-pt", sans-serif;
  color: #9dadbc;
  white-space: nowrap;
}
.service__heading {
  width: 75%;
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 1260px) {
  .service__list {
    gap: 40px;
  }
}
/*--------------------.-------------------
case
---------------------------------------*/
#case {
  padding-top: 75px;
  padding-bottom: 140px;
}

.case__box {
  margin-top: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case__image {
  width: 40%;
}
.case__image img {
  height: auto;
}
.case__text-box {
  width: 50%;
}
.case__lead {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 37px;
}

/*--------------------.-------------------
price
---------------------------------------*/
#price {
  background: #f5f8fa;
  padding: 73px 0 140px;
}

.price__table {
  margin-top: 76.7px;
}
.price__table .top {
  width: 100%;
}
.price__table .top .top_col1 {
  width: 17%;
}
.price__table .top .top_col2 {
  background: #E5F2F7;
  border-radius: 10px;
  text-align: center;
  padding: 41px 0;
  width: 27.5%;
  border-left: 6px solid #f5f8fa;
}
.price__table .top .top_col2 .top__image {
  width: 80px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
.price__table .top .top_col2 .top__image img {
  height: auto;
}
.price__table .top .top__lead {
  font-size: 20px;
  font-weight: 600;
}
.price__table tr.front th {
  border-top: 8px solid #f5f8fa;
  padding: 42px 0;
  background: #E5E5E5;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.price__table tr.front td {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.price__table tr.front td span {
  font-size: 36px;
}
.price__table .front1 th {
  border-radius: 10px 0 0 0;
}
.price__table tr.front:last-child th {
  border-radius: 0 0 0 10px;
}

.price__btn {
  max-width: 260px;
}

/*--------------------.-------------------
FAQ
---------------------------------------*/
#faq {
  padding: 152px 0 140px;
  background-image: url("../img/index/faq_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 0% top 0%;
}

.qa-list {
  margin-top: 70px;
}
.qa-list dl {
  width: 100%;
  position: relative;
  cursor: pointer;
  margin-bottom: 30px;
}
.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: "";
}
.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;
}
.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;
}
.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;
}
.qa-list dl dt .questionText {
  font-size: 20px;
  font-weight: 600;
  width: 70%;
}
.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;
}
.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, rgb(135, 191, 204) 0%, rgb(211, 192, 216) 60%, rgb(245, 159, 177) 100%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
.qa-list dl dd .answerText {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  padding-top: 10px;
}

.qa-list dl:last-child {
  margin-bottom: 0;
}

.qa-list .open:after {
  transform: rotate(0deg);
  transition: 0.3s;
}

.qa-list dl.open dt {
  border-radius: 10px 10px 0 0;
}

/*--------------------.-------------------
company
---------------------------------------*/
#company {
  padding: 126px 0 160px;
  background-image: url("../img/webp/index/company_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 0% top 0%;
}
#company .company__titleBox .title__en {
  color: rgba(255, 255, 255, 0.45);
}
#company .company__titleBox .title {
  color: #fff;
}

#company .company__contents {
  background: #fff;
  padding: 32px 4.2% 80px;
  margin-top: 67px;
  border-radius: 10px;
}

#company tr {
  border-bottom: 1px solid #DDDDDD;
}
#company tr th {
  padding: 40px 2.7%;
  width: 20%;
  font-size: 16px;
  font-weight: 600;
}
#company tr td {
  padding: 40px 2.7%;
  width: 80%;
  font-size: 16px;
  font-weight: 400;
}
#company tr td .numberBox {
  display: flex;
  margin-top: 18px;
}
#company tr td .numberBox .tel,
#company tr td .numberBox .fax {
  display: flex;
  align-items: center;
}
#company tr td .numberBox .tel .tag,
#company tr td .numberBox .fax .tag {
  width: 60px;
  height: 32px;
  border-radius: 16px;
  background: #F4F6F7;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 11px;
}
#company tr td .numberBox .tel .tag .number,
#company tr td .numberBox .fax .tag .number {
  font-size: 15px;
}
#company tr td ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
#company tr td ul li:before {
  content: "";
  background: #7da2af;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#company tr td .numberBox .fax {
  margin-left: 38px;
}

#company ul li:last-child {
  margin-bottom: 0px;
}

#header .logo {
  border-radius: 0;
}

#header .logo img {
  width: auto;
  height: 50px;
}/*# sourceMappingURL=uniq.css.map */