@charset "UTF-8";
/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap");
:root {
  --font-Open_Sans: "Open Sans", sans-serif;
  --gray: #C8C8C8;
  --blue: #00a0e9;
  --white: #fff;
  --olive: #AC9E4C;
  --brown: #B9996A;
  --red: #D1322E;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.01rem;
  color: #1A1A1C;
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1240px) {
  body {
    min-width: 122rem;
  }
  body #c-header {
    width: 122rem;
  }
  body #wrapper {
    max-width: 122rem;
  }
}
.w-brall {
  word-break: break-all;
}

* {
  box-sizing: border-box;
}

/* ---------- START ANCHORLINK ---------- */
a {
  color: #1A1A1C;
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #1A1A1C;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

pre,
code,
kbd,
samp,
var,
.font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 122rem;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.2rem;
  }
}

/*====================================================================================
3. START COMMON HEADER
====================================================================================*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  border-bottom: 2px solid var(--gray);
  transition: all 0.5s;
  z-index: 99999;
}
.c-header.fixed {
  backdrop-filter: blur(10px);
}
.c-header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-header .header-inner__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .c-header {
    padding: 0;
  }
  .c-header .header-inner {
    padding: 1rem;
  }
  .c-header .header-inner__logo {
    width: 10rem;
  }
  .c-header .header-inner__right {
    align-items: center;
    gap: 2rem;
    width: calc(100% - 12rem);
  }
}
@media only screen and (min-width: 768px) {
  .c-header .header-inner {
    padding: 0.5rem 4%;
  }
  .c-header .header-inner__logo {
    width: 20.7rem;
  }
  .c-header .header-inner__logo img {
    width: 20.7rem;
  }
  .c-header .header-inner__right {
    width: calc(100% - 22rem);
  }
}

/*---------- START HAMBURGER ----------*/
.trigger-menu {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--blue);
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  border: none;
  z-index: 9999;
}
.trigger-menu span {
  display: block;
  position: absolute;
  width: 2.4rem;
  height: 0.2rem;
  background: #fff;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.trigger-menu span:nth-child(1) {
  top: 1.5rem;
  transform-origin: left center;
}
.trigger-menu span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
}
.trigger-menu span:nth-child(3) {
  bottom: 1.5rem;
  transform-origin: left center;
}
.trigger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  left: 0.6rem;
  top: 1.3rem;
}
.trigger-menu.active span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  left: 0.6rem;
  bottom: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}

/*---------- START GNAV ----------*/
.l-menu_contents .gnav__link {
  font-weight: 500;
  text-shadow: 0 0 2px #fff;
}
@media only screen and (max-width: 767px) {
  .l-menu_contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--olive);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    padding: 8rem 0 10rem;
    overflow: auto;
    width: 100%;
    max-width: 100%;
  }
  .l-menu_contents .gnav {
    display: block;
    padding: 0 2rem;
    margin-bottom: 3rem;
  }
  .l-menu_contents .gnav__link {
    width: 100% !important;
    padding: 1rem;
    color: white;
    text-align: center;
  }
  .l-menu_contents .h-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .l-menu_contents.is-visible {
    opacity: 1;
    visibility: visible;
    height: 100vh;
  }
  .PC-ChatCo-induction-btn {
  display: none;
  }
}
@media only screen and (min-width: 768px) {
  .l-menu_contents {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
  }
  .l-menu_contents .gnav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
  }
  .l-menu_contents .gnav__link {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .l-menu_contents.is-visible {
    opacity: 1;
    visibility: visible;
    right: 0;
  }
  .mobile-ChatCo-induction-btn {
    display: none;
  }
}
@media print, screen and (max-width: 1300px) {
  .l-menu_contents .gnav {
    gap: 2.5rem;
  }
  .l-menu_contents .gnav__link {
    font-size: 1.5rem;
  }
}

.nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  z-index: 3;
}
.nav-link:after {
  position: absolute;
  content: "";
  background: var(--blue);
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .nav-link:hover {
    color: var(--blue);
  }
  .nav-link:hover:after {
    width: 100%;
  }
}

.h-btn .c-btn {
  width: 21rem;
}
.h-btn .c-btn__link {
  width: 100%;
  font-size: 1.2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.h-btn .c-btn__link .icon {
  background-size: 1.7rem;
  padding-left: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .h-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
}

/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
.c-footer__logo {
  background: #333;
  padding: 3rem 0;
  text-align: center;
}
.c-footer__main {
  padding: 2.5rem 0;
}
.c-footer__main .Tera-logo {
  zoom: 50%;
}
.c-footer__main .f-gnav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
}
.c-footer__main .list-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.c-footer__main .list-logo img {
  zoom: 50%;
}
.c-footer__main .copyright {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .c-footer__logo {
    padding: 6rem 0;
  }
  .c-footer__main {
    padding: 5rem 0;
  }
  .c-footer__main .f-gnav {
    gap: 4rem;
    margin-top: 4rem;
  }
  .c-footer__main .list-logo {
    gap: 2rem;
    margin-top: 3rem;
  }
  .c-footer__main .copyright {
    margin-top: 7rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__logo img {
    max-height: 7rem;
    width: auto;
  }
}

/*====================================================================================
5. START COMMON CSS
====================================================================================*/
.a-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

/*---------- START padding section  ----------*/
.sec-cont {
  padding: 5rem 0;
}
@media only screen and (min-width: 768px) {
  .sec-cont {
    padding: 10rem 0;
  }
}

/*---------- START ICON ZOOM  ----------*/
.icon-zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.icon-zoom:before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-image: url("../common_img/lightbox/icon-zoom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.2rem 2.2rem;
  background-color: rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    transition: transform 0.5s ease;
  }
  .icon-zoom:hover img {
    transform: scale(1.06);
  }
}

/*---------- START list-indent  ----------*/
/*---------- START ARROW   ----------*/
/*---------- START BUTTON  ----------*/
.c-btn {
  position: relative;
  display: flex;
}
.c-btn__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.9rem;
  padding: 0.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  text-decoration: none;
  z-index: 9;
}
.c-btn__link:after {
  position: absolute;
  content: "";
  background: url("../images/shadow-btn.webp") no-repeat top center/cover;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .c-btn__link:hover:after {
    top: auto;
    bottom: 0;
    transform: scale(-1, -1);
  }
}

.btn-red {
  background: linear-gradient(to right, #C60000, #C80000, #BF0000, #A10000);
}

.btn-olive {
  background: linear-gradient(to right, #6D673B, #443D0F);
}

.btn-yellow {
  background: linear-gradient(to right, #FCBF08, #F0A400, #FED644, #E69805);
}

.icon {
  padding-left: 4rem;
}
.icon__download {
  background: url("../images/icon-download.webp") no-repeat center left;
}
.icon__trial {
  background: url("../images/icon_button.webp") no-repeat center left;
  padding-left: 4rem;
}
@media only screen and (min-width: 768px) {
  .icon {
    background-size: 2.9rem;
  }
}
.PC-ChatCo-induction-btn {
  position: absolute;
  top: 150px;
  right: -50px;
}
.PC-ChatCo-induction-btn img {
  max-width: 80%;
  width: 80%;
  &:hover {
      transform: scale(1.05, 1.05);
  }
}
.mobile-ChatCo-induction-btn {
  width: 80%;
  height: 80%;
}
.mainvisual-top {
  display: flex;
}

.screenshot-wrapper {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .screenshot-wrapper {
    margin-top: 0;
  }
}

/*---------- START ARROW ----------*/
.c-arr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  border-radius: 0.2rem;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .c-arr {
    padding: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}

/*---------- START TITLE  ----------*/
.c-title01 {
  margin-bottom: 2.5rem;
}
.c-title01 span {
  display: block;
  width: 100%;
  text-align: center;
}
.c-title01__txt-jp {
  font-size: 2.8rem;
  color: var(--olive);
}
.c-title01__txt-eng {
  font-size: 1.5rem;
  font-family: var(--font-Open_Sans);
}
@media only screen and (min-width: 768px) {
  .c-title01 {
    margin-bottom: 5rem;
  }
  .c-title01__txt-jp {
    font-size: 5.2rem;
  }
  .c-title01__txt-eng {
    font-size: 1.9rem;
  }
}

.c-title02 {
  text-align: center;
  margin: 3rem 0 2rem;
}
.c-title02 span {
  position: relative;
  display: inline-block;
  background: #1A1A1C;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.5rem 0.7rem;
}
.c-title02 span:after, .c-title02 span:before {
  position: absolute;
  content: "";
  background: #1A1A1C;
  width: 1rem;
  height: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  top: 0;
}
.c-title02 span:after {
  left: -1rem;
}
.c-title02 span:before {
  right: -1rem;
  transform: scale(-1, -1);
}
@media only screen and (min-width: 768px) {
  .c-title02 {
    margin: 6rem 0 4rem;
  }
  .c-title02 span {
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}

/*---------- START TEXT  ----------*/

/*---------- START IMG PLAN-BANNER ----------*/
img.img-plan-banner {
  height: 257.362px;
  width: auto;
}
