@charset "utf-8";
/*
|---------------------------------------------------------------
| TiME Analytics / Home
|---------------------------------------------------------------
*/
.home {
  display: block;
  width: 100%;
}
.home__header {
  display: block;
  width: 100%;
  border-style: solid;
  border-color: var(--color-primary);
  border-width: 0 0 6px;
  border-width: 0 0 calc(round(clamp(3px, 0.75vw, 6px), 1px));
}
.home__body {
  display: block;
  width: 100%;
}

/*
  Action
------------------------------------------------ */
.action-start {
  --action-bg: url(../images/icon/start.svg);
}
.action-pause {
  --action-bg: url(../images/icon/pause.svg);
}
.action-stop {
  --action-bg: url(../images/icon/stop.svg);
}

.action-start,
.action-pause,
.action-stop {
  display: inline-flex;
  align-items: baseline;
  gap: 0.125em;
}

.action-start::before,
.action-pause::before,
.action-stop::before {
  content: "";
  align-self: center;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: var(--action-bg);
}


/*
  Section
------------------------------------------------ */
.home-section {
  --section-gap: 2em;
  width: 100%;
  font-size: clamp(14px, 1.45vw, 22px);
}
.home-section__header {
  display: block;
  width: 100%;
  padding: 3em 0 calc(3em + var(--section-gap, 0px));
  color: var(--color-foreground);
  background-color: var(--color-background);
}
.home-section__body {
  color: var(--section-color, var(--color-foreground));
  background-color: var(--section-bgcolor, var(--color-light));
  background-image: var(--section-bgimage);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-top: calc(-1 * var(--section-gap, 0px));
  clip-path: polygon(0% 0%, calc(50% - 5em) 0%, 50% var(--section-gap, 0px), calc(50% + 5em) 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: var(--section-gap, 0px) 0 0 0;
}
.home-section-title {
  color: var(--color-tertiary);
  font-size: clamp(25px, 4.5vw, 50px);
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0;
}

/*
  MV
------------------------------------------------ */
.mv {
  width: 100%;
  padding: 8% 0 15%;
  background-image: url(../images/mv/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mv__content {
  display: block;
  width: 100%;
  max-width: calc(var(--container-maxwidth, 100%) + var(--container-padding-x, 0px) * 2);
  padding: 0 var(--container-padding-x, 0px);
  margin: 0 auto;
}

@media (orientation: portrait) {
  .mv {
    padding: 45% 0;
    background-position: center right 25%;
  }
}

.mv-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2vw, 30px);
  font-size: var(--base-font-size);
}
.mv-title__prefix {
  display: block;
  width: 60%;
  max-width: 380px;
}
.mv-title__image {
  display: block;
  width: 90%;
  max-width: 843px;
}
.mv-title img {
  display: block;
  width: 100%;
  height: auto;
}

/*
  About
------------------------------------------------ */
.section-about {
  --about-gap: 40px;
  display: block;
  width: 100%;
}

.section-about-background {
  display: block;
  width: 100%;
  color: #ffffff;
  background-color: #333333;
  background-image: url(../images/about/bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  font-size: clamp(18px, 2.2vw, 26px);
  padding: 3em 0 calc(3em + var(--about-gap, 0px));
}
.section-about-background__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.section-about-background-title {
  display: block;
  width: 10.5em;
  padding: 0.2em 0.5em;
  font-size: 1.54em;
  font-weight: 500;
  text-align: center;
  border-bottom: 2px solid currentColor;
}

.section-about-background-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.section-about-background-list > li {
  padding-left: 1.54em;
  position: relative
}
.section-about-background-list > li::before {
  content: "";
  display: block;
  width: 0.77em;
  height: 0.77em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 2px solid #FFF;
}
.section-about-background-list > li::after {
  content: "";
  display: block;
  width: 0.85em;
  height: 0.62em;
  border-style: solid;
  border-color: var(--color-primary);
  border-width: 0 0 calc(round(clamp(3px, 0.75vw, 6px), 1px)) calc(round(clamp(3px, 0.75vw, 6px), 1px));
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-100%) rotate(-45deg);
}

.section-about-improve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: calc(-1 * var(--about-gap, 0px));
  clip-path: polygon(0% 0%, calc(50% - 100px) 0%, 50% calc(var(--about-gap, 0px) / 631px * 100%), calc(50% + 100px) 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: var(--about-gap, 0px) 0 0 0;
  color: #000000;
  background-color: var(--color-secondary);
  background-image: url(../images/about/bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  text-shadow: -1px -1px 2px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, 1px 1px 2px #ffffff;
}
.section-about-improve__content {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  font-size: clamp(15px, 2vw, 24px);
}

@media (min-width: 1100.02px) {
  .section-about-improve {
    min-height: 631px;
  }
}

.section-about-improve-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2em;
  font-feature-settings: "palt" 1;
}
.section-about-improve-title__prefix {
  display: block;
  font-family: "Roboto", var(--base-font-family);
  line-height: 1.5;
}
.section-about-improve-title__image {
  display: block;
  width: 26.9em;
  max-width: min(100%, 700px);
}
.section-about-improve-title__image img {
  display: block;
  width: 100%;
  height: auto;
}

.section-about-improve-content {
  display: block;
  margin: 0 0 1.5em;
  font-size: 1em;
  line-height: 1.75;
}

/*
  課題
------------------------------------------------ */
.section-issues {
  --issue-max-width: 1080px;
  display: block;
  width: 100%;
  min-height: 700px;
  padding: clamp(50px, 5vw, 100px) 0 clamp(60px, 6vw, 120px);
  font-size: clamp(15px, 2vw, 22px);
  background-color: var(--color-light);
  background-image: url(../images/issue/bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.section-issue {
  width: 100%;
  max-width: var(--issue-max-width);
  margin: 0 auto 3em;
}
.section-issue__header {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.9em;
  text-align: center;
  color: #ffffff;
  background-color: var(--color-tertiary);
}
.section-issue__body {
  display: block;
  width: 100%;
  padding: 1.5em;
  color: var(--color-foreground);
  background-color: var(--color-background);
}

.section-issue-title {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 1.18em;
  font-weight: 500;
}

.section-issue-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-issue-list > li {
  margin: 0 0 1.5em;
  position: relative;
  padding: 0 0 0 2em;
  font-size: 1em;
  line-height: 1.75;
}
.section-issue-list > li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.525em 0.82em 0.525em;
  border-color: transparent transparent #00a27a transparent;
  position: absolute;
  top: 0.375em;
  left: 0;
}

.section-issues-solution {
  width: 100%;
  max-width: var(--issue-max-width);
  margin: 0 auto;
  line-height: 1.75;
}

/*
  特徴
------------------------------------------------ */
.section-features {
  --section-color: #ffffff;
  --section-bgimage: url(../images/features/bg.jpg);
}

.feature {
  display: block;
  padding: 13% 0;
  font-size: clamp(14px, 2vw, 22px);
}
.feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5em;
}
.feature__list__item {
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
}

.feature-block {
  width: 10em;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-block__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  width: 3.64em;
  height: 2.73em;
}
.feature-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.feature-block__body {
  display: block;
  width: 100%;
}
.feature-block__image + .feature-block__body::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 2em;
  height: 6px;
  height: calc(round(0.27em, 1px));
  margin: 1em auto 1.5em;
  background-color: var(--color-tertiary);
}

/*
  機能
------------------------------------------------ */
.section-functions {
  --section-color: #ffffff;
  --section-bgcolor: #23a57e;
}

.function {
  width: 100%;
  padding: clamp(30px, 5vw, 50px) 0;
  overflow: hidden;
}
.function__main {
  width: 100%;
  padding: clamp(15px, 2vw, 30px) 0;
}
.function__sections {
  width: 100%;
  padding: clamp(15px, 2vw, 30px) 0;
}

.function-hr {
  border-top: 1px dashed #ffffff;
  opacity: 1;
}

.function-main {
  display: block;
  width: 100%;
}
.function-main__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(30px, 3vw, 45px);
}
.function-main__body {
  display: block;
  width: 100%;
}

.function-main-title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  text-align: center;
}

.function-previews {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.function-preview {
  width: 100%;
  display: flex;
  justify-content: var(--function-align);
  position: relative;
}
.function-preview__image {
  width: 100%;
  margin: 0;
  pointer-events: none;
}
.function-preview__image img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 4px 4px rgba(0, 0, 0, 0.1);
}
.function-preview__image figcaption {
  width: 100%;
  margin: 0;
  padding: 0.5em 1em;
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  font-size: max(12px, 0.6em);
  font-weight: 500;
}
.function-preview__image figcaption::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent currentColor;
  border-width: 0 0.5em 0.85em 0.5em;
}
.function-preview__content {
  display: none;
  width: 100%;
}

@media (min-width: 800.02px) {
  .function-preview {
    aspect-ratio: 1100 / 380;
    padding: 0 30px;
  }
  .function-preview__image {
    width: auto;
    flex: 0 0 52.31%;
    max-width: 544px;
  }
  .function-preview__content {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
}

.function-summary {
  display: block;
  width: 100%;
  height: 100%;
}

.function-home {
  --function-align: flex-start;
}

.function-dashboard {
  --function-align: flex-end;
}

.function-sections {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 30px 15px;
}

.function-section {
  width: 100%;
  font-size: var(--base-font-size);
}
.function-section__header {
  display: block;
  width: 100%;
  margin: 0 0 1em;
}
.function-section__body {
  display: block;
  width: 100%;
  font-size: 1em;
  line-height: 1.5;
}

.function-section-title {
  display: block;
  width: 100%;
  max-width: 260px;
  font-size: 1.22em;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0.5em;
  color: #1a9f7e;
  background-color: #f9f9f9;
}

.function-list {
  margin: 0;
}
.function-list > li {
  margin: 0 0 0.5em;
}

/*
  最新情報
------------------------------------------------ */
.section-news {
  /* --section-color: #; */
}

.news {
  padding: 6em 0;
  font-size: var(--base-font-size);
}

.news-status {
  text-align: center;
}
.news-status-error {
  color: var(--color-accent);
}

.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2em;
}
.news__list__item {
  display: block;
}

.news-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.news-block__category {
  flex: 0 0 7.5em;
  max-width: 7.5em;
}
.news-block__date {
  flex: 0 0 7.5em;
  max-width: 7.5em;
}
.news-block__content {
  display: block;
  flex-grow: 1;
}

*[class*="news-block-category"] {
  display: block;
  width: auto;
  height: auto;
  text-align: center;
  color: var(--news-color);
  background-color: var(--news-bgcolor);
}

.news-block-category--release {
  --news-color: #ffffff;
  --news-bgcolor: var(--color-primary);
}

.news-block-date {
  opacity: 0.5;
}

.news-block-title {
  display: block;
}

/*
  利用を開始
------------------------------------------------ */
.section-main {
  width: 100%;
  padding: clamp(40px, 10vw, 100px) 0;
}

.section-main-services {
  width: 100%;
  margin: 0 0 clamp(40px, 8vw, 120px);
}

.section-main-aside {
  width: 100%;
}

.service {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(25px, 4vw, 60px) clamp(15px, 4vw, 30px);
  border-width: 6px;
  border-width: calc(round(clamp(3px, 0.5vw, 6px), 1px));
  border-style: solid;
  border-color: var(--color-tertiary);
}
.service__header {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(15px, 3vw, 30px) 0;
  text-align: center;
}
.service__body {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.service-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 0 0 0.5em;
  font-size: clamp(22px, 3.6vw, 50px);
  text-align: center;
}

.service-title > span {
  display: block;
}

.service-navs {
  width: 100%;
  margin: 0 0 clamp(30px, 3vw, 60px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-nav {
  container-type: inline-size;
  display: block;
  width: auto;
  flex: 0 0 420px;
  max-width: 100%;
  border-style: solid;
  border-width: 3px;
  border-color: var(--color-tertiary);
  box-shadow: 0 2px 4px 4px rgba(0, 0, 0, 0.05);
}
.service-nav__head {
  display: block;
  width: 100%;
  padding: 0.5em 0.5em;
  color: #ffffff;
  background-color: var(--color-tertiary);
  font-size: 8cqw;
  font-weight: 500;
  text-align: center;
}
.service-nav__body {
  display: block;
  width: 100%;
  padding: 1.5em 1.5em;
  color: var(--color-foreground);
  background-color: var(--color-background);
}
.service-nav__body p {
  margin: 0 0 2em;
}
.service-nav__body small {
  font-size: 1em;
}

.service-btn {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1em 1em;
  font-size: clamp(16px, 5cqw, 24px);
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  color: #ffffff;
  background-color: var(--color-accent);
  border-radius: 0.25em;
  box-shadow: 0 2px 4px 4px rgba(0, 0, 0, 0.1);
}

.service-terms {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3em 0;
}

.service-term {
  display: block;
  width: 100%;
  margin: 0;
}
.service-term__head {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.25em 0;
  text-align: center;
}
.service-term__body {
  width: 100%;
  height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #c8c8c8;
  padding: 1em;
  font-size: clamp(12px, 0.8em, 18px);
  line-height: 1.75;
}

/*
  サービスロゴ
------------------------------------------------ */
.service-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 60px;
  font-size: var(--base-font-size);
}

.service-links-group {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 3em;
}

.service-link {
  display: block;
}

.service-link a {
  display: block;
  width: 10em;
  color: inherit;
  text-decoration: none;
}

.service-link img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.service-qinc {
  display: block;
}

.service-qinc a {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.service-qinc__image {
  display: block;
  width: 10em;
}
.service-qinc small {
  align-self: flex-end;
  display: block;
  font-size: 1em;
  font-weight: 600;
  padding: 0.5em 0;
}

/*
  Animation
------------------------------------------------ */
.js-inview {
  --default-transition: opacity 0.5s, transform 0.5s;
}

.section-about-improve.js-inview .section-about-improve-title__prefix {
  opacity: 0;
  transform: translateY(80%);
  transition: var(--default-transition);
  transition-delay: 0s;
}

.section-about-improve.js-inview.js--inviewed .section-about-improve-title__prefix {
  opacity: 1;
  transform: translateY(0%);
}

.section-about-improve.js-inview .section-about-improve-title__image {
  opacity: 0;
  transform: translateY(80%);
  transition: var(--default-transition);
  transition-delay: 0.3s;
}

.section-about-improve.js-inview.js--inviewed .section-about-improve-title__image {
  opacity: 1;
  transform: translateY(0%);
}

.section-about-improve.js-inview .section-about-improve-content {
  opacity: 0;
  transform: translateY(80%);
  transition: var(--default-transition);
  transition-delay: 0.6s;
}

.section-about-improve.js-inview.js--inviewed .section-about-improve-content {
  opacity: 1;
  transform: translateY(0%);
}

.section-issue.js-inview {
  opacity: 0;
  transform: translateY(30%);
  transition: var(--default-transition);
  transition-delay: 0s;
}

.section-issue.js-inview.js--inviewed {
  opacity: 1;
  transform: translateY(0%);
}

.section-issues-solution.js-inview {
  opacity: 0;
  transform: translateY(30%);
  transition: var(--default-transition);
  transition-delay: 0.3s;
}

.section-issues-solution.js-inview.js--inviewed {
  opacity: 1;
  transform: translateY(0%);
}

.feature__list__item.js-inview {
  opacity: 0;
  transform: translateY(25%);
  transition: var(--default-transition);
}

.feature__list__item.js-inview:nth-child(1) {
  transition-delay: 0.3s;
}

.feature__list__item.js-inview:nth-child(2) {
  transition-delay: 0.6s;
}

.feature__list__item.js-inview:nth-child(3) {
  transition-delay: 0.9s;
}

.feature__list__item.js-inview.js--inviewed {
  opacity: 1;
  transform: translateY(0%);
}

.function-home.js-inview {
  opacity: 0;
  transform: translateX(50%);
  transition: transform 0.6s;
}

.function-dashboard.js-inview {
  opacity: 0;
  transform: translateX(-50%);
  transition: transform 0.6s;
}

.function-home.js-inview.js--inviewed,
.function-dashboard.js-inview.js--inviewed {
  opacity: 1;
  transform: translateX(0%);
}

.function-section.js-inview {
  opacity: 0;
  transform: translateY(25%);
  transition: var(--default-transition);
}

.function-section.js-inview:nth-child(1) {
  transition-delay: 0s;
}

.function-section.js-inview:nth-child(2) {
  transition-delay: 0.1s;
}

.function-section.js-inview.js--inviewed {
  opacity: 1;
  transform: translateY(0%);
}
