@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@200&family=Noto+Sans+JP:wght@100;300;400;500&display=swap');

html {
	overflow-x: hidden;
}
body {
	overflow-x: hidden;
	position: relative;
}
section {
  max-width: 1280px;
  margin-bottom: 40px;
}
a:hover {
  opacity: 1.0;
}
/*共通
===================================*/
p {
  font-size: 1.6rem;
  line-height: 3.2rem;
}
h1 {
  color: #333;
  font-size: 2.4rem;
  position: relative;
  left: 100px;
  max-width: 1280px;
}
h1::after {
  content: "";
  display: block;
	width: 30vw;
	max-width: 400px;
	height: 2px;
	background: -webkit-linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
    -webkit-text-fill-color: transparent;
	position: relative;
	bottom: 0;
  margin-top: 16px;
}
.common-ttl {
  font-family: 'M PLUS 2';
  font-weight: 300;
  font-size: 2rem;
  color: #7FAF03;
  text-align: left;
  margin: 20px auto;
  line-height: 3.2rem;
  width: 100%;
}
.common-ttl-jpn {
  font-family: 'Noto Sans JP';
  font-weight: 500;
  font-size: 2.8rem;
  color: #333;
  display: block;
  margin-top: 8px;
}
.common-ttl-jpn::before {
  content: url(images/triangre.svg);
  margin-right: 8px;
}
.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:1.0s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Tablet Layout
===================================*/
@media all and (max-width: 900px) {
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .pcElement {
    display: none;
  }
  section {
    margin-bottom: 40px;
  }
  p {
    line-height: 2.8rem;
  }
  h1 {
    width: 90%;
    margin: 0 auto;
    font-size: 2.2rem;
    line-height: 2.6rem;
    position: static;
  }
  h1::after {
    width: 70vw;
  }
  .common-ttl {
    font-size: 1.8rem;
    width: 100%;
    line-height: 2.4rem;
    letter-spacing: .3rem;
    margin: 0 auto 20px;
  }
  .common-ttl-jpn {
    font-size: 2.4rem;
    letter-spacing: .3rem;
  }
}
/*PC Layout
===================================*/
@media all and (min-width: 769px) {
  .spElement {
    display: none;
  }
}


/* main
------------------------------------------------------ */
.srl-main-bg {
  color: #fff;
  background-size: cover;
  width: 100vw;
  position: relative;
  overflow: hidden;
  height: auto;
  margin: 0 calc(50% - 50vw);
  padding: 80px 0;
}
.main-lead {
  max-width: 1480px;
  text-align: left;
  margin: 0 auto;
}
.main-lead p {
  text-align: right;
  font-size: min(3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: .5rem;
  filter: drop-shadow(1px 2px 5px rgb(256, 256, 256, 0.6));
}
.main-lead img {
  position: static;
  width: 50%;
  margin-top: 20px;
  height: auto;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .srl-main-bg {
    padding: 60px 0;
  }
  .main-lead {
    top: 28%;
    right: 4%;
  }
  .main-lead p {
    font-size: min (4vw, 1.8rem);
    line-height: 2.4rem;
  }
  .main-lead img {
    margin: 12px auto;
    width: 98%;
  }
}


/* about
------------------------------------------------------ */
.about {
  margin: 80px auto;
  position: relative;
}
.about section {
  margin-bottom: 80px;
}
.about img {
  position: absolute;
  width: 48%;
  top: -72px;
  right: 0;
  z-index: -1;
}
.about-contents {
  width: 100%;
  margin: 0 auto;
}
.about-txt {
  margin: 40px auto;
  font-size: 1.8rem;
}
.about-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.about-flex-left {
  width: 30%;
}
.about .about-flex-left img {
  position: static;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}
.about-flex-right {
  width: 64%;
}
.about-point {
  margin-bottom: 24px;
  display: flex;
}
.about-point::before {
  content: "";
  background: url(images/check-icon.svg) no-repeat;
  display: block;
  width: 90px;
  height: 40px;
  margin-right: 8px;
  background-size: contain;
}
.about-point-ttl {
  color: #7FAF03;
  font-size: 2.2rem;
  font-weight: 600;
}
.about-recommend {
  background-color: #eef9d2;
  padding: 20px 40px;
  border-radius: 10px;
  border: 3px, solid, #7FAF03;
}
.about-recommend p {
  color: #7FAF03;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-recommend ul li {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.about-recommend ul li::before {
  content: "■";
  color: #7FAF03;
  margin-right: 4px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .about {
    margin: 20px auto;
  }
  .about section {
    margin-bottom: 40px;
  }
  .about-contents {
    width: 100%;
  }
  .about img {
    width: 100%;
    top: 48px;
  }
  .about-txt {
    margin: 20px auto;
  }
  .about-flex {
    display: block;
    margin-bottom: 20px;
  }
  .about-flex-left {
    width: 100%;
  }
  .about .about-flex-left img {
    height: 180px;
    object-fit: cover;
  }
  .about-flex-right {
    width: 100%;
  }
  .about-point::before {
    width: 120px;
    height: 40px;
    background-size: contain;
  }
  .about-point-ttl {
    font-size: 2rem;
  }
  .about-recommend {
    padding: 20px;
  }
  .about-recommend p {
    font-size: 1.8rem;
  }
  .about-recommend ul li {
    align-items: flex-start;
    margin-bottom: 8px;
  }
}


/* functions
------------------------------------------------------ */
.functions-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #f5f5f5;
}
.functions {
  width: 80%;
  padding: 40px 0;
}
.functions table {
  width: 100%;
  margin: 0 auto;
}
.functions table tr {
  border: 1px, solid, #E5E5E5;
}
.functions table th {
  background-color: #eef9d2;
  padding: 12px 20px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}
.functions table td {
  background-color: #fff;
  padding: 12px 20px;
  font-size: 1.4rem;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .functions {
    padding: 20px 0 40px;
    margin-bottom: 0;
    width: 90%;
  }
  .functions table {
    width: 100%;
  }
  .functions table th,.functions table td {
    display: block;
  }
}


/* Use image
------------------------------------------------------ */
.use-image {
  padding: 40px 0;
  width: 90%;
}
.use-image .common-ttl {
  width: 100%;
}
.use-image-intro {
  font-size: 1.8rem;
  margin: 40px auto;
}
.use-image-flex {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #7FAF03;
  padding: 40px 0;
  align-items: center;
}
.use-image-flex-reverse {
  flex-direction: row-reverse;
}
.use-image-flex .use-image-txt {
  width: 56%;
}
.use-image-flex img {
  width: 38%;
}
.use-image-subttl {
  font-size: 2.2rem;
  font-weight: 600;
  color: #7FAF03;
  margin-bottom: 8px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .use-image {
    width: 100%;
    padding: 40px 0 1px;
  }
  .use-image-intro {
    font-size: 1.6rem;
    margin: 0 auto 40px;
  }
  .use-image-flex {
    display: block;
    padding: 20px 0;
  }
  .use-image-flex .use-image-txt {
    width: 100%;
  }
  .use-image-subttl {
    font-size: 2rem;
  }
  .use-image-flex img {
    width: 100%;
    margin-top: 20px;
  }
}


/* Plans & Prices
------------------------------------------------------ */
.price-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #eef9d2;
}
.price {
  padding: 20px 0 40px;
  width: 80%;
}
.price .common-ttl {
  width: 100%;
}
.price-content {
  background-color: #fff;
  border: 4px solid #7FAF03;
  border-radius: 5px;
  padding: 40px;
  width: auto;
  margin: 40px auto 20px;
}
.price-content ul li {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: flex;
}
.price-content ul li p {
  font-size: 1.8rem;
}
.price-content ul li p span {
  font-size: 2rem;
  font-weight: 600;
  color: #7FAF03;
}
.price-content ul li::before {
  content: "■";
  color: #7FAF03;
  margin: 4px 6px 1px 2px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .price {
    width: 90%;
  }
  .price-content {
    margin: 20px auto;
    padding: 32px 20px;
  }
  .price-content ul li,.price-content ul li p {
    font-size: 1.6rem;
  }
  .price-content ul li p span {
    font-size: 1.8rem;
  }
  .price-content ul li::before {
    margin-top: 2px;
  }
}


/* Differences
------------------------------------------------------ */
.differences-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #f5f5f5;
}
.differences {
  width: 80%;
  padding: 40px 0;
  text-align: center;
}
.differences h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #11540B;
  display: inline-block;
  margin-bottom: 40px;
}
.differences h2::before {
  content: "";
  display: block;
  height: 2px;
  width: 200px;
  background-color: #7FAF03;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 20px;
}
.differences h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 200px;
  background-color: #7FAF03;
  position: relative;
  bottom: 0;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-top: 20px;
}
.differences-intro {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.differences-flex {
  margin-bottom: 40px;
}
.differences-flex-left {
  color: #fff;
  background-color: #333;
  border-radius: 10px;
  text-align: left;
  padding: 24px;
  width: 50%;
}
.differences-flex-left p {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.differences-flex-left p::before {
  content: "";
  background: url(images/bad-icon.svg) no-repeat;
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.differences-flex-left ul li {
  font-size: 1.5rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
}
.differences-flex-left ul li::before {
  content: "・";
  color: #fff;
  margin-right: 8px;
}
.differences-flex-right {
  background-color: #fff;
  border: 2px solid #7FAF03;
  border-radius: 10px;
  padding: 32px 40px;
  width: 70%;
  position: relative;
  top: -20px;
  right: 0;
  left: 0;
  margin-left: auto;
  box-shadow: 0px 4px 10px rgb(61, 65, 44, 0.25);
  display: flex;
  align-items: center;
}
.differences-flex-right::before {
  content: "";
  background: url(images/double_arrow_right-icon.svg) no-repeat;
  width: 39px;
  height: 34px;
  display: block;
  position: absolute;
  left: -60px;
  background-size: contain;
}
.differences-flex-right p {
  font-size: 1.8rem;
}
.differences-flex-right p span {
  font-size: 1.8rem;
  background: linear-gradient(transparent 70%, #DBF1A2 20%);
}
.differences-outro {
  font-size: 1.8rem;
  margin-top: -20px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .differences {
    width: 90%;
    margin-bottom: 20px;
  }
  .differences h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .differences h2::before {
    margin-bottom: 16px;
  }
  .differences h2::after {
    margin-top: 16px;
  }
  .differences-intro {
    font-size: 1.6rem;
  }
  .differences-flex {
    margin-bottom: 20px;
  }
  .differences-flex-left {
    width: 85%;
    padding: 20px;
  }
  .differences-flex-right {
    width: 85%;
    padding: 20px;
  }
  .differences-flex-right::before {
    width: 24px;
    height: 24px;
    left: -30px;
  }
  .differences-flex-right p {
    font-size: 1.6rem;
  }
  .differences-flex-right p span {
    font-size: 1.6rem;
  }
  .differences-outro {
    font-size: 1.6rem;
  }
}


/* FAQ
------------------------------------------------------ */
.faq {
  width: 90%;
}
.faq h2 {
  width: 100%;
  margin-bottom: 40px;
}
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
}
.qa-container {
  margin: 50px auto 0;
  width: 100%;
}
.qa-list:not(:first-child) {
  margin-top: 20px;
}
.question-title {
  background: #EEF9D2;
  cursor: pointer;
  font-size: 16px;
  padding: 20px 40px;
  position: relative;
}
.question-title:before {
  position: absolute;
  display: block;
  content: 'Q';
  top: 18px;
  left: 12px;
  color: #333;
  font-size: 18px;
  font-family: 'M PLUS 2', sans-serif;
}
.question-title:after {
  position: absolute;
  display: block;
  content: '';
  top: 35%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #7FAF03;
  border-right: 2px solid #7FAF03;
  transform: rotate(135deg);
  transition: all .3s ease-in-out;
}
.question-title.open:after {
  transform: rotate(-45deg);
  top: 45%;
}
.answer-text {
  display: none;
  padding: 8px 40px;
  position: relative;
}
.answer-text:before {
  position: absolute;
  display: block;
  content: 'A';
  top: 13px;
  left: 12px;
  color: #333;
  font-size: 18px;
  font-family: 'M PLUS 2', sans-serif;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .faq {
    width: 100%;
  }
  .faq h2 {
    margin-bottom: 20px;
  }
  .qa-container {
    margin-top: 20px;
  }
}


/* Operating Environment
------------------------------------------------------ */
.operating-bg {
  padding: 40px 0 1px;
}
.operating-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
}
.operating-container {
  width: 40%;
  background-color: #fff;
  border: 2px solid #7FAF03;
  padding: 20px 40px;
}
.operating-sub-ttl {
  color: #7FAF03;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.operating-01 .operating-sub-ttl::before {
  content: "";
  display: block;
  background: url(images/operating-01.svg) no-repeat;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.operating-02 .operating-sub-ttl::before {
  content: "";
  display: block;
  background: url(images/operating-02.svg) no-repeat;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.operating-container li {
  display: flex;
  margin-top: 12px;
}
.operating-container li,.operating-container li p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.operating-container li::before {
  content: "■";
  color: #7FAF03;
  font-size: 1.8rem;
  margin-right: 4px;
  margin-top: 2px;
}
.operating-container .annotation {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-top: 8px;
}

/*Tablet Layout
===================================*/
@media all and (max-width: 1100px) {
  .operating-flex {
    width: 100%;
    display: block;
  }
  .operating-container {
    width: auto;
    margin-top: 20px;
  }
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .operating-bg {
    padding: 20px 0 1px;
  }
  .operating {
    margin-bottom: 20px;
  }
  .operating-flex {
    width: 100%;
    display: block;
  }
  .operating-container {
    width: auto;
    padding: 20px;
    margin-top: 20px;
  }
  .operating-sub-ttl {
    font-size: 2rem;
  }
}


/* about V4
------------------------------------------------------ */
.aboutv4-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #f5f5f5;
  padding: 80px 0 1px;
}
.aboutv4 {
  width: 80%;
}
.aboutv4 h2 {
  font-size: 2.4rem;
  font-weight: 600;
}
.aboutv4 h2::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background-color: #7FAF03;
  margin: 16px auto 0;
}
.aboutv4 p {
  margin: 40px auto;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .aboutv4-bg {
    padding: 40px 0 1px;
  }
  .aboutv4 {
    width: 90%;
  }
  .aboutv4 h2 {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
  .aboutv4 h2::after {
    width: 50%;
  }
  .aboutv4 p {
    margin: 20px auto 40px;
  }
}


/* Onpremise
------------------------------------------------------ */
.onpremise-bg {
  width: 90%;
  margin: 0 auto;
}
.onpremise {
  background-color: #EEF9D2;
  border: 4px solid #7FAF03;
  border-radius: 10px;
  padding: 40px 80px;
  margin: 80px auto 120px;
  width: auto;
}
.onpremise-ttl {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  color: #7FAF03;
  margin-bottom: 20px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .onpremise-bg {
    width: 100%;
  }
  .onpremise {
    padding: 20px;
    margin: 40px auto 100px;
    width: auto;
  }
  .onpremise-ttl {
    font-size: 2rem;
  }
}


/* banner
------------------------------------------------------ */
.banner-bg {}
.banner {
  background: -webkit-linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
  color: #fff;
  border-radius: 20px;
  margin: 60px auto;
  padding: 40px 0;
  width: 90%;
}
.banner-ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.banner-txt {
  text-align: center;
  font-size: 2rem;
}
.banner-link {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 32px 20px 40px;
  margin: 20px auto 0;
  display: block;
  width: 360px;
}
.banner-link p {
  display: flex;
  align-items: center;
  min-width: 280px;
  position: relative;
  font-weight: 500;
}
.banner-link p::after {
  content: "";
  background-image: url(images/arrow-bk.svg);
  background-size: contain;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
} 

/*SP Layout
===================================*/
@media all and (max-width: 768px){
  .banner {
    padding: 40px 20px;
    width: auto;
    margin: 40px auto;
  }
  .banner-ttl {
    font-size: 2rem;
  }
  .banner-txt {
    font-size: 1.6rem;
  }
  .banner-flex {
    display: block;
  }
  .banner-link {
    padding: 20px 24px 20px 20px;
    margin: 20px auto 0;
    display: block;
  }
}


/* button
------------------------------------------------------ */
.more-link {
	position:relative;
    /*ボタンの形状*/
	display:block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
	width: 100%;
	text-align: center;
  margin: 16px auto;
  max-width: 400px;
}
.more-link p{
	font-size: 1.5rem;
	letter-spacing: .3rem;
	line-height: 2;
}

/*線の設定*/
.more-link::before,
.more-link::after {
	content:'';
  /*絶対配置で線の位置を決める*/   
	position:absolute;
	border:solid #fff;
	width:0;
	height:0;
  /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}
/*線の位置と形状*/
.more-link::before{
	top:3px;
	left:6px;
	border-width:1px 0 0 0;
}
/*線の位置と形状*/
.more-link::after{
	bottom:3px;
	right:6px;
	border-width:0 0 1px 0;
}

.more-link:hover::before,
.more-link:hover::after{
	width:calc(10% + 50px);
	height:calc(10% + 20px);
	border-color:#fff;
}

.more-link {
  background-color: #333;
  color: #fff;
  border: 0;
  padding: 10px 30px;
}
.more-link p {
  text-align: left;
  margin: 4px auto;
}
.more-link p:after {
  content: '';
  background: url(images/arrow.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
  position: absolute;
  right: 28px;
  top: 22px;
  display: inline-block;
}

.banner-link {
  background: #fff;
  color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 4px rgb(0,0,0,0.25);
}
.banner-link::after {
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.banner-link:hover {
  color: #fff;
}
.banner-link:hover::after {
  transform: scale(1, 1);
}
.banner-link:hover.banner-link p::after {
  transform: scale(1, 1);
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  background-image: url(images/arrow-wh.svg);
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .more-link {
    width: 80%;
    padding: 10px;
    min-width: 280px;
  }
  .banner-link {
    width: auto;
  }
}

.not-yet {
  position: relative;
  color: #707070;
  background-color: #f5f5f5;
  border: 2px solid #707070;
	display:block;
  width: 100%;
	padding: 14px 0;
	text-align: center;
  margin: 16px auto;
}
.not-yet p{
	font-size: 1.5rem;
	letter-spacing: .3rem;
	line-height: 2;
  text-align: center;
}