@charset "UTF-8";
/*-------------
vars
-------------*/
:root {
  --font-en: "Poppins", sans-serif;
  --main-black: #333;
  --text-black: #1a1a1a;
  --border-gray: #ccc;
  --main-green: #3fb300;
  --bg-green: #f2eeda;
  --text-red: #f00;
}

/*-------------
base
-------------*/
html {
  font-size: 62.5%;
}

.clearfix::after {
  all: unset;
  content: "";
  display: block;
  clear: both;
}

.floatL,
.l {
  float: left;
}

.floatR,
.r {
  float: right;
}

*:has(> wbr) {
  word-break: keep-all;
}

.txtCenter,
.txt_c {
  text-align: center;
}

.txtLeft,
.txt_l {
  text-align: left;
}

.txtRight,
.txt_r {
  text-align: right;
}

.txtIndent,
.txt_ind {
  text-indent: -1em;
  padding-left: 1em;
}

.textKerning {
  margin-left: -0.5em;
}

.txtNowrap {
  white-space: nowrap;
}

.txtLink:not(:hover) {
  text-decoration: underline;
}

.txtBold {
  font-weight: bold;
}

.txtSmall {
  font-size: 0.7em;
}

.txtRed {
  color: var(--text-red) !important;
}

.txtGreen {
  color: var(--main-green) !important;
}

.mB5 {
  margin-bottom: 5px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB15 {
  margin-bottom: 15px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mR10 {
  margin-right: 10px !important;
}

/* new-pages */
#header {
  line-height: 0;
}

#header img,
#footer img {
  display: block;
}

.main {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
}

:where(.main) * {
  letter-spacing: 0.02em;
}
:where(.main) *,
:where(.main) * ::before,
:where(.main) * ::after {
  box-sizing: border-box;
}
:where(.main) a:link,
:where(.main) a:visited,
:where(.main) a:hover {
  color: inherit;
  text-decoration: none;
}
:where(.main) a:hover img {
  transition: opacity 0.3s ease;
}

.page-title {
  margin-bottom: 40px;
  line-height: 1;
}
.page-title img {
  display: block;
}

/*-------------
manual-top
-------------*/
.manual-top {
  padding-bottom: 100px;
}
.manual-top-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.manual-top-list-item {
  flex: 0 0 auto;
  width: 430px;
  padding-top: 10px;
}
.manual-top-list-item-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 20px 19px 19px;
  border: solid 1px var(--main-black);
  background: #fff;
  text-decoration: none;
}
.manual-top-list-item-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(../manual/images/bg_dots.svg) repeat top -1px left/auto;
  content: "";
}
.manual-top-list-item-inner::after {
  position: absolute;
  top: -10px;
  right: 29px;
  z-index: 1;
  width: 35px;
  height: 46px;
  background: url(../manual/images/ribbon_01.svg) no-repeat top center/contain;
  content: "";
}
.manual-top-list-item__pic {
  margin-bottom: 12px;
}
.manual-top-list-item__pic img {
  display: block;
}
.manual-top-list-item__title {
  margin-bottom: 6px;
  color: var(--main-green);
  font-size: 2rem;
  font-weight: bold;
  line-height: calc(1em + 6px);
}
.manual-top-list-item__desc {
  margin-bottom: 20px;
  line-height: calc(1em + 11px);
}
.manual-top-list-item__btn {
  margin-top: auto;
}
.manual-top-list-item__btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  border: solid 1px var(--main-black);
  transition: background 0.3s ease;
}
.manual-top-list-item__btn-inner::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 14px;
  width: 20px;
  height: 20px;
  background: url(../manual/images/link-arrow_01.svg) no-repeat center/contain;
  content: "";
}
a:hover .manual-top-list-item__btn-inner {
  background: var(--bg-green);
}
a:hover .manual-top-list-item__btn-inner img {
  opacity: 1;
}

.manual-top-lead {
  margin-top: 50px;
  padding: 48px 93px;
  border: solid 2px #f4ebd0;
  border-radius: 10px;
  background: url(../manual/images/lead-bg.jpg) repeat center/auto, var(--bg-green);
}
.manual-top-lead-title {
  margin-bottom: 24px;
}
.manual-top-lead-title img {
  display: block;
}
.manual-top-lead-body {
  line-height: calc(1em + 11px);
}
.manual-top-lead-body p:not(:last-child) {
  margin-bottom: 9px;
}
.manual-top-lead-contact {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.manual-top-lead-contact-item {
  flex: 1;
}
.manual-top-lead-contact-item-inner {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  height: 100%;
  min-height: 80px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/*-------------
manual-detail
-------------*/
.manual-dtl {
  padding-bottom: 40px;
}
.manual-dtl-container {
  counter-reset: sect_num;
}
.manual-dtl-container:not(:last-child) {
  margin-bottom: 80px;
}
.manual-dtl-header {
  margin-bottom: 25px;
}
.manual-dtl-header-title {
  margin-bottom: 19px;
  padding: 17px 10px 17px 25px;
  border-left: solid 5px #3e6600;
  background: var(--bg-green);
}
.manual-dtl-header-title-text {
  display: block;
  color: var(--text-black);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: calc(1em + 6px);
}
.manual-dtl-header-title__sub {
  display: block;
  margin-top: 4px;
  color: var(--main-green);
  font-size: 1.8rem;
  line-height: calc(1em + 6px);
}
.manual-dtl-header-title:has(.manual-dtl-header-title__anc-btn) {
  position: relative;
  padding-right: 220px;
}
.manual-dtl-header-title__anc-btn {
  position: absolute;
  top: calc(50% - 25px);
  right: 20px;
  min-width: 180px;
  color: var(--text-black);
  transition: color 0.3s ease;
}
.manual-dtl-header-title__anc-btn:has(a:hover) {
  color: var(--main-green);
}
.manual-dtl-header-title__anc-btn-inner {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  padding: 2px 40px 0 13px;
  border: solid 2px var(--main-black);
  border-radius: 5px;
  background: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.manual-dtl-header-title__anc-btn-inner::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 13px;
  transform: rotate(90deg);
  width: 20px;
  height: 20px;
  background: url(../manual/images/link-arrow_01.svg) no-repeat center/contain;
  content: "";
}
.manual-dtl-header__text {
  line-height: calc(1em + 11px);
}
.manual-dtl-video {
  margin: 25px 0;
  background: #000;
}
.manual-dtl-video video,
.manual-dtl-video iframe {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}
.manual-dtl-check-list {
  margin: 30px 0;
  padding: 13px 20px 11px;
  border: solid 1px var(--text-black);
}
.manual-dtl-check-list-item {
  position: relative;
  padding-left: 26px;
  font-size: 1.6rem;
  line-height: calc(1em + 6px);
}
.manual-dtl-check-list-item:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 7px;
  border-bottom: dotted 1px var(--border-gray);
}
.manual-dtl-check-list-item::before {
  position: absolute;
  top: calc(0.5em - 6px);
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../manual/images/icon_check.svg) no-repeat center/contain;
  content: "";
}
.manual-dtl-sect {
  counter-reset: flow_num;
}
.manual-dtl-sect:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: dotted 1px #999;
}
.manual-dtl-sect:not(:last-child):has(+ .is--count_reset) {
  border-bottom-style: solid;
}
.manual-dtl-sect.is--count_reset {
  counter-reset: sect_num;
}
.manual-dtl-sect-title {
  position: relative;
  min-height: 47px;
  margin-bottom: 13px;
  padding-left: 50px;
  color: var(--main-green);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: calc(1em + 14px);
}
.manual-dtl-sect-title::before {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  padding: 1px 0 0 2px;
  border-radius: 50%;
  background: var(--main-green);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  content: counter(sect_num);
  counter-increment: sect_num;
}
.manual-dtl-sect__nav {
  margin-bottom: 30px;
}
.manual-dtl-sect__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.manual-dtl-sect__nav-list-item {
  flex: 0 0 auto;
  position: relative;
  padding: 8px 12px;
  background: var(--bg-green);
  color: #000;
  font-size: 1.6rem;
  line-height: calc(1em + 4px);
}
.manual-dtl-sect__nav-list-item:not(:last-child) {
  margin-right: 21px;
}
.manual-dtl-sect__nav-list-item:not(:last-child)::after {
  position: absolute;
  top: calc(50% - 5px);
  right: -14px;
  width: 7px;
  height: 10px;
  background: url(../manual/images/flow-arrow_01.svg) no-repeat center/contain;
  content: "";
}
.manual-dtl-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 30px;
  counter-reset: flow_num;
}
.manual-dtl-flow:not(:last-child) {
  margin-bottom: 30px;
}
.manual-dtl-flow-item {
  flex: 0 0 auto;
  width: 425px;
}
.manual-dtl-flow-item.is--2colm {
  width: 100%;
}
.manual-dtl-flow-item__pic {
  position: relative;
}
.manual-dtl-flow-item__pic img {
  display: block;
}
.manual-dtl-flow-item__pic::after {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 36px;
  height: 36px;
  padding: 0 2px 2px 3px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  background: #000;
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  content: counter(flow_num);
  counter-increment: flow_num;
}
.manual-dtl-flow-item__pic.is--count_none::after {
  content: none;
}
.manual-dtl-flow-item__text {
  margin: 15px 0 -6px;
  font-size: 1.5rem;
  line-height: calc(1em + 10px);
}
.manual-dtl-flow-item__text:first-child {
  margin-top: 0;
}
.manual-dtl-flow__mid-list {
  margin-top: -4px;
}
.manual-dtl-flow__mid-list:not(:first-child) {
  margin-top: 15px;
}
.manual-dtl-flow__mid-list-item {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 38px;
  padding-left: 44px;
  font-size: 1.5rem;
  line-height: calc(1em + 10px);
}
.manual-dtl-flow__mid-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.manual-dtl-flow__mid-list-item::before {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 4px;
  left: 0;
  min-width: 34px;
  height: 34px;
  padding: 0 2px 2px 3px;
  background: #000;
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  content: counter(flow_num);
  counter-increment: flow_num;
}
.manual-dtl-flow__note {
  margin-top: 19px;
  padding: 17px 20px 18px;
  border-radius: 5px;
  background: var(--bg-green);
  font-size: 1.5rem;
}
.manual-dtl-flow__note-title {
  margin-bottom: 10px;
  color: var(--main-green);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: calc(1em + 6px);
}
.manual-dtl-flow__note-list-item {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.5rem;
  line-height: calc(1em + 5px);
}
.manual-dtl-flow__note-list-item:not(:last-child) {
  margin-bottom: 5px;
}
.manual-dtl-flow__note-list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--text-red);
  content: "※";
}
.manual-dtl-flow__note p:not(:last-child) {
  margin-bottom: 10px;
}
.manual-dtl-flow__check-list-item {
  position: relative;
  padding-left: 21px;
  font-size: 1.5rem;
  line-height: calc(1em + 5px);
}
.manual-dtl-flow__check-list-item:not(:last-child) {
  margin-bottom: 5px;
}
.manual-dtl-flow__check-list-item::before {
  position: absolute;
  top: calc(0.5em - 7px);
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../manual/images/icon_check.svg) no-repeat center/contain;
  content: "";
}
.manual-dtl-flow__num-head-list {
  counter-reset: list_head_num;
}
.manual-dtl-flow__num-head-list-item {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.5rem;
  line-height: calc(1em + 5px);
}
.manual-dtl-flow__num-head-list-item:not(:last-child) {
  margin-bottom: 10px;
}
.manual-dtl-flow__num-head-list-item::before {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-green);
  font-weight: bold;
  letter-spacing: 0;
  content: counter(list_head_num) ".";
  counter-increment: list_head_num;
}
.manual-dtl .sect-num--inline {
  display: inline-block;
  position: relative;
  z-index: 0;
  transform: scale(0.8);
  min-width: 20px;
  margin-right: 0.08em;
  padding: 0 1px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
}
.manual-dtl .sect-num--inline::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 125%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: var(--main-green);
  content: "";
}
.manual-dtl .flow-num--inline {
  display: inline-block;
  width: calc(1.25em + 1px);
  margin: -1px 0.04em 0;
  padding-top: 1px;
  background: #000;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
}
