@charset "utf-8";
/* CSS Document */
/*----------------------------------------------
/*----------------------------------------------
コラムページ新css追加　column
-----------------------------------------------*/

/*------------------------
sp/pcのみの表示
------------------------*/
.only_sp {
  display: none;
}
.only_pc {
  display: block;
}
@media (max-width: 768px) {
  .only_sp {
    display: block;
  }
  .only_pc {
    display: none;
  }
}
/*------------------------
コラムTOPぺージ
------------------------*/
.column-pickupbox {
  margin: 2em auto 1.5em;
}
ul.column-mainlist {
  padding-left: 0;
}
.column-mainlist li {
  list-style: none;
  margin-bottom: 0;
}
.column-mainlist li a {
  color: #333;
}
.mainlist-box {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}
.mainlist-box img {
  border-radius: 6px;
  width: 100%;
}
p.mainlist-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0 0 6px 6px;
  z-index: 200;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin: 0;
  min-height: 80px;
}
.column-list-section {
  padding: 0 0 70px;
}
.column-list-section.category-column-list-section {
  padding: 50px 0 0;
}
ul.column-news-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
ul.column-news-list li {
  position: relative;
  width: 46%;
  background: #fff;
  margin: 0 30px 30px 0;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(141, 141, 141, 0.12), 0 2px 4px 0 rgba(108, 108, 108, 0.22);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  list-style: none;
}
ul.column-news-list li:nth-child(n + 2) {
  margin-right: 0;
}
ul.column-news-list li:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  cursor: pointer;
}
ul.column-news-list li a {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
.column-list-photo-left {
  width: 40%;
}
.column-list-photo-left figure {
  margin: 0;
  overflow: hidden;
  width: auto;
  height: 200px;
  position: relative;
}
.column-list-photo-left img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
.column-list-photo-left .column-list-img-right {
  left: 72%;
}
.column-text-right {
  width: 60%;
}
.column-text-right h3 {
  font-size: 16px;
  padding: 0 20px;
  line-height: 1.5;
  color: #222;
  font-weight: bold;
  text-decoration: underline;
}
p.column-date {
  text-align: right;
  padding: 0 10px 0 0;
  color: #888;
  margin: 12px 0 8px;
}
#side-cta {
  display: none !important;
}

@media (max-width: 1500px) {
  .mainlist-box img {
    display: flex;
    margin: auto;
    width: auto;
    height: 100%;
  }
}

@media (max-width: 769px) {
  .mainlist-box img {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .mainlist-box img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 520px) {
  .mainlist-box {
    height: 250px;
  }
}

/*------------------------
コラム詳細ぺージ
------------------------*/
/*------コラム用pの余白------*/
.column-style p {
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin: 1em auto;
  padding: 10px;
}
.column-style .mb-none {
  margin: 1em auto 0;
  padding: 0 10px 5px;
}

/*------コラム用イメージの配置------*/
.column-style img {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.column-style img.img-big {
  max-width: 740px;
}
.column-style img.img-middle {
  width: 90%;
  display: block;
}
.column-style img.img-small {
  width: 80%;
  display: block;
}
.column-style img.img-exsmall {
  width: 65%;
  display: block;
}
.column-style img.img-margin {
  margin: 2em auto;
}
@media (max-width: 768px) {
  .column-style img.img-small {
    width: 100%;
  }
  .column-style img.img-exsmall {
    width: 100%;
  }
}
/*------コラム用イメージの配置------*/
.columnsample {
  padding: 30px 50px;
  width: 90%;
  background: #f3f3f3;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 0 auto;
}
.columnsample h5 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
/*------上記内テーブル------*/
.columnsample table {
  width: 90%;
  margin: 0 auto;
  border: 1px #ccc solid;
  text-align: right;
}
.columnsample td {
  border-bottom: 1px #ccc solid;
  padding: 3px;
  font-size: 90%;
}
@media (max-width: 768px) {
  .columnsample {
    width: 100%;
    padding: 30px 20px;
  }
  .columnsample td {
    font-size: 10px;
  }
  .columnsample h5 {
    font-size: 16px;
  }
  .columnsample p {
    font-size: 14px;
  }
}
.columnsample .columnsample-font {
  font-size: 14px;
}
/*------コラム用更新日エリア------*/
p.column-news-date {
  position: relative;
  border-bottom: 1px dashed #47b08a;
  text-align: right;
  padding: 5px;
  margin-bottom: 30px;
}
.column-news-date .supervision {
  position: absolute;
  left: 5px;
}
/*------コラム用引用エリア------*/
.column-style blockquote {
  position: relative;
  margin: 2em 0;
  padding: 24px 30px;
  font-size: 0.9em;
  border: 1px solid #e0e0e0;
  background: #f3f3f3;
  border-radius: 6px;
}
.column-style blockquote:before,
.column-style blockquote:after {
  position: absolute;
  font-size: 4em;
  opacity: 0.8;
  color: #00a33e;
}
.column-style blockquote:before {
  top: -10px;
  left: 10px;
  content: "“";
}
.column-style blockquote:after {
  bottom: -30px;
  right: 10px;
  content: "”";
}
.column-style blockquote h3 {
  font-size: 1.3em;
  margin: 0.8em auto;
}
.column-style blockquote p {
  padding: 0;
}
.column-style blockquote cite {
  display: block;
  text-align: right;
  margin: 1em auto;
}
/*------コラム バナー下の注釈------*/
.column-style figure span {
  display: block;
  font-size: 11px;
  color: #333;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .column-style figure {
    margin: 1em 10px;
  }
  .column-style figure span {
    font-size: 10px;
    text-align: left;
  }
}

/*------コラム、パンくずタイトルエリア------*/
.column-breadcrumb {
  padding: 20px 0 10px;
  background: #ebf3d5;
}
.column-breadcrumb a,
.column-breadcrumb a:hover {
  color: #252525 !important;
}
.column-breadcrumb h1 {
  box-sizing: border-box;
  margin: 20px auto 10px;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
}
.column-breadcrumb.category-column-breadcrumb {
  padding: 10px 0 40px;
  background: #ebf3d5;
}
.column-breadcrumb.category-column-breadcrumb h1 {
  font-size: 34px;
}
.column-style.inner {
  width: 750px;
}
section.column-detail {
  padding: 0 0 20px;
  margin: 0 auto;
  display: flex;
  max-width: 1100px;
}
figure.column-main-image {
  height: 350px;
  overflow: hidden;
  margin: 30px auto 10px;
}
figure.column-main-image img {
  width: 100%;
  max-width: none;
  transform: translate(0, -110px);
}
figure.column-main-image.column-main-image--low img {
  transform: translate(0, -70px);
}
@media (max-width: 768px) {
  figure.column-main-image img {
    transform: none;
  }
  figure.column-main-image.column-main-image--low img {
    transform: none;
  }
  section.column-detail {
    padding: 0 0 20px;
    display: block;
    width: 95%;
  }
  .column-style.inner {
    width: 95%;
  }
}
/*------画像エリア------*/
figure.column-width20 {
  width: 20%;
}
figure.column-width25 {
  width: 25%;
}
figure.column-width40 {
  width: 40%;
}
.column__figure {
  margin: 60px 0;
}
@media (max-width: 768px) {
  figure.column-width20,
  figure.column-width25,
  figure.column-width40 {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .column-list-section.category-column-list-section {
    padding: 10px 0 0;
  }
  .column-breadcrumb.category-column-breadcrumb {
    padding: 10px 0 20px;
  }
  .column-breadcrumb.category-column-breadcrumb h1 {
    font-size: 24px;
  }
}
/*------記事の詳細用リスト------*/
.column-detail-list {
  margin: 30px auto 20px;
  width: 90%;
  padding: 25px 30px 15px;
  box-sizing: border-box;
  background: #f2f2f2;
  border-radius: 6px;
}
ul.column-detail-list li {
  list-style: none;
  line-height: 1.2;
  padding: 0 0 0 10px;
  margin: 0 0 8px;
  position: relative;
}
ul.column-detail-list li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border: 2px solid;
  border-color: #00a33e #00a33e transparent transparent;
  transform: rotate(45deg);
  top: 6px;
  left: -10px;
}
ul.column-detail-list li a {
  color: #00a33e;
  text-decoration: underline;
}
/*------記事の詳細用請求書などの書き方用------*/
span.text-r,
span.text-center,
span.text-l {
  display: inline-block;
  vertical-align: top;
}
span.text-r {
  width: 20%;
  text-align: right;
}
span.text-center,
span.text-l {
  width: 80%;
}
span.text-center {
  text-align: center;
}
.fontbig {
  font-size: 1.5em;
}
.fontmiddle {
  font-size: 1.2em;
}

/*------請求書の電子化に成功した事例------*/
.success-case-box {
  margin: 4em auto 1em;
}
.success-case-box h3 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  padding: 10px;
  margin-bottom: 1em;
  border-bottom: 1px solid;
  color: #636363;
  letter-spacing: 0.05em;
}
ul.success-case-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
}
ul.success-case-list li {
  list-style: none;
  width: 49%;
  margin-bottom: 15px;
}
ul.success-case-list li img {
  width: 90%;
  margin: 0 auto;
}
ul.success-case-list li a {
  background: #f2f2f2;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
}
ul.success-case-list li a:hover {
  opacity: 0.5;
}
ul.success-case-list li a h4 {
  text-align: center;
  margin: 10px auto 1em;
  font-weight: bold;
}
/* コラム用通常リストモジュール */
.column__list {
  padding: 0;
}
.column__list li {
  position: relative;
  padding-left: 20px;
}
.column__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50vh;
  background-color: #00a33e;
}
.column__list li:last-of-type {
  margin-bottom: 0;
}
.column__list li .column__list {
  margin-top: 15px;
}
.column__list.column__numlist {
  padding: 0 0 0 25px;
}
.column__list.column__numlist li::before {
  display: none;
}
/*------------
汎用可能スタイル
------------*/
/*------マージン-----*/
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}

/*------マージンauto 真ん中配置-----*/
.m-auto {
  margin: 1em auto;
}
/*------見出しぽいp-----*/
.title-green-font {
  color: #09a142;
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 1px solid;
}
/*------目次------*/
.table-contents {
  width: 95%;
  margin: 4em auto 2em;
  border: 2px solid #50ba78;
  border-radius: 6px;
}
.table-contents h3 {
  background: #50ba78;
  text-align: center;
  padding: 6px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #fff;
}
.table-contents ol,
.table-contents ul {
  padding: 20px 30px;
}
.table-contents ol li,
.table-contents ul li {
  line-height: 1.7;
  padding: 6px 0;
  list-style-position: inside;
  margin-bottom: 0;
}
.table-contents ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}
.table-contents ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: #50ba78 #50ba78 transparent transparent;
  transform: rotate(45deg);
}
.table-contents li a {
  color: #50ba78;
}
li.no-list-deco,
li.no-list-deco ul li {
  list-style-type: none;
  padding: 0;
  line-height: 1.2;
  margin: 0 0 6px 0;
}
li.no-list-deco p {
  padding: 0;
  font-weight: bold;
  margin: 0;
}
li.no-list-deco ul {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .table-contents {
    margin: 2em auto;
  }
}
/*------テキスト装飾-----*/
.text-style-circle {
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  text-align: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-family: helvetica;
  text-indent: 0;
  background: #267d00;
  border-radius: 100%;
}
.text-style-underline {
  text-decoration: underline;
}
.text-style-dottedline {
  padding: 10px;
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
}
.text-style-frame {
  border: 1px solid #000;
}
/*------文字用背景色------*/
span.bg-yellow {
  display: inline-block;
  padding: 2px 8px;
  background: #fff9d3;
  border: 2px solid #c6c6c6;
}
/*------背景色------*/
/*緑*/
.txt-bg-green {
  background: #effaf3;
  padding: 10px 20px;
  box-sizing: border-box;
  margin: 1em auto 1.5em;
  width: 98%;
}
/*ピンク*/
.txt-bg-pink {
  background: #ffe5e5;
  padding: 5px 20px;
  box-sizing: border-box;
  margin: 1em auto 1.5em;
  width: 98%;
}
/*------テキスト配置-----*/
@media (max-width: 768px) {
  .column-news-date {
    font-size: 13px;
  }
  .text-style-frame {
    display: inline-block;
  }
}
/*------見出し-----*/
h2.h2-type01 {
  background: #f2f2f2;
  text-align: left;
  padding: 15px 10px 15px 18px;
  margin: 1.5em auto 1em;
  font-size: 24px;
  border-left: 10px solid;
  font-weight: bold;
  line-height: 1.2;
}
h3.h3-type01 {
  padding: 8px 10px 8px 14px;
  border-left: 5px solid #09a142;
  margin: 1.5em auto 0.8em;
  line-height: 1.2;
  color: #636363;
  letter-spacing: 0.08em;
  font-weight: bold;
}
h3.h3-type02 {
  color: #45b035;
  margin: 0;
  background: #f2f2f2;
  font-size: 20px;
  font-weight: bold;
}
h3.h3-type02 span {
  background: #45b035;
  padding: 10px 15px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  margin-right: 20px;
  position: relative;
}
h3.h3-type02.h3-type02--margin {
  margin: 1.5em auto 0;
}
h4.h4-type01 {
  display: flex;
  align-items: center;
  color: #252525;
  padding: 10px 10px 10px 0;
  border-bottom: 2px solid #ffb40f;
}
h4.h4-type02 {
  border-bottom: 1px solid #dfdfdf;
  padding: 6px 15px 12px;
  background: #fff;
  border-left: 4px solid;
  font-size: 1.2em;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 1.5em auto 1em;
  font-weight: 500;
}
p.title-bg-green {
  background: #5db27c;
  margin: 2em auto 1.5em;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 6px 20px;
}
.point-midashi {
  border-radius: 10px 10px 0 0;
  border: 2px solid #b4d699;
  margin: 2em auto;
  box-sizing: border-box;
}
.point-midashi h3 {
  background: #b4d699;
  padding: 6px 20px;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  color: #636363;
}
.point-midashi p {
  margin: 0;
  padding: 20px;
}
.text-kome {
  font-size: 90%;
  color: #666;
  display: block;
}
a.link-type01 {
  text-decoration: underline;
  font-size: 1.1em;
  word-wrap: break-word;
}
span.span-type01 {
  display: block;
  background: #ffb40f;
  margin-right: 35px;
  padding: 9px 10px 13px 15px;
  color: #fff;
  position: relative;
  font-size: 18px;
  min-width: 60px;
  height: 20px;
  font-weight: bold;
}
span.span-type01::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #ffb40f;
  border-width: 20px;
  margin-top: -20px;
}
/*------olリスト-----*/
ol.ol-type01 {
  background: #f3f3f3;
  padding: 30px 30px 15px 20px;
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
  border-radius: 7px;
  margin: 1.5em auto;
}
ol.ol-type01.ol-type01--nolist {
  list-style-type: none;
}
ol.ol-type01 li {
  padding-bottom: 15px;
  font-weight: bold;
  color: #09a142;
}
ol.ol-type01 li span {
  display: block;
  font-weight: normal;
  color: #333333;
  margin: 1em;
  font-size: 90%;
}
ol.ol-type02 {
  margin: 0 0 0 20px;
  padding: 0;
  list-style: none;
  counter-reset: yourDefinition;
}
ol.ol-type02 li {
  margin-bottom: 3px;
  padding-left: 35px;
  text-indent: -35px;
}
ol.ol-type02 li:before {
  position: absolute;
  content: "";
  left: 0;
  counter-increment: yourDefinition;
  content: counter(yourDefinition);
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: helvetica;
  text-indent: 0;
  background: #ff6900;
  border-radius: 100%;
}
ol.ol-type02 li p {
  padding: 0;
}
/*------ulリスト-----*/
ul.ul-type01 li {
  padding-bottom: 10px;
}
ul.ul-type01 li span {
  font-weight: bold;
  display: block;
  margin-bottom: 7px;
  color: #888888;
  font-size: 110%;
  letter-spacing: 0.08em;
}
/*------蛍光ペン風下線-----*/
.yellow-line {
  background: linear-gradient(transparent 70%, yellow 70%);
  font-weight: bold;
}
/*------table style-----*/
table.table-type01 {
  margin: 1em auto;
  width: 96%;
}
table.table-type01 tr {
  border-bottom: solid 2px white;
  letter-spacing: 0.06em;
}
table.table-type01 th {
  text-align: left;
  padding: 10px 15px;
  background: #50ba78;
  width: 40%;
  color: #fff;
  position: relative;
  font-weight: 500;
}
table.table-type01 th::after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #50ba78;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
table.table-type01 td {
  text-align: left;
  padding: 10px 15px;
  background: #f2f2f2;
  font-weight: 500;
}

.table-type02 {
  border-collapse: collapse;
  margin: 30px 0;
}
.table-type02 li {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  font-weight: 500;
}
.table-type02 li.table-type02-item span:first-of-type {
  width: 200px;
}
.table-type02 li.table-type02-item span {
  text-align: center;
  background: #ebf3d5;
  font-weight: bold;
  padding: 10px;
  border-bottom: 1px solid #cfcdcd;
}
.table-type02 li.table-type02-item span:nth-of-type(2) {
  width: 140px;
}
.table-type02 li.table-type02-item span:last-of-type {
  width: 230px;
}
.table-type02 span:first-of-type {
  display: block;
  width: 200px;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #cfcdcd;
  border-left: 1px solid #cfcdcd;
  border-right: 1px dotted #cfcdcd;
}
.table-type02 span:nth-of-type(2) {
  display: block;
  width: 140px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  border-top: 1px solid #cfcdcd;
  border-right: 1px dotted #cfcdcd;
}
.table-type02 span:last-of-type {
  display: block;
  width: 230px;
  padding: 10px;
  box-sizing: border-box;
  border-top: 1px solid #cfcdcd;
  border-right: 1px solid #cfcdcd;
  text-align: center;
}
.table-type02 li:last-of-type span {
  border-bottom: 1px solid #cfcdcd;
}
.table-type03 {
  border-collapse: collapse;
  margin: 30px 0;
  padding: 0;
}
.table-type03 li {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  font-weight: 500;
}
.table-type03 li.table-type03-item span {
  width: 20%;
  text-align: center;
  background: #ebf3d5;
  font-weight: bold;
  padding: 10px;
  border-bottom: 1px solid #cfcdcd;
}

.table-type03 span {
  display: block;
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  border-top: 1px solid #cfcdcd;
  border-right: 1px dotted #cfcdcd;
}
.table-type03 span:first-of-type {
  display: block;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #cfcdcd;
  border-left: 1px solid #cfcdcd;
  border-right: 1px dotted #cfcdcd;
}
.table-type03 span:last-of-type {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  border-top: 1px solid #cfcdcd;
  border-right: 1px solid #cfcdcd;
  text-align: center;
}
.table-type03 li:last-of-type span {
  border-bottom: 1px solid #cfcdcd;
}
table.table-type04,
table.table-type05,
table.table-type06,
table.table-type07 {
  width: 80%;
  margin: 2em 0;
  border: 1px solid #cfcdcd;
  line-height: 1.3;
}
table.table-type07 {
  width: 100%;
}
table.table-type04 th,
table.table-type05 th,
table.table-type06 th,
table.table-type07 th {
  padding: 10px;
  background: #ebf3d5;
  border-left: 1px solid #cfcdcd;
  border-bottom: 2px solid #cfcdcd;
  font-weight: 500;
}
table.table-type04 td,
table.table-type05 td,
table.table-type06 td,
table.table-type07 td {
  padding: 10px 20px;
  border-left: 1px solid #cfcdcd;
  border-bottom: 1px solid #cfcdcd;
  font-weight: 500;
}
table.table-type04 td:first-of-type {
  background: #f2f2f2;
}
table.table-type05 th {
  width: 50%;
  border-left: 1px dashed #cfcdcd;
  box-sizing: border-box;
}
table.table-type06 th,
.table-type07 th {
  width: 33%;
  box-sizing: border-box;
  border-left: 1px dashed #cfcdcd;
}
table.table-type07 th {
  width: 25%;
}
table.table-type05 td,
table.table-type06 td,
.table-type07 td {
  border-left: 1px dashed #cfcdcd;
}
table.table-type08 {
  border: 1px solid #cfcdcd;
  line-height: 1.3;
}
table.table-type08 th {
  padding: 10px;
  border: 1px solid #cfcdcd;
  font-weight: 500;
}
table.table-type08 td {
  padding: 10px;
  border: 1px solid #cfcdcd;
  font-weight: 500;
}
.table-bg-red {
  background: #68ad33;
  color: #fff;
}
.table-bg-blue {
  background: #b4d699;
}
.table-bg-green {
  background: #f4f9f1;
}
.table-bg-yellow {
  background: #b4d699;
}
.table-bg-orange {
  background: #8ec266;
}
.table-bg-gray {
  background: #f1f1f1;
}
.table-bg-deepgray {
  background: #f6f6f6;
}
.table-type09 {
  width: 60%;
  border: 1px solid #cfcdcd;
  text-align: left;
}
.table-type09 td,
.table-type09 th {
  border: 1px solid #cfcdcd;
  padding: 10px;
  font-weight: 500;
}
.table-type09 td {
  width: calc(100% / 3);
}
.table-type09 tr td:nth-of-type(1) {
  background: #f6f6f6;
}
.table-type08__margin {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .table-type09 {
    width: 100%;
    margin: auto;
  }
  .table-type09 td {
    width: calc(100% / 3);
  }
}

/*------
テーブル横スクロール
-----*/
.table-scroll {
  overflow: auto;
  white-space: nowrap;
}
.table-scroll::-webkit-scrollbar {
  height: 5px;
}
.table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.table-scroll::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}
/*------
テーブルレスポンシブ
-----*/
table.table-type-responsive {
  width: 70%;
  margin: 0 auto;
}
.table-type-responsive table,
.table-type-responsive td,
.table-type-responsive th {
  border: 1px solid #cfcdcd;
}
.table-type-responsive {
  line-height: 1.3;
}
.table-type-responsive th {
  background: #f4f9f1;
  padding: 10px;
  width: 30%;
}
.table-type-responsive td {
  padding: 10px;
  width: 70%;
}
@media screen and (max-width: 640px) {
  table.table-type-responsive {
    width: auto;
    margin: 0 auto;
  }
  .table-type-responsive th,
  .table-type-responsive td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

/*---
コラム用フレックスボックス
----*/
.flexbox-for-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flc-column2-50 {
  width: 48%;
  margin: 0 auto;
}

/*--- よくある質問 ----*/
.faq-bg {
  background-color: #f6f6f6;
  padding: 30px 50px 50px;
  margin-bottom: 110px;
}
.faq-bg.faq-bg--mb {
  margin-bottom: 60px;
}

.faq-tit {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #4d4d4d;
  margin-bottom: 45px;
}

.faq-tit::before {
  display: none;
}

.faq-list {
  margin: 0 auto;
  padding: 0;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item:last-of-type {
  margin-bottom: 0;
}

.faq-heading {
  position: relative;
  background-color: #aabb3b;
  padding: 12px 56px 12px 17px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-sizing: border-box;
  line-height: 1.3;
  cursor: pointer;
}

.faq-heading dl {
  display: flex;
  margin: 0;
}

.faq-heading dl dd {
  margin-left: 10px;
}

.faq-heading::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  right: 25px;
  top: calc(50% - 5px);
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.3s;
  box-sizing: border-box;
}

.faq-heading.active::before {
  bottom: 8px;
  transform: rotate(-45deg);
}

.faq-wrap {
  display: none;
  padding: 0;
}

.faq-box {
  padding: 10px 18px 9px;
  border: 1px solid #aabb3b;
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #fff;
  color: #4c4c4c;
  line-height: 1.3;
  margin: 0;
}

.faq-box dt {
  color: #aabb3b;
  font-size: 24px;
}

.faq-box dd {
  font-size: 16px;
  font-weight: normal;
}

/*------------------------------
SP用
------------------------------*/
@media (max-width: 768px) {
  ul.column-news-list li {
    width: 100%;
    margin: 20px auto;
  }
  .column-list-photo-left,
  .column-text-right {
    width: 100%;
  }
  .column-list-photo-left figure {
    position: inherit;
    height: auto;
  }
  .column-list-photo-left img {
    position: inherit;
    transform: none;
    width: 100%;
    height: auto;
  }
  figure.column-main-image {
    height: auto;
  }
  .column-breadcrumb h1 {
    font-size: 24px;
  }
  h2.h2-type01 {
    font-size: 22px;
  }
  h3.h3-type02 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  h3.h3-type02 span {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 10px;
    padding: 5px 10px;
  }
  h4.h4-type02 {
    text-align: left;
  }
  .table-type02 {
    padding: 0;
  }
  table.table-type04,
  table.table-type05,
  table.table-type06 {
    width: 100%;
  }
  table.table-type04 td,
  table.table-type05 td,
  table.table-type06 td,
  table.table-type07 td {
    padding: 6px;
  }
  .flc-column2-50 {
    width: 100%;
    margin: 10px auto;
  }
  table.table-type08 th,
  table.table-type08 td {
    padding: 5px;
  }
  ul.success-case-list li {
    width: 100%;
    margin: 1em auto;
  }

  /*--- よくある質問 ----*/
  .faq-bg {
    background-color: #f6f6f6;
    padding: 24px 20px;
    margin-bottom: 0;
  }
  .faq-bg.faq-bg--mb {
    margin-bottom: 40px;
  }
  .faq-tit {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .faq-list {
    padding: 0;
  }

  .faq-item {
    margin-bottom: 24px;
  }
  .faq-heading {
    padding: 8px 35px 8px 15px;
    font-size: 16px;
    margin: 0;
  }
  .faq-heading dd {
    margin-left: 10px;
  }
  .faq-heading::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    right: 13px;
  }

  .faq-heading.active::before {
    bottom: 8px;
    transform: rotate(-45deg);
  }
  .faq-box {
    padding: 12px 10px 8px;
    border: 1px solid #aabb3b;
    display: flex;
    font-size: 1.4rem;
  }

  .faq-box dt {
    letter-spacing: -0.5em;
    color: #aabb3b;
    font-size: 18px;
    vertical-align: top;
  }

  .faq-box dd {
    font-size: 14px;
    margin-left: 20px;
  }
}

/*------
コラム用CTA
-----*/

.column-cta {
  margin: 5em auto 4em;
  width: 95%;
}
.column-cta-ttl {
  position: relative;
  padding: 40px 25px 20px;
  background: #4f9a46;
  border-radius: 10px 10px 0 0;
}
.column-cta-ttl .sub {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  text-align: center;
  padding: 8px 10px 11px;
  border-radius: 30px;
  background: #f79f0e;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.column-cta-ttl .sub:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
}
.column-cta-ttl .sub:after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  margin-left: -14px;
  border: 14px solid transparent;
  z-index: 1;
  border-top: 14px solid #f79f0e;
}
.column-cta-ttl .icon-wrap {
  text-align: center;
}
.column-cta-ttl .icon-wrap .sub-logo-txt {
  margin-right: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  vertical-align: 1.2em;
  letter-spacing: 0.05em;
}
.column-cta-ttl .icon-wrap img {
  display: inline-block;
  width: 180px;
  height: 68px;
  vertical-align: -0.4em;
}
.column-cta-detail {
  background: #f2f2f2;
  padding: 40px 35px;
  border-radius: 0 0 10px 10px;
}
.column-cta-detail .inner {
  margin: 55px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.column-cta-detail h3 {
  font-size: 1.7rem;
  font-weight: bold;
  color: #09a142;
  text-align: center;
}
.column-cta-detail .column-cta-img {
  width: 380px;
}
.column-cta-detail .column-cta-txt {
  padding: 0;
  font-size: 0.95em;
  width: 360px;
  line-height: 1.8;
}
.column-cta-detail .column-cta-txt img {
  display: block;
  margin: 0 0 25px;
}
.column-cta-detail .btn-wrap {
  margin: 2.5em auto 0;
  max-width: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .column-cta-ttl {
    padding: 35px 25px 15px;
  }
  .column-cta-ttl .sub {
    top: -20px;
    width: 240px;
    padding: 6px 5px 8px;
    font-size: 1.05rem;
  }
  .column-cta-ttl .icon-wrap .sub-logo-txt {
    display: block;
    margin: 0;
  }
  .column-cta-ttl .icon-wrap img {
    width: 150px;
    height: 59px;
  }
  .column-cta-detail {
    padding: 30px 20px;
  }
  .column-cta-detail h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .column-cta-detail .inner {
    display: block;
    width: 100%;
    margin: 0 0 1em;
  }
  .column-cta-detail .column-cta-img {
    margin: 1.5em auto 2.5em;
    width: 100%;
  }
  .column-cta-detail .column-cta-txt {
    width: 100%;
    font-size: 0.9rem;
    text-align: left;
  }
  .column-cta-detail .btn-wrap {
    display: block;
    margin: 2em auto 0;
  }
  .column-cta-detail .btn-wrap div:first-child {
    margin-bottom: 20px;
  }
  h4.h4-type01 {
    margin-top: 25px;
    flex-direction: column;
    font-size: 18px;
    padding: 0 0 10px 0;
  }
  span.span-type01 {
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
    height: auto;
    margin-right: 0;
    margin-bottom: 5px;
  }
  span.span-type01::after {
    content: none;
  }
}

/*------
コラム用CTA（請求書用）
-----*/
.column-cta__invoice {
  position: relative;
  background: #f2f2f2;
  margin: 60px 0;
  padding: 50px 40px 30px;
  border-radius: 10px;
}

.column-cta__invoice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00a33e;
  width: 100%;
  height: 15px;
  border-radius: 10px 10px 0 0;
}

.column-cta__invoice .column-cta__invoice--sub {
  position: absolute;
  top: -20px;
  left: calc(50% - 130px);
  min-width: 260px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #f79f0e;
  padding: 10px 30px;
  border-radius: 50vh;
}

.column-cta__invoice .column-cta__invoice--sub::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: calc(50% - 14px);
  width: 0;
  height: 0;
  border: 14px solid transparent;
  border-top: 14px solid #f79f0e;
}

.column-cta__invoice .column-cta__invoice--hdg {
  color: #333;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

.column-cta__invoice .column-cta__invoice--hdg span {
  color: #00a33e;
}

.column-cta__invoice p {
  text-align: center;
  padding: 0;
  margin: 0 0 20px 0;
}

.column-cta__invoice .column-cta__invoice--btn {
  display: flex;
  margin-bottom: 20px;
}

.column-cta__invoice .column-cta__invoice--note span {
  margin-right: 10px;
}

.column-cta__invoice .column-cta__invoice--note {
  display: flex;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .column-cta__invoice {
    margin: 40px 0;
    padding: 50px 20px 30px;
  }
  .column-cta__invoice .column-cta__invoice--hdg {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .column-cta__invoice .column-cta__invoice--sub {
    font-size: 16px;
    padding: 10px 20px;
    min-width: 200px;
    left: calc(50% - 100px);
  }
  .column-cta__invoice p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .column-cta__invoice .column-cta__invoice--btn {
    flex-direction: column;
  }

  .column-cta__invoice .column-cta__invoice--btn .cta-btn2 {
    margin-bottom: 15px;
  }
}

/*------
カテゴリー
-----*/

.column-category-section {
  margin: 0 auto;
  padding: 20px 0 0;
  max-width: 1050px;
}
.column-category {
  margin: 40px 0;
  padding: 20px 30px 20px;
  background-color: #f2f2f2;
  border-radius: 5px;
}
.column-category .title-category {
  margin: 0 0 15px;
  padding-left: 5px;
  font-size: 120%;
  font-weight: bold;
}
.column-category .column-list-category-name {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
.column-category .column-list-category-name li {
  display: inline-block;
  margin-top: 8px;
}
.column-category .column-list-category-name li a {
  padding: 5px 15px 3px;
  margin-right: 10px;
  color: #333;
  border: 1px solid #e1e1e1;
  font-size: 15px;
  background: none repeat scroll 0 0 #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 5px;
}
.column-category .column-list-category-name li a:hover,
.column-category .column-list-category-name li a.active {
  color: #fff;
  background: #09a142;
  border: 1px solid #09a142;
  box-shadow: none;
}
@media (max-width: 768px) {
  .column-category {
    margin: 10px 0;
    padding: 15px 20px 10px;
    border-radius: 0;
  }
  .column-category .title-category {
    margin: 0 0 10px;
    font-size: 110%;
  }
  .column-category .column-list-category-name li {
    margin: 5px 0 15px;
  }
  .column-category .column-list-category-name li a {
    padding: 3px 12px 6px;
    font-size: 14px;
  }
}

/*------
おすすめ記事
-----*/

.column-recommend-section {
  margin: 4em 0 2em;
  padding: 25px 0 40px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.column-recommend-section h3.ttl-recommend {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  padding: 10px;
  margin-bottom: 1em;
  color: #09a142;
  letter-spacing: 0.05em;
}
.column-recommend-list .column-list-photo-left figure {
  height: 150px;
}
.column-recommend-list .column-text-right {
  padding: 20px 0 20px;
}
.column-recommend-list .column-text-right h3 {
  font-size: 15px;
}

.column-recommend-list li a .column-list-photo-left figure img {
  width: auto;
}

@media (max-width: 768px) {
  .column-recommend-section {
    margin: 4em 0 4em;
    padding: 10px 0 20px;
  }
  .column-recommend-section h3.ttl-recommend {
    margin-bottom: 0.5em;
  }
  .column-recommend-list li a .column-list-photo-left figure img {
    width: 100%;
  }
}
/*-------------------- side20200930 --------------------*/
/*-------------------- clomn-side --------------------*/
.column-detail .side_area {
  width: 250px;
  margin: 30px auto;
}

@media screen and (max-width: 768px) {
  .column-detail .side_area {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

/*----------bn-box----------*/

.column-detail .side_area .bn-box img,
.column-detail .side_area .bn-box02 img {
  width: 100%;
}
.column-detail .side_area .bn {
  margin: 0 0 35px 0;
}
.column-detail .side_area .bn a,
.column-detail .side_area .bn02 a {
  transition: all 0.3s;
}
.column-detail .side_area .bn a:hover,
.column-detail .side_area .bn02 a:hover {
  opacity: 0.85;
}
.bn-box02 {
  position: sticky;
  top: 120px;
  margin: 40px 0 0;
  width: 250px;
}
.column-detail .side_area .bn02 {
  margin: 15px 0 0 0;
}
.bn-box02 .ttl {
  position: relative;
  width: 100%;
  background: #50ba78;
  padding: 5% 10px;
  box-sizing: border-box;
}
.bn-box02 .ttl h3 {
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .column-detail .side_area .bn-box {
    margin: 0 0 40px 0;
  }
  .column-detail .side_area .bn {
    margin: 0 0 20px 0;
  }
  .column-detail .side_area .bn-box02 {
    margin: 40px 0 0 0;
    width: 100%;
  }
  .column-detail .side_area .bn02 {
    margin: 20px 0 0 0;
  }
}

/*----------side-category----------*/
.column-detail .side_area .side-category {
  margin: 0 0 40px 0;
}
.column-detail .side_area .side-category .ttl {
  width: 100%;
  background: #50ba78;
  background-size: 10px 8px;
  font-size: 1.2rem;
  padding: 5% 20px;
  box-sizing: border-box;
}
.column-detail .side_area .side-category .ttl h3 {
  color: #fff;
  text-align: center;
  font-size: 1.18rem;
  margin: 0;
}
.column-detail .side_area .side-category ul,
.column-detail .side_area .side-category li {
  list-style: none;
  padding: 5px 0 0;
  margin: 0;
}
.column-detail .side_area .side-category li {
  border-bottom: 1px dotted #47b08a;
}
.column-detail .side_area .side-category li a {
  color: #111;
  font-size: 14px;
  padding-right: 15px;
  position: relative;
  display: block;
  padding: 15px 0;
}
.column-detail .side_area .side-category li a:hover {
  color: #09a142;
}
.column-detail .side_area .side-category li a:before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid #47b08a;
  border-right: 1px solid #47b08a;
  transform: rotate(45deg);
  top: 50%;
  right: 5px;
  margin-top: -3px;
}

@media screen and (max-width: 768px) {
  .column-detail .side_area .side-category {
    margin: 0 0 25px 0;
  }
  .column-detail .side_area .side-category .ttl {
    font-size: 1.1rem;
    text-align: center;
    padding: 12px 12px;
  }
  .column-detail .side_area .side-category li a {
    font-size: 13px;
    padding-right: 10px;
    padding: 10px 10px 10px 0;
  }
  .column-detail .side_area .side-category li a:before {
    width: 4px;
    height: 4px;
    right: 10px;
    margin-top: -2px;
  }
}

/*----------article-list02----------*/
.column-detail .side_area .article-list02 {
  width: 250px;
}
.column-detail .side_area .article-list02 .ttl {
  width: 100%;
  background: #50ba78;
  font-size: 1.2rem;
  padding: 5%;
  box-sizing: border-box;
  position: relative;
}
.column-detail .side_area .article-list02 .ttl h3 {
  color: #fff;
  font-size: 1.18rem;
  text-align: center;
}
.column-detail .side_area .article-list02 .block-area,
.column-detail .side_area .bn-box02 .block-area {
  background: #f2f4f6;
  box-sizing: border-box;
  padding: 25px 10px 15px;
  margin-top: -20px;
  z-index: 0;
}
.column-detail .side_area .article-list02 ul,
.column-detail .side_area .article-list02 li,
.column-detail .side_area .bn-box02 ul,
.column-detail .side_area .bn-box02 li {
  list-style: none;
  padding: 5px 0 0;
  margin: 0;
}
.column-detail .side_area .article-list02 li,
.column-detail .side_area .bn-box02 li {
  padding: 0 0 15px 0;
}

.column-detail .side_area .article-list02 li:last-child,
.column-detail .side_area .bn-box02 li:last-child {
  padding: 0 0 0 0;
}

.column-detail .side_area .article-list02 li a,
.column-detail .side_area .bn-box02 li a {
  position: relative;
  display: table;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 8, 20, 0.06);
  color: #000;
  position: relative;
  transition: all 0.3s;
}
.column-detail .side_area .article-list02 li a::before,
.column-detail .side_area .bn-box02 li a::before {
  display: block;
  content: "";
  position: absolute;
  border-right: 4px solid #47b08a;
  border-bottom: 4px solid #47b08a;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  bottom: 3px;
  right: 3px;
}
.column-detail .side_area .article-list02 li a:after,
.column-detail .side_area .bn-box02 li a:after {
  content: " ";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0 solid #09a142;
  -webkit-transition: border 0.25s ease-in-out;
  transition: border 0.25s ease-in-out;
}
.column-detail .side_area .article-list02 li a:hover,
.column-detail .side_area .bn-box02 li a:hover {
  opacity: 0.85;
}
.column-detail .side_area .article-list02 li a:hover:after,
.column-detail .side_area .bn-box02 li a:hover:after {
  border: 3px solid #09a142;
}
.column-detail .side_area .article-list02 li .img-box {
  display: table-cell;
  vertical-align: middle;
}
.column-detail .side_area .article-list02 li .img-box img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  font-family: "object-fit: cover";
  vertical-align: bottom;
}
.column-detail .side_area .article-list02 li .txt-box {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
  padding: 0 10px;
}
.column-detail .side_area .article-list02 li .txt-box p {
  font-size: 0.75rem;
  line-height: 1.4em;
  display: table;
  height: 100%;
}
.column-detail .side_area .article-list02 li .txt-box span {
  display: table-cell;
  vertical-align: middle;
}
.column-detail .side_area .bn-box02 .img-shiryo img {
  display: block;
  margin: 0 auto;
  width: 85%;
}
.column-detail .side_area .bn-box02 li a {
  padding: 10px;
  box-sizing: border-box;
}
.column-detail .side_area .bn-box02 .shiryo_ttl {
  margin: 0 0 5px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #09a142;
  line-height: 1.4;
}
.column-detail .side_area .bn-box02 .shiryo_comment {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .column-detail .side_area .article-list02 .ttl {
    height: inherit;
    font-size: 1.1rem;
  }

  .column-detail .side_area .article-list02 .block-area {
    background: #f2f4f6;
    box-sizing: border-box;
    padding: 25px 10px 15px;
    margin-top: -10px;
    z-index: 0;
  }

  .column-detail .side_area .article-list02 li {
    padding: 0 0 15px 0;
  }

  .column-detail .side_area .article-list02 li:last-child {
    padding: 0 0 0 0;
  }

  .column-detail .side_area .article-list02 li .img-box {
    width: 100px;
  }

  .column-detail .side_area .article-list02 li .img-box img {
    width: 100px;
    height: 100px;
  }

  .column-detail .side_area .article-list02 li .txt-box {
    padding: 0 10px;
  }
  .column-detail .side_area .article-list02 li .txt-box p {
    font-size: 0.9rem;
  }
  .column-detail .side_area .article-list02 .ttl h3 {
    margin: 0;
  }
  .column-detail .side_area .article-list02 {
    width: 100%;
  }
}

/*-------------------- 20210929 --------------------*/
.bnr-area a {
  width: 50%;
  display: block;
}
@media screen and (max-width: 768px) {
  .bnr-area a {
    width: 100%;
  }
}

/*------
監修者エリア
-----*/

.supervisor {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 60px;
  padding: 20px 40px 30px;
  display: flex;
  align-items: center;
}

.supervisor dl {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px;
}

.supervisor dl dt {
  font-size: 15px;
  margin-right: 10px;
  color: #636363;
  padding-right: 10px;
  border-right: 2px solid #ccc;
}

.supervisor dl dt span {
  color: #333;
  margin-right: 10px;
  padding: 3px 10px;
  background-color: #f2f2f2;
  border-radius: 2px;
}

.supervisor dl dd {
  margin-left: 0;
}

.supervisor .supervisor__item--img {
  width: 150px;
  height: 150px;
  border-radius: 50vh;
  margin-left: 40px;
}

.supervisor .supervisor__item--txt p {
  margin: 0 0 15px;
  padding: 0;
  line-height: 1.5;
}

.supervisor .supervisor__item--txt a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .supervisor {
    flex-direction: column-reverse;
    padding: 20px;
    text-align: left;
    margin-bottom: 40px;
  }
  .supervisor .supervisor__item--img {
    width: 120px;
    height: 120px;
    margin: 0 0 20px 0;
  }
  .supervisor dl {
    justify-content: center;
    font-size: 16px;
  }
  .supervisor .supervisor__item--txt p,
  .supervisor .supervisor__item--txt a {
    font-size: 14px;
  }
}

/*------
送信書
-----*/

.transmittal-letter .hdg-main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #323232;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin: 20px 0 0 0;
}

.transmittal-letter .transmittal-letter__day {
  text-align: right;
  margin: 0;
  padding: 0;
}

.transmittal-letter .transmittal-letter__company {
  display: flex;
  margin: 0;
  padding: 0;
}

.transmittal-letter .transmittal-letter__info {
  display: flex;
  justify-content: end;
  margin: 20px 0 0 0;
  padding: 0;
}

.transmittal-letter .text-r {
  margin: 0;
  padding: 0;
  text-align: right;
}

.transmittal-letter .hdg-sub {
  text-align: center;
  color: #323232;
  font-size: 18px;
  font-weight: bold;
}

.transmittal-letter .transmittal-letter__num {
  text-align: right;
  margin: 0;
  padding: 0;
}

.transmittal-letter .transmittal-letter__num .text-style-frame {
  display: inline-block;
  padding: 8px 10px 5px;
  margin: 0;
}

.transmittal-letter div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.transmittal-letter div ul li,
.transmittal-letter div ol li {
  font-size: 20px;
}

.transmittal-letter div ul li + li,
.transmittal-letter div ol li + li {
  margin-top: 10px;
}

.transmittal-letter div ul li span,
.transmittal-letter div ol li span {
  display: inline-block;
  margin-right: 10px;
}

.transmittal-letter .transmittal-letter__txt {
  display: flex;
  margin: 20px 0 0 0;
  padding: 0;
}

.text-style-circle {
  min-width: 24px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .transmittal-letter .hdg-main {
    font-size: 18px;
  }

  .transmittal-letter .hdg-sub {
    font-size: 16px;
  }

  .transmittal-letter div ul li,
  .transmittal-letter div ol li {
    font-size: 14px;
  }

  .transmittal-letter .transmittal-letter__day,
  .transmittal-letter .transmittal-letter__company,
  .transmittal-letter .transmittal-letter__info,
  .transmittal-letter .transmittal-letter__num,
  .transmittal-letter .text-r,
  .transmittal-letter .transmittal-letter__txt {
    font-size: 12px;
    margin-top: 15px;
  }
}

/* 2024/01/23追加 */
.writing {
  padding: 0 0 30px;
}
.writing .ttl {
  font-size: 18px;
  margin: 0 0 15px 0;
  color: #323232;
}
.writing .text-box {
  width: 100%;
  border: 5px solid #f2f4f6;
  padding: 10px 32px 10px 37px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
}
.writing .text-box .img-box {
  width: 148px;
  padding: 0;
  margin-right: 30px;
  box-sizing: border-box;
}
.writing .text-box .img-box img {
  width: 100%;
  height: auto;
}
.writing .text-box .text01 {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.8;
  width: 70%;
  padding: 10px 0 10px 30px;
  box-sizing: border-box;
  position: relative;
}
.writing .text-box .text01:before {
  content: "";
  display: block;
  position: absolute;
  top: 8%;
  left: 0;
  width: 2px;
  height: 90%;
  background: #f2f4f6;
}
.writing .text-box .text01 span {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .writing {
    padding: 20px 0 30px;
  }
  .writing .ttl {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .writing .text-box {
    border: 3px solid #f2f4f6;
    padding: 0 15px 0 15px;
  }
  .writing .text-box .img-box {
    padding-right: 5%;
    width: 30%;
  }
  .writing .text-box .img-box img {
    width: 100%;
  }
  .writing .text-box .text01 {
    font-size: 13px;
    line-height: 1.6;
    padding: 10px 0 10px 8%;
    text-align: justify;
  }
  .writing .text-box .text01:before {
    top: 9%;
    height: 85%;
  }
}
@media screen and (max-width: 576px) {
  .writing {
    padding: 0 0 10px;
  }
  .writing .ttl {
    display: none;
  }
  .writing .text-box {
    padding: 15px 20px 15px 23px;
  }
  .writing .text-box .img-box {
    width: 80px;
    padding: 0;
    margin-right: 20px;
  }
  .writing .text-box .text01 {
    flex: 1;
    font-size: 12px;
    line-height: 1.6;
    padding: 0;
    padding-left: 21px;
  }
}
/* 2024/02/16修正 */
.column__list li::before {
  top: 5px;
}
