<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style-type: none;
}

/* Set core root defaults */
html {
  width: 100%;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

/* Set core body defaults */
body {
  width: 100%;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements default styles */
a {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/** --------------------------------
* 引数で指定した色の明るさに応じて白か黒を出力する関数
*
* @param $color カラーコード
*/
/** --------------------------------
* 画像の縦横比を指定する関数  figureタグに付与
*
* @param $height 横幅100の時の縦の割合 *「%」で指定
*/
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  color: #000000;
  font-size: 62.5%;
  background-color: #ffffff;
}
html.-noScroll {
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000000;
  line-height: 1.65;
  letter-spacing: 0;
  background-color: #ffffff;
}

.inner {
  width: 100%;
  max-width: 127.6rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin: 0 auto;
}
.inner.-mw_109rem {
  max-width: 113.6rem;
}
.inner.-mw_80rem {
  max-width: 84rem;
}

a {
  color: #000000;
}

.-en {
  font-family: "Lato", sans-serif;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
}
@media only screen and (max-width:768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 5rem;
    height: 5rem;
    background-color: #8EBA44;
    border-radius: 50%;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 1.5rem;
    height: 1rem;
    content: "";
    background-image: url(../../assets/image/common/icon_arrow_right_white_1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.swiper-button-prev.swiper-button-disabled::before,
.swiper-button-next.swiper-button-disabled::before {
  background-image: url(../../assets/image/common/icon_arrow_right_primary_1.svg);
}

.swiper-button-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}

html.-fixed {
  overflow: hidden;
}

.page {
  overflow: hidden;
  background-color: #F5F5F5;
  padding-top: 18rem;
  padding-bottom: clamp(10rem, 11.7994100295vw, 16rem);
}
@media only screen and (max-width:768px) {
  .page {
    padding-top: 11rem;
  }
}
.page .page_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(2rem, 3.6873156342vw, 5rem);
}
@media only screen and (max-width:768px) {
  .page .page_body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.page .page_sidebar {
  width: 24rem;
}
@media only screen and (max-width:768px) {
  .page .page_sidebar {
    width: 100%;
  }
}
.page .page_sidebar .sidebar_lbl {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1875;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(1.5rem, 1.4749262537vw, 2rem);
}
.page .page_sidebar .sidebar_lbl::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 0.8rem;
  background: url(../../Image/common/icon_menu.svg) no-repeat 50%/contain;
}
.page .page_sidebar .sidebar_lbl.-setting::before {
  width: 1.7rem;
  height: 1.5rem;
  background: url(../../Image/common/icon_setting.svg) no-repeat 50%/contain;
}
.page .page_sidebar .sidebar_form.-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 2.7rem;
}
.page .page_sidebar .sidebar_form.-search .form_searchInput {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  color: #000000;
  border: 0;
  font-size: 1.4rem;
  padding: 1.3rem;
}
.page .page_sidebar .sidebar_form.-search .form_searchInput::-webkit-input-placeholder {
  color: #B9B9B9;
}
.page .page_sidebar .sidebar_form.-search .form_searchInput::-moz-placeholder {
  color: #B9B9B9;
}
.page .page_sidebar .sidebar_form.-search .form_searchInput:-ms-input-placeholder {
  color: #B9B9B9;
}
.page .page_sidebar .sidebar_form.-search .form_searchInput::-ms-input-placeholder {
  color: #B9B9B9;
}
.page .page_sidebar .sidebar_form.-search .form_searchInput::placeholder {
  color: #B9B9B9;
}
.page .page_sidebar .sidebar_form.-search .form_searchInput:focus, .page .page_sidebar .sidebar_form.-search .form_searchInput:focus-visible {
  outline: 0;
}
.page .page_sidebar .sidebar_form.-search .form_searchBtn {
  text-indent: -999px;
  overflow: hidden;
  width: 4rem;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: url(../../Image/common/icon_find.svg) no-repeat calc(100% - 1.2rem) 50%/2rem 2rem #ffffff;
  cursor: pointer;
}
.page .page_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width:768px) {
  .page .page_content {
    width: 100%;
  }
}
.page .page_breadcrumb .breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page .page_breadcrumb .breadcrumb_item {
  padding-right: 1.6rem;
  margin-right: 1.6rem;
  position: relative;
}
.page .page_breadcrumb .breadcrumb_item &gt; a {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.027em;
  color: #6d9824;
  position: relative;
}
.page .page_breadcrumb .breadcrumb_item &gt; a:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #6d9824;
  left: 0;
  right: 0;
  bottom: 0.3rem;
}
@media only screen and (max-width:768px) {
  .page .page_breadcrumb .breadcrumb_item &gt; a:after {
    bottom: 0.1rem;
  }
}
.page .page_breadcrumb .breadcrumb_item::after {
  content: "";
  position: absolute;
  width: 0.37rem;
  height: 0.75rem;
  top: 50%;
  right: -0.2rem;
  background: url(../../Image/common/icon_arrow_right_green2.svg) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page .page_breadcrumb .breadcrumb_item:first-child &gt; a {
  font-weight: 700;
}
.page .page_breadcrumb .breadcrumb_item:last-child {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.page .page_breadcrumb .breadcrumb_item:last-child &gt; a {
  pointer-events: none;
  color: #000000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.page .page_breadcrumb .breadcrumb_item:last-child &gt; a::after {
  display: none;
}
.page .page_breadcrumb .breadcrumb_item:last-child::after {
  display: none;
}
.page .page_breadcrumb .breadcrumb_item:not(:last-child) &gt; a {
  word-break: keep-all;
}
.page .page_secTtl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.2rem;
  margin-bottom: clamp(3rem, 4.0560471976vw, 5.5rem);
}
@media only screen and (max-width:768px) {
  .page .page_secTtl1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.2rem;
  }
}
.page .page_secTtl1 .en {
  font-family: "Lato", sans-serif;
  font-size: clamp(5.1rem, 6.4159292035vw, 8.7rem);
  line-height: 1.057;
  font-weight: 700;
  letter-spacing: -0.014em;
  color: #8EBA44;
}
@media only screen and (max-width:768px) {
  .page .page_secTtl1 .en {
    letter-spacing: 0;
  }
}
.page .page_secTtl1 .jp {
  font-size: clamp(1.4rem, 1.1799410029vw, 1.6rem);
  line-height: 1.625;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media only screen and (max-width:768px) {
  .page .page_secTtl1 .jp {
    line-height: 1.714;
    letter-spacing: 0;
  }
}
.page .page_secTtl2 .jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.02em;
  gap: 0.5rem;
}
.page .page_secTtl2 .jp::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #8EBA44;
  border-radius: 50%;
}
.page .page_secTtl2 .en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: clamp(2.6rem, 2.6548672566vw, 3.6rem);
  font-weight: 700;
  line-height: 0.83;
  letter-spacing: 0.02em;
}
.page .page_mainBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.page .page_mainBtn .btn_lbl {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0;
}
.page .page_mainBtn .btn_icon {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 0.2rem solid #8EBA44;
  position: relative;
}
.page .page_mainBtn .btn_icon:after {
  content: "";
  position: absolute;
  width: 1.9rem;
  height: 0.95rem;
  background: url(../../Image/common/icon_arrow_right_green.svg) no-repeat 50%/contain;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page .page_mainBtn:hover .btn_icon:after {
  -webkit-transform: translate(calc(-50% + 0.7rem), -50%);
          transform: translate(calc(-50% + 0.7rem), -50%);
}
.page .page_mainBtn.-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page .page_mainBtn.-rev .btn_icon:after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.page .page_mainBtn.-rev:hover .btn_icon:after {
  -webkit-transform: translate(calc(-50% - 0.7rem), -50%) scaleX(-1);
          transform: translate(calc(-50% - 0.7rem), -50%) scaleX(-1);
}
.page .page_kv {
  margin-bottom: clamp(3.7rem, 4.0560471976vw, 5.5rem);
}
.page .page_kv .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 6.5rem;
}
@media only screen and (max-width:768px) {
  .page .page_kv .inner {
    gap: 0.5rem;
  }
}
.page .page_kv .kv_ttl {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(3.9rem, 5.6784660767vw, 7.7rem);
  line-height: 1.1948;
  color: #8EBA44;
}
@media only screen and (max-width:768px) {
  .page .page_kv .kv_ttl {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.page .page_kv .kv_txt {
  font-size: 1.4rem;
  line-height: 1.714;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width:768px) {
  .page .page_kv .kv_txt {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.page .page_kv .page_breadcrumb {
  width: 100%;
}
@media only screen and (max-width:768px) {
  .page .page_kv .page_breadcrumb {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 1.2rem;
  }
}
.page .page_pagination .pagination_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 1.0324483776vw, 1.4rem);
  margin: 0 auto;
}
.page .page_pagination .pagination_item {
  width: 3.9rem;
  height: 3.9rem;
  border: 1px solid #8EBA44;
  color: #6d9824;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page_pagination .pagination_item {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.page .page_pagination .pagination_item.-active, .page .page_pagination .pagination_item:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.page .page_pagination .pagination_item.-dots, .page .page_pagination .pagination_item.dots {
  width: 1.5rem;
  background-color: transparent !important;
  border: none;
  cursor: default;
  pointer-events: none;
  padding-bottom: 1rem;
  letter-spacing: 0;
  margin: 0 0.2rem;
}
@media only screen and (max-width:768px) {
  .page .page_pagination .pagination_item.-dots, .page .page_pagination .pagination_item.dots {
    margin: 0 0.7rem;
  }
}
.page .page_pagination .pagination_item.-prev, .page .page_pagination .pagination_item.-next {
  border: none;
  background-color: transparent !important;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../Image/common/icon_arrow_prev_green.png) no-repeat 50%/contain;
}
.page .page_pagination .pagination_item.-next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.page .page_detail_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(2.4rem, 2.1386430678vw, 2.9rem);
}
@media only screen and (max-width:768px) {
  .page .page_detail_share {
    margin-right: 1rem;
  }
}
.page .page_detail_share .detail_share_lbl {
  margin-right: 2rem;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width:768px) {
  .page .page_detail_share .detail_share_lbl {
    margin-right: 0.5rem;
  }
}
.page .page_detail_share .detail_share_link {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page .page_detail_share .detail_share_link:hover {
  opacity: 0.7;
}

form .custom_checkbox {
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  padding-left: 2.8rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
form .custom_checkbox &gt; input {
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
form .custom_checkbox &gt; input:checked ~ .checkmark {
  background-color: #8EBA44;
}
form .custom_checkbox &gt; input:checked ~ .checkmark:after {
  opacity: 1;
}
form .custom_checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
form .custom_checkbox .checkmark:after {
  position: absolute;
  top: 51%;
  left: 50%;
  width: 1rem;
  height: 0.7rem;
  content: "";
  background: url(../../Image/common/icon_checkmark.svg) no-repeat 50%/contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  opacity: 0;
}
form .custom_checkbox.-required {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
form .custom_checkbox.-required:after {
  position: absolute;
  content: "必須";
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.027em;
  width: 4rem;
  height: 2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.2rem;
  background-color: #8EBA44;
  color: #ffffff;
  left: calc(100% + 0.8rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-bottom: 1px;
}
form input[type=text],
form input[type=number],
form input[type=tel],
form input[type=email],
form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 0.6rem;
  color: #000000;
  border: 0;
  background-color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  padding: 1.7rem 2rem;
  border-radius: 0.6rem;
}
@media only screen and (max-width:768px) {
  form input[type=text],
  form input[type=number],
  form input[type=tel],
  form input[type=email],
  form textarea {
    padding: 1.2rem 2rem;
  }
}
form input[type=text]::-webkit-input-placeholder, form input[type=number]::-webkit-input-placeholder, form input[type=tel]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #B9B9B9;
}
form input[type=text]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=email]::-moz-placeholder, form textarea::-moz-placeholder {
  color: #B9B9B9;
}
form input[type=text]:-ms-input-placeholder, form input[type=number]:-ms-input-placeholder, form input[type=tel]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: #B9B9B9;
}
form input[type=text]::-ms-input-placeholder, form input[type=number]::-ms-input-placeholder, form input[type=tel]::-ms-input-placeholder, form input[type=email]::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: #B9B9B9;
}
form input[type=text]::placeholder,
form input[type=number]::placeholder,
form input[type=tel]::placeholder,
form input[type=email]::placeholder,
form textarea::placeholder {
  color: #B9B9B9;
}
form .custom_select {
  position: relative;
}
form .custom_select ::-webkit-scrollbar {
  width: 3.2rem;
}
form .custom_select ::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0.4rem;
}
form .custom_select ::-webkit-scrollbar-thumb {
  background-color: #6d9824;
  border-radius: 2rem;
  border: 1.5rem solid #ffffff;
}
form .custom_select .form_control {
  padding: 1.65rem 2rem;
  height: auto;
  font-size: 1.6rem;
  line-height: 1.928;
  border-radius: 0.6rem;
}
@media only screen and (max-width:768px) {
  form .custom_select .form_control {
    padding: 1.15rem 1.5rem;
  }
}
form .custom_select .form_control:hover, form .custom_select .form_control:focus, form .custom_select .form_control:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
form .custom_select .select {
  cursor: pointer;
  position: relative;
  height: 6.4rem;
  border: 0;
}
@media only screen and (max-width:768px) {
  form .custom_select .select {
    height: 5.4rem;
  }
}
form .custom_select select {
  position: absolute;
  border: 0;
  z-index: -1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
form .custom_select .select_display {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000000;
}
form .custom_select .select_display.-is_default {
  color: #B9B9B9;
}
form .custom_select .select_display:after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1rem;
  background: url(../../Image/common/icon_arrow_down_green.svg) no-repeat 50%/contain #ffffff;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  form .custom_select .select_display:after {
    right: 1rem;
  }
}
form .custom_select .options {
  display: none;
  position: absolute;
  background-color: #ffffff;
  top: calc(100% - 3px);
  left: 0;
  z-index: 1;
  width: 100%;
  max-height: 36.7rem;
  overflow: auto;
  border-radius: 0.6rem;
}
form .custom_select .options &gt; li {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 1rem 2rem;
}
@media only screen and (max-width:768px) {
  form .custom_select .options &gt; li {
    padding: 0.9rem 1.5rem;
    letter-spacing: -0.05em;
  }
}
form .custom_select .options &gt; li::before {
  display: none;
}
form .custom_select .options &gt; li.active, form .custom_select .options &gt; li:hover {
  color: #6d9824;
  font-weight: 700;
}
form input[type=submit],
form input[type=reset],
form button[type=submit],
form button[type=reset] {
  width: 100%;
  max-width: 24.5rem;
  height: 6.9rem;
  border-radius: 500px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background-color: #8EBA44;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  form input[type=submit],
  form input[type=reset],
  form button[type=submit],
  form button[type=reset] {
    max-width: 100%;
    height: 6.4rem;
    font-size: 1.6rem;
  }
}
form input[type=submit]:hover,
form input[type=reset]:hover,
form button[type=submit]:hover,
form button[type=reset]:hover {
  opacity: 0.7;
}
form button[type=reset] {
  background-color: #B9B9B9;
}
form .wpcf7-spinner {
  display: none;
}
form .form_back {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.02em;
  border: none;
  border-bottom: 1px solid #000000;
  color: #000000;
  margin: clamp(1rem, 1.4749262537vw, 2rem) auto 0;
  background: transparent;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  form .form_back {
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 0;
  }
}
form .form_back:hover {
  opacity: 0.7;
}
form .form_error {
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.02em;
  color: #FF0000;
  padding: 1.9rem 2rem;
  border: 1px solid #FF0000;
  border-radius: 0.6rem;
  margin-bottom: 5.3rem;
}
@media only screen and (max-width:768px) {
  form .form_error {
    margin-bottom: 3.2rem;
  }
}
form .form_error &gt; p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
form .form_error &gt; p::before {
  display: block;
  content: "";
  width: 2.1rem;
  height: 1.8rem;
  background: url(../../Image/common/icon_error.svg) no-repeat 50%/contain;
  margin-top: 0.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
form .field_error {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: #FF0000;
  margin: 0.4rem 0 -0.2rem;
}
form .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
form .flexBox.-col2 &gt; * {
  width: calc((100% - 2rem) / 2);
}

.modal {
  width: 100%;
  border-radius: 0;
  padding: 5.7rem 2rem 4rem;
}
.modal a.close-modal {
  width: 2rem;
  height: 1.67rem;
  background: url(../../Image/common/icon_x.svg) no-repeat 50%/contain;
  top: 2rem;
  right: 2rem;
}

#header {
  position: fixed;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  width: 90.23%;
  -webkit-box-shadow: 0 0.3rem 1.1rem rgba(0, 0, 0, 0.14);
          box-shadow: 0 0.3rem 1.1rem rgba(0, 0, 0, 0.14);
  border-radius: 500px;
}
@media only screen and (max-width:768px) {
  #header {
    width: 100%;
    border-radius: 0;
    top: 0;
  }
}
#header .header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  height: 8rem;
  padding: 0 min(9rem, 5.8594vw) 0 min(4.5rem, 2.9297vw);
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 500px;
}
@media only screen and (max-width:768px) {
  #header .header_wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 2rem;
    height: 7rem;
    border-radius: 0;
  }
}
#header .header_logo {
  display: block;
  width: clamp(9.4rem, 8.4808259587vw, 11.5rem);
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#header .header_logo &gt; a {
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .header_logo &gt; a:hover {
  opacity: 0.7;
}
#header .header_navs {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: min(10rem, 6.5104vw);
  position: relative;
}
@media only screen and (max-width:1199px) {
  #header .header_navs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    padding-top: 1rem;
  }
}
@media only screen and (max-width:768px) {
  #header .header_navs {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    top: 7rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: calc(100vh - 7rem);
    width: 100vw;
    z-index: 2;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #ffffff;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    padding: 0 2rem 2.4rem;
    overflow-y: scroll;
  }
}
#header .header_nav1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5rem, 3.2552vw);
  position: relative;
}
@media only screen and (max-width:1199px) {
  #header .header_nav1 {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: min(5rem, 2.5552vw);
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav1 {
    display: block;
    margin-bottom: 4rem;
  }
}
#header .header_nav1:after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 3.1rem;
  background: #000000;
  right: max(-5rem, -3.2552vw);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:1199px) {
  #header .header_nav1:after {
    display: none;
  }
}
#header .header_nav1 .nav1_item {
  padding: 1rem 0;
  position: relative;
}
@media only screen and (max-width:1199px) {
  #header .header_nav1 .nav1_item {
    padding: 0 0 1rem;
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_item {
    width: 100%;
    padding: 1.85rem 0;
    border-bottom: 1px solid #000000;
  }
}
#header .header_nav1 .nav1_item &gt; a,
#header .header_nav1 .nav1_item &gt; span {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width:1199px) {
  #header .header_nav1 .nav1_item &gt; a,
  #header .header_nav1 .nav1_item &gt; span {
    padding: 0;
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_item &gt; a,
  #header .header_nav1 .nav1_item &gt; span {
    padding: 0 1rem;
  }
}
#header .header_nav1 .nav1_item &gt; a::before,
#header .header_nav1 .nav1_item &gt; span::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: #8EBA44;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#header .header_nav1 .nav1_item &gt; a {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .header_nav1 .nav1_item &gt; a:hover {
  opacity: 0.7;
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_item.-has_sub &gt; span::after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 0.8rem;
    background: url(../../Image/common/icon_arrow_down_green.svg) no-repeat 50%/contain;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
#header .header_nav1 .nav1_item.-has_sub:hover .nav1_subMenu {
  opacity: 1;
  visibility: inherit;
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_item.-has_sub.-active {
    padding: 1.85rem 0 0;
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_item.-has_sub.-active &gt; span::after {
    -webkit-transform: translateY(-50%) scaleY(-1);
            transform: translateY(-50%) scaleY(-1);
  }
}
#header .header_nav1 .nav1_subMenu {
  position: absolute;
  top: 4.3rem;
  z-index: 1;
  display: block;
  height: auto;
  padding: 1rem 2rem;
  background: #8EBA44;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width:1199px) {
  #header .header_nav1 .nav1_subMenu {
    top: 3.3rem;
    right: 0;
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_subMenu {
    display: none;
    margin-top: 1.8rem;
    position: relative;
    top: 0;
    background: transparent;
    opacity: 1;
    visibility: inherit;
    padding: 0;
  }
}
#header .header_nav1 .nav1_subMenu .nav1_subItem {
  line-height: 1.625;
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_subMenu .nav1_subItem {
    border-top: 1px solid #B9B9B9;
    padding: 1.85rem 2.4rem;
  }
}
#header .header_nav1 .nav1_subMenu .nav1_subItem &gt; a {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.875;
  color: #ffffff;
  white-space: nowrap;
}
@media only screen and (max-width:768px) {
  #header .header_nav1 .nav1_subMenu .nav1_subItem &gt; a {
    color: #000000;
  }
}
#header .header_nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(3rem, 1.9531vw);
  position: relative;
}
@media only screen and (max-width:1199px) {
  #header .header_nav2 {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: -0.5rem;
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav2 {
    display: block;
    padding-left: 1rem;
    margin-bottom: 0;
  }
}
#header .header_nav2 .nav2_item {
  padding: 1.5rem 0;
  position: relative;
}
@media only screen and (max-width:1199px) {
  #header .header_nav2 .nav2_item {
    padding: 0 0 0.5rem;
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav2 .nav2_item {
    margin-bottom: 1.4rem;
  }
}
#header .header_nav2 .nav2_item.-has_sub {
  cursor: pointer;
}
#header .header_nav2 .nav2_item.-has_sub:hover .nav2_subMenu {
  opacity: 1;
  visibility: inherit;
}
#header .header_nav2 .nav2_item &gt; a,
#header .header_nav2 .nav2_item &gt; span {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.3rem, 1.0324483776vw, 1.4rem);
  line-height: 1.214;
}
@media only screen and (max-width:768px) {
  #header .header_nav2 .nav2_item &gt; a,
  #header .header_nav2 .nav2_item &gt; span {
    font-size: 1.4rem;
    line-height: 1.214;
  }
}
#header .header_nav2 .nav2_item &gt; a {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .header_nav2 .nav2_item &gt; a:hover {
  opacity: 0.7;
}
#header .header_nav2 .nav2_subMenu {
  position: absolute;
  top: 4.3rem;
  z-index: 1;
  display: block;
  height: auto;
  padding: 1rem 2rem;
  background: #8EBA44;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width:1199px) {
  #header .header_nav2 .nav2_subMenu {
    top: 2rem;
    right: 0;
  }
}
@media only screen and (max-width:768px) {
  #header .header_nav2 .nav2_subMenu {
    position: relative;
    top: 0;
    background: transparent;
    opacity: 1;
    visibility: inherit;
    padding: 0;
    margin: 0.5rem 0 -0.5rem;
  }
}
#header .header_nav2 .nav2_subMenu .nav2_subItem &gt; a {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.027em;
  line-height: 1.875;
  color: #ffffff;
  white-space: nowrap;
}
@media only screen and (max-width:768px) {
  #header .header_nav2 .nav2_subMenu .nav2_subItem &gt; a {
    color: #000000;
  }
}
#header .header_bottom {
  position: relative;
}
#header .header_link {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
}
@media only screen and (min-width:769px) {
  #header .header_link {
    display: none;
  }
}
#header .header_link .header_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2.4rem;
  margin-bottom: 1.7rem;
}
#header .header_link .header_language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}
#header .header_link .header_language .header_language_lbl {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.846;
  position: relative;
}
#header .header_link .header_language .header_language_lbl:after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.1rem;
  background: #000000;
  right: -2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-70deg);
          transform: translateY(-50%) rotate(-70deg);
}
#header .header_link .header_language .header_language_select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000000;
  border-style: none none solid none;
  font-size: 1.4rem;
  line-height: 1.714;
  padding: 0 1.4rem 0 0.7rem;
  background: url(../../Image/common/icon_triangle_down_black.svg) no-repeat calc(100% - 0.5rem) 50%/0.7rem 0.5rem;
}
#header .header_hamburger {
  width: 2.6rem;
  height: 1rem;
  cursor: pointer;
  position: relative;
}
@media only screen and (min-width:769px) {
  #header .header_hamburger {
    display: none;
  }
}
#header .header_hamburger::before, #header .header_hamburger::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background-color: #8EBA44;
  border-radius: 500px;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .header_hamburger::before {
  top: 0;
}
#header .header_hamburger::after {
  bottom: 0;
}
#header .header_overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
#header.-active .header_hamburger::before {
  top: 50%;
  -webkit-transform: translate(0%, -50%) rotate(45deg);
          transform: translate(0%, -50%) rotate(45deg);
}
#header.-active .header_hamburger::after {
  top: 50%;
  -webkit-transform: translate(0%, -50%) rotate(-45deg);
          transform: translate(0%, -50%) rotate(-45deg);
}
#header.-active .header_navs {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#header.-active .header_overlay {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
}

#footer {
  background-color: #F5F5F5;
  position: relative;
}
#footer .footer_top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
  padding-right: 15%;
  margin-bottom: clamp(3rem, 4.7935103245vw, 6.5rem);
  padding-top: 3.5rem;
  border-top: 1px solid #000;
}
@media only screen and (max-width:768px) {
  #footer .footer_top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 3rem 0.7rem 0;
    gap: 2.4rem;
    margin-bottom: 0.5rem;
  }
}
#footer .footer_top .footer_logo {
  display: block;
  width: 10.7rem;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  #footer .footer_top .footer_logo {
    width: 12rem;
  }
}
#footer .footer_top .footer_logo:hover {
  opacity: 0.7;
}
#footer .footer_top .footer_top_colR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: min(6.5rem, 4.362vw);
  padding-top: 0.7rem;
}
@media only screen and (max-width:768px) {
  #footer .footer_top .footer_top_colR {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.2rem 0;
    padding-top: 0;
  }
}
@media only screen and (max-width:768px) {
  #footer .footer_top .top_colR_col {
    width: 48%;
  }
}
#footer .footer_top .top_colR_col:nth-child(3) {
  margin-left: min(6.4rem, 4.1667vw);
  margin-top: 0.5rem;
}
@media only screen and (max-width:768px) {
  #footer .footer_top .top_colR_col:nth-child(3) {
    margin-left: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width:768px) {
  #footer .footer_top .footer_nav1 {
    display: block;
  }
}
#footer .footer_top .footer_nav1 .nav1_item {
  margin-bottom: clamp(1.3rem, 1.401179941vw, 1.9rem);
}
#footer .footer_top .footer_nav1 .nav1_item:last-of-type {
  margin-bottom: 0;
}
#footer .footer_top .footer_nav1 .nav1_item &gt; a,
#footer .footer_top .footer_nav1 .nav1_item &gt; span {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width:768px) {
  #footer .footer_top .footer_nav1 .nav1_item &gt; a,
  #footer .footer_top .footer_nav1 .nav1_item &gt; span {
    padding: 0 0.4rem;
  }
}
#footer .footer_top .footer_nav1 .nav1_item &gt; a::before,
#footer .footer_top .footer_nav1 .nav1_item &gt; span::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: #8EBA44;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#footer .footer_top .footer_nav1 .nav1_item &gt; a {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#footer .footer_top .footer_nav1 .nav1_item &gt; a:hover {
  opacity: 0.7;
}
#footer .footer_top .footer_nav1 .nav1_subMenu {
  padding-left: 1rem;
}
@media only screen and (max-width:768px) {
  #footer .footer_top .footer_nav1 .nav1_subMenu {
    padding-left: 1.5rem;
  }
}
#footer .footer_top .footer_nav1 .nav1_subMenu .nav1_subItem &gt; a {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.875;
  white-space: nowrap;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  #footer .footer_top .footer_nav1 .nav1_subMenu .nav1_subItem &gt; a {
    color: #000000;
  }
}
#footer .footer_top .footer_nav1 .nav1_subMenu .nav1_subItem &gt; a:hover {
  opacity: 0.7;
}
@media only screen and (max-width:768px) {
  #footer .footer_top .footer_nav2 {
    margin-left: 0.3rem;
  }
}
#footer .footer_top .footer_nav2 .nav2_item {
  position: relative;
  margin-bottom: clamp(1.8rem, 1.7699115044vw, 2.4rem);
}
#footer .footer_top .footer_nav2 .nav2_item &gt; a,
#footer .footer_top .footer_nav2 .nav2_item &gt; span {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  line-height: 1.214;
}
#footer .footer_top .footer_nav2 .nav2_item &gt; a {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#footer .footer_top .footer_nav2 .nav2_item &gt; a:hover {
  opacity: 0.7;
}
#footer .footer_top .footer_nav2 .nav2_subMenu {
  margin-top: 0.5rem;
}
#footer .footer_top .footer_nav2 .nav2_subMenu .nav2_subItem &gt; a {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.027em;
  line-height: 1.875;
  white-space: nowrap;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#footer .footer_top .footer_nav2 .nav2_subMenu .nav2_subItem &gt; a:hover {
  opacity: 0.7;
}
#footer .footer_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  #footer .footer_link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    right: 3rem;
    bottom: 6.5rem;
    margin-bottom: 0;
    gap: 1.6rem;
  }
}
#footer .footer_link .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(2.4rem, 2.1386430678vw, 2.9rem);
}
@media only screen and (max-width:768px) {
  #footer .footer_link .footer_social {
    width: 100%;
  }
}
#footer .footer_link .footer_social_link {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#footer .footer_link .footer_social_link:hover {
  opacity: 0.7;
}
#footer .footer_link .footer_language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(3rem, 2.9498525074vw, 4rem);
}
@media only screen and (max-width:768px) {
  #footer .footer_link .footer_language {
    width: 100%;
  }
}
#footer .footer_link .footer_language .footer_language_lbl {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.846;
  position: relative;
}
#footer .footer_link .footer_language .footer_language_lbl:after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.1rem;
  background: #000000;
  right: -2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-70deg);
          transform: translateY(-50%) rotate(-70deg);
}
#footer .footer_link .footer_language .footer_language_select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000000;
  color: #000000;
  border-style: none none solid none;
  font-size: 1.4rem;
  line-height: 1.714;
  padding: 0 1.4rem 0 0.7rem;
  background: url(../../Image/common/icon_triangle_down_black.svg) no-repeat calc(100% - 0.5rem) 50%/0.7rem 0.5rem;
}
#footer .footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width:768px) {
  #footer .footer_bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 0 0 1rem;
  }
}
#footer .footer_bottom .footer_policy {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.027em;
  text-transform: capitalize;
}
#footer .footer_bottom .footer_copyright {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.1rem, 0.8849557522vw, 1.2rem);
  letter-spacing: 0.027em;
}
@media only screen and (max-width:768px) {
  #footer .footer_bottom .footer_copyright {
    margin-top: 1rem;
  }
}

@media only screen and (max-width:768px) {
  .-pc-only {
    display: none !important;
  }
}

.-sp-only {
  display: none !important;
}
@media only screen and (max-width:768px) {
  .-sp-only {
    display: inline-block !important;
  }
}

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

.-tac {
  text-align: center;
}

.-hover-pointer {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-hover-pointer:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.-color-white {
  color: #ffffff;
}

.-bg-primary {
  background-color: #8EBA44;
}

.-bg-white {
  background-color: #ffffff;
}

.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.-tategaki {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.-no-click {
  pointer-events: none;
}

.-text-right {
  text-align: right;
}

.pageFront {
  padding-top: 0;
}
.pageFront .start-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #ffffff;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  visibility: visible;
  opacity: 1;
}
.pageFront .start-screen__logo {
  width: 9.44vw;
  min-width: 14.5rem;
}
.pageFront .start-screen .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(0.4rem, 0.5899705015vw, 0.8rem);
  z-index: 9999;
  overflow: hidden;
}
.pageFront .start-screen .progress__inner {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: clamp(0.4rem, 0.8849557522vw, 1.2rem);
  background-color: #8EBA44;
}
.pageFront .front_kv {
  position: relative;
  height: 49.47vw;
  margin-bottom: 1rem;
  padding: 2rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv {
    height: 59.6rem;
    margin: 7rem 0 4.3rem;
    padding: 0;
  }
}
.pageFront .front_kv .kv_bg {
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 2rem;
  bottom: 2rem;
  z-index: 0;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv .kv_bg {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}
.pageFront .front_kv .kv_bg figure,
.pageFront .front_kv .kv_bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageFront .front_kv .kv_bg figure &gt; img,
.pageFront .front_kv .kv_bg video &gt; img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageFront .front_kv .kv_cnt {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3.9vw 2.6vw;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv .kv_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3rem 1.3rem 2rem 2rem;
  }
}
.pageFront .front_kv .kv_ttl {
  margin-bottom: 2rem;
  position: relative;
  right: -1.2rem;
}
.pageFront .front_kv h2.kv_ttl_text {
  font-family: "Lato", sans-serif;
  font-size: 7.42vw;
  line-height: 1;
  color: #8fba44;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv h2.kv_ttl_text {
    font-size: 5.7rem;
  }
}
.pageFront .front_kv h2.kv_ttl_text span {
  display: block;
  overflow: hidden;
  height: 7.5vw;
  width: 44.8vw;
  position: relative;
  top: 0;
  left: 0;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv h2.kv_ttl_text span {
    width: 37.5rem;
    height: 6rem;
  }
}
.pageFront .front_kv h2.kv_ttl_text span span {
  position: absolute;
  font-weight: 700;
  top: 100%;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv h2.kv_ttl_text span span {
    font-weight: 800;
  }
}
.pageFront .front_kv .kv_wrap {
  width: 19vw;
  height: 10.76vw;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv .kv_wrap {
    width: 29.4rem;
    height: 15rem;
    margin: 0 0 0 auto;
  }
}
.pageFront .front_kv .kv_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  top: 100%;
  left: 0;
}
.pageFront .front_kv .kv_txt {
  font-size: clamp(1.4rem, 1.1799410029vw, 1.6rem);
  font-size: 1.01vw;
  line-height: 1.875;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-align: right;
  margin-bottom: 1.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_kv .kv_txt {
    font-size: 1.6rem;
  }
}
.pageFront .front_kv .kv_btn .btn_lbl {
  color: #ffffff;
}
.pageFront .front_client {
  margin-bottom: clamp(4rem, 4.7935103245vw, 6.5rem);
}
.pageFront .front_client .client_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3.5rem, 3.6873156342vw, 5rem);
}
@media only screen and (max-width:768px) {
  .pageFront .front_client .client_slide.-slide1 {
    margin-bottom: -1rem;
  }
}
.pageFront .front_client .client_slide.-slide2 {
  margin-left: calc(-1 * clamp(1rem, 6.6371681416vw, 9rem));
  position: relative;
  left: -100%;
}
@media only screen and (max-width:768px) {
  .pageFront .front_client .client_slide.-slide2 {
    left: -400%;
  }
}
.pageFront .front_client .client_slide.-slide2 .client_list {
  -webkit-animation: 70s linear infinite top-markee2;
          animation: 70s linear infinite top-markee2;
}
.pageFront .front_client .client_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(3.5rem, 3.6873156342vw, 5rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: 70s linear infinite top-markee;
          animation: 70s linear infinite top-markee;
}
.pageFront .front_client .client_list &gt; li {
  width: clamp(13.3rem, 14.01179941vw, 19rem);
}
.pageFront .front_client .client_list &gt; li &gt; img {
  width: 100%;
  height: auto;
}
@-webkit-keyframes top-markee {
  to {
    -webkit-transform: translateX(calc(-100% - clamp(3.5rem, 3.6873156342vw, 5rem)));
            transform: translateX(calc(-100% - clamp(3.5rem, 3.6873156342vw, 5rem)));
  }
}
@keyframes top-markee {
  to {
    -webkit-transform: translateX(calc(-100% - clamp(3.5rem, 3.6873156342vw, 5rem)));
            transform: translateX(calc(-100% - clamp(3.5rem, 3.6873156342vw, 5rem)));
  }
}
@-webkit-keyframes top-markee2 {
  to {
    -webkit-transform: translateX(calc(100% + clamp(3.5rem, 3.6873156342vw, 5rem)));
            transform: translateX(calc(100% + clamp(3.5rem, 3.6873156342vw, 5rem)));
  }
}
@keyframes top-markee2 {
  to {
    -webkit-transform: translateX(calc(100% + clamp(3.5rem, 3.6873156342vw, 5rem)));
            transform: translateX(calc(100% + clamp(3.5rem, 3.6873156342vw, 5rem)));
  }
}
.pageFront .front_links {
  margin-bottom: clamp(8.5rem, 9.2182890855vw, 12.5rem);
}
.pageFront .front_links .links_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 2.9498525074vw, 4rem);
  margin-bottom: clamp(2rem, 2.9498525074vw, 4rem);
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.pageFront .front_links .links_col {
  width: calc((100% - clamp(2rem, 2.9498525074vw, 4rem)) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 2.9498525074vw, 4rem);
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_col {
    width: 100%;
  }
}
.pageFront .front_links .links_item {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pageFront .front_links .links_item .item_bg {
  position: relative;
}
.pageFront .front_links .links_item .item_bg--1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item .item_bg--1 {
    display: none;
  }
}
.pageFront .front_links .links_item .item_cnt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pageFront .front_links .links_item .item_img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.pageFront .front_links .links_item .item_wrapper {
  position: absolute;
  z-index: 1;
  top: clamp(1.5rem, 2.0648967552vw, 2.8rem);
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pageFront .front_links .links_item .item_wrapper .item_logo {
  display: block;
  margin-bottom: clamp(0.9rem, 0.9587020649vw, 1.3rem);
}
.pageFront .front_links .links_item .item_wrapper .item_ttl {
  margin-bottom: clamp(0.7rem, 0.7374631268vw, 1rem);
}
.pageFront .front_links .links_item .item_wrapper .item_ttl &gt; span {
  display: inline-block;
  font-size: clamp(1.1rem, 1.3274336283vw, 1.8rem);
  line-height: 1.44;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: clamp(0.2rem, 0.2949852507vw, 0.4rem);
  color: #ffffff;
  background-color: #000000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item .item_wrapper .item_ttl &gt; span {
    letter-spacing: -0.05em;
  }
}
.pageFront .front_links .links_item .item_wrapper .item_pos {
  font-size: clamp(0.8rem, 1.0324483776vw, 1.4rem);
  line-height: 1.714;
  margin-bottom: 0;
}
.pageFront .front_links .links_item .item_wrapper .item_name {
  font-size: clamp(1rem, 1.3274336283vw, 1.8rem);
  line-height: 1.44;
}
.pageFront .front_links .links_item .item_wrapper.-right {
  border-radius: 4.5rem 0 0 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: clamp(2rem, 2.3598820059vw, 3.2rem) clamp(1.3rem, 1.6224188791vw, 2.2rem) clamp(1.9rem, 2.3598820059vw, 3.2rem) clamp(3.8rem, 3.8348082596vw, 5.2rem);
  right: 0;
}
.pageFront .front_links .links_item .item_wrapper.-right .item_ttl {
  text-align: right;
  margin-right: calc(0px - clamp(1.3rem, 1.6224188791vw, 2.2rem));
}
.pageFront .front_links .links_item .item_wrapper.-right .item_ttl &gt; span {
  text-align: right;
  padding: 0.3rem 2.4rem 0.3rem 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item .item_wrapper.-right .item_ttl &gt; span {
    padding: 1px 1.4rem 1px 1rem;
  }
}
.pageFront .front_links .links_item .item_wrapper.-left {
  border-radius: 0 4.5rem 0 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: clamp(1.9rem, 2.3598820059vw, 3.2rem) 5.2rem clamp(2.1rem, 2.3598820059vw, 3.2rem) clamp(1.2rem, 1.6224188791vw, 2.2rem);
  left: 0;
}
.pageFront .front_links .links_item .item_wrapper.-left .item_ttl {
  text-align: left;
  margin-left: calc(0px - clamp(1.2rem, 1.6224188791vw, 2.2rem));
}
.pageFront .front_links .links_item .item_wrapper.-left .item_ttl &gt; span {
  text-align: left;
  padding: 0.3rem 1.5rem 0.3rem 2.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item .item_wrapper.-left .item_ttl &gt; span {
    padding: 1px 1rem 1px 1.3rem;
  }
}
.pageFront .front_links .links_item .item_btn {
  position: absolute;
  z-index: 2;
  right: 2.2rem;
  bottom: 2.2rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item .item_btn {
    display: none;
  }
}
.pageFront .front_links .links_item .item_btn .btn_icon {
  width: 4rem;
  height: 4rem;
  background-color: #ffffff;
}
.pageFront .front_links .links_item .item_btn .btn_icon:after {
  width: 1.4rem;
  height: 0.8rem;
}
.pageFront .front_links .links_item .item_btn:hover .btn_icon:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pageFront .front_links .links_item:hover .item_bg--1 {
  opacity: 0;
}
.pageFront .front_links .links_item:hover .item_btn .btn_icon:after {
  -webkit-transform: translate(calc(-50% + 0.7rem), -50%);
          transform: translate(calc(-50% + 0.7rem), -50%);
}
.pageFront .front_links .links_item:last-of-type {
  margin-bottom: 0;
}
.pageFront .front_links .links_item.-item1 .item_logo {
  width: clamp(10.2rem, 13.1268436578vw, 17.8rem);
}
.pageFront .front_links .links_item.-item2 .item_wrapper {
  top: clamp(3.6rem, 4.5722713864vw, 6.2rem);
}
.pageFront .front_links .links_item.-item2 .item_logo {
  width: clamp(11.1rem, 14.2330383481vw, 19.3rem);
}
.pageFront .front_links .links_item.-item3 .item_wrapper {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item.-item3 .item_wrapper {
    top: 51%;
  }
}
.pageFront .front_links .links_item.-item3 .item_logo {
  width: clamp(11.1rem, 14.2330383481vw, 19.3rem);
}
.pageFront .front_links .links_item.-item4 .item_wrapper {
  top: clamp(2.2rem, 2.6548672566vw, 3.6rem);
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item.-item4 .item_wrapper {
    border-radius: 8rem 0 0 0;
  }
}
.pageFront .front_links .links_item.-item4 .item_logo {
  width: clamp(14.8rem, 18.9528023599vw, 25.7rem);
}
.pageFront .front_links .links_item.-item5 .item_wrapper {
  top: clamp(1.7rem, 2.2123893805vw, 3rem);
}
.pageFront .front_links .links_item.-item5 .item_logo {
  width: clamp(13.2rem, 16.9616519174vw, 23rem);
}
.pageFront .front_links .links_item.-item6 .item_wrapper {
  top: clamp(8.6rem, 11.0619469027vw, 15rem);
}
.pageFront .front_links .links_item.-item6 .item_logo {
  width: clamp(11.9rem, 15.3392330383vw, 20.8rem);
}
.pageFront .front_links .links_item.-item7 .item_wrapper {
  top: clamp(3.1rem, 3.982300885vw, 5.4rem);
}
@media only screen and (max-width:768px) {
  .pageFront .front_links .links_item.-item7 .item_wrapper {
    border-radius: 8rem 0 0 0;
  }
}
.pageFront .front_links .links_item.-item7 .item_logo {
  width: clamp(14.8rem, 18.9528023599vw, 25.7rem);
}
.pageFront .front_links .links_item.-item8 .item_wrapper {
  top: clamp(3.5rem, 4.6460176991vw, 6.3rem);
}
.pageFront .front_links .links_item.-item8 .item_logo {
  width: clamp(16.2rem, 20.7227138643vw, 28.1rem);
}
.pageFront .front_links .links_btn {
  margin-left: auto;
}
.pageFront .front_spotlights {
  margin-bottom: clamp(8.5rem, 9.587020649vw, 13rem);
}
.pageFront .front_spotlights .sportlight_list {
  margin-bottom: clamp(2rem, 2.9498525074vw, 4rem);
}
.pageFront .front_spotlights .sportlight_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2rem, 2.2123893805vw, 3rem);
  padding-bottom: clamp(2.3rem, 2.9498525074vw, 4rem);
  margin-bottom: clamp(2.3rem, 2.9498525074vw, 4rem);
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width:768px) {
  .pageFront .front_spotlights .sportlight_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.pageFront .front_spotlights .sportlight_item:last-of-type {
  margin-bottom: 0;
}
.pageFront .front_spotlights .sportlight_item:hover .sportlight_txt {
  opacity: 0.7;
}
.pageFront .front_spotlights .sportlight_img {
  width: 25.8rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_spotlights .sportlight_img {
    width: 100%;
  }
}
.pageFront .front_spotlights .sportlight_cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width:768px) {
  .pageFront .front_spotlights .sportlight_cnt {
    width: 100%;
  }
}
.pageFront .front_spotlights .spotlight_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(0.5rem, 0.7374631268vw, 1rem);
}
.pageFront .front_spotlights .sportlight_tag {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #6d9824;
  background-color: #F5F5F5;
  border: 1px solid #8EBA44;
  padding: 1px 1.5rem 0;
  border-radius: 500px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pageFront .front_spotlights .sportlight_tag a {
  width: 100%;
  height: 100%;
  display: block;
  color: #8EBA44;
  font-weight: 700;
}
.pageFront .front_spotlights .sportlight_tag:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageFront .front_spotlights .sportlight_tag:hover a {
  color: #ffffff;
}
.pageFront .front_spotlights .sportlight_date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.pageFront .front_spotlights .sportlight_txt {
  font-size: clamp(1.6rem, 1.3274336283vw, 1.8rem);
  line-height: 1.55;
  font-weight: 600;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageFront .front_spotlights .sportlight_txt {
    line-height: 1.625;
  }
}
.pageFront .front_spotlights .sportlights_btn {
  margin-left: auto;
}
.pageFront .front_newsEvent {
  margin-bottom: clamp(8.5rem, 11.7994100295vw, 16rem);
}
.pageFront .front_newsEvent .newsEvent_ttl {
  margin-bottom: clamp(0.5rem, 1.1061946903vw, 1.5rem);
}
.pageFront .front_newsEvent .newsEvent_list {
  margin-bottom: clamp(2rem, 2.9498525074vw, 4rem);
}
.pageFront .front_newsEvent .newsEvent_item {
  display: block;
  padding: clamp(2.4rem, 2.9498525074vw, 4rem) 6rem clamp(2.4rem, 2.9498525074vw, 4rem) 0;
  border-bottom: 1px solid #000000;
  position: relative;
}
.pageFront .front_newsEvent .newsEvent_item .item_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_newsEvent .newsEvent_item .item_tags {
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
}
.pageFront .front_newsEvent .newsEvent_item .item_tag {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #8EBA44;
  border: 1px solid #8EBA44;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 500px;
  padding: 1px 1.5rem 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pageFront .front_newsEvent .newsEvent_item .item_tag a {
  width: 100%;
  height: 100%;
  display: block;
  color: #8EBA44;
  font-weight: 700;
}
.pageFront .front_newsEvent .newsEvent_item .item_tag:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageFront .front_newsEvent .newsEvent_item .item_tag:hover a {
  color: #ffffff;
}
.pageFront .front_newsEvent .newsEvent_item .item_date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 1px;
}
.pageFront .front_newsEvent .newsEvent_item .item_ttl {
  font-size: clamp(1.6rem, 1.3274336283vw, 1.8rem);
  font-weight: 600;
  line-height: 1.55;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageFront .front_newsEvent .newsEvent_item .item_ttl {
    line-height: 1.625;
  }
}
.pageFront .front_newsEvent .newsEvent_item .item_btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageFront .front_newsEvent .newsEvent_item .item_btn {
    display: none;
  }
}
.pageFront .front_newsEvent .newsEvent_item .item_btn:hover .btn_icon:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pageFront .front_newsEvent .newsEvent_item:hover .item_ttl {
  opacity: 0.7;
}
.pageFront .front_newsEvent .newsEvent_item:hover .item_btn .btn_icon:after {
  -webkit-transform: translate(calc(-50% + 0.7rem), -50%);
          transform: translate(calc(-50% + 0.7rem), -50%);
}
.pageFront .front_newsEvent .newsEvent_btn {
  margin: 0 0 0 auto;
}
.pageFront .front_support {
  margin-bottom: 0.5rem;
  position: relative;
}
@media only screen and (max-width:768px) {
  .pageFront .front_support {
    padding-bottom: 4.5rem;
    margin-bottom: 0;
  }
}
.pageFront .front_support .support_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(2.6rem, 9.2920353982vw, 12.6rem);
  margin-bottom: -0.7rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_support .support_flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.6rem;
    margin-bottom: 2rem;
  }
}
.pageFront .front_support .support_ttl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.8rem;
  margin-bottom: 0;
  position: relative;
  top: -3rem;
}
@media only screen and (max-width:768px) {
  .pageFront .front_support .support_ttl {
    top: 0;
    gap: 0.5rem;
  }
}
.pageFront .front_support .support_ttl .en {
  max-width: clamp(18.1rem, 22.4926253687vw, 30.5rem);
  margin-bottom: 0;
}
.pageFront .front_support .support_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media only screen and (max-width:768px) {
  .pageFront .front_support .support_txt {
    line-height: 1.625;
  }
}
@media only screen and (max-width:768px) {
  .pageFront .front_support .support_btn {
    position: absolute;
    bottom: 0;
    right: 2rem;
  }
}

.pageSpotlights .spotlights_filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(4rem, 3.6873156342vw, 5rem);
}
@media only screen and (max-width:768px) {
  .pageSpotlights .spotlights_filter {
    gap: 1.3rem 0.9rem;
  }
}
.pageSpotlights .spotlights_filter .filter_item {
  padding: 0.7rem 2.5rem;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.4rem, 1.1799410029vw, 1.6rem);
  font-weight: 700;
  line-height: 1.1875;
  color: #6d9824;
  border: 1px solid #8EBA44;
  border-radius: 500px;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageSpotlights .spotlights_filter .filter_item {
    padding: 0.3rem 1.5rem;
    letter-spacing: 0.02em;
  }
}
.pageSpotlights .spotlights_filter .filter_item.-active, .pageSpotlights .spotlights_filter .filter_item:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageSpotlights .spotlights_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.8rem 5.3rem;
  margin-bottom: clamp(3.5rem, 7.005899705vw, 9.5rem);
}
@media only screen and (max-width:768px) {
  .pageSpotlights .spotlights_list {
    gap: 4rem;
  }
}
.pageSpotlights .spotlights_item {
  display: block;
  width: calc((100% - 10.6rem) / 3);
}
@media only screen and (max-width:768px) {
  .pageSpotlights .spotlights_item {
    width: 100%;
  }
}
.pageSpotlights .spotlights_item .spotlights_img {
  margin-bottom: 1.8rem;
}
.pageSpotlights .spotlights_item .spotlights_img a {
  display: block;
  width: clamp(22rem, 24.3362831858vw, 33rem);
  height: clamp(22rem, 16.2241887906vw, 22rem);
}
@media only screen and (max-width:768px) {
  .pageSpotlights .spotlights_item .spotlights_img a {
    width: 100%;
    height: 59.46vw;
  }
}
.pageSpotlights .spotlights_item .spotlights_img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageSpotlights .spotlights_item .spotlights_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.8rem;
}
.pageSpotlights .spotlights_item .spotlights_cat {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid #8EBA44;
  color: #6d9824;
  border-radius: 500px;
  padding: 0.1rem 1.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pageSpotlights .spotlights_item .spotlights_cat a {
  width: 100%;
  height: 100%;
  display: block;
  color: #8EBA44;
  font-weight: 700;
}
.pageSpotlights .spotlights_item .spotlights_cat:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageSpotlights .spotlights_item .spotlights_cat:hover a {
  color: #ffffff;
}
.pageSpotlights .spotlights_item .spotlights_date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.pageSpotlights .spotlights_item .spotlights_txt {
  font-size: clamp(1.6rem, 1.3274336283vw, 1.8rem);
  line-height: 1.55;
  font-weight: 600;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageSpotlights .spotlights_item .spotlights_txt {
    line-height: 1.625;
  }
}
.pageSpotlights .spotlights_item:hover .spotlights_txt {
  opacity: 0.7;
}

.pageSpotlightsDetail .spotlights_wrapper {
  border-radius: 0 clamp(6rem, 8.8495575221vw, 12rem) 0 0;
  background-color: #ffffff;
  margin-bottom: 2rem;
  padding: 8rem 13.5% 10rem;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_wrapper {
    padding: 4rem 2rem 5rem;
    margin-bottom: 3rem;
  }
}
.pageSpotlightsDetail .spotlights_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(1rem, 1.1061946903vw, 1.5rem);
}
.pageSpotlightsDetail .spotlights_cat {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid #8EBA44;
  color: #6d9824;
  border-radius: 500px;
  padding: 0.1rem 1.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pageSpotlightsDetail .spotlights_cat a {
  width: 100%;
  height: 100%;
  display: block;
  color: #8EBA44;
  font-weight: 700;
}
.pageSpotlightsDetail .spotlights_cat:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageSpotlightsDetail .spotlights_cat:hover a {
  color: #ffffff;
}
.pageSpotlightsDetail .spotlights_date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.pageSpotlightsDetail .spotlights_cnt {
  margin-bottom: clamp(4rem, 4.4247787611vw, 6rem);
}
.pageSpotlightsDetail .spotlights_cnt h2 {
  margin: 5.4rem 0 0 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_cnt h2 {
    margin: 4.6rem 0 0 0;
    font-size: 1.5rem;
  }
}
.pageSpotlightsDetail .spotlights_cnt h3 {
  margin: 3rem 0 0 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_cnt h3 {
    margin: 2.6rem 0 0 0;
    font-size: 1.3rem;
  }
}
.pageSpotlightsDetail .spotlights_cnt p {
  margin: 3rem 0 0 0;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_cnt p {
    margin: 2.6rem 0 0 0;
    font-size: 1.3rem;
  }
}
.pageSpotlightsDetail .spotlights_cnt blockquote {
  position: relative;
  padding: 2.5rem 0 2.5rem 3.8rem;
  font-size: 1.7rem;
  color: #707070;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_cnt blockquote {
    padding: 2.2rem 0 2.2rem 3.3rem;
    font-size: 2.2rem;
  }
}
.pageSpotlightsDetail .spotlights_cnt blockquote::before {
  content: "”";
  font-size: 7.6rem;
  position: absolute;
  top: -7px;
  left: 0;
  font-weight: 600;
  line-height: 3em;
  letter-spacing: 0.45px;
  color: #bababa;
  line-break: strict;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_cnt blockquote::before {
    font-size: 6.6rem;
  }
}
.pageSpotlightsDetail .spotlights_cnt blockquote p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  font-size: 2.5rem;
  color: #707070;
  margin: 5.1rem 0 0 0;
  padding: 0;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_cnt blockquote p {
    margin: 4.4rem 0 0 0;
    font-size: 2.2rem;
  }
}
.pageSpotlightsDetail .spotlights_cnt .spotlights_ttl {
  font-size: clamp(2rem, 1.9911504425vw, 2.7rem);
  line-height: 1.63;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width:768px) {
  .pageSpotlightsDetail .spotlights_cnt .spotlights_ttl {
    line-height: 1.5;
  }
}
.pageSpotlightsDetail .spotlights_cnt .spotlights_img {
  margin: clamp(3rem, 2.581120944vw, 3.5rem) auto;
}
.pageSpotlightsDetail .spotlights_cnt &gt; p {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pageSpotlightsDetail .spotlights_cnt &gt; p + p {
  margin-top: 3rem;
}

.pageNewsAndEvent .newsAndEvent_sidebar .sidebar_group.-cat {
  margin-bottom: clamp(3rem, 5.5309734513vw, 7.5rem);
}
.pageNewsAndEvent .newsAndEvent_sidebar .sidebar_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.7rem 0.9rem;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_sidebar .sidebar_list {
    gap: 1.7rem 0.9rem;
  }
}
.pageNewsAndEvent .newsAndEvent_sidebar .sidebar_item a {
  padding: 0.45rem 1.5rem;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #6d9824;
  border: 1px solid #8EBA44;
  border-radius: 500px;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageNewsAndEvent .newsAndEvent_sidebar .sidebar_item.-active a,
.pageNewsAndEvent .newsAndEvent_sidebar .sidebar_item:hover a {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageNewsAndEvent .newsAndEvent_list {
  margin-bottom: clamp(4rem, 7.3746312684vw, 10rem);
}
.pageNewsAndEvent .newsAndEvent_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  padding-bottom: clamp(2.4rem, 2.9498525074vw, 4rem);
  margin-bottom: clamp(2.4rem, 2.9498525074vw, 4rem);
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.pageNewsAndEvent .newsAndEvent_item:last-of-type {
  margin-bottom: 0;
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_img {
  width: 40%;
  max-width: 29.1rem;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_item .newsAndEvent_img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_item .newsAndEvent_img a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 50.13vw;
  }
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_img a img {
  width: 100%;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_item .newsAndEvent_img a img {
    width: unset;
    height: 50.13vw;
  }
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_item .newsAndEvent_top {
    display: block;
    margin-bottom: 0;
  }
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_item .newsAndEvent_cats {
    margin-bottom: 1rem;
    gap: 1rem;
  }
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_cat {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid #8EBA44;
  color: #6d9824;
  border-radius: 500px;
  padding: 0.1rem 1.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_cat a {
  width: 100%;
  height: 100%;
  display: block;
  color: #8EBA44;
  font-weight: 700;
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_cat:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_cat:hover a {
  color: #ffffff;
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.pageNewsAndEvent .newsAndEvent_item .newsAndEvent_txt {
  font-size: clamp(1.6rem, 1.3274336283vw, 1.8rem);
  line-height: 1.55;
  font-weight: 600;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageNewsAndEvent .newsAndEvent_item .newsAndEvent_txt {
    line-height: 1.625;
  }
}
.pageNewsAndEvent .newsAndEvent_item:hover .newsAndEvent_txt {
  opacity: 0.7;
}

.pageNewsAndEventDetail .newsAndEvent_wrapper {
  border-radius: 0 clamp(6rem, 8.8495575221vw, 12rem) 0 0;
  background-color: #ffffff;
  margin-bottom: 4rem;
  padding: 8rem 13.5% 10rem;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEventDetail .newsAndEvent_wrapper {
    padding: 4rem 2rem 5rem;
    margin-bottom: 3rem;
  }
}
.pageNewsAndEventDetail .newsAndEvent_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(1rem, 1.1061946903vw, 1.5rem);
}
.pageNewsAndEventDetail .newsAndEvent_cat {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid #8EBA44;
  color: #6d9824;
  border-radius: 500px;
  padding: 0.1rem 1.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pageNewsAndEventDetail .newsAndEvent_cat a {
  width: 100%;
  height: 100%;
  display: block;
  color: #8EBA44;
  font-weight: 700;
}
.pageNewsAndEventDetail .newsAndEvent_cat:hover {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageNewsAndEventDetail .newsAndEvent_cat:hover a {
  color: #ffffff;
}
.pageNewsAndEventDetail .newsAndEvent_date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.pageNewsAndEventDetail .newsAndEvent_cnt {
  margin-bottom: clamp(4rem, 4.4247787611vw, 6rem);
}
.pageNewsAndEventDetail .newsAndEvent_cnt .newsAndEvent_ttl {
  font-size: clamp(2rem, 1.9911504425vw, 2.7rem);
  line-height: 1.63;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width:768px) {
  .pageNewsAndEventDetail .newsAndEvent_cnt .newsAndEvent_ttl {
    line-height: 1.5;
  }
}
.pageNewsAndEventDetail .newsAndEvent_cnt .newsAndEvent_img {
  margin: clamp(2rem, 1.8436578171vw, 2.5rem) auto clamp(3rem, 2.7286135693vw, 3.7rem);
  width: 56.37%;
}
.pageNewsAndEventDetail .newsAndEvent_cnt &gt; p {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pageNewsAndEventDetail .newsAndEvent_cnt &gt; p + p {
  margin-top: 3rem;
}

.pageJobsInPartners .jobsInPartners_sidebar .sidebar_form.-search {
  margin-bottom: clamp(2.5rem, 2.9498525074vw, 4rem);
}
.pageJobsInPartners .jobsInPartners_sidebar .sidebar_lbl {
  margin-bottom: clamp(1rem, 1.4749262537vw, 2rem);
}
@media only screen and (min-width:769px) {
  .pageJobsInPartners .jobsInPartners_sidebar .custom_select .select_display {
    display: none;
  }
}
.pageJobsInPartners .jobsInPartners_sidebar .custom_select .select_display.-is_default + .options &gt; li:first-child {
  font-weight: 700;
  color: #6d9824;
}
.pageJobsInPartners .jobsInPartners_sidebar .custom_select .form_control {
  font-size: 1.4rem;
  padding: 1.15rem 1.5rem;
  border-radius: 0.4rem;
}
.pageJobsInPartners .jobsInPartners_sidebar .custom_select .select {
  height: 5rem !important;
}
.pageJobsInPartners .jobsInPartners_sidebar .custom_select .options {
  border-radius: 0.4rem;
}
@media only screen and (min-width:769px) {
  .pageJobsInPartners .jobsInPartners_sidebar .custom_select .options {
    display: block !important;
    top: 0;
    background-color: transparent;
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
.pageJobsInPartners .jobsInPartners_sidebar .custom_select .options &gt; li {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 1rem 1.5rem;
}
@media only screen and (min-width:769px) {
  .pageJobsInPartners .jobsInPartners_sidebar .custom_select .options &gt; li {
    margin-bottom: 1.7rem;
    padding: 0;
  }
}
.pageJobsInPartners .jobsInPartners_list {
  margin-bottom: clamp(4rem, 7.3746312684vw, 10rem);
}
.pageJobsInPartners .jobsInPartners_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  padding-bottom: clamp(2.4rem, 2.9498525074vw, 4rem);
  margin-bottom: clamp(2.4rem, 2.9498525074vw, 4rem);
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width:768px) {
  .pageJobsInPartners .jobsInPartners_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.pageJobsInPartners .jobsInPartners_item:last-of-type {
  margin-bottom: 0;
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_img {
  width: 40%;
  max-width: 29.1rem;
}
@media only screen and (max-width:768px) {
  .pageJobsInPartners .jobsInPartners_item .jobsInPartners_img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_img &gt; img {
  width: 100%;
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_company {
  font-size: 1.4rem;
  line-height: 1.714;
  margin-bottom: clamp(1rem, 1.2536873156vw, 1.7rem);
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width:768px) {
  .pageJobsInPartners .jobsInPartners_item .jobsInPartners_cats {
    gap: 1rem;
  }
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_cat {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.027em;
  border: 1px solid #8EBA44;
  color: #6d9824;
  border-radius: 500px;
  padding: 0.1rem 1.8rem;
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_date {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.pageJobsInPartners .jobsInPartners_item .jobsInPartners_txt {
  font-size: clamp(1.6rem, 1.3274336283vw, 1.8rem);
  line-height: 1.55;
  font-weight: 600;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageJobsInPartners .jobsInPartners_item .jobsInPartners_txt {
    line-height: 1.625;
  }
}
.pageJobsInPartners .jobsInPartners_item:hover .jobsInPartners_txt {
  opacity: 0.7;
}
@media only screen and (max-width:768px) {
  .pageJobsInPartners #pagination {
    margin: 50px auto 0 auto;
  }
}
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--firstPage,
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--lastPage {
  display: none;
}
.pageJobsInPartners li.ais-Pagination-item:hover {
  background-color: #8EBA44 !important;
  color: white !important;
}
.pageJobsInPartners li.ais-Pagination-item:hover a {
  color: white !important;
}
.pageJobsInPartners li.ais-Pagination-item a:hover {
  background: none !important;
}
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--previousPage,
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--nextPage {
  width: 3.9rem;
  height: 3.9rem;
  color: #6d9824;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--previousPage:hover,
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--nextPage:hover {
  background-color: #8EBA44 !important;
}
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--previousPage span,
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--previousPage a,
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--nextPage span,
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--nextPage a {
  border: none;
  background-color: transparent !important;
  color: transparent !important;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../Image/common/icon_arrow_prev_green.png) no-repeat 50%/contain !important;
  position: unset;
}
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--nextPage span,
.pageJobsInPartners li.ais-Pagination-item.ais-Pagination-item--nextPage a {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width:768px) {
  .pagePortfolio .page_body {
    gap: 6rem;
  }
}
.pagePortfolio .portfolio_sidebar .sidebar_form .custom_checkbox {
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 1.9rem;
}
.pagePortfolio .portfolio_sidebar .sidebar_form .custom_checkbox .checkmark {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 0.2rem;
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-search .form_searchInput {
  padding: 1rem 1.3rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_sidebar .sidebar_form.-search .form_searchInput {
    padding: 1.3rem;
  }
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .sidebar_lbl {
  margin-bottom: 1.2rem;
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .sidebar_wrapper {
  background-color: #ffffff;
  border-radius: 0.4rem;
  padding: 3rem clamp(1.5rem, 1.4749262537vw, 2rem);
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .sidebar_group {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_sidebar .sidebar_form.-refine .sidebar_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 3rem;
  }
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .sidebar_group:last-of-type {
  margin-bottom: 0;
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .group_lbl {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_sidebar .sidebar_form.-refine .group_lbl {
    width: 100%;
    margin-bottom: 0;
  }
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .group_lbl::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #8EBA44;
  border-radius: 50%;
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .custom_checkbox {
  margin-bottom: 0.6rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_sidebar .sidebar_form.-refine .custom_checkbox {
    margin-bottom: 0;
  }
}
.pagePortfolio .portfolio_sidebar .sidebar_form.-refine .form_btns {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_sidebar .sidebar_form.-refine .form_btns button {
    width: calc((100% - 1rem) / 2);
  }
}
.pagePortfolio .portfolio_sidebar .sidebar_lbl {
  margin-bottom: clamp(1rem, 1.4749262537vw, 2rem);
  font-size: 1.4rem;
}
.pagePortfolio .portfolio_sidebar button[type=submit],
.pagePortfolio .portfolio_sidebar button[type=reset] {
  height: 4.5rem;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.pagePortfolio .portfolio_content .portfolio_company {
  width: 32.13%;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_content .portfolio_company {
    width: 100%;
    padding: 0;
  }
}
.pagePortfolio .portfolio_content .portfolio_year,
.pagePortfolio .portfolio_content .portfolio_industry,
.pagePortfolio .portfolio_content .portfolio_country {
  pointer-events: none;
}
.pagePortfolio .portfolio_content .portfolio_year {
  width: 18.54%;
  text-align: left;
  padding: 0 2rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_content .portfolio_year {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 2rem;
  }
}
.pagePortfolio .portfolio_content .portfolio_industry {
  width: 18.54%;
  padding: 0 2rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_content .portfolio_industry {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 2rem;
  }
}
.pagePortfolio .portfolio_content .portfolio_country {
  width: 18.54%;
  padding: 0 2rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_content .portfolio_country {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 3rem;
  }
}
.pagePortfolio .portfolio_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #8EBA44;
  color: #ffffff;
  border-radius: 0.4rem;
  padding: 1.2rem 0;
  margin-bottom: 1rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_head {
    display: none;
  }
}
.pagePortfolio .portfolio_head &gt; li {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.083;
  letter-spacing: 0.027em;
  text-align: center;
}
.pagePortfolio .portfolio_list {
  margin-bottom: clamp(4rem, 7.3746312684vw, 10rem);
}
.pagePortfolio .portfolio_item {
  background-color: #ffffff;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1875;
  position: relative;
  border-radius: 0.6rem;
  overflow: hidden;
  padding: 2.2rem 0;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_item {
    display: block;
    padding: 4rem 3rem 1.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
  }
}
.pagePortfolio .portfolio_item:last-of-type {
  margin-bottom: 0;
}
.pagePortfolio .portfolio_item .lbl {
  display: block;
  width: 13rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.214;
}
@media only screen and (min-width:769px) {
  .pagePortfolio .portfolio_item .lbl {
    display: none;
  }
}
.pagePortfolio .portfolio_item .portfolio_status {
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(1.2rem, 0.9587020649vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.027em;
  border-radius: 0.6rem 0 0.6rem 0;
  background-color: #000000;
  color: #ffffff;
  width: 7.7rem;
  height: 2.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_item .portfolio_company {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.pagePortfolio .portfolio_item .portfolio_company &gt; img {
  height: 14rem;
  width: auto;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_item .portfolio_company &gt; img {
    width: 100%;
    height: auto;
  }
}
.pagePortfolio .portfolio_item .portfolio_btn {
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_item .portfolio_btn {
    margin: 0 -1.5rem 0 auto;
  }
}
.pagePortfolio .portfolio_item .portfolio_btn .btn_icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
}
@media only screen and (max-width:768px) {
  .pagePortfolio .portfolio_item .portfolio_btn .btn_icon {
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 1.1rem;
  }
}
.pagePortfolio .portfolio_item .portfolio_btn .btn_icon:after {
  width: 1.4rem;
  height: 0.8rem;
}

.pagePolicy .policy_mission {
  background: url(../../Image/policy/img_01.png) no-repeat right bottom/43.2943vw auto #ffffff;
  padding: clamp(5.5rem, 7.005899705vw, 9.5rem) 0 clamp(7.5rem, 14.01179941vw, 19rem);
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_mission {
    background: url(../../Image/policy/img_01.png) no-repeat right -230% bottom/95.2vw auto #ffffff;
  }
}
.pagePolicy .policy_mission .mission_ttl {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_mission .mission_ttl {
    margin-bottom: 3.5rem;
  }
}
.pagePolicy .policy_mission .mission_ttl2 {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_mission .mission_ttl2 {
    margin-bottom: 3rem;
  }
}
.pagePolicy .policy_mission .mission_ttl2 .en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: clamp(3.6rem, 4.8672566372vw, 6.6rem);
  font-weight: 700;
  line-height: 1.394;
  text-transform: capitalize;
  color: #8EBA44;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_mission .mission_ttl2 .en {
    line-height: 1.22;
  }
}
.pagePolicy .policy_mission .mission_ttl2 .jp {
  display: block;
  font-size: clamp(2.1rem, 1.9911504425vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.63;
  color: #8EBA44;
}
.pagePolicy .policy_mission .mission_txt1 {
  font-size: 1.8rem;
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: clamp(0.8rem, 0.7374631268vw, 1rem);
}
.pagePolicy .policy_mission .mission_txt2 {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pagePolicy .policy_policy {
  padding: clamp(5.5rem, 7.005899705vw, 9.5rem) 0 0;
}
.pagePolicy .policy_policy .policy_ttl {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_policy .policy_ttl {
    margin-bottom: 3.5rem;
  }
}
.pagePolicy .policy_policy .dei-policy_ttl {
  margin-top: clamp(4.5rem, 6.6371681416vw, 9rem);
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_policy .dei-policy_ttl {
    margin-bottom: 3.5rem;
  }
}
.pagePolicy .policy_policy .policy_list {
  width: 73%;
  margin-left: auto;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_policy .policy_list {
    width: 100%;
  }
}
.pagePolicy .policy_policy .policy_item {
  padding-bottom: clamp(2.2rem, 2.581120944vw, 3.5rem);
  border-bottom: 1px solid #000000;
  margin-bottom: clamp(2.5rem, 2.9498525074vw, 4rem);
}
.pagePolicy .policy_policy .policy_item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_policy .policy_item:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.pagePolicy .policy_policy .policy_item .policy_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  font-size: clamp(1.8rem, 1.4749262537vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_policy .policy_item .policy_head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0;
  }
}
.pagePolicy .policy_policy .policy_item .policy_head::before {
  content: "";
  display: block;
  width: clamp(5.4rem, 4.7197640118vw, 6.4rem);
  height: clamp(5.4rem, 4.7197640118vw, 6.4rem);
  background: url(../../Image/common/icon_search.svg) no-repeat 50%/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pagePolicy .policy_policy .policy_item .policy_head.-network::before {
  background: url(../../Image/common/icon_network.svg) no-repeat 50%/contain;
}
.pagePolicy .policy_policy .policy_item .policy_head.-analysis::before {
  background: url(../../Image/common/icon_analysis.svg) no-repeat 50%/contain;
}
.pagePolicy .policy_policy .policy_item .policy_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media only screen and (max-width:768px) {
  .pagePolicy .policy_policy .policy_item .policy_txt {
    padding-left: 5.9rem;
  }
}
.pagePolicy .page_mainBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}
@media only screen and (max-width:768px) {
  .pagePolicy .page_mainBtn {
    width: 100%;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2rem;
  }
}
.pagePolicy .page_mainBtn:hover .btn_icon:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagePolicy .page_mainBtn .btn_lbl {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:768px) {
  .pagePolicy .page_mainBtn .btn_lbl {
    font-size: 1.4rem;
    line-height: 1.875;
  }
}
.pagePolicy .page_mainBtn .btn_icon {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 0.2rem solid #8EBA44;
  position: relative;
}
.pagePolicy .page_mainBtn .btn_icon:after {
  content: "";
  position: absolute;
  width: 1.9rem;
  height: 0.95rem;
  background: url(../../Image/common/icon_arrow_right_green.svg) no-repeat 50%/contain;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pagePolicy .page_mainBtn .btn_icon:hover:after {
  -webkit-transform: translate(calc(-50% + 0.7rem), -50%);
          transform: translate(calc(-50% + 0.7rem), -50%);
}
.pagePolicy .page_mainBtn.-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.pagePolicy .page_mainBtn.-rev .btn_icon:after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.pagePolicy .page_mainBtn.-rev .btn_icon:hover:after {
  -webkit-transform: translate(calc(-50% + 0.7rem), -50%);
          transform: translate(calc(-50% + 0.7rem), -50%);
}

.pageCompany .company_message {
  background-color: #ffffff;
  padding: clamp(5.5rem, 7.005899705vw, 9.5rem) 0 clamp(8rem, 7.3746312684vw, 10rem);
}
.pageCompany .company_message .message_ttl {
  margin-bottom: 3.5rem;
}
.pageCompany .company_message .message_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8%;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_message .message_wrapper {
    gap: 2.7rem;
  }
}
.pageCompany .company_message .message_img {
  width: 37.8%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.3rem;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_message .message_img {
    width: 100%;
    margin-top: 0;
  }
}
.pageCompany .company_message .message_cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pageCompany .company_message .message_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pageCompany .company_message .message_txt + .message_txt {
  margin-top: 3rem;
}
.pageCompany .company_message .message_sign {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 3rem;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_message .message_sign .space {
    display: inline-block;
    width: 1.5rem;
  }
}
.pageCompany .company_fund {
  padding: clamp(5.5rem, 7.005899705vw, 9.5rem) 0 clamp(8rem, 7.3746312684vw, 10rem);
}
.pageCompany .company_fund .fund_ttl {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_fund .fund_ttl {
    margin-bottom: 3rem;
  }
}
.pageCompany .company_fund .fund_region {
  width: 73%;
  margin-left: auto;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_fund .fund_region {
    width: 100%;
  }
}
.pageCompany .company_fund .fund_region .fund_region_head {
  margin-bottom: clamp(1.8rem, 2.9498525074vw, 4rem);
}
.pageCompany .company_fund .fund_region .fund_region_head .en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.027em;
  color: #6d9824;
}
.pageCompany .company_fund .fund_region .fund_region_head .jp {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.pageCompany .company_fund .fund_region .fund_region_items {
  margin-bottom: clamp(3rem, 5.5309734513vw, 7.5rem);
}
.pageCompany .company_fund .fund_region .fund_region_items:last-of-type {
  margin-bottom: 0;
}
.pageCompany .company_fund .fund_region .fund_item {
  padding-bottom: clamp(2rem, 2.581120944vw, 3.5rem);
  border-bottom: 1px solid #000000;
  margin-bottom: clamp(2.1rem, 3.0973451327vw, 4.2rem);
}
.pageCompany .company_fund .fund_region .fund_item:last-of-type {
  margin-bottom: 0;
}
.pageCompany .company_fund .fund_region .fund_item .fund_item_head {
  font-size: clamp(1.8rem, 1.4749262537vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 2.2rem;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_fund .fund_region .fund_item .fund_item_head {
    line-height: 1.67;
  }
}
.pageCompany .company_fund .fund_region .fund_item .fund_item_size {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.428;
  margin-bottom: 0.2rem;
}
.pageCompany .company_fund .fund_region .fund_item .fund_item_total {
  font-size: 1.6rem;
  line-height: 1.875;
}
.pageCompany .company_overview {
  padding: clamp(5.5rem, 7.3746312684vw, 10rem) 0 clamp(6rem, 7.3746312684vw, 10rem);
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_ttl {
    margin-bottom: 3rem;
  }
}
.pageCompany .company_overview .overview_tbl {
  width: 73%;
  margin-left: auto;
  border-collapse: collapse;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl {
    width: 100%;
  }
}
.pageCompany .company_overview .overview_tbl tr th, .pageCompany .company_overview .overview_tbl tr td {
  border-bottom: 1px solid #000000;
  padding: 3.7rem 0;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl tr th, .pageCompany .company_overview .overview_tbl tr td {
    display: block;
    width: 100% !important;
    padding: 0;
  }
}
.pageCompany .company_overview .overview_tbl tr:first-of-type th, .pageCompany .company_overview .overview_tbl tr:first-of-type td {
  padding-top: 0.3rem;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl tr:first-of-type th, .pageCompany .company_overview .overview_tbl tr:first-of-type td {
    padding-top: 0;
  }
}
.pageCompany .company_overview .overview_tbl tr th {
  font-size: clamp(1.4rem, 1.1799410029vw, 1.6rem);
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.02em;
  width: 15rem;
  text-align: left;
  vertical-align: top;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl tr th {
    border-bottom: 0;
    line-height: 1.928;
    letter-spacing: 0;
    margin-bottom: -0.3rem;
  }
}
.pageCompany .company_overview .overview_tbl tr td {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl tr td {
    padding-bottom: 2.2rem;
    margin-bottom: 2rem;
  }
}
.pageCompany .company_overview .overview_tbl tr td &gt; dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl tr td &gt; dl {
    margin-top: 0.8rem;
  }
}
.pageCompany .company_overview .overview_tbl tr td &gt; dl dt {
  width: 13rem;
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl tr td &gt; dl dt {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.714;
    margin-bottom: -0.4rem;
  }
}
.pageCompany .company_overview .overview_tbl tr td &gt; dl dd {
  width: calc(100% - 13rem);
}
@media only screen and (max-width:768px) {
  .pageCompany .company_overview .overview_tbl tr td &gt; dl dd {
    width: 100%;
    margin-bottom: 0.8rem;
  }
}
.pageCompany .company_network {
  padding: clamp(5.5rem, 7.005899705vw, 9.5rem) 0 0;
}
.pageCompany .company_network .network_ttl {
  margin-bottom: 3.5rem;
}
.pageCompany .company_network .network_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem 2rem;
}
.pageCompany .company_network .network_list .network_item {
  width: calc((100% - 6rem) / 4);
}
@media only screen and (max-width:768px) {
  .pageCompany .company_network .network_list .network_item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.pageCompany .company_network .network_list .network_item .network_map {
  margin-bottom: clamp(1.6rem, 1.4749262537vw, 2rem);
}
@media only screen and (max-width:768px) {
  .pageCompany .company_network .network_list .network_item .network_map {
    width: 100%;
    height: 20.8rem;
  }
}
.pageCompany .company_network .network_list .network_item .network_map &gt; iframe {
  width: 100%;
  height: 100%;
}
.pageCompany .company_network .network_list .network_item .network_office {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.pageCompany .company_network .network_list .network_item .network_add {
  font-size: 1.4rem;
  line-height: 1.714;
}
@media only screen and (min-width:769px) {
  .pageCompany .company_network .network_list .network_item:first-of-type {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
}
@media only screen and (min-width:769px) {
  .pageCompany .company_network .network_list .network_item:first-of-type .network_map {
    width: 50%;
    height: 34rem;
    margin-bottom: 0;
  }
}
@media only screen and (min-width:769px) {
  .pageCompany .company_network .network_list .network_item:first-of-type .network_info {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media only screen and (min-width:769px) {
  .pageCompany .company_network .network_list .network_item:first-of-type .network_office {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
@media only screen and (min-width:769px) {
  .pageCompany .company_network .network_list .network_item:first-of-type .network_add {
    margin-bottom: -0.5rem;
  }
}

.pageTeam .team_sec {
  margin-bottom: clamp(7.2rem, 7.005899705vw, 9.5rem);
}
.pageTeam .team_sec:last-of-type {
  margin-bottom: 0;
}
.pageTeam .team_sec .message_ttl {
  margin-bottom: 3.3rem;
}
.pageTeam .team_sec .team_members {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 5.3rem;
}
@media only screen and (max-width:768px) {
  .pageTeam .team_sec .team_members {
    gap: 4rem;
  }
}
.pageTeam .team_sec .team_member {
  width: calc((100% - 10.6rem) / 3);
}
@media only screen and (max-width:768px) {
  .pageTeam .team_sec .team_member {
    width: 100%;
  }
}
.pageTeam .team_sec .team_member .member_img {
  margin-bottom: clamp(1.5rem, 1.2536873156vw, 1.7rem);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageTeam .team_sec .team_member .member_pos {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageTeam .team_sec .team_member .member_nameJp {
  font-size: clamp(1.8rem, 1.4749262537vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: -0.4rem;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageTeam .team_sec .team_member .member_nameEn {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.027em;
  color: #6d9824;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageTeam .team_sec .team_member:hover .member_img {
  opacity: 0.9;
}
.pageTeam .team_sec .team_member:hover .member_pos, .pageTeam .team_sec .team_member:hover .member_nameJp, .pageTeam .team_sec .team_member:hover .member_nameEn {
  opacity: 0.7;
}

.pageTeamDetail .team_info {
  padding: 11rem 0 10.5rem;
  margin-bottom: clamp(7.5rem, 7.2271386431vw, 9.8rem);
  position: relative;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_info {
    padding: 0;
  }
}
.pageTeamDetail .team_info .inner &gt; * {
  position: relative;
  z-index: 2;
}
.pageTeamDetail .team_info .info_img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: 1;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_info .info_img {
    position: relative;
    left: 0;
    right: 0;
    margin-bottom: 1.6rem;
  }
}
.pageTeamDetail .team_info .info_img &gt; img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageTeamDetail .team_info .info_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: clamp(1.5rem, 1.8436578171vw, 2.5rem);
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_info .info_ttl {
    display: block;
  }
}
.pageTeamDetail .team_info .info_ttl .pos {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.pageTeamDetail .team_info .info_ttl .jp {
  display: inline-block;
  font-size: clamp(2rem, 1.9911504425vw, 2.7rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-right: 2rem;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_info .info_ttl .jp {
    display: block;
    margin-right: 0;
  }
}
.pageTeamDetail .team_info .info_ttl .en {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.4rem, 1.401179941vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: 0.027em;
  color: #6d9824;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_info .info_ttl .en {
    display: block;
    letter-spacing: 0.02em;
  }
}
.pageTeamDetail .team_info .info_txt {
  width: 54.74%;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-bottom: clamp(2.6rem, 3.6873156342vw, 5rem);
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_info .info_txt {
    width: 100%;
  }
}
.pageTeamDetail .team_info .info_share {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pageTeamDetail .team_profile {
  margin-bottom: clamp(5.3rem, 6.8584070796vw, 9.3rem);
}
.pageTeamDetail .team_profile .profile_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_profile .profile_wrapper {
    display: block;
  }
}
.pageTeamDetail .team_profile .profile_ttl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_profile .profile_ttl {
    margin-bottom: 3.2rem;
  }
}
.pageTeamDetail .team_profile .profile_txt {
  width: 73%;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_profile .profile_txt {
    width: 100%;
  }
}
.pageTeamDetail .team_portfolio .portfolio_ttl {
  margin-bottom: 3.5rem;
}
.pageTeamDetail .team_portfolio .portfolio_slide_wrapper {
  position: relative;
  margin-bottom: clamp(4rem, 5.1622418879vw, 7rem);
}
.pageTeamDetail .team_portfolio .portfolio_slide {
  position: relative;
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_portfolio .portfolio_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.1rem;
  }
}
@media only screen and (max-width:768px) {
  .pageTeamDetail .team_portfolio .portfolio_item {
    width: calc((100% - 1.1rem) / 2);
  }
}
.pageTeamDetail .team_portfolio .portfolio_btns {
  position: absolute;
  top: 50%;
  left: -3rem;
  right: -3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.pageTeamDetail .team_portfolio .portfolio_btns .swiper-button-prev, .pageTeamDetail .team_portfolio .portfolio_btns .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.2rem;
  height: 2.2rem;
  background: url(../../Image/common/icon_arrow_prev_green.png) no-repeat 50%/contain;
  margin-top: 0;
  pointer-events: initial;
}
.pageTeamDetail .team_portfolio .portfolio_btns .swiper-button-prev {
  left: 0;
}
.pageTeamDetail .team_portfolio .portfolio_btns .swiper-button-next {
  right: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

@media only screen and (max-width:768px) {
  .pagePrivacyPolicy .page_kv {
    margin-bottom: 2.3rem;
  }
}
.pagePrivacyPolicy .policy_content .policy_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pagePrivacyPolicy .policy_content .policy_head {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
  margin-top: 4.6rem;
}
@media only screen and (max-width:768px) {
  .pagePrivacyPolicy .policy_content .policy_head {
    margin-top: 3.8rem;
    margin-bottom: 0.7rem;
  }
}
.pagePrivacyPolicy .policy_content .policy_list {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  counter-reset: item;
}
.pagePrivacyPolicy .policy_content .policy_list &gt; li {
  margin-left: 2.5rem;
  margin-bottom: 0.4rem;
}
@media only screen and (max-width:768px) {
  .pagePrivacyPolicy .policy_content .policy_list &gt; li {
    margin-bottom: 1.4rem;
  }
}
.pagePrivacyPolicy .policy_content .policy_list &gt; li::before {
  display: inline-block;
  content: "(" counter(item) ")";
  counter-increment: item;
  width: 2.5rem;
  margin-left: -2.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.pagePrivacyPolicy .policy_content .policy_subList {
  margin-top: 0.3rem;
}
.pagePrivacyPolicy .policy_content .policy_subList &gt; li {
  margin-bottom: 0.4rem;
  text-indent: -1.8rem;
  margin-left: 1.8rem;
}
.pagePrivacyPolicy.deiPolicy .policy_content .policy_list li {
  list-style: unset;
}
.pagePrivacyPolicy.deiPolicy .policy_content .policy_list li:before {
  content: "";
}

@media only screen and (max-width:768px) {
  .pageContact .page_body {
    gap: 4rem;
  }
}
.pageContact .contact_process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-left: 4rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_process {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
  }
}
.pageContact .contact_process::after {
  content: "";
  position: absolute;
  width: 1px;
  background: #8EBA44;
  left: 50%;
  top: 4rem;
  bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_process::after {
    top: 50%;
    bottom: auto;
    left: 3rem;
    right: 3rem;
    width: auto;
    height: 1px;
  }
}
.pageContact .contact_process .process_item {
  width: 9.4rem;
  height: 9.4rem;
  border: 1px solid #8EBA44;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background-color: #F5F5F5;
  color: #6d9824;
  z-index: 1;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_process .process_item {
    width: 6.2rem;
    height: 6.2rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.pageContact .contact_process .process_item.-active {
  background-color: #8EBA44;
  color: #ffffff;
}
.pageContact .contact_form .contact_tbl {
  width: 100%;
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_form .contact_tbl {
    margin-top: -0.6rem;
    margin-bottom: 1rem;
  }
}
.pageContact .contact_form .contact_tbl tr th,
.pageContact .contact_form .contact_tbl tr td {
  display: block;
  width: 100%;
}
.pageContact .contact_form .contact_tbl tr th {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_form .contact_tbl tr th {
    margin-bottom: 0;
  }
}
.pageContact .contact_form .contact_tbl tr td {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-bottom: 3.4rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_form .contact_tbl tr td {
    margin-bottom: 2.6rem;
  }
}
.pageContact .contact_form .contact_tbl tr.-required th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.pageContact .contact_form .contact_tbl tr.-required th:after {
  content: "必須";
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.027em;
  width: 4rem;
  height: 2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.2rem;
  background-color: #8EBA44;
  color: #ffffff;
  padding-bottom: 1px;
}
.pageContact .contact_form .contact_tbl a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pageContact .contact_form .custom_checkbox {
  padding-left: 0;
  margin-left: -1em;
  margin-top: 2rem;
}
.pageContact .contact_form .custom_checkbox br {
  display: none;
}
.pageContact .contact_form textarea {
  height: 27.4rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_form textarea {
    height: 20.4rem;
  }
}
.pageContact .contact_form .agree_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin: -1rem 0 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_form .agree_txt {
    margin: 0.5rem 0 1.5rem;
  }
}
.pageContact .contact_form button[type=submit],
.pageContact .contact_form input[type=submit] {
  margin: 0 auto;
}
.pageContact .contact_form.-confirm .confirm_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-bottom: clamp(3.5rem, 3.6873156342vw, 5rem);
}
.pageContact .contact_form.-confirm .contact_tbl tr th,
.pageContact .contact_form.-confirm .contact_tbl tr td {
  display: table-cell;
  padding-bottom: 5rem;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_form.-confirm .contact_tbl tr th,
  .pageContact .contact_form.-confirm .contact_tbl tr td {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
.pageContact .contact_form.-confirm .contact_tbl tr th {
  width: 22rem;
  vertical-align: top;
}
.pageContact .contact_form.-confirm .contact_tbl tr td {
  width: inherit;
}
@media only screen and (max-width:768px) {
  .pageContact .contact_form.-confirm .contact_tbl tr td {
    margin-bottom: 2rem;
  }
}
.pageContact.-complete .form_ttl {
  font-size: clamp(1.6rem, 1.9911504425vw, 2.7rem);
  font-weight: 700;
  line-height: 1.63;
  letter-spacing: 0.02em;
  margin-bottom: clamp(1.5rem, 2.2123893805vw, 3rem);
}
.pageContact.-complete .form_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-bottom: clamp(4rem, 4.4247787611vw, 6rem);
}

.pageSupport {
  padding-bottom: 0;
}
.pageSupport .support_info {
  background-color: #ffffff;
  padding: clamp(5.5rem, 7.005899705vw, 9.5rem) 0 clamp(7.5rem, 7.005899705vw, 9.5rem);
}
.pageSupport .support_info .info_ttl {
  margin-bottom: clamp(3.5rem, 2.9498525074vw, 4rem);
}
.pageSupport .support_info .info_ttl2 {
  font-size: clamp(1.8rem, 1.4749262537vw, 2rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.pageSupport .support_info .info_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pageSupport .support_info .info_img {
  width: 100%;
  margin: clamp(1.5rem, 2.581120944vw, 3.5rem) auto clamp(2.5rem, 5.8997050147vw, 8rem);
}
.pageSupport .support_info .info_img_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16.4rem;
  height: 4.4rem;
  background-color: #8EBA44;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: 600;
  margin: 0 auto 6rem;
}
@media only screen and (min-width:769px) {
  .pageSupport .support_info .info_img_btn {
    display: none;
  }
}
.pageSupport .support_info .info_img_btn:after {
  content: "";
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  background: url(../../Image/common/icon_popup_open.svg) no-repeat 50%/contain;
}
.pageSupport .support_info .info_list {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: clamp(1.6rem, 2.4336283186vw, 3.3rem);
  gap: 3.8rem 0;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_info .info_list {
    gap: 1.6rem;
  }
}
.pageSupport .support_info .info_list .info_item {
  width: 48.63%;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_info .info_list .info_item {
    width: 100%;
  }
}
.pageSupport .support_info .info_list .item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.0625;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_info .info_list .item_head {
    margin-bottom: 0;
  }
}
.pageSupport .support_info .info_list .item_head_icon {
  width: 5.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pageSupport .support_info .info_list .item_txt {
  font-size: 1.4rem;
  line-height: 1.714;
}
.pageSupport .support_network {
  padding: clamp(5.5rem, 7.005899705vw, 9.5rem) 0 clamp(8rem, 7.005899705vw, 9.5rem);
}
.pageSupport .support_network .network_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_network .network_wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.pageSupport .support_network .network_cnt {
  width: 32%;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_network .network_cnt {
    width: 100%;
  }
}
.pageSupport .support_network .network_map {
  width: 61.13%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_network .network_map {
    width: 100%;
  }
}
.pageSupport .support_network .network_ttl {
  margin-bottom: clamp(3.5rem, 2.9498525074vw, 4rem);
}
.pageSupport .support_network .network_ttl2 {
  font-size: clamp(1.8rem, 1.4749262537vw, 2rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_network .network_ttl2 {
    line-height: 1.55;
    letter-spacing: 0;
    font-weight: 600;
  }
}
.pageSupport .support_network .network_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pageSupport .support_network .network_list {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
}
.pageSupport .support_network .network_list .list_no {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #8EBA44;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-bottom: 1px;
  padding-left: 1px;
  margin-right: 0.4rem;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_network .network_list .list_no {
    margin-right: 0.2rem;
  }
}
.pageSupport .support_event {
  background-color: #ffffff;
  padding: clamp(5.5rem, 7.3746312684vw, 10rem) 0 clamp(9.5rem, 11.7994100295vw, 16rem);
}
.pageSupport .support_event .event_ttl {
  margin-bottom: 3.7rem;
}
.pageSupport .support_event .event_ttl2 {
  font-size: clamp(1.8rem, 1.4749262537vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: clamp(1rem, 2.2123893805vw, 3rem);
}
@media only screen and (max-width:768px) {
  .pageSupport .support_event .event_ttl2 {
    font-weight: 600;
  }
}
.pageSupport .support_event .event_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(4rem, 3.6873156342vw, 5rem);
}
@media only screen and (max-width:768px) {
  .pageSupport .support_event .event_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.pageSupport .support_event .event_item:last-of-type {
  margin-bottom: 0;
}
.pageSupport .support_event .event_img {
  width: 33.76%;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_event .event_img {
    width: 100%;
  }
}
.pageSupport .support_event .event_cnt {
  width: 62.6%;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_event .event_cnt {
    width: 100%;
  }
}
.pageSupport .support_event .event_logo {
  margin-bottom: 0.6rem;
}
@media only screen and (max-width:768px) {
  .pageSupport .support_event .event_logo {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
}
.pageSupport .support_event .event_txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
.pageSupport .support_event .event_link {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-top: clamp(0.4rem, 1.1061946903vw, 1.5rem);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid #000000;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageSupport .support_event .event_link:hover {
  opacity: 0.7;
}
.pageSupport .support_event .event_link::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../../Image/common/icon_link.svg) no-repeat 50%/contain;
}
.pageSupport + #footer {
  background-color: #ffffff;
}

#support_info_popup .info_popup_wrapper {
  width: 100%;
  overflow-x: scroll;
  padding-bottom: 3.6rem;
}
#support_info_popup .info_popup_img {
  width: 230.6667vw;
}
#support_info_popup .simplebar-track.simplebar-horizontal {
  height: 0.6rem;
  background-color: #E3E3E3;
  border-radius: 2rem;
}
#support_info_popup .simplebar-scrollbar::before {
  background-color: #8EBA44;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}</pre></body></html>