@charset "UTF-8";
/* -------------------------------------------------------------------------- */
/*                                   Colors                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Default Functions                             */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Default Mixins                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                Custom Layout                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                   Header                                   */
/* -------------------------------------------------------------------------- */
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 7px 3px transparent;
  }
  50% {
    box-shadow: 0px 0px 7px 3px transparent;
  }
  100% {
    box-shadow: 0px 0px 7px 3px rgba(34, 34, 34, 0.3);
  }
}
.header__wrapper-w100 {
  animation: shadow linear forwards;
  animation-timeline: scroll();
  animation-range-start: 0px;
  animation-range-end: 813px;
  background: linear-gradient(to right, #222222 calc(50% - 530px), #ffffff calc(50% - 530px));
}
.header__wrapper-w100--subpage {
  animation-range-end: 387px;
  background: linear-gradient(to right, #197348 calc(50% - 530px), #ffffff calc(50% - 530px));
}
.header__wrapper-xl {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
  gap: 5rem;
  padding-inline: 5rem 3rem;
  position: relative;
  z-index: 20;
}
.header__wrapper-xl::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  background-color: #222222;
  width: clamp(430px, 34.5vw, 537px);
  height: 100%;
  border-radius: 0;
  z-index: -10;
  transition: all 0.3s;
}
.header__wrapper-xl--subpage::before {
  background-color: #197348;
}
.header__logo {
  flex-shrink: 0;
}
.header__button {
  width: 240px;
  height: 50px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #222222;
}
.header__button span {
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 3.5rem;
}
.header__button span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin-block: auto;
  width: 25px;
  height: 18px;
  border-radius: 0;
  background: no-repeat center/contain url("/images/common/icon_mail.png");
}
.header__button:hover {
  background-color: #229d62;
  border-color: #229d62;
}
.header__button:hover span {
  color: #ffffff;
}
.header__button:hover span::before {
  background-image: url("/images/common/icon_mail2.png");
}
.header__list {
  display: flex;
  justify-content: end;
  align-items: center;
}
.header__item:last-child .header__item-link {
  padding-right: 0;
}
.header__item:last-child .header__item-link::before {
  content: none;
}
.header__item-link {
  white-space: nowrap;
  padding-inline: 2rem;
  position: relative;
  letter-spacing: 0em;
  font-size: 1.7rem;
}
.header__item-link::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
  width: 1px;
  height: 15px;
  border-radius: 0;
  background-color: #197348;
}
.header__item-link:hover, .header__item-link--current {
  color: #197348;
}
.header__item--dropdown {
  position: relative;
}
.header__item--dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
}
.header__item--dropdown ul {
  width: 15rem;
  position: absolute;
  inset: calc(100% + 5px) auto auto 50%;
  transform: translateX(-50%);
  padding: 0.5rem 2.5rem;
  background-color: #197348;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.header__item--dropdown ul li a {
  color: #ffffff;
  text-align: center;
  padding-block: 0.3rem;
}

/* --------------------------------- Visual --------------------------------- */
.mainvis,
.subvis {
  position: relative;
  color: #ffffff;
  margin-top: 110px;
}

.mainvis {
  text-align: center;
  background: linear-gradient(to right, #222222 calc(50% - 530px), #197348 calc(50% - 530px));
}
.mainvis__wrapper-xl {
  background-color: #ffffff;
  position: relative;
  z-index: 20;
}
.mainvis__wrapper-xl::before, .mainvis__wrapper-xl::after {
  content: "";
  position: absolute;
  background-color: #222222;
  z-index: -10;
  transition: all 0.3s;
}
.mainvis__wrapper-xl::before {
  inset: 0 auto 0 0;
  width: clamp(430px, 34.5vw, 537px);
  height: 100%;
  border-radius: 0;
}
.mainvis__wrapper-xl::after {
  inset: auto 0 246px auto;
  width: 393px;
  height: 174px;
  border-radius: 0;
}
.mainvis__img {
  width: 100%;
  height: 813px;
  border-radius: 0;
}
.mainvis__catch {
  width: min(100%, 1080px);
  margin-inline: auto;
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  z-index: 100;
}
.mainvis__catch img {
  margin: auto;
}

.subvis {
  position: relative;
}
.subvis::before, .subvis::after {
  content: "";
  position: absolute;
  z-index: -20;
}
.subvis::before {
  inset: 0 auto auto 0;
  background-color: #197348;
  width: calc(50% - 423px);
  height: 215px;
  border-radius: 0;
}
.subvis::after {
  inset: auto 0 0 auto;
  background-color: #f8f8f8;
  transform: translateY(85px);
  width: calc(50% + 20px);
  height: 395px;
  border-radius: 0;
}
.subvis__img {
  width: 1180px;
  height: 387px;
  border-radius: 0;
  margin-inline: auto 0;
}
.subvis__catch {
  width: min(100%, 1340px);
  margin-inline: auto;
  padding-inline: 3rem;
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 50;
}
.subvis__catch h2 {
  width: min(100%, 550px);
  background-color: #222222;
  font-weight: 700;
  font-size: 4.1rem;
  text-align: left;
  padding: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                                    Main                                    */
/* -------------------------------------------------------------------------- */
.sec01 {
  position: relative;
  z-index: 10;
}
.sec01::before {
  content: "";
  position: absolute;
  width: calc(50% - 100px);
  height: 780px;
  border-radius: 0;
  background: #f8f8f8;
  inset: 0 0 auto auto;
  z-index: -20;
}
.sec01__box {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: 4rem 3rem;
  border: 1px solid #cccccc;
  margin-bottom: 6rem;
  background-color: #ffffff;
}
.sec01__box-top, .sec01__box-bot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec01__box-top {
  flex-flow: row wrap;
  gap: 0 4rem;
  margin-bottom: 3rem;
}
.sec01__box-bot {
  width: min(100%, 640px);
  margin-inline: auto;
  flex-flow: column nowrap;
  gap: clamp(15px, 2.5vw, 20px);
}
.sec01__box2 {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-flow: row wrap;
  gap: 2rem 6rem;
}
.sec01__box2-box {
  width: min(100%, 535px);
}
.sec01__button {
  width: 100%;
  height: 55px;
  border-radius: 0;
  border: 1px solid #222222;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec01__button:hover {
  background-color: rgba(34, 34, 34, 0.2);
}
.sec01__button span {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: clamp(14px, 2.5vw, 16px);
  padding-left: 4rem;
  position: relative;
}
.sec01__button span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin-block: auto;
  background: no-repeat center/contain;
}
.sec01__button--mail span::before {
  width: 25px;
  height: 18px;
  border-radius: 0;
  background-image: url("/images/common/icon_mail.png");
}
.sec01__button--insta span::before {
  width: 31px;
  height: 31px;
  border-radius: 0;
  background-image: url("/images/common/icon_ig.png");
}

.sec02 {
  overflow: hidden;
}
.sec02__wrapper-xl {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: row nowrap;
  gap: 5rem;
  padding-inline: 5rem 3rem;
}
.sec02__box {
  width: min(100%, 580px);
  flex-shrink: 0;
  margin-inline: auto 0;
}
.sec02__box .cmn-textbox {
  margin-bottom: 5rem;
}
.sec02__box .cmn-button {
  margin-inline: 0;
}

.sec03 {
  background-color: #f8f8f8;
  position: relative;
  z-index: 10;
}
.sec03::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: calc(50% - 250px);
  height: 720px;
  border-radius: 0;
  background-color: #ffffff;
  z-index: -20;
}
.sec03__box1 {
  display: flex;
  justify-content: end;
  align-items: start;
  flex-flow: row nowrap;
  gap: 3rem 5.5rem;
  margin-bottom: 8rem;
  padding-right: 3rem;
}
.sec03__box1-box {
  width: min(100%, 480px);
  flex-shrink: 0;
  margin-inline: 0 auto;
}
.sec03__box1-title {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #ffffff;
  font-weight: 700;
  background-color: #222222;
  padding: 1rem;
  margin-bottom: 2rem;
}
.sec03__box2 {
  width: min(100%, 1080px);
  margin-inline: auto;
  border: 2px solid #cccccc;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 3rem 5rem;
  margin-bottom: 6rem;
}
.sec03__box2-box {
  width: min(100%, 480px);
}
.sec03__box2-header {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 2rem;
}
.sec03__box2-header h4 {
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 1rem;
}

.sec04 {
  background-color: #f8f8f8;
}
.sec04__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
}
.sec04__item {
  width: min(100%, 960px);
  height: 400px;
  border-radius: 0;
}
.sec04__item:nth-child(1) {
  background: no-repeat center/cover url("/images/top/sec04_img1.jpg");
}
.sec04__item:nth-child(2) {
  background: no-repeat center/cover url("/images/top/sec04_img2.jpg");
}
.sec04__item-link {
  width: inherit;
  height: inherit;
  border-radius: 0;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 3rem;
  position: relative;
}
.sec04__item-link::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 263px;
  height: 6px;
  border-radius: 0;
  background: no-repeat center/contain url("/images/top/sec04_deco.png");
  transform: translate(-30px, -30px);
}
.sec04__item-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.sec04__item-header h3,
.sec04__item-header p {
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s;
}
.sec04__item-header p {
  font-size: 4.4rem;
  letter-spacing: 0em;
}
.sec04__item-header h3 {
  font-size: clamp(18px, 2.5vw, 24px);
}

.sec05 {
  position: relative;
}
.sec05__list {
  margin-bottom: 4rem;
}
.sec05__item-link {
  position: relative;
  z-index: 10;
}
.sec05__item-link::before {
  content: "詳しく見る";
  position: absolute;
  background-color: rgba(34, 34, 34, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 500;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: all 0.3s;
  opacity: 0;
}
.sec05__item-link:hover:before {
  opacity: 1;
}
.sec05__item-img, .sec05__item-link {
  width: 100%;
  aspect-ratio: 1/1;
}
.sec05__bbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 11.5rem;
}
.sec05__bbox .swiper-button-prev, .sec05__bbox .swiper-button-next {
  all: unset;
}
.sec05__bbox-button {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid #222222;
  position: relative;
  transition: all 0.3s;
}
.sec05__bbox-button:hover {
  cursor: pointer;
  background-color: rgba(34, 34, 34, 0.2);
}
.sec05__bbox-button::before {
  content: "";
  position: absolute;
  width: 61px;
  height: 5px;
  border-radius: 0;
  margin-block: auto;
  background: no-repeat center/contain;
  transition: all 0.3s;
}
.sec05__bbox-button--r::before {
  inset: 0 auto 0 0;
  background-image: url("/images/common/icon_arrow3.png");
  transform: translateX(20px);
}
.sec05__bbox-button--l::before {
  inset: 0 0 0 auto;
  overflow: hidden;
  background-image: url("/images/common/icon_arrow.png");
  transform: translateX(-20px);
}
.sec05 .swiper-container {
  box-sizing: border-box;
  height: 20%;
  position: relative;
}

.sec06 {
  overflow: hidden;
  background-color: #222222;
  color: #ffffff;
}
.sec06__wrapper-xl {
  display: flex;
  justify-content: end;
  align-items: start;
  flex-flow: row nowrap;
  gap: 3rem 6rem;
  padding-inline: 10rem 3rem;
}
.sec06__box {
  flex-shrink: 0;
  width: min(100%, 500px);
  margin-inline: 0 auto;
}
.sec06__box .cmn-textbox {
  margin-bottom: 5rem;
}
.sec06__box .cmn-button {
  margin-inline: 0;
}

.sec07 {
  position: relative;
  z-index: 10;
}
.sec07::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  background-color: #f8f8f8;
  width: calc(50% - 100px);
  height: 780px;
  border-radius: 0;
  z-index: -20;
}
.sec07__subheader {
  background-color: #197348;
  margin-bottom: 4rem;
  font-weight: 700;
  color: #ffffff;
  padding: 1.2rem;
  letter-spacing: 0em;
}
.sec07__subheader h4 {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(19px, 2.5vw, 26px);
  position: relative;
}
.sec07__subheader h4::before {
  content: "※企業様向け";
  position: absolute;
  inset: auto 0 0 auto;
  font-size: clamp(14px, 2.5vw, 16px);
  transform: translateX(calc(100% + 12px));
  white-space: nowrap;
}
.sec07__subheader--des2 h4::before {
  content: "※個人様向け";
}
.sec07__subtitle {
  font-size: clamp(17px, 2.5vw, 24px);
  color: #197348;
  letter-spacing: 0em;
  font-weight: 500;
  padding: 0 2rem 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #cccccc;
  text-align: center;
}
.sec07__box1, .sec07__box2 {
  margin-bottom: 5rem;
}
.sec07__box1-box {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: row wrap;
  gap: 3rem 2.5rem;
}
.sec07__box1-box .cmn-textbox {
  width: min(100%, 520px);
}
.sec07__box2-list, .sec07__box2-item {
  display: flex;
  align-items: center;
}
.sec07__box2-list {
  justify-content: start;
  flex-flow: row wrap;
  gap: 2rem 4rem;
}
.sec07__box2-item {
  width: 240px;
  height: 47px;
  border-radius: 0;
  justify-content: center;
  border: 1px solid #cccccc;
  text-align: center;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 500;
}
.sec07__box3 {
  margin-bottom: 10rem;
}
.sec07__box3-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 2.4rem;
  margin-bottom: 6rem;
}
.sec07__box3-img {
  margin-bottom: 1rem;
}
.sec07__box3-title {
  color: #197348;
  border-left: 3px solid #197348;
  padding-left: 1.2rem;
  font-size: clamp(15px, 2.5vw, 16px);
  font-weight: 500;
}
.sec07__box3-title--white {
  color: #ffffff;
  border-color: #ffffff;
}
.sec07__box3-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 2rem 8rem;
}
.sec07__box3-box .cmn-button {
  margin-inline: 0;
}
.sec07__box4-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 4rem;
  margin-bottom: 6rem;
}
.sec07__box4-box .cmn-textbox {
  width: min(100%, 520px);
  height: auto;
  border-radius: 0;
}

.sec08 {
  background-color: #197348;
}
.sec08__box {
  margin: -7rem auto auto -2rem;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: row nowrap;
  gap: 3rem;
}
.sec08__box-box {
  width: min(100%, 570px);
  margin-inline: 0 auto;
  background-color: #ffffff;
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.sec08__box-box p {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 500;
  line-height: 3.5rem;
}
.sec08__box-box p em {
  font-weight: 700;
  color: #197348;
  font-size: clamp(18px, 2.5vw, 21ox);
}

.sec09__box {
  display: flex;
  justify-content: end;
  align-items: start;
  flex-flow: row wrap;
  gap: 3rem 5.5rem;
}
.sec09__list {
  margin-inline: 0 auto;
  list-style: inside url("/images/common/icon_check.png");
}
.sec09__item {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
}
.sec09__item:not(:last-child) {
  margin-bottom: clamp(15px, 2.5vw, 20px);
}

.sec10 {
  background-color: #222222;
}

.sec11--des2 {
  position: relative;
}
.sec11--des2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f8f8f8;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: -20;
}
.sec11__list {
  counter-reset: sec11;
}
.sec11__item {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: row wrap;
  gap: 0 4rem;
}
.sec11__item:not(:last-child) {
  margin-bottom: 6rem;
}
.sec11__item-box {
  width: min(100%, 580px);
}
.sec11__item-header {
  text-align: left;
  color: #ffffff;
  margin-block: 3rem;
}
.sec11__item-header p {
  width: fit-content;
  font-weight: 500;
  font-size: 1.6rem;
  background-color: #222222;
  padding: 0 1rem;
  position: relative;
  margin-bottom: 0.8rem;
  text-transform: capitalize;
  letter-spacing: 0.08em;
}
.sec11__item-header p::before {
  counter-increment: sec11;
  content: counter(sec11, decimal-leading-zero);
  position: absolute;
  inset: auto auto 0 0;
  color: #197348;
  font-size: 7rem;
  letter-spacing: 0em;
  white-space: nowrap;
  font-style: italic;
  line-height: 6.3rem;
  transform: translateX(45px);
  z-index: -10;
}
.sec11__item-header h4 {
  background-color: #197348;
  font-size: clamp(19px, 2.5vw, 26px);
  padding: 1.2rem;
  font-weight: 700;
  letter-spacing: 0em;
}
.sec11__item2 {
  border: 1px solid #cccccc;
  padding: clamp(20px, 2.5vw, 25px);
}
.sec11__item2:not(:last-child) {
  margin-bottom: 2rem;
}
.sec11__item2-title {
  color: #197348;
  border-left: 3px solid #197348;
  padding-left: 1.2rem;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: clamp(20px, 2.5vw, 26px);
}

.sec12 {
  background-color: #197348;
}
.sec12__tabs {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: row nowrap;
}
.sec12__tabs-item {
  font-weight: 500;
  letter-spacing: 0em;
  background-color: #10492e;
  padding: 0.8rem clamp(10px, 2.5vw, 20px) 2rem;
  border-radius: 1.5rem 1.5rem 0 0;
  transition: all 0.3s;
  color: #ffffff;
  position: relative;
  z-index: 10;
  transform: translateY(10px);
}
.sec12__tabs-item:hover {
  cursor: pointer;
  transform: translateY(0px);
}
.sec12__tabs .current {
  color: #197348;
  background-color: #ffffff;
}
.sec12__item {
  position: relative;
  background-color: #ffffff;
  padding: 4rem;
  z-index: 20;
}
.sec12__item-header {
  background-color: #197348;
  padding: 1.1rem;
  margin-bottom: 3rem;
}
.sec12__item-header h4 {
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0em;
  color: #ffffff;
}
.sec12__item-subtitle {
  font-size: clamp(17px, 2.5vw, 24px);
  color: #197348;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}
.sec12__item-subtitle--white {
  color: #ffffff;
}
.sec12__item-bbox {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 3rem 4rem;
}
.sec12__item-box {
  width: min(100%, 480px);
}
.sec12__box1, .sec12__box2 {
  margin-bottom: 6rem;
}
.sec12__box1 {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: row wrap;
  gap: 2rem 3rem;
}
.sec12__box1-box p {
  font-weight: 500;
  font-size: clamp(17px, 2.5vw, 24px);
  color: #197348;
}
.sec12__box2-list {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 2rem;
}
.sec12__box2-img {
  width: 150px;
  height: 120px;
  border-radius: 0;
  margin-bottom: 1rem;
}
.sec12__box2-title {
  text-align: center;
  letter-spacing: 0em;
  font-size: clamp(15px, 2.5vw, 16px);
}
.sec12__box2-title small {
  font-size: 1.1rem;
}
.sec12__box3-item {
  background: #222222;
  padding: 1rem;
}
.sec12__box3-item h6 {
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  font-size: clamp(15px, 2.5vw, 16px);
}
.sec12__box3-item:not(:last-child) {
  margin-bottom: 1rem;
}
.sec12__box4-img {
  height: 30rem;
}

.sec13 .sec09__box {
  margin-bottom: 4rem;
}
.sec13__box {
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.sec13__box::before {
  content: "";
  display: block;
  margin-bottom: 4rem;
  inset: 0 0 auto 0;
  width: 232px;
  height: 97px;
  border-radius: 0;
  margin-inline: auto;
  background: no-repeat center/contain url("/images/spray/sec13_deco1.png");
}
.sec13__box p {
  text-align: center;
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 5rem;
  position: relative;
  z-index: 10;
  padding-inline: 12rem;
}
.sec13__box p::before, .sec13__box p::after {
  content: "";
  position: absolute;
  margin-block: auto;
  width: 79px;
  height: 123px;
  border-radius: 0;
  background: no-repeat center/contain;
  z-index: -20;
}
.sec13__box p::before {
  background-image: url("/images/spray/sec13_deco2.png");
  inset: 0 auto 0 0;
}
.sec13__box p::after {
  background-image: url("/images/spray/sec13_deco3.png");
  inset: 0 0 0 auto;
}
.sec13__box p em {
  font-size: clamp(25px, 2.5vw, 32px);
  color: #197348;
}

.sec14 {
  background-color: #222222;
}
.sec14__subtitle {
  text-align: center;
  background-color: #ffffff;
  padding: 1.2rem;
  font-weight: 700;
  letter-spacing: 0em;
  font-size: clamp(19px, 2.5vw, 26px);
  margin-bottom: 4rem;
}
.sec14__subtitle--main {
  background-color: #197348;
  color: #ffffff;
}
.sec14__img {
  width: 100%;
  height: 500px;
  border-radius: 0;
  background-color: #ffffff;
  overflow: auto;
}
.sec14__img img {
  width: 100%;
}
.sec14__img:not(:last-child) {
  margin-bottom: 4rem;
}

.sec15__box {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: row nowrap;
  gap: 3rem 7rem;
}
.sec15__lbox, .sec15__rbox {
  flex-grow: 1;
}
.sec15__lbox {
  position: relative;
  background-color: #222222;
}
.sec15__tags {
  width: 32rem;
  margin-inline: auto 0;
  padding: 3rem 1.5rem;
}
.sec15__tag:not(:last-child) {
  margin-bottom: 2rem;
}
.sec15__tag-link {
  width: fit-content;
  color: #ffffff;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 500;
}
.sec15__tag-link:hover span, .sec15__tag-link--current span {
  text-decoration: underline;
}
.sec15__list {
  width: 74rem;
  margin-inline: 0 auto;
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 4rem;
}
.sec15__item {
  width: min(100%, 350px);
}
.sec15__item-img, .sec15__item-title {
  margin-bottom: 1rem;
}
.sec15__item-date, .sec15__item-title {
  font-weight: 500;
}
.sec15__item-img {
  width: 350px;
  height: 300px;
  border-radius: 0;
}
.sec15__item-date {
  width: fit-content;
  background-color: #222222;
  color: #ffffff;
  font-size: clamp(13px, 2.5vw, 13px);
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
}
.sec15__item-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.sec16__box, .sec16__box2 {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.sec16__box {
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 0rem 4rem;
}
.sec16__box2 {
  justify-content: center;
  flex-flow: row nowrap;
  position: relative;
  margin-bottom: 6rem;
}
.sec16__box2::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 147px;
  height: 61px;
  border-radius: 0;
  transform: rotate(-90deg);
  background: no-repeat center/contain url("/images/spray/sec13_deco1.png");
  z-index: 50;
}
.sec16__box2-img {
  width: 520px;
  height: 350px;
  border-radius: 0;
  position: relative;
}
.sec16__box2-img::before {
  position: absolute;
  width: fit-content;
  padding: 0.5rem 4rem;
  text-transform: capitalize;
  background-color: #197348;
  color: #ffffff;
  inset: auto 0 0 0;
  margin-inline: auto;
  font-size: clamp(22px, 2.5vw, 24px);
  transform: translateY(50%);
}
.sec16__box2-img img {
  width: inherit;
  height: inherit;
  border-radius: 0;
}
.sec16__box2-img--before::before {
  content: "before";
}
.sec16__box2-img--after:before {
  content: "after";
}

.sec17 {
  background-color: #222222;
}
.sec17__list {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-flow: row wrap;
  gap: 7.5rem 3rem;
}
.sec17__item {
  width: min(100%, 340px);
}
.sec17__item-img {
  margin-inline: auto;
}
.sec17__item-title {
  background-color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 18px);
  letter-spacing: 0em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 2rem 0;
  padding: 1rem;
}

.sec19 {
  background-color: #f8f8f8;
}
.sec19__list {
  counter-reset: sec19;
}
.sec19__item {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: row wrap;
  gap: 2rem 5.5rem;
  padding: 3.5rem 1.5rem;
  border-block: 2px solid #cccccc;
  position: relative;
}
.sec19__item::before {
  counter-increment: sec19;
  content: counter(sec19, decimal-leading-zero);
  position: absolute;
  inset: 0 auto auto 0;
  background-color: #222222;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 3.1rem;
  letter-spacing: 0em;
  transform: translate(-10px, -10px);
}
.sec19__item:not(:last-child):after {
  content: "";
  border-style: solid;
  width: 0;
  height: 0;
  border-radius: 0;
  z-index: 10;
  border-color: #cccccc transparent transparent transparent;
  border-width: 21px 19.5px 0 19.5px;
  position: absolute;
  inset: auto 0 0 0;
  margin-inline: auto;
  transform: translateY(calc(100% + 12px));
}
.sec19__item:not(:last-child) {
  margin-bottom: 4rem;
}
.sec19__item-box {
  width: min(100%, 460px);
}
.sec19__item-box .cmn-button {
  width: 100%;
}

.sec20__box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 3rem 4rem;
}
.sec20__box-box {
  width: min(100%, 580px);
}
.sec20__text {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 500;
  color: #197348;
  margin-block: auto 0;
}
.sec20__text small {
  background-color: #197348;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0em;
  margin-right: 1rem;
  padding-inline: 0.3rem;
}

.sec21 {
  background-color: #f8f8f8;
}
.sec21__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 2rem 4rem;
}

/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */
.footer {
  background-color: #222222;
  color: #ffffff;
}
.footer__wrapper-m {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-flow: row nowrap;
  gap: 2rem;
}
.footer__lbox, .footer__rbox {
  display: flex;
  flex-flow: column nowrap;
}
.footer__lbox {
  justify-content: start;
  gap: 2rem;
}
.footer__lbox-table {
  border-collapse: separate;
  border-spacing: 0 2rem;
}
.footer__lbox-table th {
  width: 9.5rem;
}
.footer__rbox {
  width: min(100%, 625px);
  justify-content: end;
  gap: 4rem;
}
.footer__rbox-box2 {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: row nowrap;
  gap: 2rem;
}
.footer__rbox-button {
  width: 380px;
  height: 55px;
  border-radius: 0;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__rbox-button:hover {
  background-color: #197348;
}
.footer__rbox-button span {
  position: relative;
  padding-left: 3.5rem;
  font-weight: 500;
}
.footer__rbox-button span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin-block: auto;
  width: 25px;
  height: 18px;
  border-radius: 0;
  background: no-repeat center/contain url("/images/common/icon_mail2.png");
}
.footer__list {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: row wrap;
  gap: 2rem 0;
}
.footer__item:first-child .footer__item-link {
  padding-left: 0;
}
.footer__item-link {
  font-size: 1.4rem;
  padding-inline: 1.8rem;
  letter-spacing: 0em;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.footer__item-link:hover, .footer__item-link--current {
  color: #197348;
}
.footer__copyright {
  background-color: #197348;
  font-size: clamp(12px, 2.5vw, 14px);
  padding-block: 1.3rem;
  font-weight: 500;
  text-align: center;
}
.footer__copyright a {
  display: inline-flex;
}