@charset "UTF-8";
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/CT（タブレットサイズ）出し分け
---------------------------------- */
.t-pc {
  display: block;
}
@media (min-width: 960px) {
  .t-pc {
    display: block !important;
  }
}
@media (max-width: 959px) {
  .t-pc {
    display: none !important;
  }
}

.t-sp {
  display: none;
}
@media (min-width: 960px) {
  .t-sp {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .t-sp {
    display: block !important;
  }
}

img.t-pc, span.t-pc {
  display: inline;
}
@media (min-width: 960px) {
  img.t-pc, span.t-pc {
    display: inline !important;
  }
}
@media (max-width: 959px) {
  img.t-pc, span.t-pc {
    display: none !important;
  }
}
img.t-sp, span.t-sp {
  display: none;
}
@media (min-width: 960px) {
  img.t-sp, span.t-sp {
    display: none !important;
  }
}
@media (max-width: 959px) {
  img.t-sp, span.t-sp {
    display: inline !important;
  }
}

/* PC/SP（スマホサイズ）出し分け
---------------------------------- */
.pc {
  display: block;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

img.pc, span.pc {
  display: inline;
}
@media (min-width: 768px) {
  img.pc, span.pc {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  img.pc, span.pc {
    display: none !important;
  }
}
img.sp, span.sp {
  display: none;
}
@media (min-width: 768px) {
  img.sp, span.sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  img.sp, span.sp {
    display: inline !important;
  }
}

/* TELタグ
-----------------------------------*/
.tel a {
  color: inherit !important;
  text-decoration: none;
  cursor: default;
}
@media (min-width: 768px) {
  .tel a {
    pointer-events: none;
  }
}

/* 共通アニメーション
---------------------------------- */
.animate {
  opacity: 0;
}

.fadein {
  -webkit-animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  margin-top: 88px;
}
@media (max-width: 767px) {
  main {
    margin-top: 60px;
  }
}

.container > *:last-child {
  margin-bottom: 0;
}

.sec .contents,
section .contents {
  width: 86%;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sec .contents,
section .contents {
    width: 90%;
  }
}
.sec .contents.type02,
section .contents.type02 {
  width: auto;
  max-width: 1208px;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .sec .contents.type02,
section .contents.type02 {
    width: 90%;
    padding: 0;
  }
}

.sec {
  padding: clamp(96px, 6.25vw, 120px) 0;
}
@media (max-width: 767px) {
  .sec {
    padding: 64px 0;
  }
}
.sec.bgcolor {
  background-color: #f5fcf5;
}
.sec article:not(:last-child) {
  margin-bottom: clamp(96px, 6.25vw, 120px);
}
@media (max-width: 767px) {
  .sec article:not(:last-child) {
    margin-bottom: 64px;
  }
}

.w1920 {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.nowrap {
  white-space: nowrap;
}

.d-table {
  display: table;
}

.center2 {
  margin-left: auto;
  margin-right: auto;
}

.w10em {
  max-width: 10em;
}

.w11em {
  max-width: 11em;
}

.w12em {
  max-width: 12em;
}

.w13em {
  max-width: 13em;
}

.w14em {
  max-width: 14em;
}

.w15em {
  max-width: 15em;
}

.w16em {
  max-width: 16em;
}

.w17em {
  max-width: 17em;
}

.w18em {
  max-width: 18em;
}

.w19em {
  max-width: 19em;
}

.w20em {
  max-width: 20em;
}

.w21em {
  max-width: 21em;
}

.w22em {
  max-width: 22em;
}

.w23em {
  max-width: 23em;
}

.w24em {
  max-width: 24em;
}

.w25em {
  max-width: 25em;
}

/* margin
-----------------------------------*/
.mb05em {
  margin-bottom: 0.5em !important;
}

.mt05em {
  margin-top: 0.5em !important;
}

.mb1em {
  margin-bottom: 1em !important;
}

.mt1em {
  margin-top: 1em !important;
}

.mb15em {
  margin-bottom: 1.5em !important;
}

.mt15em {
  margin-top: 1.5em !important;
}

.mb2em {
  margin-bottom: 2em !important;
}

.mt2em {
  margin-top: 2em !important;
}

/* タイトル
-----------------------------------*/
.title-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  line-height: 1.2;
  height: 400px;
  background-color: #004831;
  position: relative;
}
@media (max-width: 767px) {
  .title-area {
    height: 336px;
  }
}
.title-area .bg-circle {
  position: absolute;
  content: "";
  width: clamp(250px, 35vw, 680px);
  height: clamp(250px, 35vw, 680px);
  background: url(/images/common/bg_h01.png) no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
}
.title-area .heading-title .en {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 3vw, 56px);
  font-weight: 600;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .title-area .heading-title .en {
    font-size: 40px;
  }
}
.title-area .heading-title .ja {
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .title-area .heading-title .ja {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.title-area .b-nv {
  margin: clamp(64px, 4vw, 80px) 0 52px;
}
@media (max-width: 767px) {
  .title-area .b-nv {
    display: none;
  }
}
.title-area .b-nv ol {
  list-style: none;
  letter-spacing: 0.025em;
}
.title-area .b-nv ol li {
  color: #cecece;
  display: inline;
}
.title-area .b-nv ol li + li:before {
  content: "＞";
  margin: 0 0.25em;
}
.title-area .b-nv ol li a {
  color: #008c3f;
}

.heading01 {
  color: #004831;
  font-size: clamp(36px, 2vw, 40px);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .heading01 {
    font-size: 24px;
  }
}

.heading02 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .heading02 {
    font-size: 20px;
  }
}

.heading03 {
  color: #008c3f;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .heading03 {
    font-size: 18px;
  }
}

.heading04 {
  font-size: clamp(18px, 1vw, 20px);
  font-weight: bold;
}
@media (max-width: 767px) {
  .heading04 {
    font-size: 16px;
  }
}

.heading05 {
  color: #008c3f;
  font-weight: bold;
}

/* テキスト グループで段落落ち
-----------------------------------*/
.flex-txt {
  display: flex;
  flex-wrap: wrap;
}

.flex-txt-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-txt-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ボタン
-----------------------------------*/
button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.com-bt01 {
  display: table;
}
.com-bt01 button, .com-bt01 a {
  color: #FFF;
  text-align: center;
  position: relative;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #004932;
  border-radius: 34px;
  overflow: hidden;
  text-decoration: none;
}
@media (max-width: 767px) {
  .com-bt01 button, .com-bt01 a {
    height: 60px;
    border-radius: 30px;
  }
}
.com-bt01 button:before, .com-bt01 a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 72, 49, 0.9);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.4s ease 0s;
}
.com-bt01 button .ic, .com-bt01 a .ic {
  position: absolute;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-out;
}
.com-bt01 button .ic.before, .com-bt01 a .ic.before {
  width: 14px;
  right: 24px;
}
@media (max-width: 767px) {
  .com-bt01 button .ic.before, .com-bt01 a .ic.before {
    width: 12px;
  }
}
.com-bt01 button .ic.after, .com-bt01 a .ic.after {
  width: 18px;
  left: -100%;
  transition: all 0.4s ease-out;
}
@media (hover: hover) {
  .com-bt01 button:hover:before, .com-bt01 a:hover:before {
    transform: scale(1, 1);
  }
  .com-bt01 button:hover .ic.before, .com-bt01 a:hover .ic.before {
    opacity: 0;
  }
  .com-bt01 button:hover .ic.after, .com-bt01 a:hover .ic.after {
    left: calc(50% - 10px);
  }
}

/* カテゴリリンク
-----------------------------------*/
.list-bt01 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  margin: 0 auto;
}
@media (max-width: 1208px) {
  .list-bt01 {
    max-width: 864px;
  }
}
@media (max-width: 912px) {
  .list-bt01 {
    max-width: 568px;
  }
}
@media (max-width: 767px) {
  .list-bt01 {
    flex-direction: column;
    max-width: 350px;
  }
}
.list-bt01 li {
  width: calc((100% - 72px) / 4);
}
@media (max-width: 1208px) {
  .list-bt01 li {
    width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 912px) {
  .list-bt01 li {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .list-bt01 li {
    width: 100%;
  }
}
.list-bt01.column3 {
  max-width: 864px;
}
@media (max-width: 912px) {
  .list-bt01.column3 {
    max-width: 568px;
  }
}
@media (max-width: 767px) {
  .list-bt01.column3 {
    max-width: 350px;
  }
}
.list-bt01.column3 li {
  width: calc((100% - 48px) / 3);
}
@media (max-width: 912px) {
  .list-bt01.column3 li {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .list-bt01.column3 li {
    width: 100%;
  }
}

/* カレント表示 */
.supportbm .list-bt01 .bt-supportbm a,
.smartbm .list-bt01 .bt-smartbm a,
.sustainable .list-bt01 .bt-sustainable a,
.quality .list-bt01 .bt-quality a,
.environment .list-bt01 .bt-environment a,
.safty .list-bt01 .bt-safty a,
.security .list-bt01 .bt-security a,
.compliance .list-bt01 .bt-compliance a,
.privacy .list-bt01 .bt-privacy a,
.message .list-bt01 .bt-message a,
.policy .list-bt01 .bt-policy a,
.outline .list-bt01 .bt-outline a,
.history .list-bt01 .bt-history a,
.license .list-bt01 .bt-license a {
  background-color: #000;
  pointer-events: none;
}
.supportbm .list-bt01 .bt-supportbm a .ic,
.smartbm .list-bt01 .bt-smartbm a .ic,
.sustainable .list-bt01 .bt-sustainable a .ic,
.quality .list-bt01 .bt-quality a .ic,
.environment .list-bt01 .bt-environment a .ic,
.safty .list-bt01 .bt-safty a .ic,
.security .list-bt01 .bt-security a .ic,
.compliance .list-bt01 .bt-compliance a .ic,
.privacy .list-bt01 .bt-privacy a .ic,
.message .list-bt01 .bt-message a .ic,
.policy .list-bt01 .bt-policy a .ic,
.outline .list-bt01 .bt-outline a .ic,
.history .list-bt01 .bt-history a .ic,
.license .list-bt01 .bt-license a .ic {
  display: none;
}
.supportbm .list-bt01 .bt-supportbm a:before,
.smartbm .list-bt01 .bt-smartbm a:before,
.sustainable .list-bt01 .bt-sustainable a:before,
.quality .list-bt01 .bt-quality a:before,
.environment .list-bt01 .bt-environment a:before,
.safty .list-bt01 .bt-safty a:before,
.security .list-bt01 .bt-security a:before,
.compliance .list-bt01 .bt-compliance a:before,
.privacy .list-bt01 .bt-privacy a:before,
.message .list-bt01 .bt-message a:before,
.policy .list-bt01 .bt-policy a:before,
.outline .list-bt01 .bt-outline a:before,
.history .list-bt01 .bt-history a:before,
.license .list-bt01 .bt-license a:before {
  content: none;
}

/* インデックスリンク
-----------------------------------*/
.list-index {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 767px) {
  .list-index {
    max-width: 564px;
    gap: 24px;
    margin: 0 auto;
  }
}
.list-index li {
  width: calc(50% - 16px);
}
@media (max-width: 767px) {
  .list-index li {
    width: 100%;
  }
}
.list-index li a {
  display: block;
  text-decoration: none;
}
.list-index li a .txt {
  display: block;
  color: #008c3f;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: bold;
  line-height: 1;
  padding: 1em;
  background-color: #f4f4f4;
}
.list-index li a .img {
  overflow: hidden;
  position: relative;
}
.list-index li a .img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-out;
  opacity: 1;
}
.list-index li a .img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease-out;
}
@media (hover: hover) {
  .list-index li a:hover .img img {
    transform: scale(1.1);
    opacity: 1;
  }
  .list-index li a:hover .img:after {
    background: rgba(0, 0, 0, 0.2);
  }
}

/* intro-sec
-----------------------------------*/
.intro-sec {
  text-align: center;
  background: url(/images/common/com_ma01.jpg) no-repeat bottom center;
  background-size: cover;
}
@media (max-width: 767px) {
  .intro-sec {
    background-image: url(/images/common/com_ma01_sp.jpg);
  }
}
.intro-sec .contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 506px;
}
@media (max-width: 767px) {
  .intro-sec .contents {
    min-height: inherit;
    padding: 40px 0;
  }
}
.intro-sec .heading04 {
  line-height: 2;
}
@media (max-width: 767px) {
  .intro-sec .heading04 {
    line-height: 1.8;
  }
}
.intro-sec .note {
  display: table;
  margin: 24px auto 0;
  text-align: left;
}
@media (max-width: 767px) {
  .intro-sec .note {
    margin-top: 18px;
  }
}
.intro-sec.type02 .contents {
  min-height: inherit;
  padding: clamp(96px, 6.25vw, 120px) 0;
}
@media (max-width: 767px) {
  .intro-sec.type02 .contents {
    padding: 64px 0;
  }
}

/* 画像回り込み
-----------------------------------*/
.img-column01 {
  overflow: hidden;
}
@media (max-width: 767px) {
  .img-column01 {
    display: flex;
    flex-direction: column-reverse;
  }
}
.img-column01 .img {
  float: right;
  width: 40%;
  max-width: 454px;
  margin: 0 0 clamp(32px, 4vw, 80px) clamp(32px, 4vw, 80px);
}
@media (max-width: 767px) {
  .img-column01 .img {
    float: none;
    width: auto;
    margin: 32px auto 0;
  }
}
.img-column01 .img.fleft {
  float: left;
  margin: 0 clamp(32px, 4vw, 80px) clamp(32px, 4vw, 80px) 0;
}
@media (max-width: 767px) {
  .img-column01 .img.fleft {
    float: none;
    margin: 32px auto 0;
  }
}
@media (max-width: 767px) {
  .img-column01.reverse {
    flex-direction: column;
  }
  .img-column01.reverse .img {
    margin: 0 auto 32px !important;
  }
}

/* 画像＋テキスト（横）
-----------------------------------*/
.img-column02 {
  display: flex;
  gap: clamp(32px, 4vw, 80px);
}
@media (max-width: 767px) {
  .img-column02 {
    flex-direction: column;
    gap: 28px;
  }
}
.img-column02 .img {
  width: 20%;
  min-width: 200px;
  max-width: 236px;
}
@media (max-width: 767px) {
  .img-column02 .img {
    width: 180px;
    min-width: inherit;
    margin: 0 auto;
  }
}
.img-column02 .txt-wrap {
  max-width: 844px;
  margin: auto 0;
}
@media (max-width: 767px) {
  .img-column02 .txt-wrap .heading03,
.img-column02 .txt-wrap .heading04 {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}
.img-column02 .txt-wrap .heading03 {
  margin-bottom: 0.6em;
}
@media (max-width: 767px) {
  .img-column02 .txt-wrap .heading03 {
    margin-bottom: 0.8em;
  }
}
.img-column02 .txt-wrap .heading04 {
  margin-bottom: 0.4em;
}
.img-column02 + .img-column02 {
  margin-top: clamp(64px, 4vw, 80px);
}
@media (max-width: 767px) {
  .img-column02 + .img-column02 {
    margin-top: 56px;
  }
}
.img-column02.type02 .img {
  width: 40%;
  min-width: 280px;
  max-width: inherit;
}

/* 画像＋テキスト（縦）
-----------------------------------*/
.img-list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: clamp(48px, 3.3vw, 64px);
}
@media (max-width: 767px) {
  .img-list01 {
    flex-direction: column;
    margin-top: 32px;
  }
}
.img-list01 > * {
  width: calc(50% - 16px);
}
@media (max-width: 767px) {
  .img-list01 > * {
    width: 100%;
  }
}
.img-list01 dd {
  display: table;
  font-size: clamp(16px, 0.9vw, 18px);
  margin: 1rem auto 0;
}
@media (max-width: 767px) {
  .img-list01 dd {
    font-size: 14px;
  }
}
.img-list01.column3 > * {
  width: calc((100% - 64px) / 3);
}
@media (max-width: 767px) {
  .img-list01.column3 > * {
    width: 100%;
  }
}

/* ボックス
-----------------------------------*/
.com-box01 {
  background-color: #FFF;
  box-shadow: 0px 3px 10px 0px rgba(9, 43, 9, 0.1);
  padding: 32px;
}
@media (max-width: 767px) {
  .com-box01 {
    padding: 24px 20px;
  }
}
.com-box01 > p + *, .com-box01 > ul + *, .com-box01 > dl + * {
  margin-top: 1em;
}
.com-box01 ul li + li,
.com-box01 dl + dl,
.com-box01 .list-dl01 + .list-dl01 {
  margin-top: 0.5em;
}

/* 汎用カラムリスト
-----------------------------------*/
.com-list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 767px) {
  .com-list01 {
    gap: 20px;
  }
}
.com-list01 > * {
  width: calc((100% - 64px) / 3);
}
@media (max-width: 959px) {
  .com-list01 > * {
    width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 767px) {
  .com-list01 > * {
    width: 100%;
  }
}
.com-list01.column2 > * {
  width: calc((100% - 32px) / 2);
}
@media (max-width: 767px) {
  .com-list01.column2 > * {
    width: 100%;
  }
}
.com-list01.type02 {
  flex-wrap: inherit;
}
@media (max-width: 767px) {
  .com-list01.type02 {
    flex-wrap: wrap;
  }
}

/* インデント
-----------------------------------*/
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* リスト
-----------------------------------*/
.list-dot > li + li,
.list-dot02 > li + li,
.list-indent > li + li {
  margin-top: 0.25em;
}
@media (max-width: 767px) {
  .list-dot > li + li,
.list-dot02 > li + li,
.list-indent > li + li {
    margin-top: 0.5em;
  }
}
.list-dot.type02 > li + li,
.list-dot02.type02 > li + li,
.list-indent.type02 > li + li {
  margin-top: 0;
}

li > .list-dot, li > .list-dot02, li > .list-indent, li > .list-dl01 {
  margin-top: 0.25em;
}
@media (max-width: 767px) {
  li > .list-dot, li > .list-dot02, li > .list-indent, li > .list-dl01 {
    margin-top: 0.5em;
  }
}
li > .list-num, li > .list-num02 {
  margin-top: 1.5rem;
}
li > .list-num.type02, li > .list-num02.type02 {
  margin-top: 0.5rem;
}

.list-dot > li {
  position: relative;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .list-dot > li {
    padding-left: 14px;
  }
}
.list-dot > li:before {
  position: absolute;
  content: "●";
  color: #008c3f;
  font-size: 6px;
  padding: 8px 0;
  display: flex;
  left: 0;
}

.list-dot02 > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list-dot02 > li:before {
  content: "・";
}

.list-indent > li {
  display: flex;
}
.list-indent > li > *:first-child {
  white-space: nowrap;
}

.list-dl01 {
  display: flex;
}
.list-dl01 > dt {
  margin-right: 1rem;
  white-space: nowrap;
}
.list-dl01 > dt.ic-circle {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  min-width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #008c3f;
  border-radius: 50%;
  margin-right: 0.8rem;
}
@media (max-width: 767px) {
  .list-dl01 > dt.ic-circle {
    font-size: 12px;
  }
}
.list-dl01 + .list-dl01 {
  margin-top: 0.25em;
}
@media (max-width: 767px) {
  .list-dl01 + .list-dl01 {
    margin-top: 0.5em;
  }
}

ol {
  /* 1桁 */
  /* 2桁 */
}
ol li::marker {
  font-weight: bold;
  color: #008c3f;
}
ol.color-normal li::marker {
  color: inherit;
}
ol.list-num {
  margin-left: 20px;
}
@media (max-width: 767px) {
  ol.list-num {
    margin-left: 17.5px;
  }
}
ol.list-num02 {
  margin-left: 28px;
}
@media (max-width: 767px) {
  ol.list-num02 {
    margin-left: 24.5px;
  }
}
ol.list-num > li + li, ol.list-num02 > li + li {
  margin-top: 1.5rem;
}
ol.list-num.type02 > li + li, ol.list-num02.type02 > li + li {
  margin-top: 0.5rem;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

col.colw55 {
  width: 55%;
}

col.colw60 {
  width: 60%;
}

col.colw65 {
  width: 65%;
}

col.colw70 {
  width: 70%;
}

col.colw75 {
  width: 75%;
}

col.colw80 {
  width: 80%;
}

col.colw85 {
  width: 85%;
}

col.colw90 {
  width: 90%;
}

col.colw95 {
  width: 95%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table table th {
  font-weight: inherit;
}
table table td {
  padding-left: 1.5rem;
}
table + table {
  margin-top: 40px;
}
@media (max-width: 767px) {
  table + table {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  :not(.tb-wrap) .table01 > colgroup > col,
:not(.tb-wrap) .table02 > colgroup > col,
:not(.tb-wrap) .table03 > colgroup > col {
    width: 100%;
  }
}

.table01 {
  width: 100%;
  border-bottom: 1px solid #8e8e8e;
}
.table01 > tbody > tr > th, .table01 > tbody > tr > td {
  padding: 24px 16px;
  border-top: 1px solid #8e8e8e;
  vertical-align: top;
}
@media (max-width: 767px) {
  .table01 > tbody > tr > th, .table01 > tbody > tr > td {
    display: block;
    width: 100%;
    padding: 0;
  }
}
.table01 > tbody > tr > th {
  color: #008c3f;
  font-weight: bold;
  line-height: 1.375;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .table01 > tbody > tr > th {
    padding-top: 20px;
    margin-bottom: 1em;
  }
}
@media (max-width: 767px) {
  .table01 > tbody > tr > td {
    border-top: none !important;
  }
  .table01 > tbody > tr > td:last-child {
    padding-bottom: 20px;
  }
  .table01 > tbody > tr > td + td {
    margin-top: 0.5em;
  }
}
@media (max-width: 767px) {
  .table01.type02 > tbody > tr > th, .table01.type02 > tbody > tr > td {
    display: table-cell;
    width: auto;
  }
  .table01.type02 > tbody > tr > th {
    padding: 20px 0;
  }
  .table01.type02 > tbody > tr > td {
    padding: 20px 0.5em;
    border-top: 1px solid #8e8e8e !important;
  }
}
.table01 .child th, .table01 .child td {
  border-top-style: dashed;
}
.table01 .child th span {
  color: #333;
  position: relative;
  padding-left: 3em;
}
.table01 .child th span:before {
  position: absolute;
  content: "";
  width: 2em;
  height: 2px;
  background-color: #008c3f;
  top: 11px;
  left: 0;
}

.table02 {
  width: 100%;
  border-top: 1px solid #8e8e8e;
  border-bottom: 1px solid #8e8e8e;
}
@media (max-width: 767px) {
  .table02 {
    border-top: none;
  }
}
.table02 > tbody > tr > th {
  color: #FFF;
  font-weight: bold;
  background-color: #008c3f;
  padding: 16px;
}
@media (max-width: 767px) {
  .table02 > tbody > tr > th {
    display: block;
    padding: 12px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .table02 > tbody > tr > td {
    display: block;
  }
}
.table02 .child {
  width: 100%;
}
.table02 .child tr:first-child th, .table02 .child tr:first-child td {
  border-top: none;
}
.table02 .child th, .table02 .child td {
  width: 50%;
  padding: 16px;
  border-top: 1px dashed #8e8e8e;
}
@media (max-width: 767px) {
  .table02 .child th, .table02 .child td {
    padding: 0;
    border-top-style: solid;
  }
}
@media (max-width: 767px) {
  .table02 .child th > ul > li, .table02 .child td > ul > li {
    padding: 16px 12px;
  }
}
.table02 .child th > ul > li + li, .table02 .child td > ul > li + li {
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .table02 .child th > ul > li + li, .table02 .child td > ul > li + li {
    border-top: 1px dashed #8e8e8e;
    margin: 0;
  }
}
.table02 .child th {
  font-weight: inherit;
  background-color: #f5fcf5;
}
@media (max-width: 767px) {
  .table02 .child td {
    border-left: 1px solid #8e8e8e;
  }
}
.table02 .child.type02 th, .table02 .child.type02 td {
  width: inherit;
}
@media (max-width: 767px) {
  .table02 .child.type02 th, .table02 .child.type02 td {
    padding: 16px 12px;
  }
}
.table02.type02 .child th {
  background-color: #FFF;
}

.table03-wrap {
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .table03-wrap {
    flex-direction: column;
  }
}
.table03-wrap .cell {
  width: calc(50% - 4px);
}
@media (max-width: 767px) {
  .table03-wrap .cell {
    width: 100%;
  }
}

.table03 {
  width: 100%;
}
.table03 + .table03 {
  margin-top: 8px;
}
.table03 > tbody > tr > th, .table03 > tbody > tr > td {
  padding: 16px;
}
@media (max-width: 767px) {
  .table03 > tbody > tr > th, .table03 > tbody > tr > td {
    display: block;
    padding: 12px;
  }
}
.table03 > tbody > tr > th {
  color: #FFF;
  font-weight: bold;
  background-color: #008c3f;
}
@media (max-width: 767px) {
  .table03 > tbody > tr > th {
    text-align: center;
  }
}
.table03 > tbody > tr > td {
  background-color: #FFF;
}
@media (max-width: 767px) {
  .table03 > tbody > tr > td {
    padding: 16px 12px;
  }
}
.table03 > tbody > tr > td ul li + li {
  margin-top: 0.5em;
}
.table03.type02 > tbody > tr > td {
  background-color: #f5fcf5;
}

/* アイコン
-----------------------------------*/
.ic-map {
  color: #004831;
  font-weight: 500;
  background: url(/images/common/ic_map.svg) no-repeat left center;
  background-size: 15px auto;
  padding-left: 21px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .ic-map {
    background-size: 14px;
  }
}
.ic-map:hover {
  color: #008c3f;
}

.ic-tel {
  background: url(/images/common/ic_tel.svg) no-repeat left center;
  background-size: 18px auto;
  padding-left: 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .ic-tel {
    background-size: 14px;
    padding-left: 21px;
  }
}
/*# sourceMappingURL=common.css.map */