@charset "UTF-8";
html {
  font-size: 62.5%;
}
@media (max-width: 1100px) {
  html {
    font-size: 50%;
  }
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
}
:root {
  --main: #26ADC9;
  --dark: #005676;
  --gray: #666666;
  --text: #4C4C4C;
  --pale-blue: #D8F8FE;
  --yellow: #FFFA76;
  --black: #121212;
  --white: #ffffff;
  --light-blue: #EBFCFF;
  --light-gray: #F9F9F9;

  --small-font: 1.4rem;
  --button-font: 1.8rem;
}
@media (max-width:768px) {
  :root {
    --small-font: 1.8rem;
    --button-font: 2.2rem;
  }
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: var(--main);
}
.container {
  max-width: 1200px;
  margin:  0 auto;
  padding: 0 20px;
  box-sizing: content-box;
  width: auto;
}
.container-1000 {
  max-width: 1000px;
  margin:  0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
/* common */
.common-button img {
  width: 2.8rem;
  height: auto;
  transition: all 0.3s ease;
}
.common-button {
  border-radius: 3rem;
  background: var(--yellow);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  color: var(--black);
  font-size: var(--button-font);
  font-weight: bold;
  padding: 1.6rem 2rem;
  min-width: 20rem;
  transition: all 0.3s ease;
}
.common-button-blue {
  background: var(--main);
  color: var(--white);
}
.common-title {
  color: var(--main);
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
.common-border-index {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  font-size: 2rem;
  font-weight: bold;
  gap: 2rem;
  margin-bottom: 1.3rem;
}
.common-border-index:before,
.common-border-index:after {
  content: "";
  display: block;
  width: 50%;
  max-width: 16rem;
  height: 2px;
  background-color: var(--main);
}
.common-button:hover img,
.common-button:active img{
  transform: translateX(10px);
}
.common-button:hover,
.common-button:active{
  opacity: 0.7;
}
@media (max-width: 992px) {
  .common-border-index:before,
  .common-border-index:after {
    content: "";
    display: block;
    width: 50%;
    max-width: 6rem;
    height: 2px;
    background-color: var(--main);
  }
  .result-image {
    overflow: hidden;
  }
}

/* header */
.header-wrapper {
  width: 100%;
  padding: 3.3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo {
  max-width: 140px;
  margin-right: 4rem;
}
.header-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style-type: none;
}
.header-list li {
  margin-right: 2.4rem;
  font-size: var(--small-font);
  position: relative;
}
.header-list li > a {
  color: var(--text);
}
.header-list li:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  transform: scale(0,1);
  height: 2px;
  background-color: var(--main);
  transition: all 0.3s ease;
  transform-origin: center;
}
.header-list li:hover:after,
.header-list li:active:after{
  transform: scale(1,1);
}
.header-apps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style-type: none;
}
.header-apps li {
  margin-left: 1rem;
  font-size: var(--small-font);
  position: relative;
}
.header-apps li > a {
  color: var(--text);
}
.header-apps li.header-button > a {
  color: var(--main);
  font-size: var(--small-font);
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid var(--main);
  background: #FFF;
  text-align: center;
  padding: 8px 28px;
  transition: all 0.3s ease;
}
.header-apps li.header-button > a:hover,
.header-apps li.header-button > a:active{
  background-color: var(--pale-blue);
  color: var(--main);
}
.header-apps li.header-docs > a {
  color: var(--white);
  background-color: var(--main);
}
.header-apps li.header-docs > a:hover,
.header-apps li.header-docs > a:active {
  color: var(--white);
  background-color: var(--dark);
  border: 1px solid var(--dark);
}
#menu {
  position:fixed;
  right: 3rem;
  top: 3.4rem;
  border: 1px solid var(--main);
  height: 4rem;
  width: 4rem;
  display: none;
  z-index: 11;
  background-color: var(--white);
}
.menu-inner {
  padding: 0.5rem;
  width: 100%;
  height: 100%;
}
#menu span {
  display: block;
  height: 3px;
  background-color: var(--main);
  border-radius: 3rem;
  position: absolute;
  left: 10%;
  width: 80%;
  transition: all 0.3s ease;
}
#menu span:nth-child(1) {
  top: 0.6rem;
}
#menu span:nth-child(2) {
  top: 1.8rem;
}
#menu span:nth-child(3) {
  top: 2.9rem;
}
#menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 1.7rem;
}
#menu.active span:nth-child(2) {
  opacity: 0;
}
#menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 1.7rem;
}
@media (max-width: 1400px) {
  #header-nav {
    display: none;
  }
  .header-right {
    margin-right: 5rem;
  }
  #menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .header-right {
    display: none;
  }
  .header-wrapper {
    padding: 2rem;
  }
  #menu {
    top: 2rem;
    right: 2rem;
  }
}

/* fv */
#fv {
  position: relative;
  padding-bottom: 5rem;
  width: 100%;
  overflow: hidden;
}
.fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 550px 100vw;
  border-color: transparent transparent var(--pale-blue) transparent;
}
.fv-content {
	padding: 5rem 2rem 5rem;
    position: relative;
    z-index: 2;
}
.fv-catch {
  color: #26ADC9;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.3;
} 
.fv-catch .small {
  color: var(--gray);
  font-size: 2.8rem;
}
.fv-catch .middle {
  color: var(--gray);
  font-size: 4rem;
}
.fv-desc {
  font-size: 1.6rem;
  list-style: 1.8;
  margin:1.6rem auto 1.8rem;
}
.fv-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.2rem;
}
.fv-image {
	height: auto;
    width: 60%;
    position: absolute;
    right: -5%;
    top: 10%;
}
@media (max-width: 1400px) {
  .fv-image {
	height: auto;
    width: 60%;
    position: absolute;
    right: 0%;
    top: 10%;
	}
}
/*.fv-image img {
  height: 100%;
  width: auto;
}*/
@media (max-width: 992px) {
  .fv-catch {
    max-width: 80rem;
    margin: 0 auto;
  }
  .fv-desc {
    max-width: 80rem;
  }
  .fv-image {
    position: relative;
    width: 100%;
    max-width: 70rem;
    margin: 3rem auto;
  }
  .fv-image img {
    height: auto;
    width: 100%;
  }
  .fv-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    /*flex-direction: column;*/
  }
  .common-button {
    max-width: 34rem;
    width: 100%;
    justify-content: space-between;
  }
  .common-button > span {
    flex-grow: 1;
    text-align: center;
  }
  .common-button > img {
    flex-grow: 0;
  }
}
@media (max-width: 768px) {
  .fv-buttons {
    flex-direction: column;
  }
  .common-button {
    max-width: 50rem;
    font-size: 1.8rem;
  }
  .fv-content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* concept */
#concept {
  padding: 10.4rem 0 6.7rem;
}
.concept-text {
  text-align: center;
  color: var(--gray);
  font-size: 1.8rem;
}
.concept-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7.2rem 0 6.5rem;
}
.concept-item {
  width:29%;
  text-align: center;
  border-radius: 3rem;
  border: 2px solid var(--main);
  padding-bottom: 1.4rem;
}
.concept-image {
  width: 70%;
  margin: -4rem auto 1rem;
  background-color: var(--white);
}
.concept-text {
  font-size: var(--small-font);
  color: var(--black);
}
.concept-conculution {
  color: var(--black);
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.concept-arrow {
  max-width: 30.7rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .concept-wrapper {
    flex-direction: column;
  }
  .concept-item {
    width: 80%;
    max-width: 40rem;
    margin: 0 auto 4rem;
  }
}

/* about */
#about {
  padding-bottom: 5.4rem;
}
.about-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 7.2rem;
}
.about-left {
  width: 50%;
}
.about-right {
  width: 50%;
}
.about-underline {
  color: var(--black);
  font-weight: bold;
  font-size: 2.3rem;
}
.about-underline span {
  background-color: var(--pale-blue);
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 0 0.5rem;
}
.about-text {
  margin: 3rem 0 3rem 3.5rem;
  font-size: 1.6rem;
  color: var(--black);
}
.about-list {
  border: 1px solid var(--main);
  padding: 3.3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 2rem 0;
  margin-left: 3.5rem;
}
.about-list li {
  width: 30%;
}
.about-list li:before {
  content: url(../images/1010/check.svg);
  transform: scale(2rem);
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }
  .about-left {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto 3rem;
  }
  .about-right {
    width: 100%;
    text-align: center;
  }
  .about-list {
    max-width: 60rem;
    margin: 0 auto;
  }
  .about-text {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .about-list {
    padding: 2rem;
  }
  .about-underline {
    text-align: left;
  }
  .about-underline br {
    display: none;
  }
  .about-underline span {
    margin-bottom: 0;
    display: inline;
  }
  .about-text {
    text-align: left;
  }
  .about-list li {
    width: 50%;
  }
}


/* solution */
#solution {
  padding: 8.4rem 0 10.5rem;
  background-color: var(--light-blue);
}
.solution-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5.2rem;
    gap: 5rem 0;
}
.solution-item {
	overflow: hidden;
    width: 30%;
    border-radius: 30px;
    border: 2px solid var(--main);
    text-align: center;
    /* padding: 1.2rem 2rem 2rem; */
    background-color: var(--white);
}
.solution-header {
	background-color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 900;
    height: 7.1rem;
}
.solution-bottom {
	border-radius: 0px 0px 30px 30px;
    /* border: 2px solid var(--main); */
    text-align: center;
    padding: 1.2rem 2rem 2rem;
    background-color: var(--white);
}
.solution-icon {
  width: 30%;
  margin: 0 auto 2rem;
}
.solution-desc {
  text-align: center;
  font-size: var(--small-font);
  color: var(--black);
  line-height: 1.4;
}
@media (max-width: 992px) {
  .solution-item {
    width: 47%;
  }
  .solution-desc {
    font-size: 1.4rem;
  }
  .solution-header {
    padding: 0.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .solution-item {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto 2rem;
  }
}

/* result */
#result {
  text-align: center;
  background-color: var(--light-gray);
  padding: 8.7rem 0 6rem;
}
.result-underline {
  margin: 5.1rem 0 1.9rem;
  color: var(--black);
  font-weight: bold;
  font-size: 2.3rem;
  background-color: var(--pale-blue);
  display: inline-block;
  padding: 0 0.5rem;
}
.result-desc {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 2;
  margin-bottom: 3.3rem;
}
.result-image {
  width: 100%;
  border-radius: 3rem;
  background-color: var(--white);
  margin-bottom: 5rem;
  padding: 3rem 10%;
}
.result-image img {
  width: 100%;
  display: inline-block;
}
@media (max-width:992px) {
  .result-underline {
    text-align: left;
  }
  .result-desc {
    text-align: left;
  }
  .result-image {
    padding: 2rem 0;
  }
}

/* feature */
#feature {
  padding: 7.8rem 0 11rem;
  background-color: var(--light-blue);
}
.feature-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7rem 0;
  margin-top: 8.6rem;
}
.feature-item {
  width: 30%;
}
.feature-image {
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.feature-image img{
   transition: all 0.3s ease;
}
.feature-index {
  font-size: 2rem;
  color: var(--black);
  margin:1.5rem auto 1rem;
  text-align: center;
}
.feature-text {
  color: var(--black);
  font-size: var(--small-font);
  line-height: 140%;
  border: 1px solid var(--main);
  padding: 2rem 1.8rem;
  background-color: var(--white);
}
@media (max-width: 992px) {
  .feature-item {
    width: 47%;
  }
}
@media (max-width: 768px) {
  .feature-item {
    width: 100%;
    margin: 0 auto 3rem;
    max-width: 60rem;
  }
}

/* cta1 */
.cta-section,
#cta1 {
  background-color: var(--main);
  position: relative;
}
.cta1-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.cta1-left {
  width: 60%;
  padding: 3rem 0 4.2rem;
}
.cta1-right {
  width: 40%;
}
.cta1-title {
  font-size: 4.2rem;
  color:var(--white);
  font-weight: bold;
  margin-bottom: 2.3rem;
}
.cta1-desc {
  color:var(--white);
  font-size: 1.6rem;
  line-height: 160%; /* 25.6px */
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .cta1-wrapper {
    flex-direction: column;
  }
  .cta1-left {
    width: 100%;
    text-align: center;
  }
  .cta1-right {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
  }
}

/* reason */
#reason {
  padding: 9.4rem 0 0.2rem;
}
.reason-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5rem;
  border: 2px solid var(--main);
  margin-bottom: 7.1rem;
}
.reason-item:first-of-type{
  margin-top: 8.3rem;
}
.reason-point {
  color: var(--white);
  background-color: var(--main);
  font-size: 2rem;
  font-weight: bold;
  padding: 0.3rem 5rem;
  position: absolute;
  top: -2.5rem;
  left: 6rem;
}
.reason-left {
  width: 70%;
  padding: 4.5rem 2rem 4.5rem 5.7rem;
}
.reason-index {
  font-size: 2.3rem;
  font-weight: 700;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--main);
}
.reason-desc {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 200%; /* 32px */
}
.reason-right {
  width: 30%;
}
@media (max-width: 768px) {
  .reason-item {
    flex-direction: column;
  }
  .reason-left {
    width: 100%;
    box-sizing: border-box;
    padding: 4rem 2rem 2rem;
  }
  .reason-right {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
  }
  .reason-index {
    text-align: center;
  }
}

/* pric{e */
#price {
  padding-bottom: 11.8rem;
}
#price .common-title {
  margin-bottom: 4.2rem;
}
.price-item {
  padding: 4rem 4.2rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: 2px solid var(--main);
  border-radius: 5rem;
  margin-bottom: 2.8rem;
}
.price-col {
  width: 23%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-index {
  font-weight: bold;
  color: var(--black);
  background-color: #EAEAEA;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 1.8rem;
}
.price-person {
  color: var(--black);
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}
.price-person .small {
  font-size: 2.2rem;
}
.price-person .month {
  font-size: 2.2rem;
  color: var(--main);
}
.price-estimate {
  font-size: 2.4rem;
  flex-grow: 1;
  line-height: 2.2;
}
.price-icon {
  text-align: center;
  margin-bottom: 1.7rem;
}
.price-icon img {
  width: 5rem;
}
.price-col2 {
  width: 30%;
}
.price-sub {
  font-size: 2.2rem;
  color: var(--main);
  font-weight: bold;
  text-align: center;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .price-item {
    flex-direction: column;
    padding: 4rem 2rem 0;
  }
  .price-col,
  .price-col2 {
    width: 100%;
    margin-bottom: 3.8rem;
  }
}

/* cta2 */
#cta2 {
  background-color: var(--main);
}
.cta2-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 18%;
  height: 100%;
}
.cta2-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta2-index {
  text-align: center;
  color: var(--white);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 140%;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--white);
}
.cta2-outer {
  width: 65%;
  margin: 0 auto;
  padding: 6rem 0;
}
.cta2-wrapper {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.cta2-wrapper .common-button {
  min-width: 28rem;
}
@media (max-width: 768px) {
  .cta2-image {
    position: relative;
    width: 100%;
    max-width: 20rem;
    margin: 0 auto 2rem;
  }
  .cta2-outer {
    width: 100%;
    padding-top: 0;
  }
  .cta2-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}

#resources_service {
  padding: 9.4rem 0 11rem;
}
.download-wrapper {
  margin-top: 6.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.download-item {
  width: 30%;
  margin-bottom: 6.5rem;
  background-color: var(--white);
}
.download-item img {
  transition: all 0.3s ease;
}
.download-item:hover img,
.download-item:active img{
  opacity: 0.7;
}
@media (max-width: 992px) {
  .download-item {
    width: 47%;
  }
}
@media (max-width: 768px) {
  .download-item {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto 3rem;
  }
}

/* seminer */
#seminer {
  padding-bottom: 9.2rem;
}
.seminer-wrapper {
  margin-top: 6rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.seminer-wrapper:after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}
.seminer-item {
  width: 30%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  flex-direction: column;
  /* margin-bottom: 5rem; */
  padding: 0 2rem;
}
.seminer-image {
  position: relative;
}
.seminer-overlay {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.function-number-right,
.function-box-image,
.feature-image {
  position:relative;
}
.function-number-right:hover .seminer-overlay,
.function-box-image:hover .seminer-overlay,
.feature-image:hover .seminer-overlay,
.seminer-image:hover .seminer-overlay {
  opacity: 1;
  visibility: visible;
}
.seminer-button {
  display: block;
  padding: 0.5rem 1rem;
  width: 60%;
  border-radius: 1rem;
  background-color: var(--main);
  color: var(--white);
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--main);
  font-size: 1.4rem;
}
.seminer-detail {
  background-color: var(--white);
  color: var(--main);
}
.seminer-detail:hover,
.seminer-detail:active{
  opacity: 0.8;
}
.seminer-apply:hover,
.seminer-apply:active {
  opacity: 0.8;
}
.seminer-index {
  font-weight: 700;
  font-size: 2rem;
  margin: 1rem 0;
}
.seminer-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .seminer-wrapper {
    flex-wrap: wrap;
  }
  .seminer-item {
    width: 47%;
    margin-bottom: 6.5rem;
  }
  .seminer-wrapper:after {
    content: "";
    display: block;
    width: 47%;
    height: 0;
  }
}
@media (max-width: 768px) {
  .seminer-item {
    width: 100%;
    margin-bottom: 3rem;
    max-width: 50rem;
    margin: 0 auto 3rem;
  }
  .seminer-wrapper:after {
    display: none;
  }
}

/* cta3 */
#cta3 {
  background-color: var(--main);
}
.cta3-outer {
  padding: 3.8rem 0 4.3rem;
}
.cta3-index {
  text-align: center;
  font-weight: bold;
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 2.8rem;
}
.cta3-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
#cta3 .common-button {
  min-width: 28rem;
}
.cta3-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  height: 100%;
}
.cta3-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px){
  .cta3-image {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 40rem;
  }
  .cta3-outer {
    padding-bottom: 0;
  }
}

/* faq */
#faq {
  padding: 7.8rem 0 9.6rem;
}
.faq-item:first-of-type {
  margin-top: 5.9rem;
}
.faq-item {
  position: relative;
  padding: 0 2rem 3.1rem 6rem;
  border-bottom: 1px solid var(--main);
  margin-bottom: 2.1rem;
}
.faq-ques span {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem ;
  background-color: var(--main);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-ques {
  font-weight: bold;
  padding-top: 1rem;
  margin-bottom: 1.2rem;
}

#video {
  padding: 7.6rem 0;
  background-color: #F9F9F9;
}
.video-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-wrapper {
  max-width: 600px;
  margin: 6rem auto 0;
}
/*info */
#info {
  padding: 7.8rem 0 9.6rem;
  background-color: var(--light-blue);
}
.info-wrapper {
  width: 100%;
  background-color: var(--white);
  padding: 5.5rem 0;
  margin-top: 4rem;
}
.info-item {
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #EAEAEA;
  padding: 3.6rem;
  position: relative;
}
.info-item:after {
  /*content: url(../image/angle-right-solid.svg);*/
  transform: scale(1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3.6rem;
}
.info-item:first-of-type {
  border-top: 1px solid #EAEAEA;
}
.info-item time {
  width: 8rem;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 3rem;
}
.info-title {
  flex-grow: 1;
  flex-shrink: 1;
  font-weight: bold;
  transition: all 0.3s ease;
}
.info-wrapper a:hover .info-title,
.info-wrapper a:active .info-title{
  color: var(--main);
}
@media (max-width: 768px) {
  .info-item {
    padding: 2rem 4rem 2rem 0;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .info-item:after {
    right: 1.5rem;
  }
  .info-title {
    margin-top: 1rem;
  }
}

/* cta4 */
#cta4 {
  padding: 5.6rem 0;
  background-color: var(--main);
}
.cta4-index {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--white);
}
.cta4-text {
  text-align: center;
  margin-top: 1rem;
  color: var(--white);
  margin-bottom: 3.5rem;
}
.cta4-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:3rem;
}
@media (max-width: 768px) {
  .cta4-buttons {
    flex-direction: column;
  }
}

/* achievement */
#casestudy {
  padding: 6.2rem 0 11rem;
}
.achievement-desc {
  margin: 3.7rem 0 5.5rem;
  text-align: center;
}
.achievement-item {
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.achievement-index {
  margin: 0.6rem 0 0.6rem;
  transition: all 0.3s ease;
}
.achievement-text {
  font-size: var(--small-font);
  line-height: 1.8;
  color: var(--black);
}
.achievement-list {
  display: flex;
  gap:  0.8rem 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  list-style-type: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.achievement-list li {
  background-color: var(--pale-blue);
  color: var(--dark);
  padding: 0.5rem 2rem;
  text-align: left;
  border-radius: 1rem;
  font-size: 1.4rem;
}
.achievement-image {
  width: 100%;
  transition: all 0.3s ease;
}
.achievement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-linkarea {
  transition: all 0.3s ease;
}
.case-linkarea:hover .achievement-image,
.case-linkarea:active .achievement-image{
  opacity: 0.7;
}
.case-linkarea:hover .achievement-index,
.case-linkarea:active .achievement-index{
  color: var(--dark);
}
#latest .slick-track,
#casestudy .slick-track {
  display: flex;
  align-items: stretch;
}
#latest .slick-slide,
#casestudy .slick-slide {
  height: auto !important;
  display: flex !important;
}
#latest .slick-arrow,
#casestudy .slick-arrow {
  position: absolute;
  right: 0;
  top: -6rem;
  left: auto;
  width: 3.6rem;
  z-index: 3;
  transition: all 0.3s ease;
}
#latest .slick-arrow:hover,
#latest .slick-arrow:active,
#casestudy .slick-arrow:hover,
#casestudy .slick-arrow:active{
  opacity: 0.8;
}
#latest .slick-prev,
#casestudy .slick-prev {
  right: 5rem;
}
@media (max-width: 768px) {
  .achievement-desc {
    text-align: left;
  }
  .achievement-item {
    padding: 0;
  }
  .achievement-header {
    font-size: 2rem;
  }
}

/* support */
#support {
  background-color: #F6F6F6;
  padding: 8.1rem 0 9.8rem;
}
.support-desc {
  margin: 3.7rem 0 2.7rem;
  text-align: center;
}
.support-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.support-left {
  width: 47%;
}
.support-right {
  width: 50%;
}
.support-outer {
  background-color: var(--white);
  padding: 4.5rem 2rem 4.5rem 4rem;
  text-align: center;
  border-radius: 10rem;
}
.support-list {
  text-align: left;
  display: inline-block;
}
.support-list li {
  margin-bottom: 1rem;
}
.support-list li:last-child {
  margin-bottom: 0;
}
.support-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.support-arrow {
  width: 23%;
  margin-top: 7rem;
}
.support-image {
  width: 56%;
}
.support-add {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--small-font);
}
.support-add img {
  width: 1.5rem;
  margin: 0 1rem;
}
.support-index {
  font-weight: 700;
  text-align: center;
  font-size: 2.3rem;
  padding: 0.6rem 2rem;
  background-color: var(--main);
  color: var(--white);
  width: 80%;
  margin: 0 auto;
}
.support-index span {
  text-align: left;
  display: inline-block;
}
.support-header {
  margin: 0 auto -4.3rem;
  position: relative;
}
.support-content {
  border-radius: 5rem;
  border: 2px solid var(--main);
  background: #FFF;
  padding: 5.6rem 5rem 2rem;
}
.support-main {
  font-size: var(--small-font);
}
.support-service {
  background-color: var(--pale-blue);
  color: var(--black);
  padding: 1rem 2rem 1rem 5rem ;
  line-height: 2;
  margin: 1.2rem 0;
}
.support-sub {
  font-size: var(--small-font);
}
@media (max-width:992px) {
  .support-wrapper {
    flex-direction: column;
  }
  .support-left {
    width: 100%;
  }
  .support-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .support-desc {
    text-align: left;
  }
  .support-content {
    text-align: center;
    padding: 5rem 2rem 3rem;
  }
  .support-service {
    display: inline-block;
    text-align: left;
  }
  .support-service li {
    text-align: left;
  }
  .support-sub {
    font-size: 1.4rem;
    text-align: left;
  }
  .support-outer {
    border-radius: 3rem;
    padding: 2rem;
    padding-left: 5rem;
  }
  .support-index {
    width: 90%;
  }
  .support-images {
    flex-direction: column;
  }
  .support-image {
    width: 100%;
    max-width: 50rem;
    max-width: 0 auto 3rem;
  }
  .support-arrow1 {
    display: none;
  }
  .support-arrow2 {
    width: 100%;
    margin-top: -3rem;
    max-width: 12rem;
    margin-bottom: 2rem;
  }
  .support-arrow2 img {
    transform: rotate(90deg);
  }
}

#footer {
  padding: 3rem 0;
}
.footer-nav {
  text-align: right;
  margin-bottom: 8rem;
}
.footer-nav li {
  display: inline-block;
  margin-left: 3rem;
  margin-bottom: 2rem;
}
.footer-nav li a {
  color: var(--black);
}
.copy {
  text-align: center;
  color: var(--gray);
}

/* detail */
.detail-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3.8rem;
  border-bottom: 1px solid var(--main);
  margin-bottom: 3rem;
}
.detail-header-left {
  width: 55%;
}
.detail-header-right {
  width: 40%;
}
.detail-client {
  color:var(--black);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.detail-title {
  color:var(--black);
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 2.4rem;
  margin-bottom: 3rem;
}
.detail-profile {
  background-color: #F5F5F5;
  padding: 2.2rem 4.2rem;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 4.2rem;
}
.detail-content h2 {
  color:var(--main);
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--main);
  margin-bottom: 3.7rem;
  margin-top: 3rem;
  text-align: left;
}
.detail-content h3 {
  color:var(--black);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.7rem;
}
.detail-content h3:before {
  content: "";
  width: 4.2rem;
  height: 3px;
  border-radius: 5px;
  display: inline-block;
  background-color: var(--main);
  vertical-align: middle;
}
.detail-content h4 {
  color: var(--white);
  font-weight: 700;
  background: var(--main);
  box-shadow: 5px 5px 0px 0px rgba(38, 173, 201, 0.25);
  display: inline-block;
  padding: 0.5rem 1.2rem 0.6rem;
  margin-bottom: 1.6rem;
}
.detail-content h5 {
  color: var(--black);
  border-left: 3px solid var(--main);
  font-size: 1.6rem;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.6rem;
}
.detail-content p {
  line-height: 2;
}
.detail-content figure {
  width: 70%;
  margin: 0 auto 4rem;
}
.detail-content ul {
  padding-left: 3rem;
}
.detail-content img {
  width: 100% !important;
  height: auto !important;
}
.detail-content figcaption {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--gray);
  text-align: left;
}
.detail-content {
  margin-bottom: 8rem;
}
.detail-content p img {
  display: inline-block;
  vertical-align: middle;
  height: 18px !important;
  width: auto !important;
  margin-right: 15px;
}
#detail-banner {
  padding: 4rem 0;
} 
.detail-banner {
  max-width: 80rem;
  margin: 0 auto;
}
.detail-banner a{
  transition: all 0.3s ease;
}
.detail-banner a:hover{
  opacity: 0.7;
}
@media (max-width: 768px) {
  .detail-header-wrapper {
    flex-direction: column;
    margin-bottom: 0;
    border-bottom: none;
  }
  .detail-header-left {
    width: 100%;
    margin-bottom: 3rem;
  }
  .detail-header-right {
    width: 100%;
  }
  .detail-profile {
    padding: 2rem;
  }
  .detail-content figure {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}

/* hamburger */
#hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: all 0.3s ease;
  z-index: 10;
  transform: translateY(-100%);
  background-color: var(--white);
  padding: 6rem 0 5rem;
  overflow-y: auto;
}
#hamburger.active {
  transform: translateY(0);
}
#hamburger .container {
  box-sizing: border-box;
}
.hamburger-list,
.hamburger-apps {
  width: 100%;
  list-style-type: none;
}
.hamburger-list {
  padding-bottom: 4rem;
}
.hamburger-list a {
  display: block;
  padding: 2rem 1rem;
  text-align: left;
  color: var(--dark);
  font-weight: bold;
  transition: all 0.3s ease;
}
.hamburger-list li {
  border-bottom: 1px solid var(--main);
}
.hamburger-list a:hover,
.hamburger-list a:active {
  background-color: var(--light-blue);
} 
.hamburger-apps {
  text-align: center;
  display: block;
}
.hamburger-apps li.hamburger-login {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}
.hamburger-apps li.hamburger-login a {
  font-weight: bold;
  color: var(--black);
  transition: all 0.3s ease;
  font-size: 1.8rem;
}
.hamburger-apps li.hamburger-login a:hover,
.hamburger-apps li.hamburger-login a:active{
  color: var(--main);
}
.hamburger-apps li.header-button {
  display: inline-block;
}
@media (min-width: 600px) {
  #hamburger {
    height: 100vh;
  }
}

.footer-banner {
  position: fixed;
  max-width: 300px;
  width: 30%;
  right: 0;
  bottom: 0;
  transition: 1s;
  z-index: 999;
  opacity:0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.footer-banner.show {
  opacity:1;
  visibility: visible;
}
.footer-banner a {
  display: block;
}
.footer-banner .close-button {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer-banner .close-button::before,
.footer-banner .close-button::after {
  content: "";
  position: absolute;
  display: block;
  width: 3px;
  height: 30px;
  background: #333;
  top: 50%;
  left: 50%;
}
 
.footer-banner .close-button::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.footer-banner .close-button::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.footer-banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer-button-outer {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
}
#footer nav a {
  transition: all 0.3s ease;
}
#footer nav a:hover,
#footer nav a:active {
  color: var(--main);
}
@media (max-width: 768px) {
  .footer-banner {
    display: none;
  }
}

/* functionページ */
.function-header {
  background-color: var(--main);
  margin-bottom: 8rem;
  min-height: 5rem;
}
.function-header-wrapper {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.function-header-content {
  width: 60%;
}
.function-header-image {
  width: 40%;
}
.function-header-title {
  font-size: 4rem;
  margin-bottom: 4rem;
}
.function-header-sub {
  font-size: 1.8rem;
}
.function-basic-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 4rem auto 8rem;
  flex-wrap: wrap;
}
.function-item {
  width: 47%;
  margin-bottom: 4rem;
  border: 2px solid var(--main);
  border-radius: 30px;
  overflow: hidden;
}
.function-item-header {
  font-size: 2rem;
  border: none;
  border-radius: 0;
}
.function-item-desc {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 2rem;
}
.function-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 4rem 3rem 2rem;
  border: none;
}
.function-item-icon {
  width: 30%;
  height: 12rem;
}
.function-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.function-item-content {
  width: 60%;
  text-align: right;
}
.function-box {
  background-color: var(--pale-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem 3rem 4rem;
  margin: 4rem auto;
}
.function-box-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.function-box-desc {
  font-size: 1.8rem;
}
.function-box-content {
  width: 55%;
}
.function-box-image {
  width: 40%;
}
.function-box-num {
  font-size: 5rem;
  margin-right: 2rem;
}
.function-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem 3rem;
  border-radius: 3rem;
  border: 2px solid var(--main);
  margin: 8rem auto;
  flex-direction: row-reverse;
}
.function-number:nth-child(2n) {
  flex-direction: row;
}
.function-number-noimage .function-number-left  {
  padding-top: 5rem;
}
.function-number-num {
  position: absolute;
  font-size: 6rem;
  font-weight: 700;
  background-color: #fff;
  left: 4rem;
  color: var(--main);
  top: -5.5rem;
  padding: 0 1rem;
}
.function-number-left {
  width: 56%;
  padding-top: 2rem;
}
.function-number-right {
  width: 40%;
  padding-top: 2rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray);
}
.function-box-image a,
.function-number-right a {
  cursor: pointer;
}
.function-box-image img,
.function-number-right img {
  transition: all 0.3s ease;
}
.function-box-image a:hover img,
.function-number-right a:hover img {
  transform: scale(1.1);
}
.function-number-index {
  font-size: 2.3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--main);
  margin-bottom: 2.5rem;
}
.function-number-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  max-width: 100rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  border-radius: 3rem;
}
.function-number-modal.show {
  opacity: 1;
  visibility: visible;
}
.function-number-modal-content {
  position: relative;
  padding: 5%;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity:0;
  visibility: hidden;
  background-color: rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  z-index: 7;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}
.function-number-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  border: 2px solid var(--main);
  border-radius: 50%;
}
.function-number-modal-close::before,
.function-number-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 2px;
  background-color: var(--main);
  transform: translate(-50%,-50%) rotate(45deg);
}
.function-number-modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .function-header-wrapper {
    flex-direction: column;
  }
  .function-header-content {
    width: 100%;
  }
  .function-header-image {
    width: 80%;
    margin-top: 3rem;
  }
  .function-basic-wrapper {
    flex-direction: column;
  }
  .function-item {
    width: 100%;
  }
  .function-item .common-button {
    max-width: 20rem;
  }
  .function-item-bottom {
    padding: 5%;
  }
  .function-item-icon {
    margin: 0;
  }
  .function-item-content {
    width: 70%;
  }
  .function-box,
  .function-number {
    flex-direction: column !important;
  }
  .function-box-content,
  .function-number-left {
    width: 100%;
  }
  .function-number-left {
    padding-top: 4rem;
  }
  .function-number-index {
    text-align: center;
  }
  .function-box-image,
  .function-number-right {
    width: 80%;
    margin-top: 3rem;
  }
  .function-number-num {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* function2 */
.function-header-title-letteronly {
  padding: 5rem 0;
  color: #fff;
  text-align: center;
}
.function-header-blue {
  background: #4472C4;
}
.function-header-image-small img {
  width: 60%;
  margin: 0 auto;
  display: block;
}
.function-section-margin {
  margin-top: 8rem;
}
.function-comming {
  margin-top: 1rem;
}

/* 20240119 add 2column contact */
  

.separate-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.separate-page .site-main {
  width: 50%;
  flex-shrink: 1;
}
.separate-page .separate-side {
  width: 40%;
  flex-shrink: 0;
  padding: 80px 40px 40px;
  /*background-color: #ececec;*/
  box-sizing: border-box;
}
.separate-side h3 {
	text-align: center;
  margin:20px auto 10px;
}
.form-add {
  color: #26ADC9;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.form-box {
  border: 2px solid #26ADC9;
  padding: 20px;
  margin-bottom: 20px;
  display: inline-block;
  padding-left: 3em;
}
.separate-side label {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}
.separate-side input[type="text"],
.separate-side input[type="email"],
.separate-side textarea,
.separate-side select {
  width: 100%;
}
.separate-page .container {
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}
.separate-page input[type="submit"] {
  background-color: #26ADC9;
  color: #fff;
	font-size: 18px;
    display: block;
    width: 232px;
  margin: 0 auto;
    padding: 12px 24px;
    border-radius: 4px;
    border-width: 1px;
    font-weight: 500;
  transition: all 0.3s ease;
}
.separate-page input[type="submit"]:focus,
.separate-page input[type="submit"]:hover {
	box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5);
}
.separate-padding {
  padding: 80px 0;
}
.separate-page .mwform-checkbox-field span {
  font-size: 12px;
}
.sepatare-index {
  font-size: 30px;
  margin-bottom: 60px;
}
.separate-page ul {
  padding-left: 2em;
}
.form-button-wrapper {
  margin-top: 40px;
}
#main input[type="submit"] {
  padding: 13px 40px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .separate-page {
    flex-direction: column;
  }
  .separate-page .site-main {
    width: 100%;
  }
  .separate-page .separate-side {
    width: 100%;
    padding-bottom: 60px;
    }
  .sepatare-index {
    font-size: 25px;
    margin-bottom: 30px;
  }

}
@media (max-width: 768px) {
  .separate-page .container {
    padding: 0 20px;
  }
  .separate-page .separate-side {
    padding: 0 20px 60px;
    }
  .separate-page .form-box li {
    font-size: 14px;
  }
  .separate-page .mb-10 {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  h4.has-large-font-size {
    font-size: 28px !important;
  }
}
@media screen and (min-width: 769px) {
  body.page-template-template-contact {
      min-width: 0 !important;
  }
}

/* utility */
.max-width300 {
  max-width: 500px;
  margin: 0 auto;
}
.mb-10 {
  margin-bottom: 24px !important;
}
.mt-60 {
  margin-top: 60px;
}
.relative {
  position: relative;
}
.main {
  color: var(--main);
}
.br-sp {
  display: none;
}
.br-pc {
  display: block;
}
@media (max-width: 992px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .br-sp768 {
    display: block;
  }
}

/* メディア掲載追加 */
#media {
    padding: 9.6rem 0;
}

#latest {
    padding-bottom: 9.2rem;
}
#latest .achievement-wrapper {
  margin-top: 6rem;
}
.fancybox-content:has(.fancybox-image){
  width: 80% !important;
  height: 80% !important;
  transform: translate(10%, 10%) !important;
}
.fancybox-image {
width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    max-width: 1000px !important;
    max-height: 1000px !important;
    object-position: center !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}
.page-template-template-interview .detail-content li,
.page-template-template-interview .detail-content p{
  font-size: 1.8rem;
}