@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

:root {
  --color-primary: #00783c;
  --color-secondary: #ffc55f;
  --color-black1: #181818;
  --color-sage--light: #f2f6ed;
  --color-cyan: rgb(0, 110, 122);
  --color-cyan--light: #eaf7f9;
  --color-lime: rgb(97, 165, 2);
  --color-lime--light: #f0f6e8;
  --color-black: #000;
  --color-white: #fff;
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --base-fontSize: 18px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

.only-pc {
  display: inline !important;
}

.only-pc.db {
  display: block !important;
}

.only-pc.df {
  display: flex !important;
}

.only-sp {
  display: none !important;
}

.only-sp.db {
  display: none !important;
}

.only-sp.df {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
  .only-pc.db {
    display: none !important;
  }
  .only-pc.df {
    display: none !important;
  }
  .only-sp {
    display: inline !important;
  }
  .only-sp.db {
    display: block !important;
  }
  .only-sp.df {
    display: flex !important;
  }
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-sage--light {
  background-color: var(--color-sage--light) !important;
}
.bg-cyan--light {
  background-color: var(--color-cyan--light);
}

/* フォント・文字サイズ指定
-------------------------------------------------------------*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* 固定ヘッダー・ページヘッダーの上余白（100px/85px）に合わせる */
  scroll-padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 85px;
  }
}

body {
  font-family: var(--font-primary) !important;
  font-size: var(--base-fontSize);
  color: var(--color-black);
  line-height: 1.5;
  position: relative;
  font-weight: 500;
  background-color: var(--color-white);
}

.b-o {
  overflow: hidden;
}

.container {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.w-100 {
  width: 100% !important;
}

.heading-primary {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 67px;
  letter-spacing: 2.4px;
  color: var(--color-primary);
}
.heading-primary.-white {
  color: var(--color-white);
}
@media only screen and (max-width: 1200px) {
  .heading-primary {
    line-height: 58px;
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .heading-primary {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.4px;
  }
}

.page-header {
  background: url("../img/lazy-load/page-header-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  position: relative;
  padding-top: 100px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .page-header {
    padding-top: 85px;
    margin-bottom: 0;
  }
}
.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .page-header__inner {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
  }
}
.page-header__heading-jp {
  font-weight: 700;
}
.page-header__heading-jp::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin-right: 8px;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .page-header__heading-jp::before {
    width: 8px;
    height: 8px;
    margin-right: 4px;
  }
}
@media (max-width: 767px) {
  .page-header__heading-jp {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.7px;
  }
}
.page-header__heading {
  font-size: 80px;
  line-height: 1.4;
  font-family: var(--font-secondary);
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .page-header__heading {
    font-size: 40px;
  }
}
.page-header__img {
  max-width: 560px;
  width: 100%;
  aspect-ratio: 560/349;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: -18px;
}
@media only screen and (max-width: 767px) {
  .page-header__img {
    margin-top: 18px;
    max-width: 100%;
  }
}

.breadcrumb {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .breadcrumb {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 24px;
  }
}
.breadcrumb__item,
.breadcrumb__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item,
  .breadcrumb__link {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.6px;
  }
}
.breadcrumb__item {
  display: flex;
  color: var(--color-white);
  text-transform: uppercase;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  display: block;
  padding-inline: 8px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item:not(:last-child)::after {
    padding-inline: 4px;
  }
}
.breadcrumb__link {
  color: #d7e8bf;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section {
  padding-block: 100px;
}
@media only screen and (max-width: 767px) {
  .section {
    padding-block: 40px;
  }
}

.btn-link {
  display: inline-flex;
  font-weight: 700;
  padding: 12px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  background: #fff;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 120%;
}
@media only screen and (max-width: 992px) {
  .btn-link {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.7px;
  }
}
.btn-link__arrow {
  width: 34px;
  height: 14px;
  position: relative;
  overflow: hidden;
}
.btn-link__arrow::after,
.btn-link__arrow::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='%2300783C'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease;
}
.btn-link__arrow::before {
  position: absolute;
  left: -100%;
}
.btn-link__num {
  font-family: var(--font-secondary);
  font-weight: 800;
}
.btn-link:hover,
.btn-link.active {
  background-color: var(--color-sage--light);
}

@media (max-width: 767px) {
  .btn-link:hover,
  .btn-link.active {
    background-color: #ffff;
  }
}

.btn-link:hover .btn-link__arrow::after,
.btn-link.active .btn-link__arrow::after {
  transform: translateX(100%);
}
.btn-link:hover .btn-link__arrow::before,
.btn-link.active .btn-link__arrow::before {
  left: 0;
}

.btn-primary {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: var(--color-primary);
  padding: 12px 32px;
  transition: all 0.3s ease;
}
.btn-primary:hover .arrw::before {
  transform: translateX(0);
}
.btn-primary:hover .arrw::after {
  transform: translateX(30px);
}
.btn-primary .arrw {
  width: 22px;
  height: 16px;
  position: relative;
  overflow: hidden;
}
.btn-primary .arrw::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16' fill='none'%3E%3Cg clip-path='url(%23clip0_2893_482)'%3E%3Cpath d='M19.2682 0.858398H2.51832C1.67977 0.858398 1 1.53817 1 2.37671V13.6233C1 14.4618 1.67977 15.1416 2.51832 15.1416H19.2682C20.1067 15.1416 20.7865 14.4618 20.7865 13.6233V2.37671C20.7865 1.53817 20.1067 0.858398 19.2682 0.858398Z' stroke='white' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.3715 4.02148L10.8928 9.02246L4.41406 4.02148' stroke='white' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2893_482'%3E%3Crect width='22' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 22px;
  height: 16px;
  transition: all 0.15s ease;
}
.btn-primary .arrw::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16' fill='none'%3E%3Cg clip-path='url(%23clip0_2893_482)'%3E%3Cpath d='M19.2682 0.858398H2.51832C1.67977 0.858398 1 1.53817 1 2.37671V13.6233C1 14.4618 1.67977 15.1416 2.51832 15.1416H19.2682C20.1067 15.1416 20.7865 14.4618 20.7865 13.6233V2.37671C20.7865 1.53817 20.1067 0.858398 19.2682 0.858398Z' stroke='white' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.3715 4.02148L10.8928 9.02246L4.41406 4.02148' stroke='white' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2893_482'%3E%3Crect width='22' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 22px;
  height: 16px;
  transition: all 0.15s ease;
  transform: translateX(-30px);
}
.btn-primary.secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  gap: 16px;
  padding: 16px 24px 16px 40px;
}
@media (max-width: 767px) {
  .btn-primary.secondary {
    padding: 10px 12px 10px 20px;
  }
}
.btn-primary.secondary:hover .arrw::before {
  left: 50%;
}
.btn-primary.secondary:hover .arrw::after {
  left: 150%;
}
.btn-primary.secondary .arrw {
  width: 48px;
  height: 32px;
  border-radius: 70px;
  background-color: var(--color-primary);
}
.btn-primary.secondary .arrw::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/svg%3E");
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
}
.btn-primary.secondary .arrw::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/svg%3E");
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-primary.secondary.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-primary.secondary.bg-primary .arrw {
  background-color: var(--color-white);
}
.btn-primary.secondary.bg-primary .arrw:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='%2300783C'/%3E%3C/svg%3E");
}
.btn-primary.secondary.bg-primary .arrw:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='%2300783C'/%3E%3C/svg%3E");
}

.btn-secondary {
  color: var(--color-primary);
  font-size: var(--base-fontSize);
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0.9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .btn-secondary {
    font-size: 16px;
    line-height: 22px;
  }
}
.btn-secondary:hover .arrw::before {
  transition: all 0.3s ease;
  left: 50%;
}
.btn-secondary:hover .arrw::after {
  left: 150%;
  transition: all 0.3s ease;
}
.btn-secondary .arrw {
  width: 48px;
  height: 32px;
  overflow: hidden;
  background-color: var(--color-primary);
  position: relative;
  border-radius: 70px;
}
.btn-secondary .arrw::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.599px;
  height: 13.205px;
  position: absolute;
  transition: all 0.3s ease;
  left: -50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-secondary .arrw::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.599px;
  height: 13.205px;
  position: absolute;
  transition: all 0.3s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.is-invert p {
  color: var(--color-primary);
}
.header.is-invert .header-links li a {
  color: var(--color-primary);
}
.header.is-invert .dropdown p::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M7.38281 7.37945C6.95313 7.80914 6.25531 7.80914 5.82562 7.37945L5.82219 7.37945L0.322186 1.87945C-0.107501 1.44977 -0.107501 0.751952 0.322186 0.322265C0.751874 -0.107422 1.44969 -0.107422 1.87938 0.322265L6.5 4.85086L11.3256 0.322266C11.7553 -0.107422 12.4531 -0.107422 12.8828 0.322266C13.3125 0.751953 13.3125 1.44977 12.8828 1.87945L7.38281 7.37945Z' fill='%2300783C'/%3E%3C/svg%3E");
}
.header.is-invert.is-green .header-links li a {
  color: var(--color-white);
}
.header.is-invert.is-green p {
  color: #fff;
}
.header.is-invert.is-green .dropdown p::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M7.38281 7.37945C6.95313 7.80914 6.25531 7.80914 5.82562 7.37945L5.82219 7.37945L0.322186 1.87945C-0.107501 1.44977 -0.107501 0.751952 0.322186 0.322265C0.751874 -0.107422 1.44969 -0.107422 1.87938 0.322265L6.5 4.85086L11.3256 0.322266C11.7553 -0.107422 12.4531 -0.107422 12.8828 0.322266C13.3125 0.751953 13.3125 1.44977 12.8828 1.87945L7.38281 7.37945Z' fill='white'/%3E%3C/svg%3E");
}
.header.is-invert.is-green .btn-primary {
  background-color: #fff;
  color: var(--color-primary);
}
.header.is-invert.is-green .btn-primary .arrw::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16' fill='none'%3E%3Cg clip-path='url(%23clip0_2865_6408)'%3E%3Cpath d='M19.2682 0.859375H2.51832C1.67977 0.859375 1 1.53915 1 2.37769V13.6242C1 14.4628 1.67977 15.1426 2.51832 15.1426H19.2682C20.1067 15.1426 20.7865 14.4628 20.7865 13.6242V2.37769C20.7865 1.53915 20.1067 0.859375 19.2682 0.859375Z' stroke='%2300783C' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.3715 4.02148L10.8928 9.02246L4.41406 4.02148' stroke='%2300783C' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2865_6408'%3E%3Crect width='22' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.header.is-invert.is-green .btn-primary .arrw::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16' fill='none'%3E%3Cg clip-path='url(%23clip0_2865_6408)'%3E%3Cpath d='M19.2682 0.859375H2.51832C1.67977 0.859375 1 1.53915 1 2.37769V13.6242C1 14.4628 1.67977 15.1426 2.51832 15.1426H19.2682C20.1067 15.1426 20.7865 14.4628 20.7865 13.6242V2.37769C20.7865 1.53915 20.1067 0.859375 19.2682 0.859375Z' stroke='%2300783C' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.3715 4.02148L10.8928 9.02246L4.41406 4.02148' stroke='%2300783C' stroke-width='1.25024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2865_6408'%3E%3Crect width='22' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.header-logo {
  max-width: 240px;
}
@media (max-width: 991px) {
  .header-logo {
    max-width: 150px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .header-links {
    gap: 20px;
  }
}
.header-links p {
  color: #fff;
}
.header-links .dropdown {
  line-height: 1;
}
.header-links .dropdown.open p::after {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.header-links .dropdown p {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-links .dropdown p::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M7.38281 7.37945C6.95313 7.80914 6.25531 7.80914 5.82562 7.37945L5.82219 7.37945L0.322186 1.87945C-0.107501 1.44977 -0.107501 0.751952 0.322186 0.322265C0.751874 -0.107422 1.44969 -0.107422 1.87938 0.322265L6.5 4.85086L11.3256 0.322266C11.7553 -0.107422 12.4531 -0.107422 12.8828 0.322266C13.3125 0.751953 13.3125 1.44977 12.8828 1.87945L7.38281 7.37945Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  width: 15px;
  height: 15px;
}
.header-links li a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: all 0.3s ease;
}
.header-links li a:hover {
  transition: all 0.3s ease;
  opacity: 0.7;
}
.header__mega {
  border-radius: 20px;
  background: #f2f6ed;
  box-shadow: 0 4px 80px 0 rgba(0, 61, 30, 0.2);
  position: fixed;
  padding: 40px;
  top: 100px;
  max-width: 1160px;
  width: calc(100vw - 40px);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.header__mega.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header__mega-wrp {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}
.header__mega img {
  border-radius: 4px;
}
.header__mega-row a picture {
  display: block;
  margin-bottom: 8px;
}
.header__mega-lft {
  width: max-content;
  max-width: min(200px, 100%);
  flex-shrink: 0;
}
.header__mega-lft .btn-secondary {
  margin-top: 20px;
  white-space: nowrap;
}
.header__mega-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
/* PCメガメニューのみ4列（法人・個人とも1行に収め高さを抑える） */
.header__mega .header__mega-row li {
  width: calc((100% - 48px) / 4);
  box-sizing: border-box;
}
.header__mega-row a {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.header__mega-row a > span {
  display: inline;
  margin-top: 0;
}
.header__mega-row a:hover .icn::after {
  left: 200%;
  transition: transform 0.3s ease;
}
.header__mega-row a:hover .icn::before {
  left: 50%;
  transition: transform 0.3s ease;
}
.header__mega-row a:hover picture {
  position: relative;
}
.header__mega-row a:hover picture::after {
  content: "VIEW MORE";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 120, 60, 0.6);
  left: 0;
  top: 0;
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__mega-row a .arrw {
  display: inline;
}
.header__mega-row a .icn {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-left: 8px;
}
.header__mega-row a .icn::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_3076_1400)'%3E%3Cpath d='M17.2769 9.37945C17.7066 8.94977 17.7066 8.25195 17.2769 7.82227L11.7769 2.32227C11.3472 1.89258 10.6494 1.89258 10.2197 2.32227C9.79 2.75195 9.79 3.44977 10.2197 3.87945L13.8428 7.50258H1.1C0.491562 7.50258 0 7.99414 0 8.60258C0 9.21102 0.491562 9.70258 1.1 9.70258H13.8428L10.2197 13.3257C9.79 13.7554 9.79 14.4532 10.2197 14.8829C10.6494 15.3126 11.3472 15.3126 11.7769 14.8829L17.2769 9.38289V9.37945Z' fill='%2300783C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3076_1400'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 40%;
  left: 50%;
  transition: transform 0.3s ease;
  transform: translate(-50%, -50%);
}
.header__mega-row a .icn::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_3076_1400)'%3E%3Cpath d='M17.2769 9.37945C17.7066 8.94977 17.7066 8.25195 17.2769 7.82227L11.7769 2.32227C11.3472 1.89258 10.6494 1.89258 10.2197 2.32227C9.79 2.75195 9.79 3.44977 10.2197 3.87945L13.8428 7.50258H1.1C0.491562 7.50258 0 7.99414 0 8.60258C0 9.21102 0.491562 9.70258 1.1 9.70258H13.8428L10.2197 13.3257C9.79 13.7554 9.79 14.4532 10.2197 14.8829C10.6494 15.3126 11.3472 15.3126 11.7769 14.8829L17.2769 9.38289V9.37945Z' fill='%2300783C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3076_1400'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 40%;
  left: -100%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.header__mega-ttl {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}
.header__mega-block:not(:last-of-type) {
  margin-bottom: 32px;
}
.header__mega-block:not(:last-of-type) .arrw {
  margin-top: 0;
}
.header__mega-block-ttl {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0.9px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__mega-block-ttl::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 100%;
}
.header-options {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__hamburger {
  width: 40px;
  height: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
}
.header__hamburger-line:nth-of-type(3) {
  width: 50%;
}
.header__hamburger.open {
  position: relative;
}
.header__hamburger.open .header__hamburger-line:nth-of-type(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease;
}

.header__hamburger.open .header__hamburger-line {
  background-color: #ffff !important;
}
.header__hamburger.open .header__hamburger-line:nth-of-type(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.3s ease;
}
.header__hamburger.open .header__hamburger-line:nth-of-type(3) {
  display: none;
}
.header__hamburger:hover .header__hamburger-line {
  width: 100%;
}

.header-hamburger-menu .header__mega-row li {
  margin-bottom: 0 !important;
}

.header-hamburger-menu {
  background-color: #00783c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  overflow: scroll;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.header-hamburger-menu.is-opened {
  visibility: visible;
  opacity: 1;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
@media (min-width: 768px) {
  .header-hamburger-menu {
    display: none;
  }
}

.header-ham-footer-t {
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}

.header-ham-container {
  padding: 100px 16px 40px;
}
.header-ham-container .header__mega-block-ttl {
  color: #fff;
  font-size: 16.299px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.815px;
}
.header-ham-container .header__mega-block-ttl::before {
  background-color: #fff;
  width: 10px;
  height: 10px;
}
.header-ham-container .header__mega-row a {
  color: #fff;
  font-size: 12.677px;
  font-weight: 700;
  line-height: 140%;
}
.header-ham-container .header__mega-row {
  gap: 14.49px;
  margin-top: 7px;
}
.header-ham-container .header__mega-row li {
  width: calc(50% - 7.245px);
}
.header-ham-container .header__mega-block:not(:last-of-type) {
  margin-bottom: 24px;
  padding-top: 24px;
}
.header-ham-container .header__mega-row a .icn::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 16 12' fill='none'%3E%3Cg clip-path='url(%23clip0_4003_10589)'%3E%3Cpath d='M15.6439 6.68194C16.0329 6.29287 16.0329 5.66101 15.6439 5.27194L10.6637 0.291805C10.2746 -0.0972683 9.64279 -0.0972683 9.25372 0.291805C8.86464 0.680878 8.86464 1.31273 9.25372 1.70181L12.5344 4.98247H0.996027C0.4451 4.98247 0 5.42757 0 5.9785C0 6.52943 0.4451 6.97453 0.996027 6.97453H12.5344L9.25372 10.2552C8.86464 10.6443 8.86464 11.2761 9.25372 11.6652C9.64279 12.0543 10.2746 12.0543 10.6637 11.6652L15.6439 6.68506V6.68194Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4003_10589'%3E%3Crect width='15.9357' height='11.957' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.header-ham-container .header__mega-row a .icn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 16 12' fill='none'%3E%3Cg clip-path='url(%23clip0_4003_10589)'%3E%3Cpath d='M15.6439 6.68194C16.0329 6.29287 16.0329 5.66101 15.6439 5.27194L10.6637 0.291805C10.2746 -0.0972683 9.64279 -0.0972683 9.25372 0.291805C8.86464 0.680878 8.86464 1.31273 9.25372 1.70181L12.5344 4.98247H0.996027C0.4451 4.98247 0 5.42757 0 5.9785C0 6.52943 0.4451 6.97453 0.996027 6.97453H12.5344L9.25372 10.2552C8.86464 10.6443 8.86464 11.2761 9.25372 11.6652C9.64279 12.0543 10.2746 12.0543 10.6637 11.6652L15.6439 6.68506V6.68194Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4003_10589'%3E%3Crect width='15.9357' height='11.957' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.header-ham-container .header__mega-rgt {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    visiblity 0.3s ease,
    opacity 0.3s ease;
  position: absolute;
}
.header-ham-container .header__mega-rgt .header__mega-block {
  height: 0;
}
.header-ham-container .header__mega-rgt.show {
  max-height: 100%;
  visibility: visible;
  opacity: 1;
  transition:
    visiblity 0.3s ease,
    opacity 0.3s ease;
  position: relative;
}
.header-ham-container .header__mega-rgt.show .header__mega-block {
  height: 100%;
}
.header-ham-container .header-ham-links li .drop {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.header-ham-container .header-ham-links li .drop::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M7.38086 7.37945C6.95117 7.80914 6.25336 7.80914 5.82367 7.37945L5.82023 7.37945L0.320233 1.87945C-0.109454 1.44977 -0.109454 0.751952 0.320233 0.322265C0.749921 -0.107422 1.44773 -0.107422 1.87742 0.322265L6.49805 4.85086L11.3237 0.322266C11.7534 -0.107422 12.4512 -0.107422 12.8809 0.322266C13.3105 0.751953 13.3105 1.44977 12.8809 1.87945L7.38086 7.37945Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14.702px;
  height: 13.205px;
  transition: all 0.3s ease;
}
.header-ham-container .header-ham-links .external a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-ham-container .header-ham-links .external a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M9.3349 2H14.0016V6.66667M8.60156 7.4L13.7016 2.3' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 9.82467V13C14 13.2652 13.8946 13.5196 13.7071 13.7071C13.5196 13.8946 13.2652 14 13 14H3C2.73478 14 2.48043 13.8946 2.29289 13.7071C2.10536 13.5196 2 13.2652 2 13V3C2 2.73478 2.10536 2.48043 2.29289 2.29289C2.48043 2.10536 2.73478 2 3 2H6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.header-ham-container .header-ham-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.header-ham-links li a,
.header-ham-links li p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1px;
}

.header-ham-links li:not(:last-of-type) {
  margin-bottom: 24px;
}

.header-ham-links {
  padding-bottom: 40px;
}

.header-ham-footer {
  background-color: #027039;
  padding: 16px;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.footer {
  background-color: var(--color-primary);
  padding: 120px 0 37px;
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 20px;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .footer__social {
    margin-top: 16px;
    justify-content: center;
  }
}
.footer__social li a {
  transition: all 0.3s ease;
}
.footer__social li a:hover {
  opacity: 0.7;
}
.footer__btn {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .footer__btn {
    margin-top: 16px;
    text-align: center;
  }
}
.footer__address {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer__address {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__info {
    width: 100%;
  }
}
.footer__logo {
  max-width: 302px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin: 0 auto;
    display: block;
  }
}
.footer__wrp {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__wrp {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__links {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 767px) {
  .footer__links {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
}
.footer__links li:not(:last-of-type) {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer__links li:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.footer__links li a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.footer__links .links li a:hover .arrw::after {
  content: "";
  transition: all 0.3s ease;
  transform: translateX(50px);
}
.footer__links .links li a:hover .arrw::before {
  content: "";
  transform: translateX(0);
  transition: all 0.3s ease;
}
.footer__links .links li a .arrw {
  overflow: hidden;
  width: 19px;
  height: 15px;
  position: relative;
}
.footer__links .links li a .arrw::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cg clip-path='url(%23clip0_2931_5682)'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2931_5682'%3E%3Crect width='17.5991' height='13.2052' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.599px;
  height: 13.205px;
  position: absolute;
  transition: all 0.3s ease;
}
.footer__links .links li a .arrw::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cg clip-path='url(%23clip0_2931_5682)'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2931_5682'%3E%3Crect width='17.5991' height='13.2052' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.599px;
  height: 13.205px;
  position: absolute;
  transform: translateX(-50px);
  transition: all 0.3s ease;
}
.footer__links .external li a .arrw {
  position: relative;
  line-height: 0;
  width: 18px;
  height: 18px;
}
.footer__links .external li a svg {
  position: absolute;
  top: -3px;
  right: -3px;
}
.footer__links .external li a .path-arrow {
  transition:
    stroke 0.3s ease,
    transform 0.3s ease;
}
.footer__links .external li a:hover .path-arrow {
  transform: translate(2px, -2px);
  transition:
    stroke 0.3s ease,
    transform 0.3s ease;
}
.footer__btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--color-white);
}
@media (max-width: 767px) {
  .footer__btm {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
}
.footer__btm-txt {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.4px;
}
@media (max-width: 767px) {
  .footer__btm-txt {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}
.footer__btm-privacy {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all 0.3s ease;
}
.footer__btm-privacy:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .footer__btm-privacy {
    letter-spacing: 0.7px;
  }
}

.animation {
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.animation.animate {
  opacity: 1;
}

.fade-up {
  transform: translateY(50px);
}
.fade-up.animate {
  transform: translateY(0);
}

.archive__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .archive__pagination {
    gap: 6px;
  }
}

.archive__pagination-item {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #fff;
  color: #00783c;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .archive__pagination-item {
    width: 36px;
    height: 36px;
  }
}

.archive__pagination-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.archive__pagination-item.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.archive__pagination-num {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .archive__pagination-num {
    gap: 6px;
  }
}

.archive__pagination-btn {
  width: 48px;
  height: 32px;
  border-radius: 70px;
  border: none;
  background: #0a7a33;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
}
@media (max-width: 767px) {
  .archive__pagination-btn {
    width: 40px;
    height: 26px;
  }
}

.archive__pagination-btn::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258L1.1 5.50258C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258L13.8428 7.70258L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 17.599px;
  height: 13.205px;
  position: absolute;
  left: -50%;
  top: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .archive__pagination-btn::before {
    width: 14px;
    height: 10px;
  }
}

.archive__pagination-btn::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258L1.1 5.50258C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258L13.8428 7.70258L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 17.599px;
  height: 13.205px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .archive__pagination-btn::after {
    width: 14px;
    height: 10px;
  }
}

.archive__pagination-btn:hover::after {
  left: 150%;
  transition: all 0.3s ease;
}

.archive__pagination-btn:hover::before {
  left: 50%;
  transition: all 0.3s ease;
}

.archive__pagination-btn.left::after {
  transform: translate(-50%, -50%) rotate(-180deg);
  left: 50%;
}

.archive__pagination-btn.left::before {
  transform: translate(-50%, -50%) rotate(-180deg);
  left: 150%;
}

.archive__pagination-btn.left:hover::after {
  transform: translate(-50%, -50%) rotate(-180deg);
  transition: all 0.3s ease;
  left: -50%;
}

.archive__pagination-btn.left:hover::before {
  transform: translate(-50%, -50%) rotate(-180deg);
  transition: all 0.3s ease;
  left: 50%;
}

.header-secondary {
  color: #00783c;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.6px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .header-secondary {
    font-size: 24px;
    line-height: 140%;
    /* 33.6px */
    letter-spacing: 1.2px;
    margin-bottom: 16px;
  }
}
.header-secondary span {
  color: #00783c;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .header-secondary span {
    font-size: 14px;
    line-height: 140%;
    /* 19.6px */
  }
}

.header-third {
  text-align: center;
}
.header-third__jp {
  color: #00783c;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .header-third__jp {
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.4px;
  }
}
.header-third__en {
  color: #00783c;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.9px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .header-third__en {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.65px;
  }
}

.not-found__Desc {
  color: 181818;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  /* 32.4px */
  letter-spacing: 0.9px;
}

.not-found__wrp {
  padding: 140px 0 100px;
}

.not-found__wrp .not-found__Desc {
  margin-top: 60px;
}

.not-found__btn {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found__btn .btn-secondary {
  flex-direction: row-reverse;
}

.not-found__btn .btn-secondary .arrw {
  transform: rotate(180deg);
}

.thank-you {
  background-color: #f2f6ed;
}

@media (max-width: 767px) {
  .not-found__wrp .not-found__Desc {
    margin-top: 24px;
  }
  .not-found__Desc {
    font-size: 13px;
    letter-spacing: 0.65px;
    text-align: start;
  }
  .not-found__btn {
    margin-top: 24px;
  }
  .not-found__btn .btn-secondary {
    font-size: 18px;
  }
  .not-found__btn .btn-secondary .arrw {
    width: 40px;
    height: 26px;
  }
  .not-found__wrp {
    padding: 90px 0 100px;
  }
} /*# sourceMappingURL=common.css.map */



.header.is-invert .header__hamburger-line {
  background-color: var(--color-primary);
}

.header.is-green .header__hamburger-line {
  background-color: #fff;
}

.header-ham-container .header-ham-links li .drop.show::after {
  transform: rotate(180deg);
  transition:  all 0.3s ease;
}