<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
  File Name   : body.css
  Description : Write content styles
*/
/* default
============================================================ */
/*** structure ***/
html {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
}
@media only screen and (max-width: 811px) {
  html {
    font-size: 16px;
  }
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  min-width: 320px;
  margin: 0;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8em;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-break: break-all;
  margin-top: 90px;
}
@media only screen and (max-width: 811px) {
  body {
    font-size: 16px;
    margin-top: 60px;
  }
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}

body &gt; footer,
body &gt; header {
  width: 100%;
  min-width: 320px;
}

/*** text ***/
p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

div {
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4 {
  line-height: 1;
  margin: 0;
}

h4,
h5,
h6 {
  font-size: 1em;
  margin: 0;
}

small,
.font-small {
  font-size: 0.875em;
}

sub {
  vertical-align: baseline;
  position: relative;
  bottom: -0.2em;
  margin-left: 1px;
}

sup {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  margin-left: 1px;
}

iframe {
  max-width: 100%;
  border: none;
}

/*** list ***/
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}

li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}

/*** object ***/
embed,
object {
  vertical-align: bottom;
}

/*** presentation ***/
u {
  font-size: inherit;
  text-decoration: underline;
}

/*** hypertext ***/
a {
  font-size: inherit;
  color: #00913A;
}

a:hover,
a:active {
  opacity: 0.8;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

a img {
  border: none;
}

/*** a tel: ***/
@media only screen and (min-width: 482px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
    text-decoration: none;
    color: inherit;
  }
}

/*** edit ***/
del {
  color: #666;
  font-size: inherit;
  text-decoration: line-through;
}

ins {
  border-bottom: 1px dotted #ccc;
  font-size: inherit;
  text-decoration: none;
}

/*** forms ***/
legend {
  white-space: normal;
}

button,
input,
label,
select,
textarea,
form img {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  max-width: 100%;
}

input,
select,
textarea {
  outline: none;
  color: #231815;
  border: 1px solid #6c6c6c;
}

input[type=text],
input[type=number],
input[type=search],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=time],
input[type=email],
input[type=tel],
input[type=telephone],
input[type=url],
input[type=password],
select,
textarea {
  max-width: 100%;
  border-radius: 0;
}

button,
input[type=color],
input[type=file],
input[type=image],
input[type=range] {
  border: none;
  padding: 0;
  background: none;
}

input[type=checkbox],
input[type=color],
input[type=radio],
input[type=range],
select {
  cursor: pointer;
}

input[type=color],
input[type=file],
input[type=image],
input[type=range] {
  border: none;
}

input[type=password] {
  ime-mode: disabled;
}

input[disabled],
input[readonly],
select[disabled],
select[readonly] {
  cursor: default;
}

textarea {
  resize: vertical;
}

label + label,
label + input[type=checkbox],
label + input[type=radio] {
  margin-left: 10px;
}

label &gt; input[type=checkbox],
label &gt; input[type=radio] {
  margin-right: 5px;
}

input[type=checkbox] + label,
input[type=radio] + label {
  margin-left: 5px;
}

form a img {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

form a img,
input[type=button],
input[type=image],
input[type=reset],
input[type=submit],
button {
  border-radius: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

form a:hover img,
form a:active img,
input[type=button]:hover,
input[type=button]:active,
input[type=image]:hover,
input[type=image]:active,
input[type=reset]:hover,
input[type=reset]:active,
input[type=submit]:hover,
input[type=submit]:active,
button:hover,
button:active {
  opacity: 0.8;
}

label.error,
input.error {
  background: #ffeeee;
}

/*** tables ***/
table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

table th,
table td {
  font-size: inherit;
  word-break: break-all;
}

table th &gt; :last-child,
table td &gt; :last-child {
  margin-bottom: 0;
}

/*** image ***/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

/*** selection ***/
::-moz-selection {
  color: #fff;
  background: #999;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #999;
  text-shadow: none;
}

input::-moz-selection, textarea::-moz-selection {
  color: #231815;
}

input::selection,
textarea::selection {
  color: #231815;
}

/*** placeholder ***/
::-webkit-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
::-moz-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
::placeholder {
  color: #6c6c6c;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

:focus::-ms-input-placeholder {
  color: transparent;
}

:focus::placeholder {
  color: transparent;
}

:focus::-ms-input-placeholder {
  color: transparent;
}

/* utiiities
============================================================ */
/*** float ***/
.com-clear {
  clear: both;
}

/*** hide ***/
.com-hide {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
}

/*** clearfix ***/
.com-clearfix::before,
.com-clearfix::after {
  content: "";
  display: table;
}

.com-clearfix::after {
  clear: both;
}

/*** align ***/
.com-align_r {
  text-align: right !important;
}

.com-align_c {
  text-align: center !important;
}

.com-align_l {
  text-align: left !important;
}

.com-justify {
  text-align: justify;
}

/*** panel layout ***/
.com-panel-layout {
  display: table;
  width: auto;
  table-layout: fixed;
  word-spacing: -0.4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.com-panel-layout .panel-layout-child,
.com-panel-layout &gt; article,
.com-panel-layout &gt; figure,
.com-panel-layout &gt; li,
.com-panel-layout &gt; div,
.com-panel-layout &gt; p,
.com-panel-layout &gt; section {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  word-spacing: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*** disable-tel ***/
.com-disable-tel {
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
}

/*** color ***/
.red {
  color: red;
}

.red2 {
  color: #f80000;
}

.orange {
  color: orange;
}

.blue {
  color: blue;
}

.navy {
  color: navy;
}

.green {
  color: green;
}

.yellow {
  color: yellow;
}

.yellow2 {
  color: #ffff00;
}

/*** 印刷時用設定 ***/
@media print {
  body,
header,
footer {
    min-width: 1060px !important;
  }
}

@media print {
  header {
    position: absolute !important;
  }
}

/*
*   汎用Class
*----------------------------*/
.attached_icon {
  width: auto;
  height: 20px;
  margin: 5px 5px 5px 0;
  vertical-align: middle;
}

.com-section &gt; section {
  margin-bottom: 100px;
}
@media only screen and (max-width: 811px) {
  .com-section &gt; section {
    margin-bottom: 50px;
  }
}
.com-section &gt; section:last-child {
  margin-bottom: 0;
}

.com-sect-desc {
  margin-bottom: 1.5rem;
}
.com-sect-desc:last-child {
  margin-bottom: 0;
}

.com-date-txt {
  color: #00913A;
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
  margin-bottom: 3em !important;
}

h1 + .com-date-txt {
  margin: 1rem 0;
}

.com-print-txt {
  margin-bottom: 2.5em !important;
  text-align: right;
}

.com-print-txt a {
  display: inline-block;
  padding-left: 25px;
  background: url(../images/common/print-bg.svg) no-repeat left center;
  background-size: 20px auto;
}

h1 + .com-print-txt {
  margin-top: -3.5em !important;
}
@media only screen and (max-width: 811px) {
  h1 + .com-print-txt {
    margin-top: -1.25em !important;
  }
}

.com-date-txt + .com-print-txt {
  margin-top: -2.5em !important;
}

.com-print-link {
  margin-bottom: 2.5em !important;
  text-align: right;
}
.com-print-link a {
  display: inline-block;
  padding-left: 25px;
  background: url(../images/common/print-bg.png) no-repeat left center;
  background-size: 20px auto;
}

.com-print-btn-list {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2000;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
}
@media print {
  .com-print-btn-list {
    display: none;
  }
}
.com-print-btn-list a {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.com-print-btn-list a.close {
  padding-left: 23px;
}
.com-print-btn-list a.close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 19px;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.com-print-btn-list a.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 19px;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.com-print-btn-list a.print {
  padding-left: 25px;
  background: url(../images/common/print-bg-wht.svg) no-repeat left center;
  background-size: 20px auto;
}

.com-signature address {
  margin-top: 100px;
  padding: 20px;
  border: 1px solid #6c6c6c;
}

.com-signature address span {
  display: block;
  font-style: normal;
}

.com-signature address .department {
  margin-bottom: 0.5em;
  border-bottom: 1px solid #6c6c6c;
  font-size: 1.3333333333em;
  font-weight: bold;
}

@media only screen and (max-width: 811px) {
  .com-signature address {
    margin-top: 50px;
    padding: 20px;
  }

  .com-signature address .department {
    font-size: 1.2em;
  }
}
/*
*  画像用汎用Style
*----------------------------*/
/* 標準 */
.imgDefault {
  display: block;
  width: 100%;
  height: auto;
}

/* トリミング系 */
.imgCover {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.imgContain {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.imgScaleDown {
  display: block;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 100%;
  height: 100%;
}

/*
*  要素 非表示
*----------------------------*/
.dNone {
  display: none !important;
}

@media print, screen and (min-width: 812px) {
  .dNone-pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 812px) {
  .dNone-pcTab {
    display: none !important;
  }
}
@media only screen and (min-width: 482px) and (max-width: 811px) {
  .dNone-pcTab {
    display: none !important;
  }
}

@media only screen and (min-width: 482px) and (max-width: 811px) {
  .dNone-tab {
    display: none !important;
  }
}

@media only screen and (max-width: 811px) {
  .dNone-mbl {
    display: none !important;
  }
}

@media only screen and (max-width: 481px) {
  .dNone-sp {
    display: none !important;
  }
}

@media print {
  .dNnone-prt {
    display: none !important;
  }
}

/*
*  flex 左寄dummy要素用Class
*----------------------------*/
.isEmpty {
  height: 0 !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none !important;
}
.isEmpty::before, .isEmpty::after {
  content: none !important;
}

/*
*  非表示テキスト
*----------------------------*/
.hdnTxt {
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}
.hdnTxt::before, .hdnTxt::after {
  content: none !important;
}

.noWrap {
  display: inline-block;
}

.no-content {
  font-size: 1.2rem;
  text-align: center;
  padding: 1em 0 1em;
}

.desc {
  display: none !important;
}

/*
*   list 
*----------------------------*/
/* ul ol 共通 Style継承元 */
.com-list-base &gt; li {
  position: relative;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  padding: 0 0 0 1em;
  margin: 0 0 0.5em;
}
@media only screen and (max-width: 811px) {
  .com-list-base &gt; li {
    font-size: 16px;
  }
}
.com-list-base &gt; li:last-child {
  margin-bottom: 0;
}
.com-list-base &gt; li::before {
  display: block;
  width: 1.5em;
  height: 1.8em;
  top: 0;
  left: 0;
  position: absolute;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0em;
}

/* ul BASE */
.com-ul-base &gt; li, .com-cercle-list &gt; li, .com-cercle-list2 &gt; li, .com-asterisk-num-list &gt; li, .com-asterisk-list &gt; li, .com-ul-dot &gt; li, .contentBody ul:not(:not(.col-2):not(.col-3)[class]) &gt; li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8em;
  margin-bottom: 0.5em;
}
.com-ul-base &gt; li:last-child, .com-cercle-list &gt; li:last-child, .com-cercle-list2 &gt; li:last-child, .com-asterisk-num-list &gt; li:last-child, .com-asterisk-list &gt; li:last-child, .com-ul-dot &gt; li:last-child, .contentBody ul:not(:not(.col-2):not(.col-3)[class]) &gt; li:last-child {
  margin-bottom: 0;
}
.com-ul-base &gt; li::before, .com-cercle-list &gt; li::before, .com-cercle-list2 &gt; li::before, .com-asterisk-num-list &gt; li::before, .com-asterisk-list &gt; li::before, .com-ul-dot &gt; li::before, .contentBody ul:not(:not(.col-2):not(.col-3)[class]) &gt; li::before {
  content: "";
  position: absolute;
  left: 0;
}

/* ol BASE */
.com-ol-base, .com-circle-num-list_02, .com-circle-num-list, .com-paren-num-list, .com-ol-circle, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) {
  counter-reset: item;
}
.com-ol-base &gt; li, .com-circle-num-list_02 &gt; li, .com-circle-num-list &gt; li, .com-paren-num-list &gt; li, .com-ol-circle &gt; li, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) &gt; li {
  position: relative;
  padding-left: 2em;
  line-height: 1.8em;
  margin-bottom: 0.5em;
}
.com-ol-base &gt; li:last-child, .com-circle-num-list_02 &gt; li:last-child, .com-circle-num-list &gt; li:last-child, .com-paren-num-list &gt; li:last-child, .com-ol-circle &gt; li:last-child, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) &gt; li:last-child {
  margin-bottom: 0;
}
.com-ol-base &gt; li::before, .com-circle-num-list_02 &gt; li::before, .com-circle-num-list &gt; li::before, .com-paren-num-list &gt; li::before, .com-ol-circle &gt; li::before, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) &gt; li::before {
  content: counter(item) ".";
  position: absolute;
  counter-increment: item;
  position: absolute;
  left: 0;
}

.com-ul-dot, .contentBody ul:not(:not(.col-2):not(.col-3)[class]) {
  margin: 1rem 0 1rem;
}
.com-ul-dot &gt; li::before, .contentBody ul:not(:not(.col-2):not(.col-3)[class]) &gt; li::before {
  content: "・";
  color: #00913A;
}

.com-ol-circle, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) {
  counter-reset: item;
  margin-bottom: 1em;
}
.com-ol-circle &gt; li, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) &gt; li {
  position: relative;
  padding-left: 1.75em;
  line-height: 1.8em;
  margin-bottom: 0.5em;
}
.com-ol-circle &gt; li:last-child, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) &gt; li:last-child {
  margin-bottom: 0;
}
.com-ol-circle &gt; li::before, .contentBody ol:not(:not(.col-2):not(.col-3)[class]) &gt; li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  top: 0.625em;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  font-size: 0.75em;
  line-height: 1em;
  text-align: center;
  letter-spacing: 0em;
  background-color: #00913A;
  border-radius: 50%;
  padding: 0 0 0.1em;
}

.com-asterisk-list &gt; li {
  padding-left: 1.5em;
}
.com-asterisk-list &gt; li::before {
  content: "※";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 1.5em;
  height: 1.8em;
  top: 0;
  left: 0;
  background: none;
  border-radius: 0;
}

.com-asterisk-num-list {
  counter-reset: anum;
  list-style: none;
  text-indent: 0;
}
.com-asterisk-num-list &gt; li {
  counter-increment: anum;
  padding-left: 2em;
}
.com-asterisk-num-list &gt; li::before {
  content: "※" counter(anum);
  display: inline;
  width: auto;
  height: auto;
}

.com-cercle-list &gt; li::before, .com-cercle-list2 &gt; li::before {
  display: block;
  width: 0.8em;
  height: 0.8em;
  top: 0.5em;
  background: #231815;
  border-radius: 50%;
}

.com-cercle-list2 &gt; li::before {
  background: none;
  border: 1px solid #231815;
}

.com-paren-num-list &gt; li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "(" counter(item) ") ";
}

.com-circle-num-list &gt; li::before {
  content: counter(item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1.25rem;
  height: 1.25rem;
  top: 0.45em;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1em;
  border: 1px solid #231815;
  border-radius: 50%;
  text-align: center;
  padding: 0.3em 0 0;
}

.com-circle-num-list_02 &gt; li::before {
  content: counter(item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1.5rem;
  height: 1.5rem;
  top: 0.25em;
  color: #fff;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: -0.02em;
  background-color: #FF8438;
  border-radius: 50%;
  text-align: center;
  padding: 0.3em 0 0;
}

/*
*   hl
*----------------------------*/
/********** 共通設定 **********/
.com-hl-01, .contentBody h1, .pageTitle,
.com-hl-02,
.contentBody h2,
.com-hl-03,
.contentBody h3,
.com-hl-04,
.contentBody h4,
.com-hl-05,
.contentBody h5,
.com-hl-06,
.contentBody h6 {
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

/********** 外部余白設定 **********/
.com-hl-01, .contentBody h1, .pageTitle {
  margin-top: 1em;
  margin-bottom: 2em;
}
.com-hl-01:first-child, .contentBody h1:first-child, .pageTitle:first-child {
  margin-top: 0;
}

.com-hl-02, .contentBody h2 {
  margin-top: 1em;
  margin-bottom: 1.5em;
}
.com-hl-02:first-child, .contentBody h2:first-child {
  margin-top: 0;
}

.com-hl-03, .contentBody h3,
.com-hl-04,
.contentBody h4,
.com-hl-05,
.contentBody h5,
.com-hl-06,
.contentBody h6 {
  margin-top: 1em;
  margin-bottom: 1em;
}
.com-hl-03:first-child, .contentBody h3:first-child,
.com-hl-04:first-child,
.contentBody h4:first-child,
.com-hl-05:first-child,
.contentBody h5:first-child,
.com-hl-06:first-child,
.contentBody h6:first-child {
  margin-top: 0;
}

/********** 各見出しStyle **********/
.com-hl-01, .contentBody h1, .pageTitle {
  position: relative;
  color: #231815;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: left;
  padding: 0 0 0.5em;
}
.com-hl-01::before, .contentBody h1::before, .pageTitle::before {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 5px;
  background-color: #00913A;
  bottom: 0;
  right: 50;
}
@media only screen and (max-width: 811px) {
  .com-hl-01::before, .contentBody h1::before, .pageTitle::before {
    height: 3px;
  }
}

.com-hl-02, .contentBody h2 {
  position: relative;
  color: #231815;
  font-weight: 800;
  font-size: 1.6rem;
  padding: 0.25em 0.5em 0.25em 0.75em;
  background-color: #F7F7F0;
}
.com-hl-02::before, .contentBody h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #00913A;
}
@media only screen and (max-width: 811px) {
  .com-hl-02::before, .contentBody h2::before {
    width: 4px;
  }
}

.com-hl-03, .contentBody h3 {
  position: relative;
  color: #231815;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0 0.1em 0.5em;
  border-bottom: 2px solid #00913A;
}

.com-hl-04, .contentBody h4 {
  position: relative;
  color: #231815;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 0 0 1.25em;
}
.com-hl-04::before, .contentBody h4::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.65em;
  height: 3px;
  top: calc(1.53em * 0.5 + 1px);
  left: 0;
  background-color: #00913A;
}
@media only screen and (max-width: 811px) {
  .com-hl-04::before, .contentBody h4::before {
    height: 2px;
  }
}

.com-hl-05, .contentBody h5 {
  color: #231815;
  font-size: 1.2rem;
  color: #00913A;
  font-weight: 600;
}

.com-hl-06, .contentBody h6 {
  color: #231815;
  font-size: 1.2rem;
  font-weight: 600;
}

/********** 下層ページページタイトル用見出し **********/
.pageTitle {
  margin-bottom: 1.5em;
}
.pageTitle.withDate {
  margin-bottom: 0;
}

/*
*   table
*----------------------------*/
.com-table__base, .contentBody table, .com-table__dafault, .com-table-transform__sp, .com-table-transform__mbl, .com-table__03, .com-table__02, .com-table__01 {
  border-color: #ccc;
}
.com-table__base, .contentBody table, .com-table__dafault, .com-table-transform__sp, .com-table-transform__mbl, .com-table__03, .com-table__02, .com-table__01,
.com-table__base td,
.contentBody table td,
.com-table__dafault td,
.com-table-transform__sp td,
.com-table-transform__mbl td,
.com-table__03 td,
.com-table__02 td,
.com-table__01 td,
.com-table__base th,
.contentBody table th,
.com-table__dafault th,
.com-table-transform__sp th,
.com-table-transform__mbl th,
.com-table__03 th,
.com-table__02 th,
.com-table__01 th {
  border-collapse: collapse;
}
.com-table__base th, .contentBody table th, .com-table__dafault th, .com-table-transform__sp th, .com-table-transform__mbl th, .com-table__03 th, .com-table__02 th, .com-table__01 th, .com-table__base td, .contentBody table td, .com-table__dafault td, .com-table-transform__sp td, .com-table-transform__mbl td, .com-table__03 td, .com-table__02 td, .com-table__01 td {
  color: #231815;
  font-size: 1rem;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  text-align: left;
  vertical-align: top;
  padding: 0.75em 1.25em;
}
.com-table__base th, .contentBody table th, .com-table__dafault th, .com-table-transform__sp th, .com-table-transform__mbl th, .com-table__03 th, .com-table__02 th, .com-table__01 th {
  font-weight: bold;
  background-color: #F7F7F0;
}

.com-table__dafault, .com-table-transform__sp, .com-table-transform__mbl, .com-table__03, .com-table__02, .com-table__01,
.com-table__dafault td,
.com-table-transform__sp td,
.com-table-transform__mbl td,
.com-table__03 td,
.com-table__02 td,
.com-table__01 td,
.com-table__dafault th,
.com-table-transform__sp th,
.com-table-transform__mbl th,
.com-table__03 th,
.com-table__02 th,
.com-table__01 th {
  border: 1px solid #ccc;
}

/********** table01 **********/
/* 
* table幅：自動
* 列幅：自動
* SP時レイアウト：変更なし
*/
/********** table02 **********/
/* 
* table幅：100%
* 列幅：自動
* TABレイアウト：変更なし
* SPレイアウト：変更なし
*/
.com-table__02 {
  width: 100%;
}

/********** table03 **********/
/* 
* table幅：100%
* 列幅：均等
* TABレイアウト：変更なし
* SPレイアウト：変更なし
*/
.com-table__03 {
  width: 100%;
  table-layout: fixed;
}

/********** com-table-transform__mbl **********/
/* 
* table幅：100%
* 列幅：自動
* TABレイアウト：変更あり（一列 上：見出し/下：値）
* SPレイアウト：変更あり（一列 上：見出し/下：値）
*/
.com-table-transform__mbl {
  width: 100%;
}
@media print, screen and (min-width: 812px) {
  .com-table-transform__mbl {
    table-layout: fixed;
  }
}
@media only screen and (max-width: 811px) {
  .com-table-transform__mbl {
    border-bottom: none;
  }
}
@media only screen and (max-width: 811px) {
  .com-table-transform__mbl tr {
    display: block;
  }
}
@media only screen and (max-width: 811px) {
  .com-table-transform__mbl th {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid #ccc;
  }
}
@media only screen and (max-width: 811px) {
  .com-table-transform__mbl td {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid #ccc;
  }
}

/********** com-table-transform__sp **********/
/* 
* table幅：100%
* 列幅：自動
* TABレイアウト：変更なし
* SPレイアウト：変更あり（一列 上：見出し/下：値）
*/
.com-table-transform__sp {
  width: 100%;
}
@media only screen and (min-width: 482px) {
  .com-table-transform__sp {
    table-layout: fixed;
  }
}
@media only screen and (max-width: 481px) {
  .com-table-transform__sp {
    border-bottom: none;
  }
}
@media only screen and (max-width: 481px) {
  .com-table-transform__sp tr {
    display: block;
  }
}
@media only screen and (max-width: 481px) {
  .com-table-transform__sp th {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid #ccc;
  }
}
@media only screen and (min-width: 482px) {
  .com-table-transform__sp td {
    vertical-align: middle;
  }
}
@media only screen and (max-width: 481px) {
  .com-table-transform__sp td {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid #ccc;
  }
}

/********** scroll table MBL **********/
@media only screen and (max-width: 811px) {
  .com-scrollTableBlock__mbl {
    overflow-x: scroll;
    border: 1px solid #ccc;
  }
}
@media only screen and (max-width: 811px) {
  .com-scrollTableBlock__mbl &gt; table {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    min-width: 900px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .com-scrollTableBlock__mbl &gt; table thead:first-child &gt; tr &gt; th, .com-scrollTableBlock__mbl &gt; table thead:first-child &gt; tr &gt; td, .com-scrollTableBlock__mbl &gt; table tbody:first-child &gt; tr &gt; th, .com-scrollTableBlock__mbl &gt; table tbody:first-child &gt; tr &gt; td {
    border-top: none !important;
  }
  .com-scrollTableBlock__mbl &gt; table thead:last-child &gt; tr:last-child &gt; th, .com-scrollTableBlock__mbl &gt; table thead:last-child &gt; tr:last-child &gt; td, .com-scrollTableBlock__mbl &gt; table tbody:last-child &gt; tr:last-child &gt; th, .com-scrollTableBlock__mbl &gt; table tbody:last-child &gt; tr:last-child &gt; td {
    border-bottom: none !important;
  }
  .com-scrollTableBlock__mbl &gt; table thead &gt; tr:first-child &gt; th, .com-scrollTableBlock__mbl &gt; table thead &gt; tr:first-child &gt; td {
    border-top: none !important;
  }
  .com-scrollTableBlock__mbl &gt; table tr &gt; th:first-child, .com-scrollTableBlock__mbl &gt; table tr &gt; td:first-child {
    border-left: none !important;
  }
  .com-scrollTableBlock__mbl &gt; table tr &gt; th:last-child, .com-scrollTableBlock__mbl &gt; table tr &gt; td:last-child {
    border-right: none !important;
  }
}

/********** scroll table SP **********/
@media only screen and (max-width: 481px) {
  .com-scrollTableBlock__sp {
    overflow-x: scroll;
    border: 1px solid #ccc;
  }
}
@media only screen and (max-width: 481px) {
  .com-scrollTableBlock__sp &gt; table {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    min-width: 482px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .com-scrollTableBlock__sp &gt; table thead:first-child &gt; tr &gt; th, .com-scrollTableBlock__sp &gt; table thead:first-child &gt; tr &gt; td, .com-scrollTableBlock__sp &gt; table tbody:first-child &gt; tr &gt; th, .com-scrollTableBlock__sp &gt; table tbody:first-child &gt; tr &gt; td {
    border-top: none !important;
  }
  .com-scrollTableBlock__sp &gt; table thead:last-child &gt; tr:last-child &gt; th, .com-scrollTableBlock__sp &gt; table thead:last-child &gt; tr:last-child &gt; td, .com-scrollTableBlock__sp &gt; table tbody:last-child &gt; tr:last-child &gt; th, .com-scrollTableBlock__sp &gt; table tbody:last-child &gt; tr:last-child &gt; td {
    border-bottom: none !important;
  }
  .com-scrollTableBlock__sp &gt; table thead &gt; tr:first-child &gt; th, .com-scrollTableBlock__sp &gt; table thead &gt; tr:first-child &gt; td {
    border-top: none !important;
  }
  .com-scrollTableBlock__sp &gt; table tr &gt; th:first-child, .com-scrollTableBlock__sp &gt; table tr &gt; td:first-child {
    border-left: none !important;
  }
  .com-scrollTableBlock__sp &gt; table tr &gt; th:last-child, .com-scrollTableBlock__sp &gt; table tr &gt; td:last-child {
    border-right: none !important;
  }
}

/********** scroll table scroll text **********/
.com-scrollTableBlock-memo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0 0 0 45px;
  min-height: 30px;
}
.com-scrollTableBlock-memo::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url(../images/common/icon/icon_scroll.svg) no-repeat center/contain;
}

/* HTML エディタ Style
============================================================ */
#tinymce {
  margin: 0 0 0;
  padding: 0 0 0;
}

body.contentBody:not(#tinymce) {
  padding: 15px;
}

/* HTML エディタ内タグ標準 Style
============================================================ */
.contentBody a [target=_blank]::after,
.contentBody a .download::after,
.contentBody a [download]::after {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.contentBody a [target=_blank]::after {
  content: "";
}
.contentBody a .download::after,
.contentBody a [download]::after {
  content: "";
}
.contentBody p {
  margin-top: 1em;
  margin-bottom: 1em;
}
.contentBody u {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(255, 255, 0, 0.4)));
  background: -webkit-linear-gradient(transparent 60%, rgba(255, 255, 0, 0.4) 60%);
  background: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.4) 60%);
  text-decoration: none;
}
.contentBody blockquote {
  position: relative;
  margin: 0 0 2em;
  padding: 10px 20px;
  border-left: 5px solid #999;
  border-radius: 2px;
  font-size: 0.875em;
}
.contentBody blockquote::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  font-family: sans-serif;
  font-size: 6em;
  line-height: 0;
}
.contentBody pre {
  margin: 0 0 2em;
  padding: 11px 20px;
  border-radius: 2px;
  background: #eee;
  font-size: 0.875em;
  white-space: pre-wrap;
}
.contentBody pre,
.contentBody samp {
  font-family: sans-serif;
}
.contentBody code {
  margin: 0 2px;
  padding: 0 3px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fafafa;
  font-family: sans-serif;
  font-size: 0.875em;
}
.contentBody kbd {
  margin: 0 2px;
  padding: 0 3px;
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
  border-radius: 3px;
  background-color: #fafafa;
  font-family: sans-serif;
  font-size: 0.875em;
}
.contentBody .col-2,
.contentBody .col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 0.5em 1em;
}
.contentBody .col-2:first-child,
.contentBody .col-3:first-child {
  padding-left: 0;
}
.contentBody .col-2:last-child,
.contentBody .col-3:last-child {
  padding-right: 0;
}
.contentBody .col-2 &gt; * {
  width: -o-calc(50% - 0.5em);
  width: calc(50% - 0.5em);
}
@media only screen and (max-width: 481px) {
  .contentBody .col-2 &gt; * {
    width: 100%;
  }
}
.contentBody .col-3 &gt; * {
  width: -o-calc(100% / 3 - (1.0em * 2 / 3));
  width: calc(100% / 3 - (1.0em * 2 / 3));
}
@media only screen and (min-width: 482px) and (max-width: 811px) {
  .contentBody .col-3 &gt; * {
    width: -o-calc(50% - 0.5em);
    width: calc(50% - 0.5em);
  }
}
@media only screen and (max-width: 481px) {
  .contentBody .col-3 &gt; * {
    width: 100%;
  }
}
.contentBody ul:not(:not(.col-2):not(.col-3)[class]) {
  margin: 1rem 0 1rem;
}
.contentBody ol:not(:not(.col-2):not(.col-3)[class]) {
  margin: 1rem 0 1rem;
}
.contentBody table {
  margin-top: 1em;
  margin-bottom: 1em;
}
.contentBody table,
.contentBody table thead,
.contentBody table tbody,
.contentBody table tr,
.contentBody table td,
.contentBody table th {
  height: auto !important;
}
@media only screen and (max-width: 811px) {
  .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) {
    max-width: inherit;
  }
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) thead, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) tbody, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) tfoot, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) tr, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) th, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) td {
  border: inherit;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) th {
  width: 25%;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) td {
  background: transparent;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) td &gt; *:last-child {
  margin-bottom: 0 !important;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) caption {
  margin: 0 0 0.5em;
  text-align: left;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body).table_borders {
  border: 1px solid #ccc;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body).table_no_borders {
  border: none !important;
}
.contentBody h1, .contentBody h2, .contentBody h3, .contentBody h4, .contentBody h5, .contentBody h6 {
  clear: both;
}
.contentBody h1:first-child, .contentBody h2:first-child, .contentBody h3:first-child, .contentBody h4:first-child, .contentBody h5:first-child, .contentBody h6:first-child {
  margin-top: 0;
}
.contentBody .u-align-right {
  text-align: right;
}
.contentBody .u-align-left {
  text-align: left;
}
.contentBody .u-align-center {
  text-align: center;
}
.contentBody .alignRight,
.contentBody img.u-align-right,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"] {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.contentBody .alignLeft,
.contentBody img.u-align-left,
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 811px) {
  .contentBody .alignRight,
.contentBody .alignLeft,
.contentBody img.u-align-right,
.contentBody img.u-align-left,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"],
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
    max-width: 38.2%;
  }
}
@media only screen and (max-width: 481px) {
  .contentBody .alignRight,
.contentBody .alignLeft,
.contentBody img.u-align-right,
.contentBody img.u-align-left,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"],
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
    display: block;
    float: none;
    max-width: 100%;
    margin: 0 auto 2.666em;
  }
}
.contentBody .alignCenter,
.contentBody .u-align-center {
  display: block;
  margin: 0 auto 20px;
}
.contentBody &gt; *:first-child {
  margin-top: 0;
}
.contentBody &gt; *:last-child {
  margin-bottom: 0;
}

/*
*   TEXT STYLE 
*----------------------------*/
/****** エディタ用テキストStyle ******/
.style1, .style2 {
  display: inline;
  color: #fff;
  font-size: 1rem;
  background: #00913A;
}

.style2 {
  background: #231815;
}

.style3 {
  color: #00913A;
  font-size: 2rem;
  font-weight: 700;
}

.style4 {
  font-size: 2rem;
  font-weight: 700;
}

.style5 {
  color: #00913A;
  font-size: 1.5rem;
  font-weight: 700;
}

.style6 {
  font-size: 1.5rem;
  font-weight: 700;
}

.style7 {
  color: #00913A;
  font-size: 1.2rem;
  font-weight: 700;
}

.style8 {
  font-size: 1.2rem;
  font-weight: 700;
}

.style9 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(0, 145, 58, 0.2)));
  background: -webkit-linear-gradient(transparent 60%, rgba(0, 145, 58, 0.2) 0%);
  background: linear-gradient(transparent 60%, rgba(0, 145, 58, 0.2) 0%);
}

.style10 {
  font-size: 0.8em;
}

/****** エディタ用その他テキスト装飾 ******/
.com-underLine_double {
  -webkit-text-decoration: underline double;
  text-decoration: underline double;
}

.com-strike {
  text-decoration: line-through;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  -webkit-text-decoration-style: double;
  text-decoration-style: double;
  -webkit-text-decoration-color: #f80000;
  text-decoration-color: #f80000;
  -webkit-text-decoration-thickness: 2px;
  text-decoration-thickness: 2px;
}

/*
*   本文テンプレート レイアウトパーツ
*----------------------------*/
.com-col-left-img, .com-col-right-img,
.com-col-left-img2,
.com-col-right-img2,
.com-col-text,
.com-col-textWithImg,
.com-col-img,
.com-col-left-img {
  gap: 40px 60px;
}
@media only screen and (max-width: 811px) {
  .com-col-left-img, .com-col-right-img,
.com-col-left-img2,
.com-col-right-img2,
.com-col-text,
.com-col-textWithImg,
.com-col-img,
.com-col-left-img {
    gap: 40px 40px;
  }
}
.com-col-left-img &gt; .text &gt; *:first-child, .com-col-right-img &gt; .text &gt; *:first-child,
.com-col-left-img &gt; .img &gt; *:first-child,
.com-col-right-img &gt; .img &gt; *:first-child,
.com-col-left-img2 &gt; .text &gt; *:first-child,
.com-col-right-img2 &gt; .text &gt; *:first-child,
.com-col-left-img2 &gt; .img &gt; *:first-child,
.com-col-right-img2 &gt; .img &gt; *:first-child,
.com-col-text &gt; .text &gt; *:first-child,
.com-col-text &gt; .img &gt; *:first-child,
.com-col-textWithImg &gt; .text &gt; *:first-child,
.com-col-textWithImg &gt; .img &gt; *:first-child,
.com-col-img &gt; .text &gt; *:first-child,
.com-col-img &gt; .img &gt; *:first-child,
.com-col-left-img &gt; .text &gt; *:first-child,
.com-col-left-img &gt; .img &gt; *:first-child {
  margin-top: 0;
}
.com-col-left-img &gt; .text &gt; *:last-child, .com-col-right-img &gt; .text &gt; *:last-child,
.com-col-left-img &gt; .img &gt; *:last-child,
.com-col-right-img &gt; .img &gt; *:last-child,
.com-col-left-img2 &gt; .text &gt; *:last-child,
.com-col-right-img2 &gt; .text &gt; *:last-child,
.com-col-left-img2 &gt; .img &gt; *:last-child,
.com-col-right-img2 &gt; .img &gt; *:last-child,
.com-col-text &gt; .text &gt; *:last-child,
.com-col-text &gt; .img &gt; *:last-child,
.com-col-textWithImg &gt; .text &gt; *:last-child,
.com-col-textWithImg &gt; .img &gt; *:last-child,
.com-col-img &gt; .text &gt; *:last-child,
.com-col-img &gt; .img &gt; *:last-child,
.com-col-left-img &gt; .text &gt; *:last-child,
.com-col-left-img &gt; .img &gt; *:last-child {
  margin-bottom: 0;
}

.com-col-left-img, .com-col-right-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  margin: 2rem 0 2rem;
}
@media only screen and (max-width: 811px) {
  .com-col-left-img, .com-col-right-img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.com-col-left-img &gt; .text, .com-col-right-img &gt; .text {
  width: calc(60% - 20px);
}
@media only screen and (max-width: 811px) {
  .com-col-left-img &gt; .text, .com-col-right-img &gt; .text {
    width: 100%;
    margin: 0;
  }
}
.com-col-left-img &gt; .img, .com-col-right-img &gt; .img {
  width: calc(40% - 20px);
}
@media only screen and (max-width: 811px) {
  .com-col-left-img &gt; .img, .com-col-right-img &gt; .img {
    width: 100%;
    max-width: 600px;
  }
}
.com-col-left-img &gt; .img img, .com-col-right-img &gt; .img img {
  display: block;
  width: 100%;
  height: auto;
}

.com-col-left-img2, .com-col-right-img2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  margin: 2rem 0 2rem;
}
@media only screen and (max-width: 811px) {
  .com-col-left-img2, .com-col-right-img2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.com-col-left-img2 &gt; .text, .com-col-right-img2 &gt; .text {
  width: calc(100% - 300px - 40px);
}
@media only screen and (max-width: 811px) {
  .com-col-left-img2 &gt; .text, .com-col-right-img2 &gt; .text {
    width: 100%;
  }
}
.com-col-left-img2 &gt; .img, .com-col-right-img2 &gt; .img {
  width: 300px;
}
@media only screen and (max-width: 811px) {
  .com-col-left-img2 &gt; .img, .com-col-right-img2 &gt; .img {
    width: 100%;
    max-width: 300px;
  }
}
.com-col-left-img2 &gt; .img &gt; img img, .com-col-right-img2 &gt; .img &gt; img img {
  width: 100%;
  height: auto;
}

.com-col-right-img {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.com-col-right-img2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.com-col-text,
.com-col-textWithImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: 2rem 0 2rem;
}
@media only screen and (max-width: 811px) {
  .com-col-text,
.com-col-textWithImg {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.com-col-text &gt; *,
.com-col-textWithImg &gt; * {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: calc(50% - 20px);
}
.com-col-text &gt; * &gt; *,
.com-col-textWithImg &gt; * &gt; * {
  margin-top: 40px;
}
.com-col-text &gt; * &gt; *:first-child,
.com-col-textWithImg &gt; * &gt; *:first-child {
  margin-top: 0 !important;
}
.com-col-text &gt; * &gt; *:last-child,
.com-col-textWithImg &gt; * &gt; *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 811px) {
  .com-col-text &gt; *,
.com-col-textWithImg &gt; * {
    width: 100%;
  }
}

.com-col-textWithImg &gt; * .img {
  max-width: 482px;
  margin: 0 auto 0;
}

.com-col-text__3column,
.com-col-img__3column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: 2rem 0 2rem;
  gap: 20px 40px;
}
@media only screen and (max-width: 811px) {
  .com-col-text__3column,
.com-col-img__3column {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.com-col-text__3column &gt; *,
.com-col-img__3column &gt; * {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: calc(50% - 20px);
}
@media only screen and (max-width: 811px) {
  .com-col-text__3column &gt; *,
.com-col-img__3column &gt; * {
    width: 100%;
  }
}

.com-col-img__3column &gt; * {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: calc(50% - 20px);
}
@media only screen and (max-width: 811px) {
  .com-col-img__3column &gt; * {
    width: 100%;
    max-width: 482px;
  }
}
.com-col-img__3column &gt; * &gt; img {
  display: block;
  width: 100%;
  height: auto;
}

.com-col-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: 2rem 0 2rem;
}
@media only screen and (max-width: 811px) {
  .com-col-img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.com-col-img &gt; .img {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: calc(50% - 20px);
}
@media only screen and (max-width: 811px) {
  .com-col-img &gt; .img {
    width: 100%;
    max-width: 600px;
    margin: 0;
  }
}
.com-col-img &gt; .img &gt; img {
  display: block;
  width: 100%;
  height: auto;
}

.com-border-box, .com-bgBox {
  border: 1px solid #00913A;
  margin: 2rem 0 2rem;
  padding: 25px 30px;
}
@media only screen and (max-width: 811px) {
  .com-border-box, .com-bgBox {
    padding: 20px;
  }
}
.com-border-box &gt; *:first-child, .com-bgBox &gt; *:first-child {
  margin-top: 0 !important;
}
.com-border-box &gt; *:last-child, .com-bgBox &gt; *:last-child {
  margin-bottom: 0 !important;
}

.com-bgBox {
  border: none;
  background-color: #F7F7F0;
}

/*
*   FAQ
*----------------------------*/
.com-faq-wrap {
  width: 100%;
  margin: 0 auto;
}

.com-faq {
  position: relative;
  margin-bottom: 40px;
}

.com-faq:last-child {
  margin-bottom: 0;
}

.com-faq .title {
  position: relative;
  border: 1px solid #6c6c6c;
  margin: 0;
  padding: 13px 55px 13px calc(1.2em + 15px + 20px);
  font-size: 1.3333333333em;
  font-weight: bold;
  color: #231815;
  background: #fff;
  line-height: 1.4;
  text-indent: calc(-1.2em - 15px);
  cursor: pointer;
}

.com-faq .title::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 25px;
  top: calc(50% - 4px);
  width: 15px;
  height: 15px;
  border-top: 1px solid #6c6c6c;
  border-right: 1px solid #6c6c6c;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.com-faq .title.active::after {
  top: calc(50% + 4px);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.com-faq .title .title-q {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
  text-indent: 0;
}

.com-faq .body {
  display: none;
  background: #f8f8f8;
}

.com-faq .body .body-inner {
  padding: 25px 30px;
  text-align: justify;
}

.com-faq .body .body-inner &gt; :last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 811px) {
  .com-faq {
    margin-bottom: 30px;
  }

  .com-faq .title {
    padding: 13px 45px 13px calc(1.2em + 10px + 20px);
    text-indent: calc(-1.2em - 10px);
  }

  .com-faq .title::after {
    right: 20px;
    width: 13px;
    height: 13px;
  }

  .com-faq .title .title-q {
    margin-right: 10px;
  }

  .com-faq .body .body-inner {
    padding: 20px 25px;
  }
}
@media only screen and (max-width: 481px) {
  .com-faq {
    margin-bottom: 25px;
  }

  .com-faq .title {
    padding: 8px 40px 8px calc(1.2em + 5px + 15px);
    text-indent: calc(-1.2em - 5px);
    font-size: 1.2em;
    line-height: 1.35;
  }

  .com-faq .title::after {
    right: 15px;
    width: 12px;
    height: 12px;
  }

  .com-faq .title .title-q {
    margin-right: 5px;
  }

  .com-faq .body .body-inner {
    padding: 15px 20px;
  }
}
/*
*   BUTTON
*----------------------------*/
.com-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 14px;
  width: 100%;
  text-align: center;
  margin: 4em 0;
}

.com-btn,
.com-btn-list a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 360px;
  min-height: 4em;
  padding: 0.7em 2.5em;
  border: 2px solid #00913A;
  background: #00913A;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  border-radius: 1.25em;
}
@media only screen and (max-width: 481px) {
  .com-btn,
.com-btn-list a {
    min-width: initial;
    max-width: 360px;
  }
}
.com-btn::before,
.com-btn-list a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  border: 2px solid #fff;
  border-bottom: none;
  border-left: none;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
}
.com-btn:hover,
.com-btn-list a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 812px) {
  .com-btn:hover::before,
.com-btn-list a:hover::before {
    right: 1em;
  }
}
.com-btn.type02,
.com-btn-list a.type02 {
  background-color: #FF8438;
  border-color: #FF8438;
}
.com-btn.type03,
.com-btn-list a.type03 {
  background-color: #21C2E9;
  border-color: #21C2E9;
}
.com-btn.com-btn-external::before, .com-btn[target=_blank]::before,
.com-btn-list a.com-btn-external::before,
.com-btn-list a[target=_blank]::before {
  width: 1rem;
  height: 1rem;
  border: none;
  background: url(../images/common/icon/icon_new-window_white.svg) no-repeat center/contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.com-btn.left-arrow::before,
.com-btn-list a.left-arrow::before {
  right: auto;
  left: 1.5em;
  -webkit-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg);
}
.com-btn.left-arrow:hover,
.com-btn-list a.left-arrow:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 812px) {
  .com-btn.left-arrow:hover::before,
.com-btn-list a.left-arrow:hover::before {
    left: 1em;
  }
}
.com-btn.com-btn-large,
.com-btn-list a.com-btn-large {
  min-width: initial;
  max-width: initial;
  width: 100%;
  font-size: 2rem;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 812px) {
  .com-btn.com-btn-large,
.com-btn-list a.com-btn-large {
    border-width: 4px;
  }
}
@media only screen and (max-width: 811px) {
  .com-btn.com-btn-large,
.com-btn-list a.com-btn-large {
    font-size: 1.25rem;
  }
}
@media print, screen and (min-width: 812px) {
  .isColumn3 .com-btn,
.isColumn3 .com-btn-list a {
    width: calc((100% / 3) - ((14px * 2) / 3) - 1px);
  }
}
@media print, screen and (min-width: 812px) {
  .isColumn2 .com-btn,
.isColumn2 .com-btn-list a {
    width: calc(50% - 14px - 1px);
  }
}</pre></body></html>