<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@200&amp;family=Noto+Sans+JP:wght@100;300;400;500&amp;display=swap');

html {
	overflow-x: hidden;
}
body {
	overflow-x: hidden;
	position: relative;
}
section {
  max-width: 1280px;
  margin-bottom: 64px;
}
a:hover {
  opacity: 1.0;
}

/*共通
===================================*/
p {
  font-size: 1.8rem;
  line-height: 3.2rem;
}
h1 {
  color: #333;
  font-size: 2.6rem;
  position: relative;
  left: 100px;
  max-width: 1280px;
  width: 80%;
}
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;
}
.zen-dots-regular {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.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;
  line-height: 1.5;
}
.common-ttl-jpn::before {
  content: url(images/triangre.svg);
  margin-right: 8px;
}
.banner-bg {
  width: 90%;
  margin: 0 auto;
}
.banner {
  background: -webkit-linear-gradient(-360deg, #9CC701 0%, #11540B 100%);
  color: #fff;
  border-radius: 20px;
  margin: 60px auto;
  padding: 40px;
  width: auto;
}
.banner-ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.banner-txt {
  text-align: center;
  font-size: 2rem;
}
.banner-flex {
  display: flex;
  justify-content: center;
}
.banner-link {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 32px 20px 40px;
  margin: 20px;
  display: block;
}
.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;
} 
.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: 940px) {
  .banner-flex {
    display: block;
  }
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .pcElement {
    display: none;
  }
  section {
    margin-bottom: 40px;
  }
  p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .common-ttl {
    font-size: 1.8rem;
    width: 100%;
    line-height: 2.4rem;
    letter-spacing: .3rem;
  }
  .common-ttl-jpn {
    font-size: 2.4rem;
    letter-spacing: .3rem;
  }
  h1 {
    position: static;
  }
  h1::after {
    width: 70vw;
  }
  .banner-bg {
    width: 100%;
  }
  .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;
  }
}
/*PC Layout
===================================*/
@media all and (min-width: 769px) {
  .spElement {
    display: none;
  }
}

/* main
------------------------------------------------------ */
.main-bg {
  color: #fff;
  background-size: cover;
  width: auto;
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
}
.main-bg::after{
  content: '';
  width: 400px;
  height: 2px;
  background-color: #D9D9D9;
  display: block;
  margin: 0 auto;
}
.main-lead {
	background-color: rgb(256, 256, 256, 0.8);
	width: 100%;
	padding: 80px 0;
  max-width: 1480px;
  margin: 0 auto;
  text-align: left;
}
.main-lead p {
	color: #333;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: .5rem;
  line-height: 4.4rem;
  margin-top: 16px;
  position: relative;
  left: 100px;
}
.main-lead img {
  position: static;
  width: 894px;
  margin: 24px 0;
  height: auto;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .main-bg::after{
    width: 200px;
  }
  .main-lead {
    width: 90%;
    padding: 60px 0;
    margin: 0 auto;
  }
  .main-lead h1 {
    margin: auto;
    font-size: 2.2rem;
    line-height: 2.6rem;
    width: 100%;
  }
  .main-lead p {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: .2rem;
    margin-left: 0;
    position: static;
  }
}


/* about
------------------------------------------------------ */
.about {
	margin: 40px auto;
}
.about::after{
  content: '';
  width: 400px;
  height: 2px;
  background-color: #D9D9D9;
  display: block;
  margin: 0 auto;
}
.about p {
	margin: 40px auto;
  width: 100%;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .about {
    margin: 24px auto;
  }
  .about::after{
    width: 200px;
  }
  .about p {
    margin: 24px auto;
    width: 100%;
  }
}


/* Use Case
------------------------------------------------------ */
.use-case-bg {
	background-color: #f5f5f5;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 1px 0;
}
.use-case-bg::after{
  content: '';
  width: 400px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
  margin: 0 auto;
}
.use-case {
	width: 80%;
  margin: 40px auto 80px;
}
.use-case-contents {
  width: 100%;
  margin: 40px auto;
}
.use-case-flex {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
}
.use-case-flex img {
  width: 38%;
  height: fit-content;
}
.use-case-flex .freepic {
  width: 38%;
}
.use-case-flex .freepic img {
  width: 100%;
}
.use-case-flex .freepic p {
  font-size: 12px;
  text-align: right;
  letter-spacing: .04em;
}
.use-case-flex .freepic a {
  font-size: 12px;
  letter-spacing: .04em;
  color: #4E6DF8;
  text-decoration: underline;
}
.use-case-right {
  width: 58%;
}
.use-case-content-ttl {
  color: #7FAF03;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.use-case-right li {
  display: flex;
  margin-bottom: 4px;
  font-size: 1.6rem;
}
.use-case-right li::before {
  content: "●";
  display: block;
  color: #7FAF03;
  margin-right: 8px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .use-case {
    width: 90%;
    margin: 20px auto 40px;
  }
  .use-case-bg::after{
    width: 200px;
  }
  .use-case-contents {
    margin: 0 auto;
  }
  .use-case-flex {
    display: block;
  }
  .use-case-flex img {
    width: 100%;
    margin-bottom: 8px;
    height: auto;
  }
  .use-case-flex .freepic {
    width: 100%;
  }
  .use-case-flex .freepic img {
    margin-bottom: 0;
  }
  .use-case-right {
    width: 100%;
  }
  .use-case-content-ttl {
    font-size: 1.8rem;
  }
}


/* Advantages
------------------------------------------------------ */
.advantages-bg {
  background-color: #f5f5f5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0;
}
.advantages {
  width: 80%;
}
.adv-subttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  width: 90%;
}
.adv-subttl::before {
  content: "";
  background: url(images/subttl-icon.svg) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.adv-flex {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.adv-content {
  width: 100%;
  background-color: #fff;
  border: 2px solid #7FAF03;
  border-radius: 10px;
  padding: 20px 40px;
  display: block;
}
.adv-content p {
  font-size: 1.6rem;
  display: flex;
}
.adv-content-01::before {
  content: "";
  background: url(images/adv-01.svg) no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  display: block;
  margin: auto;
  margin-right: 40px;
  flex-shrink: 0;
}

/*Tablet Layout
===================================*/
@media all and (max-width: 1215px) {
  .adv-subttl {
    text-align: left;
  }
  .adv-content {
    padding: 20px;
  }
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .advantages-bg {
    padding: 1px 0 20px;
  }
  .advantages {
    width: 90%;
    margin-bottom: 20px;
  }
  .adv-subttl {
    margin: 0 auto 20px;
    display: block;
    font-size: 1.6rem;
    text-align: center;
  }
  .adv-subttl::before {
    display: block;
    margin: 0 auto 4px;
  }
  .adv-flex {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .adv-content {
    width: auto;
    padding: 12px 20px;
    margin-bottom: 20px;
  }
  .adv-content p {
    display: block;
  }
  .adv-content-01::before ,.adv-content-02::before ,.adv-content-03::before ,.adv-content-04::before {
    margin: 0 auto 8px;
  }
}


/* Features
------------------------------------------------------ */
.features-bg {
  margin: 40px auto 80px;
}
.features-subttl {
  font-size: 2rem;
  font-weight: 500;
  margin: 40px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-subttl::before {
  content: "";
  background: url(images/subttl-icon.svg) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.feature-content {
  background-color: #EEF9D2;
  padding: 40px 80px;
  border-radius: 10px;
  width: auto;
  margin: 0 auto;
}
.feature-content li {
  margin-bottom: 20px;
  display: flex;
}
.feature-content li p {
  font-size: 1.8rem;
}
.feature-content li span {
  font-size: 2rem;
  font-weight: 600;
}
.feature-content li::before {
  content: "■";
  color: #7FAF03;
  margin-right: 12px;
  margin-top: 4px;
  font-size: 1.8rem;
}

.dividing-line {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

/*Tablet Layout
===================================*/
@media all and (max-width: 1215px) {
  .features-subttl {
    text-align: left;
    width: 90%;
  }
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .features-bg {
    margin: 20px auto;
  }
  .features-subttl {
    margin: 20px auto;
    font-size: 1.6rem;
    display: block;
    text-align: center;
  }
  .features-subttl::before {
    display: block;
    margin: 0 auto 4px;
  }
  .feature-content {
    width: auto;
    padding: 20px;
  }
  .feature-content li {
    margin-bottom: 8px;
  }
  .feature-content li p {
    font-size: 1.6rem;
  }
  .feature-content li span {
    font-size: 1.8rem;
  }
  .feature-content li::before {
    font-size: 1.6rem;
  }
}


/* Functions
------------------------------------------------------ */
.functions-bg {
  background-color: #f5f5f5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0;
}
.functions {
  width: 80%;
  margin: 0 auto;
}
.functions-flex {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
  width: 100%;
}
.functions-content {
  width: 44%;
  background-color: #fff;
  border: 2px solid #7FAF03;
  border-radius: 10px;
  padding: 20px;
  display: block;
}
.functions-content-ttl {
  font-size: 2.2rem;
  font-weight: 600;
  color: #7FAF03;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.function-content-ttl-01::before {
  content: "";
  background: url(images/function-01.svg) no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
  margin-right: 8px;
}
.function-content-ttl-02::before {
  content: "";
  background: url(images/function-02.svg) no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
  margin-right: 8px;
}
.functions-content li {
  font-size: 1.6rem;
  display: flex;
  margin-bottom: 8px;
  line-height: 2.8rem;
}
.functions-content li p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.functions-content li::before {
  content: "●";
  color: #7FAF03;
  margin-right: 8px;
  margin-top: 4px;
}
.functions-content li p span {
  font-size: 1.2rem;
  display: block;
}

/*Tablet Layout
===================================*/
@media all and (max-width: 1080px) {
  .functions-flex {
    display: block;
  }
  .functions-content {
    width: auto;
    margin-bottom: 20px;
  }
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .functions-bg {
    padding: 1px 0;
  }
  .functions {
    width: 90%;
  }
  .functions-flex {
    width: 100%;
    margin: 0 auto;
  }
  .functions-content-ttl {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}


/* Parameters
------------------------------------------------------ */
.parameters-bg {
  background-color: #f5f5f5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0;
}
.parameters {
  width: 80%;
}
.parameters-subttl {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 20px;
}
.parameters-subttl::before {
  content: "";
  background: url(images/parameter-icon.svg) no-repeat;
  background-size: contain;
  width: 52px;
  height: 52px;
  margin-right: 8px;
}
.parameters-list {
  width: 60%;
  margin: 0 auto;
  padding: 20px 40px;
  background-color: #fff;
  border: 2px solid #7FAF03;
  border-radius: 10px;
  display: block;
}
.parameters-list li {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: flex;
}
.parameters-list li::before {
  content: "●";
  color: #7FAF03;
  margin-right: 4px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .parameters-bg {
    padding: 1px 0;
  }
  .parameters {
    width: 90%;
  }
  .parameters-subttl {
    font-size: 1.6rem;
    margin: 0 auto 12px;
    display: block;
    text-align: center;
  }
  .parameters-subttl::before {
    display: block;
    margin: 0 auto 8px;
  }
  .parameters-list {
    width: auto;
    padding: 20px;
  }
  .parameters-list li::before {
    font-size: 12px;
    margin-top: 2px;
    margin-right: 8px;
  }
}


/* Customize
------------------------------------------------------ */
.customize-bg {
  background-color: #f5f5f5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0;
}
.customize {
  width: 80%;
}
.customize-content {
  width: 100%;
  margin: 40px auto;
}
.customize p {
  font-size: 1.6rem;
}
.customize-ex {
  background-color: #fff;
  border: 3px solid #7FAF03;
  border-radius: 10px;
  padding: 40px;
  margin: 20px auto 12px;
  display: block;
}
.customize .customize-ex-ttl {
  font-size: 2.2rem;
  font-weight: 500;
  color: #7FAF03;
}
.customize-01,.customize-02,.customize-03,.customize-04 {
  display: flex;
  align-items: center;
}
.customize-01,.customize-02,.customize-03 {
  margin-bottom: 20px;
}
.customize-01::before {
  content: "1";
  font-family: 'M PLUS 2';
  font-size: 2.6rem;
  color: #7FAF03;
  margin: 10px 40px 10px 20px;
}
.customize-02::before {
  content: "2";
  font-family: 'M PLUS 2';
  font-size: 2.6rem;
  color: #7FAF03;
  margin: 10px 40px 10px 20px;
}
.customize-03::before {
  content: "3";
  font-family: 'M PLUS 2';
  font-size: 2.6rem;
  color: #7FAF03;
  margin: 10px 40px 10px 20px;
}
.customize-04::before {
  content: "4";
  font-family: 'M PLUS 2';
  font-size: 2.6rem;
  color: #7FAF03;
  margin: 10px 40px 10px 20px;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .customize-bg {
    padding: 1px 0;
  }
  .customize {
    width: 90%;
  }
  .customize-content {
    width: 100%;
    margin: 0 auto;
  }
  .customize-ex {
    padding: 20px;
  }
  .customize .customize-ex-ttl {
    font-size: 1.8rem;
  }
  .customize-01::before,.customize-02::before,.customize-03::before,.customize-04::before {
    font-size: 2rem;
    margin: 3px 10px;
  }
  .customize-01, .customize-02, .customize-03 {
    margin-bottom: 12px;
  }
  .customize-01, .customize-02, .customize-03, .customize-04 {
    align-items: flex-start;
  }
}


/* Charge
------------------------------------------------------ */
.charge-bg {
  background-color: #fff;
  border: 1px solid #707070;
  text-align: center;
  margin: 80px auto;
  width: 90%;
}
.charge {
  width: 82%;
  margin: 56px auto 80px;
}
.charge span {
  font-size: 2.4rem;
  font-weight: 500;
  display: block;
  margin-bottom: 40px;
}
.charge span::before{
  content: url(images/charge-icon.svg);
  display: block;
  margin: 16px auto;
}
.charge p {
  text-align: center;
  /* margin-bottom: 24px; */
}
.charge-contents1, .charge-contents2, .annotation {
  margin-bottom: 24px;
}
.charge-no {
  background-color: #333;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
.charge-no p {
  color: #fff;
  font-family: 'M PLUS 2';
  text-align: center;
  letter-spacing: 0;
  margin: auto;
}
.charge-ttl {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  font-weight: 500;
}
.charge-contents1 span::before,.charge-contents2 span::before {
  display: none;
}
.charge-flex {
  display: flex;
  justify-content: space-between;
  margin-left: 56px;
}
.charge-box {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 24px 40px;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
  width: 40%;
}
.charge-box span {
  margin: 0;
}
.price p {
  display: flex;
  justify-content: space-evenly;
  margin: 8px auto;
  font-size: 1.4rem;
}
.price p span {
  color: #7FAF03;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
               -2px 2px 0 #FFF, 2px -2px 0 #FFF,
               0px 2px 0 #FFF,  0 -2px 0 #FFF,
               -2px 0 0 #FFF, 2px 0 0 #FFF;
  font-weight: 700;
  font-size: 3.2rem;
}
.charge-contents2 .charge-ttl p {
  display: flex;
  margin-bottom: 0;
  align-items: center;
}
.charge-contents2 .charge-ttl p span {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0;
}
.charge-contents2 .charge-box {
  margin-left: 56px;
  width: auto;
}
.charge-contents2 .charge-box .price div {
  display: flex;
}
.charge .annotation {
  margin-left: 56px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.charge-contents2 .charge-ttl .charge-no p {
  margin: auto;
}
/*Tablet Layout
===================================*/
@media all and (max-width: 1100px) {
  .charge {
    width: 90%;
    margin: 24px auto;
  }
  .charge span {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .charge-ttl {
    justify-content: center;
  }
  .charge-flex {
    display: block;
    margin: auto;
  }
  .charge-box {
    display: block;
    width: auto;
    margin-bottom: 8px;
    padding: 24px 0;
  }
  .charge-box span {
    margin: 0;
  }
  .charge-contents2 .charge-ttl p {
    display: block;
    text-align: left;
  }
  .charge-contents2 .charge-ttl p span {
    font-size: 1.4rem;
  }
  .charge-contents2 .charge-box {
    margin: auto;
  }
  .charge .annotation {
    margin: auto;
  }
  .price p {
    justify-content: center;
    margin: 8px 0;
  }
  .charge-contents2 .charge-box .price div {
    justify-content: center;
    margin: auto;
  }
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .charge-bg {
    margin: 40px auto;
    width: 100%;
  }
}


/* Other pages
------------------------------------------------------ */
.other-pages-bg {
  background-color: #f5f5f5;
  border-radius: 10px;
  margin: 80px auto 160px;
  width: 90%;
  padding: 24px 0;
  text-align: center;
}
.other-pages {
  margin: 0 auto;
  width: 100%;
}
.other-pages-ttl {
  margin-bottom: 40px;
}
.other-pages span {
  font-size: 24px;
  font-weight: 500;
}
.link-list {
  width: calc(100% - 80px);
  max-width: none;
  padding: 0 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.page-link {
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
  width: fit-content;
}
.page-link p {
  display: inline;
}
.page-link:hover {
  color: #333;
}
.page-link::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #333;
  transition: 0.3s;
}
.page-link:hover::before{
  width: 100%;  
}
/*Tablet Layout
===================================*/
@media all and (max-width: 1100px) {
  .link-list {
    padding-left: 4%;
    width: 47%;
  }
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .other-pages-bg {
    width: 100%;
    margin: 60px auto 80px;
    padding: 0;
  }
  .other-pages {
    display: block;
    text-align: center;
    padding: 20px;
    width: auto;
  }
  .other-pages span {
    font-size: 2rem;
  }
  .link-list{
    border-left: none;
    padding-left: 0;
    width: 100%;
    margin: 32px auto 0;
  }
}


/* button
------------------------------------------------------ */
.more-link{
	position:relative;
    /*ボタンの形状*/
	color:#7FAF03;
 	padding: 10px 30px;	
	display:block;
  	text-decoration: none;
  	outline: none;
  /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
	/* width: 100%; */
	padding: 14px 0;
	text-align: center;
	background-color: #fff;
  border: 2px solid #7FAF03;
  margin: 16px auto;
  display: block;
}
.more-link p{
	font-size: 1.5rem;
	letter-spacing: .3rem;
	line-height: 2;
  text-align: center;
}
/*hoverした際の背景の形状*/
.lineup-contents a:hover .more-link{
	background:#7FAF03;
	color: #fff;
	border-color:transparent;
	opacity: 1;
}

/*線の設定*/
.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;
}
/*hoverした際の線の形状*/
.lineup-contents a:hover .more-link::before,
.lineup-contents a:hover .more-link::after{
	width:calc(10% + 50px);
	height:calc(10% + 20px);
	border-color:#fff;
}
.more-link:hover::before,
.more-link:hover::after{
	width:calc(10% + 50px);
	height:calc(10% + 20px);
	border-color:#fff;
}

.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);
}

.other-pages .more-link {
  background-color: #333;
  color: #fff;
  border: 0;
  padding: 10px 30px;
}
.other-pages .more-link p {
  text-align: left;
  width: 80%;
}
.other-pages .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;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .other-pages .more-link {
    width: auto;
    padding: 10px;
    margin-top: 20px;
  }
}

.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;
}</pre></body></html>