﻿@charset "utf-8";
/*----------------------
 * HOME Hero Slide
 * HOME Content
 * Page Hero
 * Page Section/Heading
 * RWD
 ----------------------*/

/* Slider
--------------------------------------------- */
.hero-section {
  width: 100%;
  height: 90vh;
  max-height: 820px;
  background-color: #FFF;
}

.hero-typography {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 70px;
  display: flex;
  gap: 16px;
  z-index: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.load-hide .hero-typography-lg {
  opacity: 0;
  top: 12px;
}

.hero-typography-lg {
  color: var(--blue300);
  font-size: 67px;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 1;
  top: 0;
  transition: opacity .4s ease, top .4s ease-out;
  transition-delay: .4s;
}

.load-hide .hero-typography-xs {
  opacity: 0;
  top: 12px;
}

.hero-typography-xs {
  color: var(--blue300);
  font-size: 32px;
  font-weight: 600;
  top: 0;
  opacity: 1;
  transition: opacity .4s ease, top .4s ease-out;
  transition-delay: .2s;
}

.load-hide .hero-btn-flex {
  opacity: 0;
  top: 12px;
}

.hero-btn-flex {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 42px 0;
  top: 0;
  opacity: 1;
  transition: opacity .4s ease, top .4s ease-out;
  transition-delay: .6s;
}

.hero-btn {
  color: var(--blue300);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 16px 24px;
  background-color: #FFF;
  border-radius: 10px;
  transition: color .3s ease, background .2s ease;
}

.hero-btn.start {
  color: #FFF;
  font-weight: 400;
  background-color: var(--blue300); 
}

.hero-btn:hover {
  background-color: rgba(255 255 255 / 50%)
}

.hero-btn.start:hover {
  color: var(--blue300);
}

.hero-slider {
  height: 100%;
  margin-bottom: 0 !important;
  visibility: hidden;
}

.hero-slider.slick-slider .slick-track, 
.hero-slider.slick-slider .slick-list {
  height: 100%;
}

.hero-slider .slick-slide {
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
}

.hero-slider .slide-001 {
  background-image: url(../images/main/main-hero-01.jpg);
}

.hero-slider .slide-002 {
  background-image: url(../images/main/main-hero-02.jpg);
}

.hero-slider .slide-003 {
  background-image: url(../images/main/main-hero-03.jpg);
}

.hero-slider .slide-004 {
  background-image: url(../images/main/main-hero-04.jpg);
}

.slide-paging {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 100%;
  z-index: 1;
}

.slide-paging .slick-dots {
  position: relative;
  display: flex;
  bottom: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slide-paging .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.slide-paging .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0px;
  border-radius: 50%;
  background-color: #FFF;
  border: none;
}

.slide-paging .slick-dots li.slick-active button {
  background-color: var(--blue300);
}

/** Service Slider **/
.location-wrapper {
  margin: 0 -20px;
}

.slick-dotted.say-slider {
  margin-bottom: 0;
}

.say-slider.slick-slider .slick-track {
  display: flex;
  padding-bottom: 62px;
}

.card-location {
  margin: 0 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 4px -4px rgba(12 12 12 / 5%), 0 16px 16px -2px rgba(12 12 12 / 10%);
}

.card-location::after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 38%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  z-index: 1;
}

.card-location p {
  position: absolute;
  bottom: 32px;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  z-index: 10;
}

.paging-circle {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: 0;
}

.paging-circle .slick-dots {
  position: relative;
  display: flex;
  bottom: 0;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.paging-circle .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0px;
  border-radius: 50%;
  background-color: #C4D0DB;
  border: none;
}

.paging-circle .slick-dots li.slick-active button {
  background-color: var(--blue300);
}

/* Content
--------------------------------------------- */
.main-section {
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}

.main-section .main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 0;
  text-align: center;
}

.main-section.intro .main-inner {
  padding-bottom: 0;
}

.main-inner .typo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.main-inner h2 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: -0.01em;
}

.main-inner .sub-head {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.main-inner h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.main-inner .sub-content {
   font-size: 24px;
   font-weight: 500;
   line-height: 1.5em;
   margin-top: 1.0em;
   margin-bottom: 80px;
   word-break: keep-all;
}

.main-inner .sub-content br {
  display: none;
}

.bottom-start {
  margin: 0 auto;
  transition-delay: .4s;
}

.main-section.intro h2, .main-section.intro p.sub-head {
  color: var(--blue300);
  word-break: keep-all;
}

.main-section.intro .sub-content {
  margin-bottom: 48px;
  word-break: keep-all;
}

.intro-func-ico {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 100px;
  z-index: 1;
}

.intro-func-ico img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 8px 4px -4px rgba(12 12 12 / 10%), 0 16px 24px rgba(12 12 12 / 10%);
}

.intro-monitor {
  margin-top: -52px;
}

.main-section.func {
  background-color: var(--blue300);
}

.main-section.func h2, .main-section.func h3 {
  color: #FFF;
  word-break: keep-all;
}

.main-section.func h3 {
  font-weight: 400;
}

.main-section.func p.sub-content {
  color: #C3DAEE;
  font-weight: 400;
}

.card-func-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  margin: 0 -20px;
  align-items: stretch;
}

.card-func-col {
  display: flex;
  width: calc(100% / 4);
  padding: 0 20px;
}

.card-func {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFF;
  box-shadow: 0 16px 32px -4px rgba(12 12 12 / 12%),  0 4px 4px -4px rgba(12 12 12 / 5%);
}

.card-thumb {
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 18px;
  gap: 10px;
}

.card-content .card-name {
  font-size: 23px;
  font-weight: 700;
}

.card-content .card-sub {
  color: #788189;
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
}

.main-section.where {
  background-color: var(--blue100);
}

.main-section.where .sub-content {
  color: var(--blue300);
}

/* Guide */
.main-section.guide {
  border-bottom: 1px solid var(--stroke);
}

.main-section.guide h2 {
  font-size: 32px;
}

.main-section.guide .sub-content {
  color: var(--blue300);
  font-size: 21px;
  margin-top: 0.5em;
  margin-bottom: 60px;
}

ul.user-step {
  max-width: 800px;
  margin: 0 auto 80px auto;
}

ul.user-step li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-radius: 82px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 16px rgba(0 80 148 / 12%);
}

ul.user-step li:nth-of-type(2) { transition-delay: .1s; }
ul.user-step li:nth-of-type(3) { transition-delay: .2s; }
ul.user-step li:nth-of-type(4) { transition-delay: .3s; }
ul.user-step li:nth-of-type(5) { transition-delay: .4s; }

ul.user-step li:not(:last-of-type) {
  margin-bottom: 24px;
}

ul.user-step li p {
  display: flex;
  color: var(--blue300);
  font-size: 20px;
  font-weight: 500;
  align-items: center;
  gap: 18px;
  text-align: left;
}

ul.user-step li p a {
  display: inline-block;
  color: var(--blue300);
  padding-right: 32px;
  background: url('../images/main/ico-arrow-right.svg') right 50%;
  transition: opacity .2s ease;
}

ul.user-step li p a:hover {
  opacity: .7;
}

ul.user-step li p em {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.0em;
  background-color: var(--blue400);
  border-radius: 50%;
}

ul.user-step li i {
  width: 40px; 
}

/* Review */
.review-container {
  display: flex;
  justify-content: space-between;
  gap: 13%;
  width: 100%;
  align-items: flex-start;
}

.review-title {
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  margin-top: 32px;
}

.review-title::before,
.review-title::after {
  display: flex;
  position: absolute;
  top: -62px;
  left: 6px;
  width: 30px;
  height: 30px;
  background: url('../images/main/ico-quotes.svg') 0;
  content: "";
}

.review-title::after {
  top: inherit;
  bottom: -62px;
  transform: rotate(180deg);
}

.review-title i {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 238px;
  transform: translate(80%, 80%);
}

.review-title i.invisible {
  /* transform: translate(80%, 100%); */
}

.review-list {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 2;
  gap: 32px;
}

.review-card {
  );
  width: calc((100% / 2) - (((2 - 1) / 2) * 32px)););
  border-radius: 24px;
  padding: 48px 32px;
  background-color: var(--blue100);
  text-align: left;
}

.review-card:nth-of-type(2) { transition-delay: .1s; }
.review-card:nth-of-type(3) { transition-delay: .2s; }
.review-card:nth-of-type(4) { transition-delay: .3s; }

.review-comment {
  font-size: 20px;
  margin-bottom: 16px;
}

.review-name {
  font-size: 18px;
  font-weight: 700;
}

.review-name em {
  display: block;
  color: var(--blue300);
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
}

/** Notice **/
.main-section.notice {
  background-color: var(--blue100);
}

.main-section.notice h2 {
  font-size: 32px;
  margin-bottom: 60px;
}

/** ASK **/
.main-section.ask {
  display: flex;
  background: url('../images/main/bottom-ask.jpg') 50% / cover;
  height: 400px;
  align-items: center;
  justify-content: center;
}

.main-section.ask .ask-warpper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.ask-warpper p {
  color: #FFF;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

/* Page Hero
--------------------------------------------- */
.site-page {
  padding-top: 73px;
  min-height: 70vh;
}

.page-hero {
  height: 450px;
  background: url('../images/page/bg-hero.png') 0;
  background-repeat: repeat-x !important;!i;!;
  padding-left: 24px;
  padding-right: 24px;
}

.page-hero-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-bottom: 40px;
  height: 100%;
}

.page-hero-wrapper.hidden.visible {
  opacity: 1;
}

.page-hero-wrapper p.page-name {
  color: var(--blue300);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.page-hero-wrapper h2.page-heading {
  color: var(--blue300);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
}

.page-hero-wrapper h2.page-heading br {
  display: none;
}

.page-hero-wrapper p.page-summary {
  color: #5F7283;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 38px;
  word-break: keep-all;
}

.page-hero-wrapper > .hidden  {
  opacity: 0;
  transform: translateY(32px);
}

.page-hero-wrapper > .visible  {
  opacity: 1;
  transition: var(--move);
  transition-delay: .2s;
  transform: translateY(0px);
}

.page-hero-wrapper > .visible:nth-child(2) { transition-delay: .3s; }
.page-hero-wrapper > .visible:nth-child(3) { transition-delay: .4s; }
.page-hero-wrapper > .visible:nth-child(4) { transition-delay: .6s; }

/* Page Section, Heading
--------------------------------------------- */
section.page  {
  padding-left: 24px;
  padding-right: 24px;
}

section.page .page-inner {
  max-width: 992px;
  margin: 0 auto;
  padding-top: 120px;
}

section.page.top .page-inner {
  padding-top: 60px;
}

section.page.bottom .page-inner {
  padding-bottom: 150px;
}

section.page.single .page-inner {
  padding-top: 80px;
  padding-bottom: 150px;
}

section.page.download .page-inner {
  padding-top: 80px;
  padding-bottom: 150px;
}

section.page .page-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 55px;
}

section.page h2 {
  font-size: 32px;
  font-weight: 700;
}

section.page .sub-head {
  color: #8C97A0;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  word-break: keep-all;
}

.section-between {
  display: flex;
  flex-direction: column;
  )
  vh;
  justify-content: space-between;
}

/* Responesive
--------------------------------------------- */

/** Notebook 1536px **/
@media screen and (max-width: 1536px) {
  /* Hero */
  .hero-typography-xs {
    font-size: 24px;
  }

  .hero-typography-lg {
    font-size: 58px;
  }

  /* Typo */
  .main-inner h2 {
    font-size: 48px;
  }

  .main-inner .sub-content {
    font-size: 20px;
  }
}

/** HD 1280px **/
@media screen and (max-width: 1280px) {
  /* Hero */
  .hero-typography-lg {
    font-size: 52px;
  }

  .hero-btn {
    font-size: 18px;
  }

  /* Typo */
  .main-inner .sub-head {
    font-size: 24px;
  }

  .main-inner h2 {
    font-size: 46px;
  }

  .main-inner .sub-content, .main-section.guide .sub-content {
    font-size: 18px;
  }

  /* intro */
  .intro-func-ico {
    gap: 48px;
  }

  .intro-func-ico img {
    width: 80px;
    height: auto;
  }

  /* Func */
  .card-func-group {
    margin: 0;
    gap: 24px 0;
  }

  .card-func-col {
    padding: 0 12px;
  }

  .card-content {
    padding: 18px;
  }

  .card-content .card-name {
    font-size: 18px;
  }

  /* Guide **/
  ul.user-step li p {
    font-size: 18px;
    gap: 12px;
  }

  ul.user-step li p em {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  ul.user-step li i {
    width: 32px;
  }

  /* Review */
  .review-container {
    gap: 62px;
  }

  .review-title i {
    width: 190px;
  }

  .review-title {
    font-size: 42px;
    line-height: 1.25;
  }

  .review-title::before, .review-title::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
  }

  .review-comment {
    font-size: 18px;
    word-break: keep-all;
  }

  .review-comment br {
    display: none;
  }

  /* Bottom */
  .main-section.ask .ask-warpper {
    gap: 28px;
  }
  
  .main-section.ask {
    height: inherit;
    padding: 72px 24px;
  }

  .ask-warpper p {
    font-size: 36px;
  }
}

/** Apple iPad Pro 12.9 1024px **/
@media screen and (max-width: 1024px) {
  .site-page {
    padding-top: 50px;
  }
}

/** Tablet Apple iPad Pro 11 834px **/
@media screen and (max-width: 834px) {
  /* Hero */
  .hero-section {
    height: 80vh;
  }

  .hero-slider .slide-001 {
    background-image: url(../images/main/main-hero-01_m.jpg);
  }

  .hero-slider .slide-002 {
    background-image: url(../images/main/main-hero-02_m.jpg);
  }

  .hero-slider .slide-003 {
    background-image: url(../images/main/main-hero-03_m.jpg);
  }

  .hero-slider .slide-004 {
    background-image: url(../images/main/main-hero-04_m.jpg);
  }

  /* Intro */
  .intro-monitor{
    margin-top: -40px;
  }

  .intro-monitor img {
    width: 60vw;
  }

  /* Func */
  .card-func-col {
    width: calc(100% / 2);
  }

  /* Review */
  .review-container {
    flex-direction: column;
    align-items: stretch;
  }

  .review-title {
    margin-top: 0;
    font-size: 36px;
  }

  .review-title::before, .review-title::after {
    display: none;
  }

  .review-title i {
    left: inherit;
    right: 0;
    transform: translate(-10%, 60%);
  }

  .review-list {
    gap: 16px;
    flex-grow: 1;
  }

  .review-card {
    width: calc((100% / 2) - (((2 - 1) / 2) * 16px));
  }

  /* Pgage Hero */
  .page-hero {
    height: 410px;
  }

  .page-hero-wrapper p.page-name {
    font-size: 21px;
  }

  .page-hero-wrapper h2.page-heading {
    font-size: 42px;
  }


  .page-hero-wrapper p.page-summary {
    font-size: 18px;
    margin-top: .6em;
  }

}

/** Tablet 640px or Landscape **/
@media screen and (max-width: 640px) {
  /* Hero */
  .hero-typography {
    gap: 8px;
  }

  .hero-typography-xs {
    font-size: 20px;
    font-weight: 700;
  }

  .hero-typography-lg {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.35;
  }

  /* Typo */
  .main-inner .sub-head {
    font-size: 18px;
  }

  .main-inner h2 {
    font-size: 32px;
    line-height: 1.3em;
  }

  .main-section.guide h2, .main-section.notice h2 {
    font-size: 24px;
  }

  .main-inner h3 {
    font-size: 18px;
  }

  .main-inner .sub-content, .main-section.guide .sub-content {
    font-size: 17px;
  }

  /* Intro */
  .intro-func-ico {
    gap: 32px;
  }

  .intro-func-ico img {
    width: 64px;
  }

  .intro-monitor img {
    width: 74vw;
  }

  /* Func */
  .card-content {
    padding: 18px 12px;
  }

  .card-content .card-sub {
    font-size: 14px;
    line-height: 1.4;
  }

  .card-content .card-sub br {
    display: none;
  }

  /* Where */
  .card-location {
    margin: 0 12px;
  }

  /* Step */
  ul.user-step li p, ul.user-step li p a {
    font-size: 16px;
    line-height: 1.3;
  }

  /* Review */
  .review-card {
    padding: 28px 24px;
  }

  .review-comment, .review-name {
    font-size: 16px;
  }

  .review-name em {
    font-size: 12px;
  }

  /* Ask */
  .main-section.ask {
    padding: 58px 16px;
    background-position-x: -18vw;
  }

  .main-section.ask .ask-warpper {
    gap: 20px;
  }

  .ask-warpper p {
    font-size: 28px;
  }

  /* Page Hero */
  .page-hero-wrapper h2.page-heading  {
    font-size: 38px;
  }

  .page-hero-wrapper h2.page-heading br {
    display: block;
  }

  .page-hero-wrapper p.page-summary br {
    display: none;
  }
  
}

/** Mobile iPhone Pro 12 Max 428px **/
@media screen and (max-width: 428px) {
  /* Hero */
  .hero-section {
    height: 70vh;
  }

  .main-section.intro .sub-content br {
    display: none;
  }

  /* Typo */
  .main-inner h2 {
    font-size: 28px;
  }

  .main-inner .sub-content, .main-section.guide .sub-content  {
    font-size: 16px;
    line-height: 1.4em;
    margin-top: 0.6em;
    margin-bottom: 60px;
  }

  .main-section.intro h2,
  .main-inner .sub-content br {
    display: block;
  }

  /* Section */
  .main-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .main-section .main-inner {
    padding: 80px 0;
  }

  /* Intro */
  .intro-func-ico {
    gap: 24px;
  }

  .intro-monitor {
    margin-top: -30px;
  }

  /* Func */
  .card-func-group {
    gap: 16px 0;
    margin: 0 -12px;
  }

  .card-func-col {
    padding: 0 8px;
  }

  /* Where */
  .location-wrapper {
    margin: 0 -18px;
  }

  .card-location {
    margin: 0 8px;
  }

  .card-location p {
    font-size: 18px;
    font-weight: 600;
    bottom: 24px;
  }

  /* Guide */
  ul.user-step {
    margin-top: -24px;
  }

  ul.user-step li {
    padding: 14px 12px;
    justify-content: flex-start;
  }

  ul.user-step li:not(:last-of-type) {
    margin-bottom: 16px;
  }

  ul.user-step li p {
    flex-grow: 1;
    font-size: 15px;
    gap: 10px;
  }

  ul.user-step li i {
    display: none;
  }

  ul.user-step li p em {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  ul.user-step li p a {
    background-size: 18px;
    padding-right: 24px;
    word-break: keep-all;
    flex-grow: 1;
  }

  /* Review */
  .review-title {
    font-size: 32px;
  }

  .review-title i {
    width: 170px;
    transform: translate(5%, 55%);
  }

  .review-title i.invisible {
    transform: translate(5%, 85%);
  }

  .review-card {
    width: 100%;
  }

  .review-comment {
    font-size: 18px;
  }

  /* Notice */
  .main-section.notice h2 {
    margin-bottom: 38px;
  }

  /* Ask */
  .main-section.ask {
    padding: 58px 12px;
    background-position-x: 20%;
  }

  .ask-warpper p {
    font-size: 21px;
  }

  /* Page Hero */
  .page-hero {
    height: 380px;
    background-position-y: -50px;
  }
  
  .page-hero-wrapper p.page-name {
    font-size: 18px;
  }

  .page-hero-wrapper h2.page-heading {
    font-size: 32px;
    letter-spacing: -0.01em;
  }

  .page-hero-wrapper p.page-summary {
    font-size: 16px;
    margin-bottom: 1.6em;
  }

  /* Page Section, Heading */
  .page-hero-wrapper {
    justify-content: flex-start;
    padding-top: 52px;
    padding-bottom: 0;
  }

  section.page.top .page-inner {
    padding-top: 16px;
  }

  section.page .page-inner {
    padding-top: 80px;
  }

  section.page.bottom .page-inner {
    padding-bottom: 80px;
  }

  section.page.single .page-inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  section.page.download .page-inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  section.page h2 {
    font-size: 26px;
  }

  section.page .sub-head {
    font-size: 16px;
  }

  section.page .page-heading {
    margin-bottom: 42px;
  }

}
