@charset "UTF-8";

/*===============================================================

	basic

===============================================================*/

.article-area a:not(.btn) {
  color: rgb(var(--color-link));
}

.article-area .tags {
  margin-top: 1.75em;
}

.release .article-area .section-header .date {
  margin-top: 1.75em;
  text-align: right;
  display: block;
}

.article-content {
  padding-bottom: var(--margin);
}

.article-content > * + *,
.article-content > p + p,
.article-content .col > * + *,
.article-content p br + img,
.article-content p img + br,
.article-content form > * + *,
.article-content form .col > * + * {
  margin-top: var(--margin);
}

.article-content .btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.article-content strong {
  padding: 0 .25em;
  font-weight: 500;
  background: linear-gradient(transparent 60%, rgb(var(--color-secondary)) 60%);
}

.article-content small,
.article-content .img-caption {
  color: var(--color-text-gray);
  font-size: var(--font-caption);
  line-height: 1.48;
  display: block;
}

.article-content .img-caption {
  margin-top: 1em;
}

.article-content .kakomi {
  padding: 1.5em;
  border: 1px double var(--color-border);
}

.article-content .kakomi > * + * {
  margin-top: 1em;
}

.article-content img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.article-content hr {
  margin-top: var(--margin) !important;
  margin-bottom: var(--margin) !important;
  border-top-color: var(--color-border);
}


/*===============================================================

	heading

===============================================================*/

.article-content .title-lead + h1,
.article-content .title-lead + h2,
.article-content .title-lead + h3,
.article-content .title-lead + h4,
.article-content .title-lead + h5,
.article-content .title-lead + h6 {
  margin-top: 0;
}


.article-content h2 {
  font-size: var(--font-l);
  line-height: 1.43;
  position: relative;
}

.article-content h2:after {
  content: '';
  height: 100%;
  border-left: 6px solid rgb(var(--color-primary));
  position: absolute;
  top: 50%;
  left: -1em;
  transform: translateY(-50%);
}

.article-content * + h2 {
  margin-top: calc(var(--margin-l) * 1.5 );
}

.article-content h3 {
  font-size: var(--font-m);
  line-height: 1.6;
}

.article-content * + h3 {
  margin-top: var(--margin-l);
}


.article-content .title-lead {
  font-size: 1rem;
  font-weight: 500;
}

.article-content * + .title-lead {
  margin-top: var(--margin-l);
}

@media (max-width: 768px) {
  .article-content h2 {
    padding-left: 1em;
  }
  .article-content h2:after,
  .article-content h3:before {
    left: 0;
  }
}




/*===============================================================

	table

===============================================================*/

.article-content table {
  position: relative;
}

.article-content th,
.article-content td {
  padding: var(--margin-s) 0 ;
  text-align: left;
}

.article-content * + th,
.article-content * + td {
  padding-left: var(--margin);
}

.article-content th {
  font-weight: 500;
}

.article-content tr > :first-child {
  width: 15em;
}

@media (max-width: 768px) {
  .article-content table:not(.hold) th,
  .article-content table:not(.hold) td {
    padding: 0;
  }
  .article-content table:not(.hold) * + th,
  .article-content table:not(.hold) * + td {
    margin-top: var(--margin-s);
  }
}

.article-content table tbody,
.article-content table tr {
  position: relative;
}

.article-content table tbody:after,
.article-content table tr:after {
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
}

.article-content table tbody:after {
  border-top: 1px solid var(--color-border);
  /*top: 0;*/
}

.article-content table tr:after {
  border-bottom: 1px solid var(--color-border);
  /*bottom: 0;*/
}

.article-content table thead tr:after  {
  display: none;
}

.article-content table tbody th,
.article-content table tbody td {
  vertical-align: top;
}


@media (max-width: 768px) {
  .article-content table:not(.hold) thead {
    display: none;
  }
  .article-content table:not(.hold) tr {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .article-content table tr:after {
    top: 0;
  }
}

@media (max-width: 768px) {
  * + .article-content table:not(.hold) {
    margin-top: 1em;
  }
  .article-content table:not(.hold),
  .article-content table:not(.hold) > tbody,
  .article-content table:not(.hold) > tbody > tr,
  .article-content table:not(.hold) > tbody > tr > td,
  .article-content table:not(.hold) > tbody > tr > th,
  .article-content table:not(.hold) > thead,
  .article-content table:not(.hold) > thead > tr,
  .article-content table:not(.hold) > thead > tr > td,
  .article-content table:not(.hold) > thead > tr > th {
    width: 100% !important;
    display: block;
  }
	.article-content table:not(.hold) > tbody > tr,
	.article-content table > tbody > tr > [class^="hold-"] {
		-js-display: flex;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-webkit-flex-direction:row;
		flex-flow: row wrap;
		justify-content: flex-start;
	}
  .article-content table:not(.hold) > tbody > tr + tr {
    /*margin-top: 1em;*/
  }
  .article-content table:not(.hold) > tbody > tr > th {
    /*padding: .5em;
    background-color: #ccc;*/
  }
  .article-content table:not(.hold) > tbody > tr > td {
    /*padding: .5em 0 0;*/
  }
	.article-content table > tbody > tr > [class^="hold-"] {
		/*padding: 0 !important;*/
	}
}

/*===============================================================

	introduction

===============================================================*/


.article-content .introduction {
  font-size: var(--font-s);
}

.article-content .introduction * + * {
  margin-top: 1em;
}


/*===============================================================

	service plan

===============================================================*/

.article-content .service {
  letter-spacing: 0;
}

.article-content .service > .col {
  padding: 1.5em;
  border: 1px solid var(--color-border);
}

.article-content .service > .col.pickup {
  border: 2px solid rgb(var(--color-primary)) !important;
  /*box-shadow: 0px 0px 10px 0px rgba(var(--color-primary-dark), .15);*/
}

.article-content .service > .col > * + * {
  margin-top: 1em;
}

.article-content .service h5 {
  margin-top: 0 !important;
  font-size: var(--font-lead);
}

.article-content .service h5 small {
  font-size: var(--font-s);
  color: var(--color-primary-dark);
  display: inline;
}

.article-content .service .lead {
  font-size: 1em;
  color: rgb(var(--color-primary)) !important;
}



.article-content .service table tr,
.article-content .service table th,
.article-content .service table td {
  display: block;
}

.article-content .service table th {
  width: auto;
  padding: 0;
  font-size: var(--font-caption);
  color: var(--color-text-gray);
  font-weight: 400;
}

.article-content .service table tr + tr th {
  margin-top: .5em;
}

.article-content .service table td {
  padding: 0;
  text-align: right;
}

.article-content .service table tbody:after,
.article-content .service table tr:after {
  display: none;
}


@media (max-width: 768px) {
  .article-content .service table:not(.hold) tr {
    padding-top: 0;
    padding-bottom: 0;
  }
  .article-content .service * + th,
  .article-content .service * + td {
    padding-top: 0;
  }
}


/*===============================================================

	contact

===============================================================*/

.article-area .contact .col {
  padding: var(--margin);
  background-color: rgb(var(--color-primary-light));
}

.article-area .contact .col > * + * {
  margin-top: 1em;
}

