@charset "UTF-8";
:root {
  --black: 0,0,0;
  --primary-color: 22,68,10;
  --secondary-color: 16,119,76;
  --tertiary-color: 248,247,232;
  --border-green: 225,229,209;
  --bg-green: 239,244,243;
  --gray: 144,157,151;
  --border: 236,236,236;
  --contents_width: 1100px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1160px;
  --sidebar_width: 250px;
  --sp-header_height: 60px;
  --pc-header_height: 110px;
  --lh_head: 1.5;
  --lh_base: 2;
  --lh_en: 1.2;
  --ls_head: 0.06em;
  --ls_base: 0.06em;
  --ls_en: 0.06em;
  --font_sans: Noto Sans JP, ヒラギノ角ゴ ProN W3, Meiryo, sans-serif;
  --font_lato: Lato, sans-serif;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  padding-top: var(--sp-header_height);
  font-family: var(--font_sans);
  color: rgb(var(--black));
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--lh_base);
  letter-spacing: var(--ls_base);
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: var(--pc-header_height);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: var(--sidebar_width) 20px auto;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1160px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1159px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1160px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1160px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-font-lato {
  font-family: var(--font_lato);
  font-weight: 700;
  letter-spacing: var(--ls_en);
  line-height: var(--lh_en);
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-style: solid;
  border-width: 1px 0 0;
}
.c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item-in {
  display: block;
  padding: 10px 0;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
}
.c-archive01__item-date {
  margin: 0 10px 0 0;
  padding: 5px 0;
}
.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-archive01__item-cat-item {
  margin: 0 5px 5px 0;
  padding: 5px 10px;
  background: rgb(var(--black));
  color: #fff;
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 1.8em;
  line-height: 1.8;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item-head {
    max-height: 3.6em;
    -webkit-line-clamp: 2;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-blue
================================================== */
.c-color-blue {
  color: blue;
}

/*  .c-contact01
================================================== */
.c-contact01 {
  background: url(../img/common/bg_contact01_sp.png) repeat-y top/100% auto;
}
.c-contact01__head {
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: var(--ls_head);
}
.c-contact01__head-en {
  display: block;
  font-size: 3.8rem;
}
.c-contact01__txt {
  margin-bottom: 30px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}
.c-contact01__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}
.c-contact01__box {
  position: relative;
}
.c-contact01__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 10px;
}
.c-contact01-list {
  position: relative;
  padding: 20px 15px;
}
.c-contact01-list::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -55px;
  display: block;
  width: 88px;
  height: 95px;
  background: url(../img/common/img_contact01.png) no-repeat center/contain;
}
.c-contact01-list__item {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
}
.c-contact01-list__item + .c-contact01-list__item {
  margin-top: 10px;
}
.c-contact01-list__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  border-radius: 56px;
  height: 80px;
  font-weight: 700;
  box-sizing: border-box;
}
.c-contact01-list__link.is-form {
  -webkit-filter: drop-shadow(0px 3px 20px rgba(255, 176, 0, 0.4));
  filter: drop-shadow(0px 3px 20px rgba(255, 176, 0, 0.4));
  background: linear-gradient(to right, #fc7813 0%, #fc9f13 100%);
  color: #fff;
  line-height: 1.5;
  font-size: 1.6rem;
}
.c-contact01-list__link.is-tel {
  background-color: #fff;
  border: 2px solid rgb(var(--border));
  font-size: 2.4rem;
  line-height: 1;
  color: rgb(var(--primary-color));
}
.c-contact01-list__sub {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 400;
}
.c-contact01-list__ico {
  width: 24px;
  margin-right: 11px;
  color: #fff;
}
.c-contact01-list__ico.is-tel {
  width: 15px;
  color: rgb(var(--primary-color));
}
.c-contact01-list__arw {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
}
@media all and (min-width: 768px) {
  .c-contact01 {
    background: url(../img/common/bg_contact01_pc.png) no-repeat bottom/cover;
  }
  .c-contact01__head {
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
  .c-contact01__head-en {
    font-size: 6rem;
  }
  .c-contact01__txt {
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.6rem;
  }
  .c-contact01__inner {
    width: calc(100vw - 120px);
    max-width: 1400px;
    min-width: var(--contents_width);
    padding-top: 84px;
    padding-bottom: 106px;
  }
  .c-contact01__bg {
    border-radius: 30px;
  }
  .c-contact01-list {
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 45px 15px;
  }
  .c-contact01-list::after {
    right: -11px;
    bottom: -106px;
    width: 226px;
    height: 216px;
  }
  .c-contact01-list__item {
    max-width: 510px;
    margin: 0;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .c-contact01-list__item {
    margin-left: -8.5%;
  }
}
@media all and (min-width: 768px) {
  .c-contact01-list__item + .c-contact01-list__item {
    margin-top: 0;
    margin-left: 6.4%;
  }
}
@media all and (min-width: 768px) {
  .c-contact01-list__link {
    height: 100px;
    transition: all 0.3s ease;
  }
  .c-contact01-list__link.is-form {
    position: relative;
    overflow: hidden;
    width: 510px;
    font-size: 2rem;
  }
  .c-contact01-list__link.is-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    background-color: #EE7213;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
  .c-contact01-list__link.is-form:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  .c-contact01-list__link.is-tel {
    width: 342px;
    background-color: transparent;
    border: none;
    font-size: 3.6rem;
  }
  .c-contact01-list__link.is-tel:hover {
    opacity: 0.7;
  }
}
@media all and (min-width: 768px) {
  .c-contact01-list__sub {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    font-size: 1.4rem;
  }
}
@media all and (min-width: 768px) {
  .c-contact01-list__ico {
    width: 28px;
    margin-right: 14px;
  }
  .c-contact01-list__ico.is-tel {
    width: 21px;
  }
}
@media all and (min-width: 768px) {
  .c-contact01-list__arw {
    right: 30px;
  }
}

.c-cv01 {
  -webkit-transform: translateX(120%);
  transform: translateX(120%);
  position: fixed;
  top: calc(var(--vh, 1vh) * 100 / 2 - 150px);
  right: 0;
  width: 90px;
  height: 300px;
  color: #fff;
  transition: all 0.3s ease;
}
.c-cv01.is-shown {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.c-cv01__link {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 0 34px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #fc7813 0%, #fc9f13 100%);
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 3px 30px rgba(255, 176, 0, 0.4);
}
.c-cv01__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  background-color: #EE7213;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.c-cv01__link:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
.c-cv01__txt {
  position: relative;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.7rem;
  letter-spacing: 6px;
  line-height: 1.3;
}
.c-cv01__ico {
  position: relative;
  z-index: 2;
  width: 28px;
}
.c-cv01__arw {
  position: relative;
  z-index: 2;
  width: 9px;
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 54px;
  padding: 15px 20px;
  background-color: #F2F2F1 !important;
  border: none;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
@media all and (min-width: 768px) {
  input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
    height: 60px;
  }
}

textarea.c-form-parts {
  height: 200px;
  resize: vertical;
}

select.c-form-parts {
  width: 300px;
  padding-right: 24px;
  background: #F2F2F1 no-repeat right 15px top 50%/8px !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%226%22%20viewBox%3D%220%200%208%206%22%3E%0A%20%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_67%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%2067%22%20d%3D%22M4%2C0%2C8%2C6H0Z%22%20transform%3D%22translate(8%206)%20rotate(180)%22%20fill%3D%22%2316440a%22%2F%3E%0A%3C%2Fsvg%3E%0A") !important;
}

::-webkit-input-placeholder {
  color: #909D97;
}

::-moz-placeholder {
  color: #909D97;
}

:-ms-input-placeholder {
  color: #909D97;
}

::-ms-input-placeholder {
  color: #909D97;
}

::placeholder {
  color: #909D97;
}
@media all and (min-width: 768px) {
  ::-webkit-input-placeholder {
    font-size: 1.7rem;
  }
  ::-moz-placeholder {
    font-size: 1.7rem;
  }
  :-ms-input-placeholder {
    font-size: 1.7rem;
  }
  ::-ms-input-placeholder {
    font-size: 1.7rem;
  }
  ::placeholder {
    font-size: 1.7rem;
  }
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default {
  margin-top: 20px;
  font-size: 1.6rem;
}
.c-form.is-default .wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 20px 15px;
}
.c-form.is-default #errorMsg {
  text-align: center;
  font-weight: 400;
  margin-bottom: 30px;
}
.c-form.is-default th, .c-form.is-default td {
  padding: 0 0 25px;
  border-style: solid;
  border-width: 0;
  color: rgb(var(--primary-color));
}
.c-form.is-default th {
  display: flex;
  align-items: center;
  padding: 25px 0 10px;
  font-weight: 700;
  text-align: left;
}
.c-form.is-default td {
  font-weight: 400;
}
@media all and (max-width: 767px) {
  .c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default td {
    display: block;
  }
  .c-form.is-default th {
    border-bottom: 0;
  }
  .c-form.is-default tr + tr th {
    border-top: 1px solid #E5E6E3;
  }
}
@media all and (min-width: 768px) {
  .c-form.is-default .wrap {
    padding: 30px 80px;
    border-radius: 30px;
  }
  .c-form.is-default tr {
    border-bottom: 1px solid #E5E6E3;
  }
  .c-form.is-default tr:last-child {
    border-bottom: none;
  }
  .c-form.is-default th, .c-form.is-default td {
    border: none;
    box-sizing: border-box;
  }
  .c-form.is-default th {
    justify-content: space-between;
    width: 232px;
    font-size: 1.8rem;
  }
  .c-form.is-default td {
    width: 708px;
    padding: 40px 40px 40px 48px;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 52px;
  height: 25px;
  margin-left: 15px;
  border: 1px solid #909D97;
  color: #909D97;
  font-size: 1.4rem;
  line-height: 25px;
}
.c-form-label.is-required {
  background: #F28029;
  border: 1px solid #F28029;
  color: #fff;
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  font-size: 1.3rem;
}

td .c-form-note {
  margin-top: 10px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1160px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 40px;
  text-align: center;
  font-weight: 400;
}
.c-form-agreement__link {
  display: inline-block;
  margin-top: 15px;
  color: #909D97;
  font-size: 1.3rem;
  text-decoration: underline !important;
}
.c-form-agreement__ico {
  width: 14px;
  margin-left: 8px;
}
@media all and (min-width: 768px) {
  .c-form-agreement {
    margin-top: 60px;
  }
  .c-form-agreement__link {
    margin-top: 30px;
  }
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.c-form-btn,
#mhMailForm #submitArea .btnConfirm,
#mhMailForm #submitArea .btnAdjust,
#mhMailForm #submitArea .btnSubmit {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 65px;
  background: linear-gradient(to right, #fc7813 0%, #fc9f13 100%);
  border-radius: 56px;
  margin: 40px auto 0;
  padding: 5px 10px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: var(--ls_base);
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
}
.c-form-btn + .c-form-btn,
#mhMailForm #submitArea .btnConfirm + .c-form-btn,
#mhMailForm #submitArea .btnAdjust + .c-form-btn,
#mhMailForm #submitArea .btnSubmit + .c-form-btn {
  margin-top: 10px;
}
.c-form-btn::before,
#mhMailForm #submitArea .btnConfirm::before,
#mhMailForm #submitArea .btnAdjust::before,
#mhMailForm #submitArea .btnSubmit::before {
  content: none !important;
}
.c-form-btn::after,
#mhMailForm #submitArea .btnConfirm::after,
#mhMailForm #submitArea .btnAdjust::after,
#mhMailForm #submitArea .btnSubmit::after {
  content: "" !important;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 14px;
  padding: 0 !important;
  margin: 0 !important;
  background: no-repeat center/contain !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.273%22%20height%3D%2214%22%20viewBox%3D%220%200%209.273%2014%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_5381%22%20data-name%3D%22%E3%83%91%E3%82%B9%205381%22%20d%3D%22M-126.582%2C304.815l-1.891-1.977%2C5.315-5.023-5.315-5.023%2C1.891-1.977%2C7.382%2C7-7.382%2C7Z%22%20transform%3D%22translate(128.473%20-290.815)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A") !important;
}
@media all and (min-width: 768px) {
  .c-form-btn,
#mhMailForm #submitArea .btnConfirm,
#mhMailForm #submitArea .btnAdjust,
#mhMailForm #submitArea .btnSubmit {
    position: relative;
    overflow: hidden;
    width: 510px;
    height: 100px;
    margin-top: 48px;
    font-size: 2rem;
  }
  .c-form-btn::after,
#mhMailForm #submitArea .btnConfirm::after,
#mhMailForm #submitArea .btnAdjust::after,
#mhMailForm #submitArea .btnSubmit::after {
    right: 30px;
  }
  .c-form-btn + .c-form-btn,
#mhMailForm #submitArea .btnConfirm + .c-form-btn,
#mhMailForm #submitArea .btnAdjust + .c-form-btn,
#mhMailForm #submitArea .btnSubmit + .c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }
  .c-form-btn span,
#mhMailForm #submitArea .btnConfirm span,
#mhMailForm #submitArea .btnAdjust span,
#mhMailForm #submitArea .btnSubmit span {
    position: relative;
    z-index: 2;
  }
}

@media all and (min-width: 768px) {
  #mhMailForm #submitArea .btnConfirm::before,
#mhMailForm #submitArea .btnSubmit::before {
    content: "" !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: #EE7213 !important;
    border-radius: 56px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    padding: 0 !important;
    margin: 0 !important;
  }
  #mhMailForm #submitArea .btnConfirm:hover::before,
#mhMailForm #submitArea .btnSubmit:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

#mhMailForm #submitArea .btnConfirm:disabled {
  pointer-events: none;
  background: #E1E5D1;
  color: #909D97;
}
#mhMailForm #submitArea .btnConfirm:disabled::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.273%22%20height%3D%2214%22%20viewBox%3D%220%200%209.273%2014%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_5381%22%20data-name%3D%22%E3%83%91%E3%82%B9%205381%22%20d%3D%22M-126.582%2C304.815l-1.891-1.977%2C5.315-5.023-5.315-5.023%2C1.891-1.977%2C7.382%2C7-7.382%2C7Z%22%20transform%3D%22translate(128.473%20-290.815)%22%20fill%3D%22%23909d97%22%2F%3E%3C%2Fsvg%3E") !important;
}

#mhMailForm #submitArea .btnAdjust {
  background: #909D97;
  margin-top: 16px;
}
#mhMailForm #submitArea .btnAdjust::after {
  right: auto;
  left: 20px;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
}
@media all and (min-width: 768px) {
  #mhMailForm #submitArea .btnAdjust {
    width: 260px;
    height: 60px;
    margin-top: 30px;
    transition: all 0.3s ease;
  }
  #mhMailForm #submitArea .btnAdjust:hover {
    opacity: 0.7;
  }
}

#mhMailForm #submitArea .btnSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
}
#mhMailForm #submitArea .btnSubmit span {
  position: relative;
  padding-left: 36px;
}
#mhMailForm #submitArea .btnSubmit span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  width: 24px;
  height: 15px;
  padding: 0;
  margin: 0 12px 0 0;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_49237%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2049237%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223.531%22%20height%3D%2215.05%22%20viewBox%3D%220%200%2023.531%2015.05%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_80022%22%20data-name%3D%22%E3%83%91%E3%82%B9%2080022%22%20d%3D%22M1659.944%2C426.441V417.4l-6.992%2C4.512Z%22%20transform%3D%22translate(-1636.413%20-414.41)%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_80023%22%20data-name%3D%22%E3%83%91%E3%82%B9%2080023%22%20d%3D%22M1398.944%2C417.4v9.045l6.991-4.533Z%22%20transform%3D%22translate(-1398.944%20-414.41)%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_80024%22%20data-name%3D%22%E3%83%91%E3%82%B9%2080024%22%20d%3D%22M1409.523%2C519l-2.129-1.374-8.45%2C5.475v.442a.775.775%2C0%2C0%2C0%2C.832.694h21.867a.773.773%2C0%2C0%2C0%2C.832-.694v-.445l-8.448-5.475L1411.9%2C519A2.251%2C2.251%2C0%2C0%2C1%2C1409.523%2C519Z%22%20transform%3D%22translate(-1398.944%20-509.184)%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_80025%22%20data-name%3D%22%E3%83%91%E3%82%B9%2080025%22%20d%3D%22M1421.643%2C362.474h-21.867a.775.775%2C0%2C0%2C0-.832.694v.412l11.765%2C7.591%2C11.766-7.589v-.414A.773.773%2C0%2C0%2C0%2C1421.643%2C362.474Z%22%20transform%3D%22translate(-1398.944%20-362.474)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A") !important;
}
@media all and (min-width: 768px) {
  #mhMailForm #submitArea .btnSubmit span::before {
    top: 8px;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
}
@media all and (min-width: 768px) {
  .c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
    top: 5px;
  }
  .c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
    top: 6px;
  }
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .mwform-radio-field + .mwform-radio-field, .c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 12px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  vertical-align: top;
  color: rgb(var(--primary-color));
  font-size: 1.5rem;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border: 1px solid #909D97;
}
.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  position: absolute;
  top: 8px;
  left: 4px;
  content: "";
  display: block;
  width: 19px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219%22%20height%3D%2215.096%22%20viewBox%3D%220%200%2019%2015.096%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_66323%22%20data-name%3D%22%E3%83%91%E3%82%B9%2066323%22%20d%3D%22M-12881.8-21615.682l-6.7-7.15%2C2.93-2.746%2C3.861%2C4.113%2C9.365-9.312%2C2.844%2C2.836Z%22%20transform%3D%22translate(12888.502%2021630.777)%22%20fill%3D%22%2310774c%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
@media all and (min-width: 768px) {
  .c-form .mwform-checkbox-field,
.c-form .c-checkbox {
    display: inline-block;
    margin-right: 40px;
  }
  .c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
    padding-top: 2px;
  }
  .c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
    top: 5px;
  }
  .c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
    top: 9px;
  }
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

.c-head01 {
  color: rgb(var(--primary-color));
  font-size: 2rem;
  line-height: var(--lh_head);
  letter-spacing: var(--ls_head);
}
.c-head01.is-center {
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-head01 {
    font-size: 3.6rem;
  }
}

.c-head02.has-ico {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}
.c-head02.has-ico .c-head02__ico {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 27px;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .c-head02.has-ico {
    padding-top: 48px;
  }
  .c-head02.has-ico .c-head02__ico {
    width: 85px;
    height: 50px;
  }
}

.c-head02.is-white {
  color: #fff;
}
.c-head02.is-white .c-head02__en {
  color: rgba(255, 255, 255, 0.1);
}

.c-head02 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 84px;
  margin: 0 -20px;
  text-align: center;
  color: rgb(var(--primary-color));
  font-size: 2.3rem;
  letter-spacing: var(--ls_head);
  line-height: var(--lh_head);
}
.c-head02__en {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100vw;
  font-size: 7rem;
  letter-spacing: var(--ls_en);
  line-height: var(--lh_en);
  color: rgba(var(--secondary-color), 0.03);
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .c-head02 {
    height: 216px;
    margin: 0;
    font-size: 4rem;
  }
  .c-head02__en {
    left: 0;
    width: 100%;
    font-size: 18rem;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

.c-list01 {
  color: rgb(var(--primary-color));
  line-height: 1.75;
  font-weight: 400;
}
.c-list01__item {
  display: flex;
}
.c-list01__item::before {
  content: "・";
  color: rgb(var(--secondary-color));
  margin-right: 4px;
}
.c-list01.is-orange .c-list01__item {
  display: flex;
}
.c-list01.is-orange .c-list01__item::before {
  color: #F28029;
}
@media all and (min-width: 768px) {
  .c-list01 {
    line-height: var(--lh_base);
  }
  .c-list01__item::before {
    font-size: 2.6rem;
    line-height: 1.25;
  }
}

.c-marker01 {
  display: inline-block;
  background: linear-gradient(to top, #E2F6B9 0, #E2F6B9 7px, #ffffff 8px, #ffffff 100%);
}
@media all and (min-width: 768px) {
  .c-marker01 {
    background: linear-gradient(to top, #E2F6B9 0, #E2F6B9 10px, #ffffff 11px, #ffffff 100%);
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -5px -10px;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  line-height: 1;
  border: 1px solid rgb(var(--black));
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--black));
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.c-pager01 li.first a, .c-pager01 li.last a {
  width: auto;
  border-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}
.c-pager01 li.next, .c-pager01 li.last {
  margin-left: 15px;
}
.c-pager01 li.extend span {
  border: 0;
}
@media all and (min-width: 768px) {
  .c-pager01 li a:hover {
    text-decoration: none;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--black));
    color: #fff;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  line-height: 1;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  padding: 15px;
  border: 1px solid;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  width: 100%;
  clear: both;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
@media all and (min-width: 768px) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    background: rgb(var(--black));
    color: #fff;
    border-color: rgb(var(--black));
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
}
.c-single-content a {
  text-decoration: underline;
}
@media all and (min-width: 1160px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content .alignleft {
    float: left;
  }
  .c-single-content .alignright {
    float: right;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.c-tab01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 14px;
  color: rgb(var(--primary-color));
  font-size: 1.5rem;
  line-height: var(--lh_head);
}
.c-tab01__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 3px);
  height: 70px;
  margin-top: 6px;
  background-color: rgb(var(--bg-green));
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
}
.c-tab01__item.is-active {
  border: 2px solid rgb(var(--primary-color));
  background-color: #fff;
}
.c-tab01__content {
  margin-top: 30px;
  color: rgb(var(--primary-color));
}
.c-tab01__content-item {
  box-sizing: border-box;
  border: 2px solid rgb(var(--primary-color));
  border-radius: 10px;
  padding: 18px 20px;
}
@media all and (min-width: 768px) {
  .c-tab01 {
    position: relative;
    align-items: flex-end;
    flex-wrap: nowrap;
    margin: 40px 0 0;
    font-size: 1.6rem;
    box-sizing: border-box;
    width: 100%;
  }
  .c-tab01__item {
    position: relative;
    width: 200px;
    height: 80px;
    padding-top: 9px;
    border-radius: 10px 10px 0 0;
    color: rgb(var(--gray));
    transition: all 0.3s ease;
  }
  .c-tab01__item::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .c-tab01__item:first-child {
    width: 202px;
  }
  .c-tab01__item:first-child::before {
    background: rgb(var(--gray)) url(../img/home/ico_service06.png) no-repeat center/18px 19px;
  }
  .c-tab01__item:last-child {
    width: 201px;
    margin-right: -1px;
  }
  .c-tab01__item:nth-child(2)::before {
    background: rgb(var(--gray)) url(../img/home/ico_service01.png) no-repeat center/22px 22px;
  }
  .c-tab01__item:nth-child(3)::before {
    background: rgb(var(--gray)) url(../img/home/ico_service02.png) no-repeat center/22px 22px;
  }
  .c-tab01__item:nth-child(4)::before {
    background: rgb(var(--gray)) url(../img/home/ico_service03.png) no-repeat center/22px 22px;
  }
  .c-tab01__item:nth-child(5)::before {
    background: rgb(var(--gray)) url(../img/home/ico_service04.png) no-repeat center/22px 22px;
  }
  .c-tab01__item:nth-child(6)::before {
    background: rgb(var(--gray)) url(../img/home/ico_service05.png) no-repeat center/22px 22px;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .c-tab01__item:hover {
    background-color: #358866;
    color: #fff;
  }
  .c-tab01__item:hover::before {
    background-color: rgb(var(--secondary-color));
  }
}
@media all and (min-width: 768px) {
  .c-tab01__item.is-active {
    height: 97px;
    border-bottom: none;
    color: rgb(var(--primary-color));
    pointer-events: none;
  }
  .c-tab01__item.is-active:nth-child(1)::before {
    content: "01";
    background: #fff;
  }
  .c-tab01__item.is-active:nth-child(2)::before {
    content: "02";
    background: #fff;
  }
  .c-tab01__item.is-active:nth-child(3)::before {
    content: "03";
    background: #fff;
  }
  .c-tab01__item.is-active:nth-child(4)::before {
    content: "04";
    background: #fff;
  }
  .c-tab01__item.is-active:nth-child(5)::before {
    content: "05";
    background: #fff;
  }
  .c-tab01__item.is-active:nth-child(6)::before {
    content: "06";
    background: #fff;
  }
  .c-tab01__item.is-active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #fff;
  }
}
@media all and (min-width: 768px) {
  .c-tab01__content {
    margin-top: 0;
    border-top: 2px solid rgb(var(--primary-color));
  }
  .c-tab01__content-item {
    min-height: 510px;
    border-top: none;
    border-radius: 0 0 30px 30px;
    padding: 40px 62px 76px;
  }
}

@media all and (min-width: 768px) {
  .c-tab01.is-bottom .c-tab01__item {
    border-radius: 10px;
  }
  .c-tab01.is-bottom .c-tab01__item.is-active {
    border: 2px solid rgb(var(--primary-color));
  }
  .c-tab01.is-bottom .c-tab01__item.is-active::after {
    content: none;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: ">";
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  padding: 20px 0 20px;
  background: rgb(var(--bg-green));
  text-align: center;
}
.l-footer__cr {
  color: rgba(var(--primary-color), 0.5);
  font-weight: 400;
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .l-footer {
    padding: 35px 0 41px;
  }
  .l-footer__cr {
    font-size: 1.2rem;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  margin: 0 0 0 auto;
}
.l-footer-page-top.is-shown {
  opacity: 1;
  visibility: visible;
}
.l-footer-page-top__link {
  box-sizing: border-box;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--secondary-color));
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}
.l-footer-page-top__txt {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.l-footer-page-top__ico {
  width: 8px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-bottom: 2px;
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    transition: opacity 0.3s ease;
  }
  .l-footer-page-top__link {
    width: 100%;
    height: 100%;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.03);
}
@media all and (min-width: 768px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    min-width: var(--contents_width_with_padding);
    border-top: 5px solid rgb(var(--secondary-color));
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 57px;
  background: #fff;
  border-top: 3px solid rgb(var(--secondary-color));
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 160px;
  padding: 0 10px 0 11px;
}
.l-header-info__logo-ico {
  width: 160px;
  height: 31px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 105px;
    border-top: none;
  }
  .l-header-info__logo {
    width: 262px;
    padding: 0 0 0 20px;
  }
  .l-header-info__logo-ico {
    width: 262px;
    height: 51px;
  }
}

/* .l-nav-contact
================================================== */
.l-nav-contact {
  margin-left: auto;
  width: 57px;
  height: 100%;
}
.l-nav-contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fc7813 0%, #fc9f13 100%);
}
.l-nav-contact__ico {
  width: 20px;
  color: #fff;
}
@media all and (min-width: 768px) {
  .l-nav-contact {
    margin: -1px 0 0;
    width: 250px;
    color: #fff;
  }
  .l-nav-contact__link {
    position: relative;
    flex-wrap: wrap;
    align-content: center;
    padding-left: 26px;
    padding-bottom: 13px;
    background: rgb(var(--secondary-color));
    font-size: 2.4rem;
    line-height: var(--lh_head);
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  .l-nav-contact__link:hover {
    opacity: 0.7;
  }
  .l-nav-contact__ico {
    position: absolute;
    top: 50%;
    left: 24px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
  }
  .l-nav-contact__txt {
    font-size: 1.2rem;
    font-weight: 400;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: relative;
  width: 57px;
  height: 57px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.l-nav-btn__line {
  position: absolute;
  left: 17px;
  width: 24px;
  height: 2px;
  content: "";
  background: rgb(var(--secondary-color));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 24px;
}
.l-nav-btn__line:nth-child(2) {
  top: 32px;
}
.l-nav-btn.is-open {
  background-color: rgb(var(--bg-green));
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 26px;
  left: 19px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  top: 26px;
  left: 19px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: var(--sp-header_height);
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - var(--sp-header_height));
  min-width: 320px;
  padding: 60px 0 0;
  background: #fff;
  box-sizing: border-box;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
@media all and (max-width: 767px) {
  .l-nav {
    overflow: auto;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media all and (min-width: 768px) {
  .l-nav {
    position: static;
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 282px);
    min-width: auto;
    padding: 0;
  }
  .l-nav__box {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  color: rgb(var(--primary-color));
  font-size: 1.8rem;
}
.l-nav-list__item + .l-nav-list__item {
  margin-top: 24px;
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin: 0 13px 0 -12px;
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
  .l-nav-list__item {
    margin: 0 12px;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 0;
  }
  .l-nav-list__item:first-child {
    margin-left: 0;
  }
  .l-nav-list__item-link {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  .l-nav-list__item-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: rgb(var(--secondary-color));
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
  .l-nav-list__item-link::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 3.5px 0 3.5px;
    border-color: rgb(var(--gray)) transparent transparent transparent;
    margin-left: 8px;
  }
  .l-nav-list__item-link:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

/* .l-nav-sub
================================================== */
.l-nav-sub {
  margin: 44px 0 60px;
  color: rgb(var(--primary-color));
}
.l-nav-sub__link {
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-weight: 400;
}
.l-nav-sub__ico {
  width: 12px;
  margin-right: 4px;
}
@media all and (min-width: 768px) {
  .l-nav-sub {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 20px 10px 0;
    font-size: 1.4rem;
  }
  .l-nav-sub__item.is-contact {
    margin-left: 15px;
  }
  .l-nav-sub__item.is-contact .l-nav-sub__link {
    position: relative;
    overflow: hidden;
    display: block;
    width: 170px;
    padding: 4px 0;
    border-radius: 20px;
    background: linear-gradient(to right, #fc7813 0%, #fc9f13 100%);
    -webkit-filter: drop-shadow(0px 0px 15px rgba(255, 176, 0, 0.4));
    filter: drop-shadow(0px 0px 15px rgba(255, 176, 0, 0.4));
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .l-nav-sub__item.is-contact .l-nav-sub__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    background-color: #EE7213;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
  .l-nav-sub__item.is-contact .l-nav-sub__link:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  .l-nav-sub__item:not(.is-contact) .l-nav-sub__link:hover {
    opacity: 0.7;
  }
  .l-nav-sub__link {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    transition: all 0.3s ease;
  }
  .l-nav-sub__ico {
    width: 12px;
    margin-right: 4px;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  background: url(../img/home/bg_main01_sp.png) no-repeat bottom/cover;
  color: rgb(var(--primary-color));
  text-align: center;
  line-height: var(--lh_head);
  letter-spacing: var(--ls_head);
}
.l-main-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: calc(100vh - var(--sp-header_height));
  height: calc(var(--vh, 1vh) * 100 - var(--sp-header_height));
  max-height: 607px;
}
.l-main-img__content {
  margin-top: 20px;
}
.l-main-img__copy {
  font-size: 2.3rem;
}
.l-main-img__txt {
  margin-top: 8px;
  font-size: 1.5rem;
}
.l-main-img-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 23px;
}
.l-main-img-list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 104px;
  padding-top: 7px;
  border: 3px solid #94B900;
  border-radius: 50%;
  background-color: #fff;
  font-size: 1.2rem;
  box-sizing: border-box;
  line-height: 1.4;
}
.l-main-img-list__item::after {
  content: "";
  display: block;
  width: 44px;
  height: 37px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 5px;
}
.l-main-img-list__item:nth-child(1)::after {
  background-image: url(../img/home/ico_main01.png);
}
.l-main-img-list__item:nth-child(2)::after {
  background-image: url(../img/home/ico_main02.png);
}
.l-main-img-list__item:nth-child(3)::after {
  background-image: url(../img/home/ico_main03.png);
}
.l-main-img-list__item:nth-child(2), .l-main-img-list__item:nth-child(3) {
  margin-left: -6px;
}
@media all and (min-width: 768px) {
  .l-main-img {
    background: url(../img/home/bg_main01_pc.png) no-repeat center/cover;
    text-align: left;
  }
  .l-main-img__inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 1775px;
    height: calc(100vh - var(--pc-header_height));
    height: calc(var(--vh, 1vh) * 100 - var(--pc-header_height));
    max-height: 960px;
    min-height: 545px;
    margin-left: auto;
    padding: 0 0 0 60px;
  }
  .l-main-img__content {
    position: relative;
    z-index: 3;
    flex: 0 0 48vw;
    max-width: 688px;
    min-width: 490px;
    margin-right: -54px;
    margin-bottom: 80px;
  }
  .l-main-img__copy {
    font-size: 3.4rem;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .l-main-img__copy {
    font-size: 4.8rem;
  }
}
@media all and (min-width: 768px) {
  .l-main-img__txt {
    margin-top: 25px;
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .l-main-img__txt {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 768px) {
  .l-main-img-list {
    justify-content: flex-start;
    margin-top: 27px;
    text-align: center;
  }
  .l-main-img-list__item {
    width: 118px;
    height: 118px;
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .l-main-img-list__item {
    width: 150px;
    height: 150px;
    font-size: 1.6rem;
  }
}
@media all and (min-width: 768px) {
  .l-main-img-list__item::after {
    width: 62px;
    height: 52px;
  }
}
@media all and (min-width: 768px) {
  .l-main-img-list__item:nth-child(2), .l-main-img-list__item:nth-child(3) {
    margin-left: -9px;
  }
}
@media all and (min-width: 768px) {
  .l-main-img__img {
    position: absolute;
    right: 30px;
    width: 60vw;
    max-width: 1125px;
    min-width: 738px;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: #166041;
  font-size: 2rem;
  text-align: center;
  color: #fff;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 170px;
}
@media all and (min-width: 768px) {
  .l-sub-img {
    font-size: 3.6rem;
  }
  .l-sub-img__inner {
    height: 300px;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-bg-left] .js-c-anime-bg {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: all 0.8s cubic-bezier(0.7, 0, 0.21, 0.99);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
.js-c-anime-elem[data-anime=fadein-bg-left] .js-c-anime-content {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.7, 0, 0.21, 0.99) 0.9s;
}
.js-c-anime-elem[data-anime=fadein-bg-left].is-animated .js-c-anime-bg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.js-c-anime-elem[data-anime=fadein-bg-left].is-animated .js-c-anime-content {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .js-c-anime-elem[data-anime=fadein-bg-left] .js-c-anime-bg.is-top-delay {
    transition-delay: 3.6s;
  }
  .js-c-anime-elem[data-anime=fadein-bg-left] .js-c-anime-content.is-top-delay {
    transition-delay: 4.2s;
  }
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-head-anime {
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* .contact-intro
================================================ */
.contact-intro {
  color: rgb(var(--primary-color));
}
.contact-intro__inner {
  padding-top: 13px;
  padding-bottom: 60px;
}
.contact-intro-set__areaTxt {
  margin-top: 14px;
  font-size: 1.5rem;
}
.contact-intro-box {
  position: relative;
  margin-top: 63px;
  padding: 25px 20px;
  background-color: rgb(var(--bg-green));
  border-radius: 10px;
  text-align: center;
}
.contact-intro-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6px;
  display: block;
  width: 70px;
  height: 67px;
  background: url(../img/common/img_contact01.png) no-repeat center/contain;
}
.contact-intro-box__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.contact-intro-box__label::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border: 3px solid rgb(var(--primary-color));
  border-radius: 50%;
  margin-right: 8px;
}
.contact-intro-box__head {
  font-size: 1.8rem;
}
.contact-intro-box__btn {
  margin-top: 16px;
}
@media all and (min-width: 768px) {
  .contact-intro__inner {
    width: calc(100vw - 120px);
    max-width: 1400px;
    min-width: var(--contents_width);
    padding-top: 30px;
    padding-bottom: 140px;
  }
  .contact-intro-set {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-intro-set__areaTxt {
    font-size: 1.8rem;
  }
  .contact-intro-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding: 50px 20px 65px;
    border-radius: 30px;
    text-align: left;
  }
  .contact-intro-box::after {
    right: 0;
    width: 184px;
    height: 176px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .contact-intro-box::after {
    right: 110px;
  }
}
@media all and (min-width: 768px) {
  .contact-intro-box__label {
    justify-content: flex-start;
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) {
  .contact-intro-box__head {
    font-size: 2.8rem;
  }
}
@media all and (min-width: 768px) {
  .contact-intro-box__btn {
    margin-top: 0;
    margin-left: 12%;
  }
}

/* .contact-form
================================================ */
.contact-form {
  background-color: rgb(var(--tertiary-color));
}
.contact-form__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .contact-form__inner {
    padding-top: 80px;
    padding-bottom: 140px;
  }
}

/* .contact-thanks
================================================ */
.contact-thanks__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact-thanks__txt {
  margin-top: 30px;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .contact-thanks {
    min-height: calc(var(--vh, 1vh) * 100 - 510px);
  }
  .contact-thanks__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .contact-thanks__txt {
    margin-top: 50px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* .home-loading
================================================ */
.home-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background-color: rgb(var(--secondary-color));
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-loading-logo {
  opacity: 0;
}
.home-loading-logo__ico {
  width: 204px;
}
@media all and (min-width: 768px) {
  .home-loading-logo__ico {
    width: 274px;
  }
}

/* .home-sdgs
================================================ */
.home-sdgs {
  background-color: rgb(var(--bg-green));
}
.home-sdgs__inner {
  padding-top: 30px;
}
.home-sdgs__box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px 18px 18px;
  box-sizing: border-box;
}
.home-sdgs__box-in {
  position: relative;
  z-index: 1;
}
.home-sdgs__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 3px 20px rgba(var(--secondary-color), 0.24);
  border-radius: 10px;
}
.home-sdgs__head {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 8px;
  text-align: center;
  color: rgb(var(--primary-color));
}
.home-sdgs__head::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border: 3px solid rgb(var(--primary-color));
  border-radius: 50%;
  box-sizing: border-box;
  margin-top: 9px;
  margin-right: 4px;
}
@media all and (min-width: 768px) {
  .home-sdgs {
    position: absolute;
    left: 0;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
    background-color: transparent;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .home-sdgs {
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
  }
}
@media all and (min-width: 768px) {
  .home-sdgs__inner {
    padding-top: 0;
  }
}
@media all and (min-width: 768px) {
  .home-sdgs__box {
    padding: 22px 40px 24px 33px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .home-sdgs__box {
    padding: 27px 50px 30px 40px;
  }
}
@media all and (min-width: 768px) {
  .home-sdgs__bg {
    border-radius: 0 10px 10px 0;
  }
}
@media all and (min-width: 768px) {
  .home-sdgs__head {
    justify-content: flex-start;
    margin-bottom: 14px;
    text-align: left;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .home-sdgs__head {
    font-size: 2rem;
  }
  .home-sdgs__head::before {
    margin-top: 13px;
  }
}
@media all and (min-width: 768px) {
  .home-sdgs__head::before {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-right: 7px;
  }
}
@media all and (min-width: 768px) {
  .home-sdgs__img {
    width: 538px;
    margin: auto;
  }
}

/* .home-problem
================================================ */
.home-problem {
  background-color: rgb(var(--bg-green));
}
.home-problem__inner {
  padding-top: 42px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .home-problem__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.home-problem-list {
  display: flex;
}
.home-problem-list__wrap {
  position: relative;
  padding-bottom: 70.1%;
}
.home-problem-list__wrap::before, .home-problem-list__wrap::after {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
}
.home-problem-list__wrap::before {
  bottom: 20px;
  left: 0;
  padding-top: 70.1%;
  background: url(../img/home/bg_problem03_sp.png) no-repeat center bottom/cover;
}
.home-problem-list__wrap::after {
  bottom: 62px;
  padding-top: 42.54%;
  background: url(../img/home/bg_problem01_sp.gif) no-repeat center bottom/100% auto;
}
.home-problem-list__item {
  position: relative;
  z-index: 3;
  width: 210px;
  flex: 0 0 210px;
  margin: 0 4px;
  padding: 18px 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 20px rgba(var(--primary-color), 0.1);
  color: rgb(var(--primary-color));
  line-height: 1.4;
  text-align: center;
}
.home-problem-list__item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/home/ico_check01.png) no-repeat center/contain;
}
@media all and (max-width: 767px) {
  .home-problem-list {
    -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
  }
  .home-problem-list__wrap {
    overflow: hidden;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 20px;
  }
  .home-problem-list__box {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 7px 0;
  }
  .home-problem-list__box:nth-child(2) .home-problem-list:first-child {
    margin-left: 30px;
  }
}
@media all and (min-width: 768px) {
  .home-problem-list {
    justify-content: center;
  }
  .home-problem-list__wrap {
    margin-top: 60px;
    padding-bottom: 394px;
  }
  .home-problem-list__wrap::before, .home-problem-list__wrap::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-top: 0;
  }
  .home-problem-list__wrap::before {
    bottom: -44px;
    width: 1674px;
    height: 628px;
    background: url(../img/home/bg_problem03_pc.png) no-repeat center bottom/contain;
  }
  .home-problem-list__wrap::after {
    bottom: 120px;
    width: 1140px;
    height: 274px;
    background: url(../img/home/bg_problem01_pc.gif) no-repeat center bottom/100% auto;
  }
  .home-problem-list__box:nth-child(2) {
    margin-top: 13px;
    margin-left: 50px;
  }
  .home-problem-list__box:nth-child(2) .home-problem-list__item:nth-child(1) {
    padding-bottom: 45px;
    background: url(../img/home/bg_bubble01.png) no-repeat center/120%;
    box-shadow: none;
  }
  .home-problem-list__box:nth-child(2) .home-problem-list__item:nth-child(2) {
    padding-bottom: 45px;
    background: url(../img/home/bg_bubble02.png) no-repeat center/120%;
    box-shadow: none;
  }
  .home-problem-list__box:nth-child(2) .home-problem-list__item:nth-child(3) {
    padding-bottom: 45px;
    background: url(../img/home/bg_bubble03.png) no-repeat center/120%;
    box-shadow: none;
  }
  .home-problem-list__item {
    width: 320px;
    flex: 0 0 320px;
    margin: 0 28px;
    padding: 20px 0 25px;
    font-size: 1.8rem;
  }
  .home-problem-list__item::before {
    top: -2px;
    left: -3px;
    width: 26px;
    height: 26px;
  }
  .home-problem-list__em {
    font-size: 2rem;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.home-problem-solution {
  margin-top: 4px;
}
.home-problem-solution__head {
  position: relative;
  padding: 28px 0 21px;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: var(--lh_head);
}
.home-problem-solution__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  padding-top: 26.3%;
  background: url(../img/home/bg_problem02_sp.png) no-repeat center bottom/contain;
}
@media (min-width: 415px) {
  .home-problem-solution__head::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 374px;
  }
}
.home-problem-solution-set__catch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/home/bg_problem05_sp.png) no-repeat center/cover;
  padding: 10px 0;
}
.home-problem-solution-set__catch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 135px;
  height: 129px;
  background: url(../img/home/bg_problem04.png) no-repeat center/contain;
}
.home-problem-solution-set__copy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background-color: rgba(43, 99, 75, 0.4);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: var(--ls_head);
}
.home-problem-solution-set__bubble {
  position: absolute;
  top: 5px;
  right: -29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: #F6F600;
  border-radius: 50%;
  text-align: center;
  color: rgb(var(--primary-color));
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.home-problem-solution-set__bubble span {
  padding: 3px 0;
  font-size: 1rem;
  letter-spacing: var(--ls-base);
}
.home-problem-solution-set__bubble-color {
  color: #358866;
}
.home-problem-solution-set__bubble::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #F6F600 transparent transparent;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.home-problem-solution-set__content {
  position: relative;
  padding: 30px 18px 40px;
  border: 2px solid #5C8F2E;
  border-top-width: 0;
  border-radius: 0 0 30px 0;
  background-color: #fff;
}
.home-problem-solution-set__content::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 40px;
  display: block;
  width: 26px;
  height: 28px;
  background: url(../img/home/ico_leaf01.png) no-repeat center/contain;
}
.home-problem-solution-set__txt {
  margin-top: 20px;
}
.home-problem-solution-set-list {
  margin-top: 30px;
  color: #fff;
  font-size: 1.5rem;
}
.home-problem-solution-set-list__item {
  display: flex;
  align-items: center;
  background-color: rgb(var(--secondary-color));
  border-radius: 4px;
  margin-top: 5px;
  padding: 10px 20px;
  box-sizing: border-box;
}
.home-problem-solution-set-list__item::before {
  content: "";
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 19px;
  background: url(../img/home/ico_check02.png) no-repeat center/contain;
  margin-right: 8px;
}
@media all and (min-width: 768px) {
  .home-problem-solution {
    margin-top: 0;
  }
  .home-problem-solution__head {
    width: 740px;
    margin: auto;
    padding: 66px 0 47px;
    font-size: 2rem;
    background: url(../img/home/bg_problem02_pc.png) no-repeat center bottom/cover;
  }
  .home-problem-solution-set {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: flex;
    width: calc(100vw - 40px);
    max-width: 1760px;
    min-width: var(--contents_width);
  }
  .home-problem-solution-set__catch {
    flex: 0 0 48%;
    width: 48%;
    max-width: 838px;
    background: url(../img/home/bg_problem05_pc.png) no-repeat center/cover;
    padding: 145px 0;
    border: 2px solid #5C8F2E;
    border-right: none;
    border-radius: 200px 0 0 0;
  }
  .home-problem-solution-set__catch::after {
    left: -82px;
    bottom: -124px;
    width: 429px;
    height: 410px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .home-problem-solution-set__catch::after {
    left: 84px;
  }
}
@media all and (min-width: 768px) {
  .home-problem-solution-set__copy {
    width: 40vw;
    height: 40vw;
    max-width: 462px;
    max-height: 462px;
    min-width: 496px;
    min-height: 496px;
    text-decoration-thickness: 3px;
    text-underline-offset: 9px;
    font-size: 2.6rem;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .home-problem-solution-set__copy {
    max-width: 562px;
    max-height: 562px;
    font-size: 3.4rem;
  }
}
@media all and (min-width: 768px) {
  .home-problem-solution-set__bubble {
    top: 23px;
    right: -38px;
    width: 190px;
    height: 190px;
    font-size: 5rem;
  }
  .home-problem-solution-set__bubble span {
    padding: 6px 0;
    font-size: 1.6rem;
  }
  .home-problem-solution-set__bubble::after {
    bottom: 6px;
    left: 27px;
    border-width: 10px 20px 10px 0;
  }
}
@media all and (min-width: 768px) {
  .home-problem-solution-set__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-left: none;
    border-top-width: 2px;
    border-radius: 0 0 30px 0;
  }
  .home-problem-solution-set__content > * {
    width: 70%;
    padding-left: 10%;
  }
  .home-problem-solution-set__content .home-problem-solution-set-list {
    width: 90%;
  }
  .home-problem-solution-set__content::after {
    right: 246px;
    width: 38px;
    height: 41px;
  }
  .home-problem-solution-set__content-head {
    font-size: 2.8rem;
  }
}
@media all and (min-width: 768px) {
  .home-problem-solution-set__txt {
    margin-top: 30px;
  }
}
@media all and (min-width: 768px) {
  .home-problem-solution-set-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    font-size: 2rem;
  }
  .home-problem-solution-set-list__item {
    width: calc(50% - 5px);
    max-width: 320px;
    -webkit-clip-path: none;
    clip-path: none;
    border-radius: 4px;
    margin-top: 7px;
    padding: 10px 14px;
  }
  .home-problem-solution-set-list__item::before {
    flex: 0 0 27px;
    width: 27px;
    height: 26px;
    margin-right: 13px;
  }
  .home-problem-solution-set-list__item:nth-child(even) {
    margin-left: 10px;
  }
}

/* .home-service
================================================ */
.home-service__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.home-service-content__head {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(var(--primary-color));
  font-size: 1.7rem;
  letter-spacing: var(--ls_head);
  line-height: var(--lh_head);
}
.home-service-content__head::before {
  content: "";
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 8px;
}
.home-service-content__head.is-cat01::before {
  background: #358866 url(../img/home/ico_service01.png) no-repeat center/29px 29px;
}
.home-service-content__head.is-cat02::before {
  background: #358866 url(../img/home/ico_service02.png) no-repeat center/29px 29px;
}
.home-service-content__head.is-cat03::before {
  background: #358866 url(../img/home/ico_service03.png) no-repeat center/29px 29px;
}
.home-service-content__head.is-cat04::before {
  background: #358866 url(../img/home/ico_service04.png) no-repeat center/29px 29px;
}
.home-service-content__head.is-cat05::before {
  background: #358866 url(../img/home/ico_service05.png) no-repeat center/29px 29px;
}
@media all and (min-width: 768px) {
  .home-service__inner {
    width: calc(100vw - 40px);
    max-width: 1224px;
    min-width: var(--contents_width);
    padding-top: 60px;
    padding-bottom: 130px;
  }
  .home-service-content__head {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 2.8rem;
  }
  .home-service-content__head::before {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  .home-service-content__head.is-cat01::before {
    background-size: 39px 39px;
  }
  .home-service-content__head.is-cat02::before {
    background-size: 39px 39px;
  }
  .home-service-content__head.is-cat03::before {
    background-size: 39px 39px;
  }
  .home-service-content__head.is-cat04::before {
    background-size: 39px 39px;
  }
  .home-service-content__head.is-cat05::before {
    background-size: 39px 39px;
  }
}

.home-service-list {
  font-size: 1.5rem;
}
.home-service-list + .home-service-content__head {
  margin-top: 30px;
}
.home-service-list__item {
  position: relative;
  margin-top: 8px;
  padding-left: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(var(--border-green));
}
.home-service-list__item:last-child {
  border-bottom: none;
}
.home-service-list__item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 23px;
  height: 20px;
  background: url(../img/home/ico_check03.png) no-repeat center/contain;
  margin-right: 8px;
}
@media all and (min-width: 768px) {
  .home-service-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto 0px auto 0px auto 0px auto 0px auto;
    grid-template-rows: repeat(5, auto);
    grid-column-gap: 25px;
    grid-row-gap: 0px;
    font-size: 1.8rem;
  }
  .home-service-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .home-service-list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .home-service-list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .home-service-list > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .home-service-list > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .home-service-list > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .home-service-list > *:nth-child(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .home-service-list > *:nth-child(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .home-service-list > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .home-service-list > *:nth-child(10) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .home-service-list > *:nth-child(11) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .home-service-list > *:nth-child(12) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }
  .home-service-list > *:nth-child(13) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .home-service-list > *:nth-child(14) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .home-service-list > *:nth-child(15) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
  }
  .home-service-list + .home-service-content__head {
    margin-top: 44px;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/4/3;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2/3/3/4;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3/1/4/2;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4/2/5/3;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 3/3/4/4;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(10) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4/1/5/2;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(11) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 5/2/6/3;
    border-bottom: none;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(12) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 4/3/5/4;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(13) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 5/1/6/2;
    border-bottom: none;
  }
  .home-service-list.is-item01 .home-service-list__item:nth-child(14) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 5/3/6/4;
  }
  .home-service-list.is-item02 .home-service-list__item:last-child {
    border-bottom: none;
  }
  .home-service-list.is-item03 .home-service-list__item:nth-child(n+4) {
    border-bottom: none;
  }
  .home-service-list.is-item04 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
    align-items: flex-start;
  }
  .home-service-list.is-item04 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .home-service-list.is-item04 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .home-service-list.is-item04 > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .home-service-list.is-item04 > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .home-service-list.is-item04 > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .home-service-list.is-item04 > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .home-service-list.is-item04 > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .home-service-list.is-item04 > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .home-service-list.is-item04 > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .home-service-list.is-item04 .home-service-list__item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .home-service-list.is-item04 .home-service-list__item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
  }
  .home-service-list.is-item04 .home-service-list__item:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
  .home-service-list.is-item04 .home-service-list__item:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .home-service-list.is-item04 .home-service-list__item:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3;
    border-bottom: none;
  }
  .home-service-list.is-item04 .home-service-list__item:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2/3/4/4;
    border-bottom: none;
  }
  .home-service-list.is-item04 .home-service-list__item:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3/1/4/2;
  }
  .home-service-list.is-item05 .home-service-list__item {
    border-bottom: none;
  }
  .home-service-list__item {
    margin-top: 12px;
    padding-left: 44px;
    padding-bottom: 12px;
    line-height: var(--lh_head);
  }
  .home-service-list__item:last-child {
    border-bottom: none;
  }
  .home-service-list__item::before {
    top: 3px;
    left: 4px;
    display: block;
    width: 26px;
    height: 23px;
    margin-right: 14px;
  }
  .home-service-list__item span {
    font-size: 1.5rem;
    font-weight: 400;
  }
}

/* .home-reason
================================================ */
.home-reason {
  position: relative;
  counter-reset: num;
  border-top: 4px solid #5B8E2D;
  background-color: #F8F7E8;
}
.home-reason::before {
  content: "";
  position: absolute;
  top: -213px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 335px;
  height: 335px;
  background-color: #5B8E2D;
  border-radius: 50%;
}
.home-reason__inner {
  padding-top: 14px;
  padding-bottom: 53px;
}
.home-reason__head {
  margin-bottom: 52px;
}
.home-reason-sec {
  padding: 40px 0 38px;
  border-top: 1px solid rgb(var(--border-green));
}
.home-reason-sec__areaTxt {
  position: relative;
}
.home-reason-sec__areaTxt::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: -38px;
  right: 0;
  z-index: -1;
  font-family: var(--font_lato);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1;
}
.home-reason-sec__head {
  color: rgb(var(--primary-color));
  font-size: 2.2rem;
  line-height: var(--lh_head);
}
.home-reason-sec__txt {
  margin-top: 18px;
  font-size: 1.5rem;
  font-weight: 400;
}
.home-reason-sec__areaImg {
  position: relative;
  margin-top: 40px;
  background-color: #fff;
  border-radius: 40px 0 40px 0;
}
.home-reason-sec__areaImg::before {
  float: left;
  content: "";
  padding-top: 66.57%;
}
.home-reason-sec__areaImg::after {
  display: block;
  content: "";
  clear: both;
}
.home-reason-sec__areaImg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-reason-sec__areaImg img {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 265px;
  height: auto;
  -o-object-fit: inherit;
  object-fit: inherit;
}
@media all and (min-width: 768px) {
  .home-reason::before {
    top: -498px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 805px;
    height: 805px;
    max-width: 805px;
    max-height: 805px;
  }
  .home-reason__inner {
    width: 90%;
    max-width: 1760px;
    min-width: var(--contents_width);
    padding-top: 44px;
    padding-bottom: 80px;
  }
  .home-reason__head {
    margin-bottom: 94px;
  }
  .home-reason-sec {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 60px 0;
  }
  .home-reason-sec:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .home-reason-sec:nth-of-type(even) .home-reason-sec__areaTxt {
    margin-right: 0;
    margin-left: 7%;
  }
  .home-reason-sec__areaTxt {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 36%;
    max-width: 630px;
    margin-top: 52px;
    margin-right: 7%;
    min-height: 334px;
  }
  .home-reason-sec__areaTxt::before {
    top: 0;
    font-size: 20rem;
  }
  .home-reason-sec__head {
    position: relative;
    z-index: 2;
    font-size: 3.6rem;
  }
  .home-reason-sec__txt {
    margin-top: 38px;
    font-size: 1.6rem;
  }
  .home-reason-sec__areaImg {
    width: 50%;
    flex: 0 0 50%;
    position: relative;
    margin-top: 0;
    border-radius: 80px 0 80px 0;
  }
  .home-reason-sec__areaImg::before {
    float: left;
    content: "";
    padding-top: 66.7%;
  }
  .home-reason-sec__areaImg::after {
    display: block;
    content: "";
    clear: both;
  }
  .home-reason-sec__areaImg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-reason-sec__areaImg img {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 660px;
    height: auto;
  }
  .home-reason-sec__areaImg.is-item01 img {
    width: 63%;
  }
}

.home-reason-list {
  position: relative;
  padding: 40px 25px 68px;
  background-color: #E4EBC0;
  border-radius: 10px;
}
.home-reason-list::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -20px;
  display: block;
  width: 101px;
  height: 77px;
  background: url(../img/home/bg_reason01.png) no-repeat center/contain;
}
.home-reason-list__item + .home-reason-list__item {
  margin-top: 30px;
  padding-top: 35px;
  border-top: 1px solid #fff;
}
.home-reason-list__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 25px;
  background-color: rgb(var(--secondary-color));
  border-radius: 30px;
  color: #fff;
  line-height: 1.2;
}
.home-reason-list__head {
  margin-top: 12px;
  color: rgb(var(--primary-color));
  font-size: 2rem;
  line-height: var(--lh_head);
  letter-spacing: var(--ls_head);
}
.home-reason-list__txt {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .home-reason-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 114px 0 142px;
    border-radius: 30px;
  }
  .home-reason-list::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 1px;
    height: 84%;
    max-height: 500px;
    background-color: #fff;
  }
  .home-reason-list::after {
    right: -22px;
    width: 202px;
    height: 154px;
  }
  .home-reason-list__item {
    width: 44%;
    max-width: 760px;
  }
  .home-reason-list__item + .home-reason-list__item {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .home-reason-list__item + .home-reason-list__item .home-reason-list__item-in {
    margin-left: auto;
  }
  .home-reason-list__item-in {
    width: 84%;
  }
  .home-reason-list__label {
    padding: 17px 40px;
    font-size: 2rem;
  }
  .home-reason-list__head {
    margin-top: 20px;
    font-size: 2.8rem;
  }
  .home-reason-list__txt {
    margin-top: 30px;
    font-size: 1.6rem;
  }
}

/* .home-point
================================================ */
.home-point {
  counter-reset: no;
  background-color: #F8F7E8;
}
.home-point__inner {
  padding-bottom: 60px;
}
.home-point-sec {
  position: relative;
  margin-top: 47px;
}
.home-point-sec + .home-point-sec {
  margin-top: 76px;
}
.home-point-sec__head {
  position: relative;
  z-index: 3;
  padding: 31px 0 28px;
  border-top: 3px solid rgb(var(--secondary-color));
  background-color: rgb(var(--bg-green));
  text-align: center;
}
.home-point-sec__head::before {
  counter-increment: no;
  content: counter(no, decimal-leading-zero);
  position: absolute;
  top: 8px;
  right: 11px;
  z-index: 1;
  font-family: var(--font_lato);
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
}
.home-point-sec__head-label {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 30px;
  background-color: rgb(var(--secondary-color));
  border-radius: 30px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
}
.home-point-sec__head-txt {
  position: relative;
  z-index: 2;
  color: rgb(var(--secondary-color));
  font-size: 1.8rem;
  letter-spacing: var(--ls_head);
  line-height: var(--lh_head);
}
.home-point-sec__img {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.home-point-sec__txt {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .home-point__inner {
    width: calc(100vw - 40px);
    max-width: 1370px;
    min-width: var(--contents_width);
    padding-bottom: 174px;
  }
  .home-point-sec {
    margin-top: 6px;
    width: 49%;
    max-width: 670px;
  }
  .home-point-sec__wrap {
    display: flex;
    justify-content: center;
  }
  .home-point-sec + .home-point-sec {
    margin-top: 6px;
    margin-left: 30px;
  }
  .home-point-sec__head {
    padding: 55px 0 52px;
  }
  .home-point-sec__head::before {
    top: 4px;
    right: 33px;
    font-size: 15rem;
  }
  .home-point-sec__head-label {
    top: -29px;
    padding: 17px 40px;
    font-size: 2rem;
  }
  .home-point-sec__head-txt {
    font-size: 2.8rem;
  }
  .home-point-sec__img {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 370px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
  }
  .home-point-sec__txt {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}

/* .home-flow
================================================ */
.home-flow__inner {
  padding-top: 50px;
  padding-bottom: 80px;
}
.home-flow-list {
  display: flex;
  width: 540px;
  margin: 40px 30px 0 -10px;
}
.home-flow-list__scrollBox {
  overflow-x: auto;
  margin-right: -20px;
  padding-bottom: 5px;
}
.home-flow-list__item {
  position: relative;
  width: 120px;
  margin: 0 10px;
}
.home-flow-list__arw {
  position: absolute;
  right: -18px;
  top: 47px;
  z-index: -1;
  display: block;
  width: 25px;
  height: 25px;
  background-color: #A4C71A;
  -webkit-clip-path: polygon(0 24%, 50% 24%, 50% 0, 100% 50%, 50% 100%, 50% 76%, 0 76%);
  clip-path: polygon(0 24%, 50% 24%, 50% 0, 100% 50%, 50% 100%, 50% 76%, 0 76%);
}
.home-flow-list__areaImg {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 120px;
  height: 120px;
  padding-top: 23px;
  background-color: #fff;
  border: 2px solid rgb(var(--secondary-color));
  border-radius: 50%;
  box-sizing: border-box;
}
.home-flow-list__areaImg-label {
  position: absolute;
  top: -4px;
  left: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgb(var(--secondary-color));
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}
.home-flow-list__areaImg-label span {
  display: block;
  font-size: 1rem;
}
.home-flow-list__areaImg-img {
  width: 45px;
}
.home-flow-list__areaImg-txt {
  margin-top: -2px;
  text-align: center;
  color: rgb(var(--secondary-color));
  font-size: 1.1rem;
  line-height: var(--lh_head);
}
.home-flow-list__txt {
  margin-top: 10px;
  color: rgb(var(--primary-color));
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .home-flow__inner {
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .home-flow-list {
    justify-content: space-between;
    width: auto;
    margin: 20px 0 0;
  }
  .home-flow-list__scrollBox {
    overflow: visible;
    margin-right: 0;
    padding-bottom: 0;
  }
  .home-flow-list__item {
    width: 240px;
    margin: 0;
  }
  .home-flow-list__item:last-child .home-flow-list__areaImg {
    padding-top: 35px;
  }
  .home-flow-list__item:last-child .home-flow-list__areaImg-txt {
    margin-top: -10px;
  }
  .home-flow-list__arw {
    right: -43px;
    top: 92px;
    width: 50px;
    height: 50px;
  }
  .home-flow-list__areaImg {
    width: 240px;
    height: 240px;
    padding-top: 41px;
    border: 4px solid rgb(var(--secondary-color));
  }
  .home-flow-list__areaImg-label {
    top: -4px;
    left: -8px;
    width: 70px;
    height: 70px;
    font-size: 2.4rem;
  }
  .home-flow-list__areaImg-label span {
    font-size: 1.1rem;
  }
  .home-flow-list__areaImg-img {
    width: 90px;
  }
  .home-flow-list__areaImg-txt {
    margin-top: 2px;
    font-size: 2rem;
  }
  .home-flow-list__txt {
    color: rgb(var(--black));
  }
}

/* .home-numbers
================================================ */
.home-numbers {
  position: relative;
}
.home-numbers::before, .home-numbers::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  z-index: -1;
}
.home-numbers::before {
  top: 0;
  height: 113px;
  background: url(../img/home/bg_numbers01_sp.png) no-repeat center/cover;
}
.home-numbers::after {
  top: 60px;
  height: calc(100% - 60px);
  background-color: #A4C71A;
  border-radius: 30px 0 30px 0;
}
.home-numbers__inner {
  padding-top: 120px;
  padding-bottom: 60px;
}
.home-numbers__inner::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 100px;
  height: 91px;
  background: url(../img/home/bg_numbers02.png) no-repeat center/contain;
}
.home-numbers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: num;
  color: rgb(var(--primary-color));
}
.home-numbers-list__item {
  position: relative;
  box-sizing: border-box;
  width: calc(50% - 8px);
  padding: 15px 12px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 20px rgba(22, 68, 10, 0.05);
}
.home-numbers-list__item::before, .home-numbers-list__item::after {
  position: absolute;
  display: block;
}
.home-numbers-list__item::before {
  counter-increment: num;
  content: counter(num);
  top: -8px;
  left: -5px;
  width: 35px;
  height: 35px;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #7AAC00;
  color: #fff;
  font-size: 1.3rem;
  line-height: 31px;
  text-align: center;
}
.home-numbers-list__item::after {
  content: "";
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
}
.home-numbers-list__item:nth-child(1)::after {
  background: url(../img/home/ico_numbers01.png) no-repeat center/contain;
}
.home-numbers-list__item:nth-child(2)::after {
  background: url(../img/home/ico_numbers02.png) no-repeat center/contain;
}
.home-numbers-list__item:nth-child(3)::after {
  background: url(../img/home/ico_numbers03.png) no-repeat center/contain;
}
.home-numbers-list__item:nth-child(4)::after {
  background: url(../img/home/ico_numbers04.png) no-repeat center/contain;
}
.home-numbers-list__item:nth-child(5)::after {
  background: url(../img/home/ico_numbers05.png) no-repeat center/contain;
}
.home-numbers-list__item:nth-child(6)::after {
  background: url(../img/home/ico_numbers06.png) no-repeat center/contain;
}
.home-numbers-list__item:nth-child(n+3) {
  margin-top: 20px;
}
.home-numbers-list__head {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding-bottom: 12px;
  border-bottom: 2px solid #A4C71A;
  text-align: center;
  line-height: var(--lh_head);
}
.home-numbers-list__areaTxt {
  margin-top: 6px;
}
.home-numbers-list__label {
  width: 80px;
  margin: 8px auto 0;
  background-color: #577A11;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.home-numbers-list__number {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: 1.1rem;
}
.home-numbers-list__number span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-numbers-list__number-sm {
  padding-bottom: 3px;
  font-size: clamp(2.4rem, 1.971rem + 2.14vw, 3rem);
}
.home-numbers-list__number-lg {
  font-size: clamp(3.5rem, 2.786rem + 3.57vw, 4.5rem);
}
.home-numbers-list__txt {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: var(--lh_head);
}
@media all and (min-width: 768px) {
  .home-numbers::before {
    height: 580px;
    background: url(../img/home/bg_numbers01_pc.png) no-repeat center/cover;
  }
  .home-numbers::after {
    top: 130px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 96vw;
    max-width: 1760px;
    min-width: var(--contents_width);
    height: calc(100% - 130px);
    border-radius: 200px 0 200px 0;
  }
  .home-numbers__inner {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .home-numbers__inner::before {
    top: 122px;
    left: 46px;
    -webkit-transform: none;
    transform: none;
    width: 250px;
    height: 228px;
  }
  .home-numbers-list {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .home-numbers-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32%;
    max-width: 350px;
    padding: 20px 20px 35px;
  }
  .home-numbers-list__item::before {
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
    line-height: 46px;
  }
  .home-numbers-list__item::after {
    top: 9px;
    right: 7px;
    width: 130px;
    height: 130px;
  }
  .home-numbers-list__item:nth-child(n+3) {
    margin-top: 0;
  }
  .home-numbers-list__item:nth-child(n+4) {
    margin-top: 25px;
  }
  .home-numbers-list__head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: auto;
    padding-bottom: 2px;
    font-size: 2rem;
  }
  .home-numbers-list__areaTxt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    margin-top: 0;
  }
  .home-numbers-list__label {
    width: 50px;
    height: 50px;
    margin: 0 0 16px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 50px;
  }
  .home-numbers-list__number {
    text-align: center;
    font-size: 2.4rem;
  }
  .home-numbers-list__number-sm {
    padding-right: 6px;
    padding-bottom: 7px;
    font-size: 5rem;
  }
  .home-numbers-list__number-lg {
    font-size: 9rem;
    letter-spacing: normal;
  }
  .home-numbers-list__txt {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
}

/* .home-envcloud
================================================ */
.home-envcloud {
  position: relative;
}
.home-envcloud::before, .home-envcloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  background: url(../img/home/ico_leaf01.png) no-repeat center/contain;
}
.home-envcloud::before {
  left: 34px;
  width: 24px;
  height: 26px;
}
.home-envcloud::after {
  left: 76px;
  width: 16px;
  height: 17px;
  opacity: 0.33;
}
.home-envcloud__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-envcloud-sec {
  margin-top: 20px;
}
.home-envcloud-sec__head {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgb(var(--border-green));
  border-bottom: 1px solid rgb(var(--border-green));
  color: rgb(var(--primary-color));
  font-size: 2rem;
  line-height: var(--lh_head);
}
.home-envcloud-sec__head-label {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: rgb(var(--secondary-color));
  color: #fff;
  font-size: 1.2rem;
  line-height: 50px;
  text-align: center;
}
.home-envcloud-sec__txt {
  margin-top: 25px;
  font-size: 1.5rem;
  font-weight: 400;
}
.home-envcloud-sec__areaImg {
  position: relative;
  margin-top: 30px;
}
.home-envcloud-sec__areaImg::before {
  float: left;
  content: "";
  padding-top: 66.57%;
}
.home-envcloud-sec__areaImg::after {
  display: block;
  content: "";
  clear: both;
}
.home-envcloud-sec__areaImg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-envcloud-sec__areaImg img {
  border-radius: 40px 0 40px 0;
}
@media all and (min-width: 768px) {
  .home-envcloud::before {
    left: 132px;
    width: 38px;
    height: 41px;
  }
  .home-envcloud::after {
    left: 200px;
    width: 27px;
    height: 29px;
  }
  .home-envcloud__inner {
    width: 90%;
    max-width: 1760px;
    min-width: var(--contents_width);
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .home-envcloud-sec {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .home-envcloud-sec__areaTxt {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 36%;
    max-width: 630px;
    margin-right: 7%;
  }
  .home-envcloud-sec__head {
    padding: 0 0 40px 0;
    border-top: none;
    font-size: clamp(2.7rem, 2vw, 3.6rem);
  }
  .home-envcloud-sec__head-label {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    margin-right: 11px;
    font-size: 1.5rem;
    line-height: 70px;
  }
  .home-envcloud-sec__txt {
    margin-top: 40px;
    font-size: 1.6rem;
  }
  .home-envcloud-sec__areaImg {
    width: 50%;
    flex: 0 0 50%;
    position: relative;
    margin-top: 0;
  }
  .home-envcloud-sec__areaImg::before {
    float: left;
    content: "";
    padding-top: 66.7%;
  }
  .home-envcloud-sec__areaImg::after {
    display: block;
    content: "";
    clear: both;
  }
  .home-envcloud-sec__areaImg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-envcloud-sec__areaImg img {
    border-radius: 80px 0 80px 0;
  }
}

/* .home-case
================================================ */
.home-case {
  background: rgb(var(--bg-green));
}
.home-case__inner {
  padding-top: 50px;
  padding-bottom: 40px;
}
@media all and (min-width: 768px) {
  .home-case__inner {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}

.home-case-sec {
  position: relative;
  box-sizing: border-box;
  margin-top: 30px;
  padding: 22px 20px 30px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 3px 20px rgba(22, 68, 10, 0.05));
  filter: drop-shadow(0px 3px 20px rgba(22, 68, 10, 0.05));
  border-radius: 10px;
}
.home-case-sec + .home-case-sec {
  margin-top: 40px;
}
.home-case-sec__head {
  margin-bottom: 25px;
  text-align: center;
  color: rgb(var(--primary-color));
  font-size: 2rem;
  line-height: var(--lh_head);
}
.home-case-sec__label {
  position: absolute;
  top: -20px;
  left: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgb(var(--secondary-color));
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
}
.home-case-sec__label span {
  font-size: 1rem;
  letter-spacing: 0.2em;
}
.home-case-sec__dlist {
  margin-top: 22px;
  border-radius: 10px;
}
.home-case-sec__dlist-term {
  padding: 6px 0;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
.home-case-sec__dlist-desc {
  padding: 12px 20px 20px 15px;
  border: 2px solid;
  border-radius: 0 0 10px 10px;
  border-top: none;
}
.home-case-sec__dlist.is-green {
  position: relative;
}
.home-case-sec__dlist.is-green .home-case-sec__dlist-term {
  background-color: #358866;
}
.home-case-sec__dlist.is-green .home-case-sec__dlist-desc {
  background-color: #fff;
  border-color: #358866;
}
.home-case-sec__dlist.is-green::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  z-index: -1;
  display: block;
  width: 25px;
  height: 25px;
  background-color: #A4C71A;
  -webkit-clip-path: polygon(0 24%, 50% 24%, 50% 0, 100% 50%, 50% 100%, 50% 76%, 0 76%);
  clip-path: polygon(0 24%, 50% 24%, 50% 0, 100% 50%, 50% 100%, 50% 76%, 0 76%);
}
.home-case-sec__dlist.is-orange .home-case-sec__dlist-term {
  background-color: #F28029;
}
.home-case-sec__dlist.is-orange .home-case-sec__dlist-desc {
  background-color: #FFFAEF;
  border-color: #F28029;
}
.home-case-sec__bubble {
  box-sizing: border-box;
  width: 130px;
  height: 39px;
  margin-top: 25px;
  padding-top: 5px;
  background: url(../img/home/bg_point01.png) no-repeat center bottom/100% auto;
  text-align: center;
  color: rgb(var(--secondary-color));
  font-size: 1.1rem;
}
.home-case-sec__txt {
  margin-top: 12px;
  font-size: 1.5rem;
  font-weight: 400;
}
.home-case-sec__txt > * {
  color: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .home-case-sec {
    padding: 50px 50px 67px;
    border-radius: 30px;
  }
  .home-case-sec:nth-of-type(1) .home-case-sec__content:nth-of-type(1), .home-case-sec:nth-of-type(2) .home-case-sec__content:nth-of-type(1) {
    order: 3;
    width: 580px;
    margin-top: 40px;
  }
  .home-case-sec:nth-of-type(1) .home-case-sec__content:nth-of-type(2), .home-case-sec:nth-of-type(2) .home-case-sec__content:nth-of-type(2) {
    order: 1;
    width: 480px;
  }
  .home-case-sec:nth-of-type(1) .home-case-sec__content:nth-of-type(3), .home-case-sec:nth-of-type(2) .home-case-sec__content:nth-of-type(3) {
    order: 2;
    width: 480px;
  }
  .home-case-sec:nth-of-type(1) .home-case-sec__content:nth-of-type(4), .home-case-sec:nth-of-type(2) .home-case-sec__content:nth-of-type(4) {
    order: 4;
    width: 380px;
    margin-top: 40px;
  }
  .home-case-sec:nth-of-type(1) .home-case-sec__dlist.is-green::after, .home-case-sec:nth-of-type(2) .home-case-sec__dlist.is-green::after {
    bottom: 30%;
    left: auto;
    right: -50px;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
  }
  .home-case-sec:nth-of-type(1) .home-case-sec__dlist-term, .home-case-sec:nth-of-type(2) .home-case-sec__dlist-term {
    height: 80px;
    padding: 20px 0;
  }
  .home-case-sec:nth-of-type(1) .home-case-sec__dlist-desc, .home-case-sec:nth-of-type(2) .home-case-sec__dlist-desc {
    height: calc(100% - 80px);
  }
  .home-case-sec:nth-of-type(3), .home-case-sec:nth-of-type(4) {
    width: 530px;
    padding: 30px 50px 60px;
  }
  .home-case-sec:nth-of-type(3) .home-case-sec__head, .home-case-sec:nth-of-type(4) .home-case-sec__head {
    margin-bottom: 35px;
    padding-bottom: 36px;
    padding-left: 40px;
    font-size: 2.6rem;
  }
  .home-case-sec:nth-of-type(3) .home-case-sec__content:nth-of-type(2), .home-case-sec:nth-of-type(4) .home-case-sec__content:nth-of-type(2) {
    margin-top: 30px;
  }
  .home-case-sec:nth-of-type(3) .home-case-sec__content:nth-of-type(3), .home-case-sec:nth-of-type(4) .home-case-sec__content:nth-of-type(3) {
    margin-top: 20px;
  }
  .home-case-sec:nth-of-type(3) .home-case-sec__content:nth-of-type(4), .home-case-sec:nth-of-type(4) .home-case-sec__content:nth-of-type(4) {
    margin-top: 30px;
  }
  .home-case-sec:nth-of-type(3) .home-case-sec__txt, .home-case-sec:nth-of-type(4) .home-case-sec__txt {
    margin-top: 10px;
  }
  .home-case-sec__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-case-sec__head {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(var(--primary-color));
    font-size: 2.8rem;
  }
  .home-case-sec__content {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
  }
  .home-case-sec__content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-case-sec__label {
    top: -22px;
    width: 110px;
    height: 110px;
    font-size: 4rem;
  }
  .home-case-sec__label span {
    font-size: 1.3rem;
  }
  .home-case-sec__dlist {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    margin-top: 0;
  }
  .home-case-sec__dlist-term {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    font-size: 2rem;
  }
  .home-case-sec__dlist-desc {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 30px 30px 20px;
  }
  .home-case-sec__dlist.is-green::after {
    z-index: 5;
    bottom: -27px;
    width: 40px;
    height: 40px;
  }
  .home-case-sec__bubble {
    width: 160px;
    height: 48px;
    margin-top: 0;
    padding-top: 3px;
    font-size: 1.6rem;
  }
  .home-case-sec__txt {
    width: 100%;
    margin-top: 14px;
    font-size: 1.6rem;
  }
}

/* .home-about
================================================ */
.home-about {
  position: relative;
  background-color: #F8F7E8;
}
.home-about__inner {
  padding-top: 60px;
  padding-bottom: 40px;
}
.home-about__box {
  padding: 48px 20px 70px;
  background-color: #E4EBC0;
  border-radius: 10px;
}
.home-about-bnr {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 295px;
  margin: auto;
  background-color: #fff;
  box-shadow: 0px 3px 20px rgba(22, 68, 10, 0.15);
}
.home-about-bnr__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 20px;
}
.home-about-bnr__logo {
  width: 208px;
  margin-right: 26px;
}
.home-about-bnr__ico {
  width: 7px;
  line-height: 7px;
  color: rgb(var(--gray));
}
@media all and (min-width: 768px) {
  .home-about__inner {
    width: 90%;
    max-width: 1760px;
    min-width: var(--contents_width);
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home-about__box {
    padding: 60px 20px 120px;
    border-radius: 20px;
  }
  .home-about-bnr {
    max-width: 550px;
    margin: auto;
    box-sizing: border-box;
  }
  .home-about-bnr__link {
    width: 100%;
    padding: 45px 40px;
    transition: all 0.3s ease;
  }
  .home-about-bnr__link:hover {
    opacity: 0.6;
  }
  .home-about-bnr__logo {
    width: 386px;
    margin-right: 47px;
  }
  .home-about-bnr__ico {
    width: 14px;
    line-height: 14px;
  }
}