.clamp_1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; }

.clamp_2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; }

.a-headline {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(50, 50, 50, 0.3); }
  .a-headline._line-none {
    border-bottom: none;
    padding-bottom: 0; }
  .a-headline__title {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.6em; }
  .a-headline__date {
    margin-top: .5rem;
    font-weight: 500;
    opacity: .9; }
  .a-headline__cat, .a-headline__sub {
    margin-bottom: .8rem;
    font-weight: bold;
    opacity: .5; }
  .a-headline__attr {
    margin-top: 1rem;
    text-align: left; }
    .a-headline__attr th {
      padding-right: 2rem;
      font-weight: bold; }
  .a-headline__col {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .a-headline__col--icon {
      flex-shrink: 0;
      position: relative;
      width: 150px;
      height: 150px;
      margin-right: 2rem;
      background: #F2FBF6;
      border-radius: 2px; }
      .a-headline__col--icon img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        border-radius: inherit;
        object-fit: cover; }
    @media screen and (max-width: 1000px) {
      .a-headline__col {
        align-items: flex-start; }
        .a-headline__col--icon {
          width: 100px;
          height: 100px; } }
  .a-headline__title + .a-headline__dsc {
    margin-top: 1rem; }
  .a-headline__btn {
    margin-top: 2rem; }

.a-section:not(:last-child) {
  margin-bottom: 100px; }
.a-section > *:not(:last-child) {
  margin-bottom: 2rem; }
.a-section * + h3 {
  padding-top: 2rem; }
.a-section * + h4 {
  padding-top: 2rem; }

.a-btn__form-jump {
  margin-bottom: 100px; }

.a-writer {
  background: #f0f0f0;
  border-radius: 2px;
  padding: 30px 40px; }
  .a-writer__content {
    display: flex;
    flex-direction: row;
    align-items: center; }
  .a-writer__icon {
    flex-shrink: 0;
    position: relative;
    width: 100px;
    height: 100px;
    background: #FFF;
    border-radius: 2px; }
    .a-writer__icon img {
      object-fit: cover; }
  .a-writer__text {
    margin-left: 50px; }
    .a-writer__text--label {
      font-size: 0.9rem;
      font-weight: 500; }
    .a-writer__text--main {
      font-size: 1.2rem;
      font-weight: bold; }
    .a-writer__text--sub {
      margin-top: .5rem;
      font-size: .9rem;
      line-height: 1.8em; }

.a-tag-list__headline {
  margin-bottom: 1rem;
  text-align: center; }
  .a-tag-list__headline--main {
    font-size: 1.1rem;
    font-weight: bold; }
  .a-tag-list__headline--sub {
    margin-top: 1rem;
    line-height: 1.8em; }
.a-tag-list__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .a-tag-list__list._center {
    justify-content: center; }
.a-tag-list__item {
  width: calc(50% - 1rem);
  margin-top: calc(1rem * 2); }
  .a-tag-list__item:nth-child(odd) {
    margin-right: 1rem; }
  .a-tag-list__item:nth-child(even) {
    margin-left: 1rem; }
  .a-tag-list__item a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 15px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 2px; }
    .a-tag-list__item a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      margin: 0;
      padding: 0;
      border-radius: inherit;
      background: rgba(50, 50, 50, 0.5);
      transition: 0.3s; }
    .a-tag-list__item a:hover:before {
      background: rgba(50, 50, 50, 0.3); }
.a-tag-list__title {
  position: relative;
  width: 100%;
  padding-right: 2rem;
  color: #FFF;
  transition: 0.3s;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  z-index: 1; }
  .a-tag-list__title:visited, .a-tag-list__title:active {
    color: #FFF; }
  .a-tag-list__title:hover {
    color: #FFF; }
  .a-tag-list__title:before {
    content: "";
    position: absolute;
    width: .8rem;
    height: .8rem;
    top: calc(50% - .4rem);
    right: 0;
    border-top: solid 3px #FFF;
    border-right: solid 3px #FFF;
    transform: rotate(45deg);
    transition: 0.3s; }
@media screen and (max-width: 700px) {
  .a-tag-list__item {
    width: 100%;
    margin-top: calc(1rem * 2); }
    .a-tag-list__item:nth-child(odd) {
      margin-right: 0; }
    .a-tag-list__item:nth-child(even) {
      margin-left: 0; } }

.a-seminar__headline {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center; }
.a-seminar__list {
  width: 100%;
  justify-content: center; }
.a-seminar__link-back a:hover {
  color: rgba(50, 50, 50, 0.5) !important; }

.a-pagenation__wrap {
  border-top: solid 1px rgba(50, 50, 50, 0.25); }
.a-pagenation__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start; }
  .a-pagenation__item:not(:last-child) {
    margin-bottom: 1rem; }
.a-pagenation__label {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 6rem;
  margin: .2rem 2rem 0 0;
  padding: .5rem 0 .6rem 0;
  background: #f0f0f0;
  border-radius: 2px;
  color: rgba(50, 50, 50, 0.5);
  font-size: 0.9rem;
  font-weight: bold; }
.a-pagenation__title {
  margin-top: .4rem; }
.a-pagenation__date {
  margin: 0 1.5rem .5rem 0;
  font-size: .9rem; }
.a-pagenation__link {
  color: #323232;
  transition: 0.3s;
  font-weight: 500;
  line-height: 1.8em; }
  .a-pagenation__link:visited, .a-pagenation__link:active {
    color: #323232; }
  .a-pagenation__link:hover {
    color: #00b050; }
@media screen and (max-width: 1000px) {
  .a-pagenation__item {
    flex-direction: column;
    align-items: flex-start; }
    .a-pagenation__item:not(:last-child) {
      margin-bottom: 2rem; }
  .a-pagenation__label {
    margin-bottom: 1rem; }
  .a-pagenation__date {
    margin-bottom: .5rem; } }

.list-dot > li, .a-content ul.dot > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 2em; }
  .list-dot > li:before, .a-content ul.dot > li:before {
    content: "";
    position: absolute;
    width: .4em;
    height: .4em;
    top: .8em;
    left: 0;
    background: #323232;
    border-radius: 50%; }

.a-content {
  position: relative;
  line-height: 2em; }
  .a-content._center {
    text-align: center; }
  .a-content__wrap {
    width: 75%;
    min-width: 500px;
    margin: auto;
    padding: 60px 0 100px 0; }
    @media screen and (max-width: 1000px) {
      .a-content__wrap {
        width: 100%;
        min-width: auto; } }
    .a-content__wrap--download {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      margin-bottom: -25px; }
      .a-content__wrap--download > * {
        width: 50%; }
      .a-content__wrap--download + .a-section {
        margin-top: 50px; }
      @media screen and (max-width: 1000px) {
        .a-content__wrap--download {
          flex-direction: column; }
          .a-content__wrap--download > * {
            width: 100%; }
            .a-content__wrap--download > *:first-child {
              order: 2; }
            .a-content__wrap--download > *:last-child {
              order: 1; } }
  .a-content h2, .a-content h3, .a-content h4 {
    margin-bottom: 1rem !important; }
  .a-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.6em; }
  .a-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6em; }
  .a-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6em; }
  .a-content .t-size__h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.8em; }
  .a-content .t-size__h2 {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.6em; }
  .a-content .t-size__h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6em; }
  .a-content .t-size__h4 {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6em; }
  .a-content .t-color__theme {
    color: #00b050; }
  .a-content p {
    display: block;
    line-height: 2em; }
  .a-content__button--center {
    text-align: center; }
  .a-content img {
    width: 100%;
    border-radius: 2px; }
  .a-content__thumb {
    position: relative; }
    .a-content__thumb img {
      width: 100%;
      border-radius: 2px; }
    .a-content__thumb._half img {
      width: 50%; }
    .a-content__thumb._youtube {
      height: 0;
      padding-top: 56.25%; }
      .a-content__thumb._youtube iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        border-radius: inherit;
        object-fit: cover;
        border-radius: 2px; }
    .a-content__thumb._main-img {
      margin-bottom: 30px; }
    .a-content__thumb--download {
      background: #f0f0f0;
      border-radius: 2px;
      margin-left: 75px; }
      .a-content__thumb--download img {
        width: 100%; }
      @media screen and (max-width: 1000px) {
        .a-content__thumb--download {
          margin: 0 0 50px 0; } }
  .a-content__image {
    position: relative; }
    .a-content__image img {
      width: 100%; }
    .a-content__image._half {
      text-align: center; }
      .a-content__image._half img {
        width: 50%; }
  .a-content__gallery {
    position: relative;
    display: flex;
    flex-direction: row;
    width: calc(100% + 2rem); }
    .a-content__gallery div {
      position: relative;
      width: 100%;
      margin: 2rem 2rem 0 0; }
    .a-content__gallery img {
      width: 100%; }
    @media screen and (max-width: 700px) {
      .a-content__gallery {
        flex-direction: column;
        width: 100%; }
        .a-content__gallery div {
          margin-right: 0; } }
  .a-content__iframe-youtube {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    border-radius: 2px; }
    .a-content__iframe-youtube iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      margin: 0;
      padding: 0;
      border-radius: inherit;
      object-fit: cover; }
  .a-content .box-caution {
    padding: 1rem 0;
    background: #f0f0f0;
    border-radius: 2px;
    font-weight: 500;
    text-align: center; }
  .a-content .box-tips {
    padding: 2rem 3rem;
    background: #f0f0f0;
    border-radius: 2px; }
    .a-content .box-tips h3, .a-content .box-tips h4, .a-content .box-tips__title {
      padding-top: 0; }
    .a-content .box-tips > *:not(:first-child) {
      margin-top: 1rem; }
    .a-content .box-tips a {
      color: #323232;
      transition: 0.3s;
      text-decoration: underline; }
      .a-content .box-tips a:visited, .a-content .box-tips a:active {
        color: #323232; }
      .a-content .box-tips a:hover {
        color: #00b050; }
    .a-content .box-tips__title {
      font-size: 1.1rem;
      font-weight: bold; }
    .a-content .box-tips._wrap {
      margin: 3rem 0; }
    .a-content .box-tips._center {
      text-align: center; }
    .a-content .box-tips._small {
      font-size: .8rem;
      line-height: 2em; }
  .a-content .line-table {
    position: relative;
    width: 100%;
    border: solid 1px #A6A6A6; }
    .a-content .line-table th, .a-content .line-table td {
      width: calc(100% - 2rem);
      padding: .5rem 1rem;
      border: solid 1px #A6A6A6;
      text-align: left;
      font-weight: normal; }
    .a-content .line-table__headline th, .a-content .line-table__headline td {
      background: #f0f0f0;
      font-weight: bold; }
