  @charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("/information/dx/common/css/lib/reset.css");

:root {
  --font_ja: "Noto Sans JP", sans-serif;
  --font_en: "Montserrat", sans-serif;
  --color_white00: #ffffff;
  --color_black00: #000000;
  --color_black01: #282828;
  --color_gray01: #e7e7e7;
  --color_gray02: #616161;
  --color_gray03: #d5d5d5;
  --color_beige: #fff9da;
  --color_brown01: #351703;
  --color_brown02: #814a26;
  --color_brown03: #c1b67f;
  --color_brown04: #cbc190;
  --color_brown05: #78704b;
  --color_green01: #009b63;
  --color_green02: #6c9154;
  --color_green03: #6fa793;
  --color_green04: #daef99;
  --color_green05: #effcf7;
  --gradient_green01: linear-gradient(90deg, #17b37a 0%, #018555 100%);
  --gradient_green02: linear-gradient(90deg, #72d9b4 0%, #009b63 100%);
  --bg_beige: url("/information/dx/img/common/bg_beige.png");
  --bg_green01: url("/information/dx/img/common/bg_green01.png");
  --bg_green02: url("/information/dx/img/common/bg_green02.png");
  --bg_green03: url("/information/dx/img/common/bg_green03.png");
  --image_arrow01: url("/information/dx/img/common/icon_arrow_white.svg");
  --image_arrow02: url("/information/dx/img/common/icon_arrow_green.svg");
  --image_arrow03: url("/information/dx/img/common/icon_arrow_disabled.svg");
  --header_break_point: 1000;
  --navi_event_type: hover;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media (max-width: 999px) {
  html.spScrollPrevent {
    overflow: hidden;
    height: 100%;
  }
}

body {
  height: auto !important;
  background: var(--color_beige) var(--bg_beige) center top;
  font-family: var(--font_ja);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color_black01);
  word-wrap: break-word;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img.round {
  border-radius: 12px;
}

@media (max-width: 767px) {
  img.sp-full {
    width: 100%;
  }
}

a {
  color: var(--color_green01);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.disabled {
  pointer-events: none;
}

a:not([class]) img,
a.swipebox img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:not([class]):hover img,
a.swipebox:hover img {
  opacity: 0.8;
}

p {
  margin: 1em 0 1em;
  line-height: 2;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

ol,
ul {
  margin: 0 0 1em;
  line-height: 2;
}

ol:last-child,
ul:last-child {
  margin-bottom: 0;
}

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

td,
th {
  padding: 0;
}

.container {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 0 auto;
}

.l-main {
  overflow: hidden;
}

@media (min-width: 1920px) {
  .l-main {
    background: url("/information/dx/img/common/bg_image01.png") no-repeat left calc(50% - 756px) top/796px,
      url("/information/dx/img/common/bg_image02.png") no-repeat right calc(50% - 922px) top/282px,
      url("/information/dx/img/common/bg_image03.png") no-repeat left calc(50% - 289px) top 138px/138px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .l-main {
    background: url("/information/dx/img/common/bg_image01.png") no-repeat left -90px top/38% auto,
      url("/information/dx/img/common/bg_image02.png") no-repeat right -43px top/17% auto,
      url("/information/dx/img/common/bg_image03.png") no-repeat left calc(50% - 289px) top 138px/138px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .l-main {
    background: url("/information/dx/img/common/bg_image01.png") no-repeat left -90px top/38% auto,
      url("/information/dx/img/common/bg_image02.png") no-repeat right -43px top/17% auto,
      url("/information/dx/img/common/bg_image03.png") no-repeat left calc(50% - 289px) top 138px/10.5% auto;
  }
}

@media (max-width: 767px) {
  .l-main {
    background: url("/information/dx/img/common/sp_bg_image01.png") no-repeat left top/189px auto,
      url("/information/dx/img/common/sp_bg_image02.png") no-repeat right top/74px auto,
      url("/information/dx/img/common/sp_bg_image03.png") no-repeat left 137px top 45px/78px auto;
  }
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.mt-1 {
  margin-top: 4px;
}

.mb-1 {
  margin-bottom: 4px;
}

.pt-1 {
  padding-top: 4px;
}

.pb-1 {
  padding-bottom: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.pt-2 {
  padding-top: 8px;
}

.pb-2 {
  padding-bottom: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mb-3 {
  margin-bottom: 12px;
}

.pt-3 {
  padding-top: 12px;
}

.pb-3 {
  padding-bottom: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.pt-4 {
  padding-top: 16px;
}

.pb-4 {
  padding-bottom: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mb-5 {
  margin-bottom: 20px;
}

.pt-5 {
  padding-top: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-6 {
  margin-bottom: 24px;
}

.pt-6 {
  padding-top: 24px;
}

.pb-6 {
  padding-bottom: 24px;
}

.mt-7 {
  margin-top: 28px;
}

.mb-7 {
  margin-bottom: 28px;
}

.pt-7 {
  padding-top: 28px;
}

.pb-7 {
  padding-bottom: 28px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 32px;
}

.pt-8 {
  padding-top: 32px;
}

.pb-8 {
  padding-bottom: 32px;
}

.mt-9 {
  margin-top: 36px;
}

.mb-9 {
  margin-bottom: 36px;
}

.pt-9 {
  padding-top: 36px;
}

.pb-9 {
  padding-bottom: 36px;
}

.mt-10 {
  margin-top: 40px;
}

.mb-10 {
  margin-bottom: 40px;
}

.pt-10 {
  padding-top: 40px;
}

.pb-10 {
  padding-bottom: 40px;
}

.mt-11 {
  margin-top: 44px;
}

.mb-11 {
  margin-bottom: 44px;
}

.pt-11 {
  padding-top: 44px;
}

.pb-11 {
  padding-bottom: 44px;
}

.mt-12 {
  margin-top: 48px;
}

.mb-12 {
  margin-bottom: 48px;
}

.pt-12 {
  padding-top: 48px;
}

.pb-12 {
  padding-bottom: 48px;
}

.mt-13 {
  margin-top: 52px;
}

.mb-13 {
  margin-bottom: 52px;
}

.pt-13 {
  padding-top: 52px;
}

.pb-13 {
  padding-bottom: 52px;
}

.mt-14 {
  margin-top: 56px;
}

.mb-14 {
  margin-bottom: 56px;
}

.pt-14 {
  padding-top: 56px;
}

.pb-14 {
  padding-bottom: 56px;
}

.mt-15 {
  margin-top: 60px;
}

.mb-15 {
  margin-bottom: 60px;
}

.pt-15 {
  padding-top: 60px;
}

.pb-15 {
  padding-bottom: 60px;
}

.mt-16 {
  margin-top: 64px;
}

.mb-16 {
  margin-bottom: 64px;
}

.pt-16 {
  padding-top: 64px;
}

.pb-16 {
  padding-bottom: 64px;
}

.mt-17 {
  margin-top: 68px;
}

.mb-17 {
  margin-bottom: 68px;
}

.pt-17 {
  padding-top: 68px;
}

.pb-17 {
  padding-bottom: 68px;
}

.mt-18 {
  margin-top: 72px;
}

.mb-18 {
  margin-bottom: 72px;
}

.pt-18 {
  padding-top: 72px;
}

.pb-18 {
  padding-bottom: 72px;
}

.mt-19 {
  margin-top: 76px;
}

.mb-19 {
  margin-bottom: 76px;
}

.pt-19 {
  padding-top: 76px;
}

.pb-19 {
  padding-bottom: 76px;
}

.mt-20 {
  margin-top: 80px;
}

.mb-20 {
  margin-bottom: 80px;
}

.pt-20 {
  padding-top: 80px;
}

.pb-20 {
  padding-bottom: 80px;
}

.mt-21 {
  margin-top: 84px;
}

.mb-21 {
  margin-bottom: 84px;
}

.pt-21 {
  padding-top: 84px;
}

.pb-21 {
  padding-bottom: 84px;
}

.mt-22 {
  margin-top: 88px;
}

.mb-22 {
  margin-bottom: 88px;
}

.pt-22 {
  padding-top: 88px;
}

.pb-22 {
  padding-bottom: 88px;
}

.mt-23 {
  margin-top: 92px;
}

.mb-23 {
  margin-bottom: 92px;
}

.pt-23 {
  padding-top: 92px;
}

.pb-23 {
  padding-bottom: 92px;
}

.mt-24 {
  margin-top: 96px;
}

.mb-24 {
  margin-bottom: 96px;
}

.pt-24 {
  padding-top: 96px;
}

.pb-24 {
  padding-bottom: 96px;
}

.mt-25 {
  margin-top: 100px;
}

.mb-25 {
  margin-bottom: 100px;
}

.pt-25 {
  padding-top: 100px;
}

.pb-25 {
  padding-bottom: 100px;
}

.mt-26 {
  margin-top: 104px;
}

.mb-26 {
  margin-bottom: 104px;
}

.pt-26 {
  padding-top: 104px;
}

.pb-26 {
  padding-bottom: 104px;
}

.mt-27 {
  margin-top: 108px;
}

.mb-27 {
  margin-bottom: 108px;
}

.pt-27 {
  padding-top: 108px;
}

.pb-27 {
  padding-bottom: 108px;
}

.mt-28 {
  margin-top: 112px;
}

.mb-28 {
  margin-bottom: 112px;
}

.pt-28 {
  padding-top: 112px;
}

.pb-28 {
  padding-bottom: 112px;
}

.mt-29 {
  margin-top: 116px;
}

.mb-29 {
  margin-bottom: 116px;
}

.pt-29 {
  padding-top: 116px;
}

.pb-29 {
  padding-bottom: 116px;
}

.mt-30 {
  margin-top: 120px;
}

.mb-30 {
  margin-bottom: 120px;
}

.pt-30 {
  padding-top: 120px;
}

.pb-30 {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .sp\:mt-0 {
    margin-top: 0px;
  }

  .sp\:mb-0 {
    margin-bottom: 0px;
  }

  .sp\:pt-0 {
    padding-top: 0px;
  }

  .sp\:pb-0 {
    padding-bottom: 0px;
  }

  .sp\:mt-1 {
    margin-top: 4px;
  }

  .sp\:mb-1 {
    margin-bottom: 4px;
  }

  .sp\:pt-1 {
    padding-top: 4px;
  }

  .sp\:pb-1 {
    padding-bottom: 4px;
  }

  .sp\:mt-2 {
    margin-top: 8px;
  }

  .sp\:mb-2 {
    margin-bottom: 8px;
  }

  .sp\:pt-2 {
    padding-top: 8px;
  }

  .sp\:pb-2 {
    padding-bottom: 8px;
  }

  .sp\:mt-3 {
    margin-top: 12px;
  }

  .sp\:mb-3 {
    margin-bottom: 12px;
  }

  .sp\:pt-3 {
    padding-top: 12px;
  }

  .sp\:pb-3 {
    padding-bottom: 12px;
  }

  .sp\:mt-4 {
    margin-top: 16px;
  }

  .sp\:mb-4 {
    margin-bottom: 16px;
  }

  .sp\:pt-4 {
    padding-top: 16px;
  }

  .sp\:pb-4 {
    padding-bottom: 16px;
  }

  .sp\:mt-5 {
    margin-top: 20px;
  }

  .sp\:mb-5 {
    margin-bottom: 20px;
  }

  .sp\:pt-5 {
    padding-top: 20px;
  }

  .sp\:pb-5 {
    padding-bottom: 20px;
  }

  .sp\:mt-6 {
    margin-top: 24px;
  }

  .sp\:mb-6 {
    margin-bottom: 24px;
  }

  .sp\:pt-6 {
    padding-top: 24px;
  }

  .sp\:pb-6 {
    padding-bottom: 24px;
  }

  .sp\:mt-7 {
    margin-top: 28px;
  }

  .sp\:mb-7 {
    margin-bottom: 28px;
  }

  .sp\:pt-7 {
    padding-top: 28px;
  }

  .sp\:pb-7 {
    padding-bottom: 28px;
  }

  .sp\:mt-8 {
    margin-top: 32px;
  }

  .sp\:mb-8 {
    margin-bottom: 32px;
  }

  .sp\:pt-8 {
    padding-top: 32px;
  }

  .sp\:pb-8 {
    padding-bottom: 32px;
  }

  .sp\:mt-9 {
    margin-top: 36px;
  }

  .sp\:mb-9 {
    margin-bottom: 36px;
  }

  .sp\:pt-9 {
    padding-top: 36px;
  }

  .sp\:pb-9 {
    padding-bottom: 36px;
  }

  .sp\:mt-10 {
    margin-top: 40px;
  }

  .sp\:mb-10 {
    margin-bottom: 40px;
  }

  .sp\:pt-10 {
    padding-top: 40px;
  }

  .sp\:pb-10 {
    padding-bottom: 40px;
  }

  .sp\:mt-11 {
    margin-top: 44px;
  }

  .sp\:mb-11 {
    margin-bottom: 44px;
  }

  .sp\:pt-11 {
    padding-top: 44px;
  }

  .sp\:pb-11 {
    padding-bottom: 44px;
  }

  .sp\:mt-12 {
    margin-top: 48px;
  }

  .sp\:mb-12 {
    margin-bottom: 48px;
  }

  .sp\:pt-12 {
    padding-top: 48px;
  }

  .sp\:pb-12 {
    padding-bottom: 48px;
  }

  .sp\:mt-13 {
    margin-top: 52px;
  }

  .sp\:mb-13 {
    margin-bottom: 52px;
  }

  .sp\:pt-13 {
    padding-top: 52px;
  }

  .sp\:pb-13 {
    padding-bottom: 52px;
  }

  .sp\:mt-14 {
    margin-top: 56px;
  }

  .sp\:mb-14 {
    margin-bottom: 56px;
  }

  .sp\:pt-14 {
    padding-top: 56px;
  }

  .sp\:pb-14 {
    padding-bottom: 56px;
  }

  .sp\:mt-15 {
    margin-top: 60px;
  }

  .sp\:mb-15 {
    margin-bottom: 60px;
  }

  .sp\:pt-15 {
    padding-top: 60px;
  }

  .sp\:pb-15 {
    padding-bottom: 60px;
  }

  .sp\:mt-16 {
    margin-top: 64px;
  }

  .sp\:mb-16 {
    margin-bottom: 64px;
  }

  .sp\:pt-16 {
    padding-top: 64px;
  }

  .sp\:pb-16 {
    padding-bottom: 64px;
  }

  .sp\:mt-17 {
    margin-top: 68px;
  }

  .sp\:mb-17 {
    margin-bottom: 68px;
  }

  .sp\:pt-17 {
    padding-top: 68px;
  }

  .sp\:pb-17 {
    padding-bottom: 68px;
  }

  .sp\:mt-18 {
    margin-top: 72px;
  }

  .sp\:mb-18 {
    margin-bottom: 72px;
  }

  .sp\:pt-18 {
    padding-top: 72px;
  }

  .sp\:pb-18 {
    padding-bottom: 72px;
  }

  .sp\:mt-19 {
    margin-top: 76px;
  }

  .sp\:mb-19 {
    margin-bottom: 76px;
  }

  .sp\:pt-19 {
    padding-top: 76px;
  }

  .sp\:pb-19 {
    padding-bottom: 76px;
  }

  .sp\:mt-20 {
    margin-top: 80px;
  }

  .sp\:mb-20 {
    margin-bottom: 80px;
  }

  .sp\:pt-20 {
    padding-top: 80px;
  }

  .sp\:pb-20 {
    padding-bottom: 80px;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.overlay {
  display: block;
  position: fixed;
  z-index: 998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 27, 18, 0.6);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (min-width: 1000px) {
  body.overlay-shown .overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

.case_bnr a,
.action_bnr a,
.ext_bnr a {
  display: block;
  position: relative;
  border-radius: 12px;
  background: var(--color_white00);
  text-decoration: none;
  -webkit-box-shadow: 0px 2px 12px rgba(52, 21, 0, 0.16);
  box-shadow: 0px 2px 12px rgba(52, 21, 0, 0.16);
}

.case_bnr a:hover,
.action_bnr a:hover,
.ext_bnr a:hover {
  -webkit-box-shadow: 0px 2px 24px rgba(52, 21, 0, 0.32);
  box-shadow: 0px 2px 24px rgba(52, 21, 0, 0.32);
}

.case_bnr a:hover img,
.action_bnr a:hover img,
.ext_bnr a:hover img {
  opacity: 1;
}

.case_bnr a.disabled,
.action_bnr a.disabled,
.ext_bnr a.disabled {
  pointer-events: none;
}

.case_bnr a .arrow,
.action_bnr a .arrow,
.ext_bnr a .arrow,
.globalNav--sp__menu .sub-menu > ul > li a .arrow,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow {
  display: block;
  position: relative;
  border: 1px solid var(--color_green01);
  border-radius: 6px;
  background: var(--color_green01);
  overflow: hidden;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.case_bnr a .arrow::before,
.action_bnr a .arrow::before,
.ext_bnr a .arrow::before,
.globalNav--sp__menu .sub-menu > ul > li a .arrow::before,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::before,
.case_bnr a .arrow::after,
.action_bnr a .arrow::after,
.ext_bnr a .arrow::after,
.globalNav--sp__menu .sub-menu > ul > li a .arrow::after,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center;
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
}

.case_bnr a .arrow::before,
.action_bnr a .arrow::before,
.ext_bnr a .arrow::before,
.globalNav--sp__menu .sub-menu > ul > li a .arrow::before,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::before {
  background-image: var(--image_arrow01);
}

.case_bnr a .arrow::after,
.action_bnr a .arrow::after,
.ext_bnr a .arrow::after,
.globalNav--sp__menu .sub-menu > ul > li a .arrow::after,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::after {
  background-image: var(--image_arrow02);
  translate: -100% 0;
}

.case_bnr a:hover .arrow,
.action_bnr a:hover .arrow,
.ext_bnr a:hover .arrow,
.globalNav--sp__menu .sub-menu > ul > li a:hover .arrow,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a:hover .arrow {
  background: var(--color_white00);
}

.case_bnr a:hover .arrow::before,
.action_bnr a:hover .arrow::before,
.ext_bnr a:hover .arrow::before,
.globalNav--sp__menu .sub-menu > ul > li a:hover .arrow::before,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a:hover .arrow::before {
  translate: 100% 0;
}

.case_bnr a:hover .arrow::after,
.action_bnr a:hover .arrow::after,
.ext_bnr a:hover .arrow::after,
.globalNav--sp__menu .sub-menu > ul > li a:hover .arrow::after,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a:hover .arrow::after {
  translate: 0 0;
}

.case_bnr a.disabled .arrow,
.action_bnr a.disabled .arrow,
.ext_bnr a.disabled .arrow,
.globalNav--sp__menu .sub-menu > ul > li a.disabled .arrow,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a.disabled .arrow {
  border-color: #bed0ca;
  background: #bed0ca;
}

.case_bnr a.disabled .arrow::before,
.action_bnr a.disabled .arrow::before,
.ext_bnr a.disabled .arrow::before,
.globalNav--sp__menu .sub-menu > ul > li a.disabled .arrow::before,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a.disabled .arrow::before {
  background-image: var(--image_arrow03);
}

@media (min-width: 768px) {
  .case_bnr a .arrow,
  .action_bnr a .arrow,
  .ext_bnr a .arrow,
  .globalNav--sp__menu .sub-menu > ul > li a .arrow,
  .globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767px) {
  .case_bnr a .arrow,
  .action_bnr a .arrow,
  .ext_bnr a .arrow,
  .globalNav--sp__menu .sub-menu > ul > li a .arrow,
  .globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow {
    width: 24px;
    height: 24px;
  }

  .case_bnr a .arrow::before,
  .action_bnr a .arrow::before,
  .ext_bnr a .arrow::before,
  .globalNav--sp__menu .sub-menu > ul > li a .arrow::before,
  .globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::before,
  .case_bnr a .arrow::after,
  .action_bnr a .arrow::after,
  .ext_bnr a .arrow::after,
  .globalNav--sp__menu .sub-menu > ul > li a .arrow::after,
  .globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::after {
    background-size: 10px 10px;
  }
}

/* Header */
.l-header {
  position: fixed;
  z-index: 999;
  width: 100%;
}

.l-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0;
}

@media (min-width: 1000px) {
  .l-header .container {
    height: 112px;
  }
}

@media (max-width: 999px) {
  .l-header .container {
    height: 84px;
  }
}

.l-header__top {
  position: relative;
  width: 98%;
  max-width: 1880px;
  margin: 0 auto;
}

@media (max-width: 999px) {
  .l-header__top {
    position: relative;
    z-index: 101;
    width: calc(100% - 20px);
  }
}

.l-header__top--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 64px;
  border-radius: 12px;
  background: var(--color_white00);
  -webkit-box-shadow: 0 4px 12px rgba(52, 21, 0, 0.1);
  box-shadow: 0 4px 12px rgba(52, 21, 0, 0.1);
}

@media (min-width: 1000px) {
  .l-header__top--inner {
    padding: 0 22px 0 20px;
  }
}

@media (max-width: 999px) {
  .l-header__top--inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 8px 0 16px;
  }
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__logo .sfc_logo {
  border-right: 1px solid var(--color_gray03);
}

@media (min-width: 768px) {
  .l-header__logo .sfc_logo {
    padding-right: 20px;
  }

  .l-header__logo .sfc_logo img {
    width: 124px;
  }

  .l-header__logo .dx_logo {
    padding-left: 20px;
  }

  .l-header__logo .dx_logo img {
    width: 84px;
  }
}

@media (max-width: 767px) {
  .l-header__logo .sfc_logo {
    padding-right: 14px;
  }

  .l-header__logo .sfc_logo img {
    width: 112px;
  }

  .l-header__logo .dx_logo {
    padding-left: 14px;
  }

  .l-header__logo .dx_logo img {
    width: 76px;
  }
}

.globalNav {
  width: auto;
  margin-left: auto;
}

.globalNav > ul {
  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;
}

.globalNav > ul > li > a {
  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;
  position: relative;
  min-height: 72px;
  padding: 0.5em 22px;
  color: var(--color_black01);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1200px) {
  .globalNav > ul > li > a {
    font-size: 1.3vw;
  }
}

.globalNav > ul > li > a::before,
.globalNav > ul > li > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--color_green01);
  opacity: 0;
  -webkit-transition: width 0.3s, opacity 0.3s;
  transition: width 0.3s, opacity 0.3s;
}

.globalNav > ul > li > a::before {
  right: 50%;
}

.globalNav > ul > li > a::after {
  left: 50%;
}

.globalNav > ul > li > a:hover,
.globalNav > ul > li > a.current {
  color: var(--color_green01);
}

.globalNav > ul > li > a:hover::before,
.globalNav > ul > li > a:hover::after,
.globalNav > ul > li > a.current::before,
.globalNav > ul > li > a.current::after {
  width: 50%;
  opacity: 1;
}

@media (max-width: 999px) {
  .globalNav {
    display: none;
  }
}

.globalNav > ul > li.menu-item-has-children > .sub-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin: auto;
  z-index: 999;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  width: 100%;
  max-width: 1024px;
  border-radius: 12px;
  background: var(--color_white00);
  -webkit-box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul::before {
  position: relative;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li {
  width: 341px;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li:not(:nth-child(3n)) {
  border-right: 1px solid var(--color_gray03);
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul:has(> :nth-child(4)) > li:nth-child(-n + 3) {
  border-bottom: 1px solid var(--color_gray03);
}

@media (max-width: 1065px) {
  .globalNav > ul > li.menu-item-has-children > .sub-menu > ul {
    width: 95vw;
  }

  .globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li {
    width: auto;
  }
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a {
  display: block;
  position: relative;
  padding: 23px 0 25px 24px;
  color: var(--color_black01);
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  margin: auto;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::before,
.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a .arrow::after {
  background-size: 11px 11px;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a:hover {
  background: var(--color_green05);
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a.case {
  padding: 16px 0 20px 24px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a.case small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  color: var(--color_brown04);
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a.case small .dt {
  color: var(--color_green01);
  font-weight: bold;
}

.globalNav > ul > li.menu-item-has-children > .sub-menu > ul > li a.case small .dd {
  color: var(--color_brown02);
  font-family: var(--font_en);
  font-size: 1.3rem;
  font-weight: bold;
}

.globalNav > ul > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.headerToggle {
  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;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--gradient_green02);
  cursor: pointer;
}

.headerToggle::before,
.headerToggle::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 12px);
  height: 1px;
  background: var(--color_white00);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.headerToggle::before {
  top: calc(50% - 4px);
  width: 24px;
}

.headerToggle::after {
  bottom: calc(50% - 4px);
  width: 18px;
}

.headerToggle.active::before {
  top: 50%;
  rotate: 45deg;
}

.headerToggle.active::after {
  top: 50%;
  bottom: 0;
  width: 24px;
  rotate: -45deg;
}

@media (min-width: 1000px) {
  .headerToggle {
    display: none;
  }
}

.globalNav--sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  padding: 94px 20px 20px;
}

.globalNav--sp.is-open {
  opacity: 1;
  visibility: visible;
  left: 0;
  background: rgba(0, 27, 18, 0.6);
}

.globalNav--sp.is-open > ul {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media (min-width: 1000px) {
  .globalNav--sp {
    display: none;
    position: absolute;
  }
}

.globalNav--sp__inner {
  background: #fff;
  width: 100%;
  border-radius: 12px;
  padding: 12px 30px 30px;
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}

.globalNav--sp__menu a {
  display: block;
  color: var(--color_black01);
  font-weight: bold;
  text-decoration: none;
}

.globalNav--sp__menu a:hover {
  color: var(--color_green01);
}

.globalNav--sp__menu > ul > li {
  border-bottom: 1px solid #dadada;
}

.globalNav--sp__menu > ul > li > a {
  padding: 14px 0 16px;
  font-size: 1.8rem;
  line-height: 2;
}

.globalNav--sp__menu > ul > li.menu-item-has-children .parent {
  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;
  gap: 8px;
}

.globalNav--sp__menu > ul > li.menu-item-has-children .parent > a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding: 14px 0 16px;
  font-size: 1.8rem;
  line-height: 2;
}

.globalNav--sp__menu > ul > li.menu-item-has-children .parent > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 60%;
  margin: auto;
  background: #dadada;
}

.globalNav--sp__menu .child-menu-button {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  background: url("/information/dx/img/common/icon_carret.svg") no-repeat center / 16px;
  -webkit-transition: background 0.3s;
  transition: transform 0.3s;
  cursor: pointer;
}

.globalNav--sp__menu .child-menu-button.is-open {
  transform: rotate(180deg);
}

.globalNav--sp__menu .sub-menu {
  display: none;
  padding: 8px 0 24px 8px;
}

.globalNav--sp__menu .sub-menu > ul {
  border-top: 1px solid #eaeaea;
}

.globalNav--sp__menu .sub-menu > ul > li {
  border-bottom: 1px solid #eaeaea;
}

.globalNav--sp__menu .sub-menu > ul > li a {
  position: relative;
  padding: 16px 0 16px 8px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.globalNav--sp__menu .sub-menu > ul > li a .arrow {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 5px;
}

.globalNav--sp__menu .sub-menu > ul > li a .arrow::before,
.globalNav--sp__menu .sub-menu > ul > li a .arrow::after {
  background-size: 10px 10px;
}

.globalNav--sp__menu .sub-menu > ul > li a.case {
  padding: 12px 0 12px 8px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.globalNav--sp__menu .sub-menu > ul > li a.case small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  margin-bottom: 2px;
  color: var(--color_brown04);
  font-size: 1rem;
  line-height: 1.2;
}

.globalNav--sp__menu .sub-menu > ul > li a.case small .dt {
  color: var(--color_green01);
  font-weight: bold;
}

.globalNav--sp__menu .sub-menu > ul > li a.case small .dd {
  color: var(--color_brown02);
  font-family: var(--font_en);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Footer */
.l-footer {
  border-top: 5px solid;
  -o-border-image: var(--gradient_green01) 1;
  border-image: var(--gradient_green01) 1;
  background: var(--color_white00);
}

.l-footer ul {
  margin: 0;
  padding: 0;
}

.l-footer a {
  color: var(--color_black01);
  text-decoration: none;
}

.l-footer a:hover {
  color: var(--color_green01);
}

@media (max-width: 767px) {
  .l-footer .container {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .fNav_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 100px;
    padding: 56px 0 64px;
  }
}

@media (max-width: 767px) {
  .fNav_wrapper {
    padding: 32px 30px 48px;
  }
}

@media (min-width: 768px) {
  .footer_logo {
    width: 230px;
  }

  .footer_logo a {
    display: block;
  }

  .footer_logo .sfc_logo {
    margin-bottom: 40px;
  }

  .footer_logo .sfc_logo img {
    width: 230px;
  }

  .footer_logo .dx_logo img {
    width: 118px;
  }
}

@media (max-width: 767px) {
  .footer_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
  }

  .footer_logo .sfc_logo img {
    width: 175px;
  }

  .footer_logo .dx_logo img {
    width: 118px;
  }
}

.fNav_heading {
  font-weight: bold;
}

@media (min-width: 768px) {
  .fNav_heading {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .fNav_heading {
    font-size: 1.8rem;
  }
}

.fNav > ul > li > a,
.fNav span {
  font-weight: bold;
}

.fNav .sub-menu {
  margin-bottom: 0;
}

.fNav .sub-menu ul {
  line-height: 1.4;
}

.fNav .sub-menu li {
  padding-left: 24px;
  background: url("/information/dx/img/common/icon_arrow_green2.svg") no-repeat left top;
}
.fNav .sub-menu li:has(a.disabled) {
  padding-left: 24px;
  background: url("/information/dx/img/common/icon_arrow_green2_disabled.svg") no-repeat left top;
}
.fNav .sub-menu small {
  display: block;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .fNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    margin-top: 18px;
    padding-left: 24px;
  }

  .fNav > ul > li:not(:first-child) {
    margin-top: 16px;
  }

  .fNav .sub-menu {
    margin-top: 14px;
    font-size: 1.4rem;
  }

  .fNav .sub-menu li:not(:first-child) {
    margin-top: 8px;
  }

  .fNav .sub-menu small {
    padding-top: 2px;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .fNav {
    margin-top: 12px;
    padding-left: 12px;
  }

  .fNav > ul:not(:first-child) {
    margin-top: 12px;
  }

  .fNav > ul > li:not(:first-child) {
    margin-top: 12px;
  }

  .fNav .sub-menu {
    margin-top: 8px;
    font-size: 1.3rem;
  }

  .fNav .sub-menu li:not(:first-child) {
    margin-top: 6px;
  }

  .fNav .sub-menu small {
    padding-top: 3px;
    font-size: 1rem;
  }
}

.fNav_bottom {
  border-top: 1px solid var(--color_gray01);
}

.fNav_bottom .copy_right {
  font-family: var(--font_en);
  font-weight: bold;
  color: var(--color_gray02);
}

@media (min-width: 768px) {
  .fNav_bottom {
    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;
    padding: 47px 56px 49px;
    gap: 28px 56px;
  }

  .fNav_bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 56px;
    font-size: 1.5rem;
  }

  .fNav_bottom .copy_right {
    margin: 0;
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .fNav_bottom {
    padding: 32px 30px 40px;
  }

  .fNav_bottom ul {
    font-size: 1.3rem;
  }

  .fNav_bottom ul li:not(:first-child) {
    margin-top: 16px;
  }

  .fNav_bottom .copy_right {
    margin-top: 32px;
    font-size: 1rem;
  }
}

/* Heading */
.page_header {
  position: relative;
}

.page_header::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: no-repeat center/contain;
  pointer-events: none;
}

.page_header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page_header .p-bread {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.page_header .page_header_title {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.page_header .sub_header {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

@media (min-width: 768px) {
  .page_header {
    padding-top: 132px;
  }

  .page_header.case {
    margin-bottom: 80px;
  }

  .page_header.action {
    margin-bottom: 120px;
  }

  .page_header .p-bread {
    margin-bottom: 60px;
  }

  .page_header .sub_header {
    margin-top: 48px;
  }
}

@media (max-width: 767px) {
  .page_header {
    margin-bottom: 56px;
    padding-top: 106px;
  }

  .page_header::before {
    right: 0;
    top: calc(100% + 13px);
    width: 158px;
    height: 110px;
    background-image: url("/information/dx/img/common/sp_bg_image05.png");
  }

  .page_header .p-bread {
    margin-bottom: 24px;
  }

  .page_header .sub_header {
    margin-top: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .page_header::before {
    right: -3.41%;
    top: calc(100% - 7.64vw);
    width: 31.181%;
    aspect-ratio: 449/278;
    background-image: url("/information/dx/img/common/bg_image05.png");
  }

  .page_header.case::before {
    top: calc(100% - 7.64vw);
  }

  .page_header.action::before {
    top: calc(100% - 4.17vw);
  }
}

@media (min-width: 1440px) {
  .page_header::before {
    right: calc(50% - 769px);
    top: calc(100% - 110px);
    width: 449px;
    height: 278px;
    background-image: url("/information/dx/img/common/bg_image05.png");
  }

  .page_header.case::before {
    top: calc(100% - 110px);
  }

  .page_header.action::before {
    top: calc(100% - 60px);
  }
}

.page_header_title .p-h1 {
  color: var(--color_brown01);
  font-weight: 800;
  line-height: 1.4;
  line-break: strict;
}

.page_header_title .p-h1 small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color_green01);
  font-weight: bold;
}

.page_header_title .p-h1 small .dt {
  position: relative;
}

.page_header_title .p-h1 small .dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  background: var(--color_brown04);
}

.page_header_title .p-h1 small .dd {
  color: var(--color_brown02);
  font-family: var(--font_en);
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page_header_title .p-h1 {
    font-size: 4rem;
  }

  .page_header_title .p-h1 small {
    gap: 12px;
    height: 38px;
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .page_header_title .p-h1 small .dt {
    padding-right: 22px;
  }

  .page_header_title .p-h1 small .dd {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .page_header_title .p-h1 {
    font-size: 2.6rem;
  }

  .page_header_title .p-h1 small {
    gap: 6px;
    height: 32px;
    margin-bottom: 4px;
    font-size: 1.6rem;
  }

  .page_header_title .p-h1 small .dt {
    padding-right: 16px;
  }

  .page_header_title .p-h1 small .dd {
    font-size: 2rem;
  }
}

.page_header_title .title-en {
  position: absolute;
  z-index: -1;
  margin: 0;
  color: rgba(227, 208, 127, 0.2);
  mix-blend-mode: multiply;
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  pointer-events: none;
}

@media (min-width: 768px) {
  .page_header_title .title-en {
    top: 96px;
    right: calc(50% - 755px);
    font-size: 16rem;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .page_header_title .title-en {
    right: -2.57%;
    font-size: 11.11vw;
  }
}

@media (max-width: 767px) {
  .page_header_title .title-en {
    top: 98px;
    right: -9px;
    font-size: 6.4rem;
  }
}

.sub_header {
  position: relative;
}

.sub_header::before,
.sub_header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
}

.sub_header::before {
  width: 100%;
  background: #ece6bd;
}

.sub_header::after {
  width: 32px;
  background: var(--color_green01);
}

@media (min-width: 768px) {
  .sub_header {
    padding-top: 21px;
  }
}

@media (max-width: 767px) {
  .sub_header {
    padding-top: 17px;
  }
}

.sub_header .h-h2 {
  font-weight: bold;
}

.sub_header .h-h2 small {
  display: block;
  color: var(--color_brown03);
  font-weight: 600;
}

.sub_header .h-h2 small::after {
  content: ":";
  margin-left: 4px;
  color: #ebe3bb;
}

@media (min-width: 768px) {
  .sub_header .h-h2 {
    font-size: 2rem;
    line-height: 1.8;
  }

  .sub_header .h-h2 small {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .sub_header .h-h2 {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .sub_header .h-h2 small {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
  .sub_header .tags {
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  .sub_header .tags {
    margin-top: 14px;
  }
}

.p-bread {
  color: var(--color_brown05);
  line-height: 1.8;
}

.p-bread a {
  color: var(--color_brown05);
}

.p-bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-bread li {
  white-space: nowrap;
}

.p-bread li:not(:first-child) {
  position: relative;
}

.p-bread li:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--color_brown04);
}

@media (min-width: 768px) {
  .p-bread {
    font-size: 1.2rem;
  }

  .p-bread ul {
    gap: 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .p-bread li {
    text-align: right;
  }

  .p-bread li:not(:first-child) {
    padding-left: 26px;
  }

  .p-bread li:not(:first-child)::before {
    top: 12px;
  }
}

@media (max-width: 767px) {
  .p-bread {
    width: calc(100% + 60px);
    margin-left: -30px;
    padding-left: 30px;
    font-size: 1.1rem;
    overflow-x: auto;
  }

  @supports (scrollbar-width: auto) {
    .p-bread {
      scrollbar-width: none;
    }
  }
  @supports selector(::-webkit-scrollbar) {
    .p-bread::-webkit-scrollbar {
      display: none;
    }
  }
  .p-bread ul {
    gap: 8px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-bread li {
    text-align: left;
  }

  .p-bread li:not(:first-child) {
    padding-left: 18px;
  }

  .p-bread li:not(:first-child)::before {
    top: 12px;
  }

  .p-bread li:last-child {
    padding-right: 30px;
  }
}

.common-h2 {
  text-align: center;
  color: var(--color_brown01);
  font-weight: 800;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .common-h2 {
    margin-bottom: 56px;
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .common-h2 {
    margin-bottom: 40px;
    font-size: 2.8rem;
  }
}

.case-h2 {
  color: var(--color_brown01);
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .case-h2 {
    margin-bottom: 32px;
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .case-h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}

.case-h3 {
  font-weight: 600;
}

@media (min-width: 768px) {
  .case-h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .case-h3 {
    margin-bottom: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.action-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-radius: 12px;
  background: var(--color_white00);
  color: #442a18;
  font-weight: bold;
  overflow: hidden;
}

.action-h2 .no {
  display: grid;
  place-content: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #1f795e var(--bg_green01) center top;
  color: var(--color_white00);
  font-family: var(--font_en);
  letter-spacing: 0.2em;
}

@media (min-width: 768px) {
  .action-h2 {
    min-height: 74px;
    margin-bottom: 48px;
    padding: 14px 20px 16px 105px;
    font-size: 2.6rem;
    line-height: 1.6;
  }

  .action-h2 .no {
    width: 81px;
    padding-left: 5px;
    font-size: 2.7rem;
  }
}

@media (max-width: 767px) {
  .action-h2 {
    min-height: 55px;
    margin-bottom: 24px;
    padding: 11px 16px 13px 72px;
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .action-h2 .no {
    width: 56px;
    padding-left: 3px;
    font-size: 1.9rem;
  }
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.tags .tag {
  border: 1px solid var(--color_green01);
  border-radius: 99px;
  color: var(--color_green01);
  font-weight: 600;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .tags .tag {
    padding: 5px 10px 6px;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .tags .tag {
    padding: 3px 8px 5px;
    font-size: 1rem;
  }
}

.sec_common_relation {
  position: relative;
  background: var(--color_green04) var(--bg_green03) center top;
}

.sec_common_relation::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: no-repeat left top/cover;
}

@media (min-width: 768px) {
  .sec_common_relation {
    margin-top: 80px;
    padding-top: calc(5px + 11.25vw);
    padding-bottom: 160px;
  }

  .sec_common_relation::before {
    height: 11.25vw;
    background-image: url("/information/dx/img/common/bg_relation.png");
  }
}

@media (max-width: 767px) {
  .sec_common_relation {
    margin-top: 60px;
    padding-top: calc(50px + 18.6666666667vw);
    padding-bottom: 80px;
  }

  .sec_common_relation::before {
    height: 18.6666666667vw;
    background-image: url("/information/dx/img/common/sp_bg_relation.png");
  }
}

.ext_bnr a .arrow {
  position: absolute;
}

@media (min-width: 768px) {
  .ext_bnr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 4.6875%;
    max-width: 1024px;
    margin: 0 auto;
  }

  .ext_bnr a .arrow {
    right: 8px;
    bottom: 8px;
  }
}

@media (max-width: 767px) {
  .ext_bnr li:not(:first-child) {
    margin-top: 20px;
  }

  .ext_bnr a {
    width: 100%;
    height: 107px;
    margin: 0 auto;
  }

  .ext_bnr a .arrow {
    right: 6px;
    bottom: 6px;
  }

  .ext_bnr img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    margin: 0 auto;
  }
}

.action_bnr a img {
  margin: 0 auto;
}

.action_bnr a .caption {
  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;
  color: #442a18;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}

.action_bnr a .arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

@media (min-width: 768px) {
  .action_bnr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }

  .action_bnr a {
    height: 242px;
    padding-top: 32px;
  }

  .action_bnr a img {
    margin-bottom: 13px;
  }

  .action_bnr a .caption {
    height: 56px;
    font-size: 2.2rem;
  }

  .action_bnr a .arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .action_bnr li:not(:first-child) {
    margin-top: 20px;
  }

  .action_bnr a {
    width: 100%;
    height: 192px;
    padding-top: 24px;
    margin: 0 auto;
  }

  .action_bnr a img {
    height: 90px;
    margin-bottom: 8px;
  }

  .action_bnr a .caption {
    height: 54px;
    font-size: 1.8rem;
  }

  .action_bnr a .arrow {
    width: 30px;
    height: 30px;
  }
}

.case_bnr {
  margin: 0;
}

.case_bnr a {
  overflow: hidden;
  margin: 0 auto;
}

.case_bnr a .image_wrap {
  position: relative;
  overflow: hidden;
}

.case_bnr a .image_wrap::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 155, 99, 0.05);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.case_bnr a img {
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}

.case_bnr a .text_wrap {
  background: var(--color_white00);
}

.case_bnr a .text_wrap h3 {
  color: var(--color_black01);
  font-weight: bold;
  line-height: 1.5;
}

.case_bnr a .text_wrap h3 small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 800;
}

.case_bnr a .text_wrap h3 small .dt {
  position: relative;
  color: var(--color_green01);
  font-weight: bold;
}

.case_bnr a .text_wrap h3 small .dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 1px;
  margin: auto;
  background: var(--color_brown04);
}

.case_bnr a .text_wrap h3 small .dd {
  color: var(--color_brown02);
  font-family: var(--font_en);
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.case_bnr a .arrow {
  position: absolute;
}

.case_bnr a:hover .image_wrap::before {
  opacity: 1;
}

.case_bnr a:hover img {
  scale: 1.1;
}

@media (min-width: 768px) {
  .case_bnr > li {
    width: 368px;
    min-height: 390px;
  }

  .case_bnr a {
    width: 100%;
    height: 100%;
  }

  .case_bnr a .text_wrap {
    padding: 16px 20px 20px;
  }

  .case_bnr a .text_wrap h3 {
    font-size: 1.6rem;
  }

  .case_bnr a .text_wrap h3 small {
    gap: 4px;
    height: 21px;
  }

  .case_bnr a .text_wrap h3 small .dt {
    padding-right: 10px;
    font-size: 1.1rem;
  }

  .case_bnr a .text_wrap h3 small .dd {
    font-size: 1.3rem;
  }

  .case_bnr a .text_wrap .tags {
    max-width: 270px;
    margin-top: 12px;
  }

  .case_bnr a .arrow {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .case_bnr a {
    width: 100%;
    height: auto;
  }

  .case_bnr a .text_wrap {
    padding: 14px 16px 16px;
  }

  .case_bnr a .text_wrap h3 {
    font-size: 1.4rem;
  }

  .case_bnr a .text_wrap h3 small {
    gap: 3px;
    height: 14px;
    margin-bottom: 2px;
  }

  .case_bnr a .text_wrap h3 small .dt {
    padding-right: 9px;
    font-size: 1rem;
  }

  .case_bnr a .text_wrap h3 small .dd {
    font-size: 1.2rem;
  }

  .case_bnr a .text_wrap .tags {
    width: 240px;
    gap: 3px 6px;
    margin-top: 10px;
  }

  .case_bnr a .arrow {
    right: 16px;
    bottom: 16px;
  }
}

.cp_text p {
  line-height: 2.2;
}

.cp_text .list-disc li {
  position: relative;
  line-height: 1.8;
}

.cp_text .list-disc li:not(:first-child) {
  margin-top: 16px;
}

.cp_text .list-disc li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: #1f795e var(--bg_green01) center;
}

@media (min-width: 768px) {
  .cp_text .list-disc li {
    padding-left: 32px;
  }

  .cp_text .list-disc li::before {
    top: 7px;
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 767px) {
  .cp_text .list-disc li {
    padding-left: 22px;
  }

  .cp_text .list-disc li::before {
    top: 6px;
    width: 12px;
    height: 12px;
  }
}

.cp_links {
  border-top: 1px solid #ece6bd;
  border-bottom: 1px solid #ece6bd;
}

.cp_links h3 {
  font-weight: 600;
  line-height: 1.6;
}

.cp_links li:not(:first-child) {
  margin-top: 16px;
}

.cp_links a {
  display: table;
  position: relative;
  line-height: 1.6;
  text-decoration: none;
}

.cp_links a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--image_arrow02) no-repeat left center/contain;
}

.cp_links a.disabled::before {
  background-image: var(--image_arrow03);
}

.cp_links a .label {
  display: block;
  color: var(--color_black01);
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cp_links a .url {
  display: block;
  color: var(--color_green02);
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-all;
}

.cp_links a:hover .label {
  color: var(--color_green01);
  text-decoration: none;
}

.cp_links a:hover .url {
  color: var(--color_green01);
  text-decoration: none;
}

@media (min-width: 768px) {
  .cp_links {
    padding: 28px 0 32px;
  }

  .cp_links h3 {
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .cp_links a {
    padding-left: 24px;
  }

  .cp_links a::before {
    width: 12px;
    height: 26px;
  }
}

@media (max-width: 767px) {
  .cp_links {
    padding: 16px 0 20px;
  }

  .cp_links h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .cp_links a {
    padding-left: 20px;
  }

  .cp_links a::before {
    width: 10px;
    height: 26px;
  }
}

.cp_box {
  border-radius: 12px;
  overflow: hidden;
}

.cp_box .box_title {
  position: relative;
  width: 100%;
  background: var(--color_green02) var(--bg_green02) center top;
  color: var(--color_white00);
  font-weight: bold;
}

.cp_box .box_title .sub {
  color: #a0b493;
}

.cp_box .box_title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #f5cd1d;
}

.cp_box .box_content {
  background: var(--color_white00);
}

.cp_box .box_subtitle {
  font-weight: bold;
}

.cp_box li,
.cp_box .box_subtitle {
  position: relative;
}

.cp_box li::before,
.cp_box .box_subtitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border: solid var(--color_green02);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .cp_box .box_title {
    padding: 14px 20px 15px 32px;
    font-size: 2.2rem;
    line-height: 1.6;
  }

  .cp_box .box_title::before {
    width: 6px;
    height: 32px;
  }

  .cp_box .box_content {
    padding: 26px 32px 32px;
  }

  .cp_box .box_subtitle {
    padding-left: 33px;
    line-height: 1.6;
    font-size: 2rem;
  }

  .cp_box .box_subtitle::before {
    top: 9px;
    width: 17px;
    height: 17px;
    border-width: 4px;
  }

  .cp_box li {
    padding-left: 32px;
    line-height: 1.8;
  }

  .cp_box li::before {
    top: 7px;
    width: 17px;
    height: 17px;
    border-width: 4px;
  }

  .cp_box .note {
    padding-left: 32px;
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .cp_box .box_title {
    min-height: 55px;
    padding: 16px 16px 17px 24px;
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .cp_box .box_title::before {
    width: 6px;
    height: 24px;
  }

  .cp_box .box_content {
    padding: 22px 24px 24px;
  }

  .cp_box .box_subtitle {
    padding-left: 20px;
    line-height: 1.5;
    font-size: 1.6rem;
  }

  .cp_box .box_subtitle::before {
    top: 7px;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .cp_box p {
    line-height: 1.7;
  }

  .cp_box li {
    padding-left: 20px;
    line-height: 1.7;
  }

  .cp_box li::before {
    top: 7px;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .cp_box .note {
    padding-left: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

.cp_box .cp_links {
  border-top: #ebebeb solid 1px;
  border-bottom: none;
}

.cp_box .cp_links h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .cp_box .cp_links h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
}

.cp_box .cp_links li {
  padding-left: 0;
}

.cp_box .cp_links li:before {
  content: none;
}

@media (min-width: 768px) {
  .cp_box .cp_links {
    padding: 24px 0 0;
    margin-top: 24px;
  }
}

.cp_message {
  border-radius: 12px;
  background: #1f795e var(--bg_green01) center top;
  color: var(--color_white00);
}

.cp_message .message-title {
  color: var(--color_white00);
  font-weight: bold;
  line-height: 1.6;
}

.cp_message .role {
  margin: 0;
  line-height: 1.4;
}

.cp_message .name {
  margin: 2px 0 0;
  font-weight: bold;
  line-height: 1.6;
}

.cp_message .message-lead {
  font-weight: 600;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .cp_message {
    padding: 64px;
  }

  .cp_message .message-title {
    margin-bottom: 40px;
    font-size: 2.6rem;
  }

  .cp_message .row_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
  }

  .cp_message .image_col {
    width: 270px;
  }

  .cp_message .text_col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .cp_message .text_col p {
    line-height: 2.2;
  }

  .cp_message .role {
    margin-top: 24px;
    font-size: 1.3rem;
  }

  .cp_message .name {
    font-size: 2rem;
  }

  .cp_message .message-lead {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .cp_message {
    padding: 32px 24px;
  }

  .cp_message .message-title {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }

  .cp_message .image_col {
    max-width: 534px;
    margin-left: auto;
    margin-right: auto;
  }

  .cp_message .text_col {
    margin-top: 16px;
  }

  .cp_message .role {
    margin-top: 12px;
    font-size: 1.1rem;
  }

  .cp_message .name {
    font-size: 1.6rem;
    margin-top: 2px;
  }

  .cp_message .message-lead {
    font-size: 1.6rem;
  }

  .cp_message p {
    line-height: 1.8;
  }
}

.js-scrollable_wrap {
  position: relative;
}

@supports (scrollbar-width: auto) {
  .js-scrollable_wrap .js-scrollable {
    scrollbar-width: none;
  }
}

@supports selector(::-webkit-scrollbar) {
  .js-scrollable_wrap .js-scrollable::-webkit-scrollbar {
    display: none;
  }
}

.js-scrollable_wrap .scroll_bar {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(68, 42, 24, 0.1);
}

.js-scrollable_wrap .scroll_bar .active {
  position: relative;
  display: block;
  width: 75%;
  height: 100%;
  background: var(--bg_green01);
}

.js-scrollable_wrap:has(.is-scrollable) .scroll_bar {
  display: block;
}

@media (max-width: 767px) {
  .js-scrollable.is-scrollable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% + 60px);
    margin-left: -30px;
    padding-bottom: 24px;
  }

  .js-scrollable.is-scrollable .scroll-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .js-scrollable img {
    max-width: none;
  }
}

.js-scrollable .scroll-hint-icon {
  left: calc(50% - 71px);
  top: calc(50% - 56px);
  width: 142px;
  height: 87px;
  border-radius: 12px;
}

.js-scrollable .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 1;
}

.js-scrollable .scroll-hint-icon-blue {
  background: rgba(16, 163, 192, 0.75);
}

.js-scrollable .scroll-hint-text {
  font-size: 1.1rem;
}

/* Top */
.p-top__mv {
  position: relative;
}

@-webkit-keyframes scroll-in {
  0% {
    translate: 0 -100%;
  }
  75% {
    translate: 0 100%;
  }
  100% {
    translate: 0 100%;
  }
}

@keyframes scroll-in {
  0% {
    translate: 0 -100%;
  }
  75% {
    translate: 0 100%;
  }
  100% {
    translate: 0 100%;
  }
}

.p-top__mv .mv_scroll {
  position: absolute;
  height: auto;
  padding-bottom: 92px;
  color: #442a18;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: var(--font_en);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.p-top__mv .mv_scroll .line {
  display: block;
  position: absolute;
  left: calc(50% - 1px);
  bottom: 0;
  width: 1px;
  height: 80px;
  overflow: hidden;
}

.p-top__mv .mv_scroll .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #442a18;
  width: 1px;
  height: 500%;
  -webkit-animation: scroll-in 2s linear infinite;
  animation: scroll-in 2s linear infinite;
}

.p-top__mv::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: no-repeat center/contain;
}

@media (min-width: 768px) {
  .p-top__mv {
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 1920/1080;
    max-height: 1080px;
    margin: 0 auto;
  }

  .p-top__mv .mv_image,
  .p-top__mv .mv_copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    height: 100%;
  }

  .p-top__mv .mv_image {
    right: -102px;
    width: 60.417%;
    padding-top: 25px;
  }

  .p-top__mv .mv_copy {
    left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
    padding: 0 5.5%;
  }

  .p-top__mv .mv_scroll {
    left: 3.333%;
    bottom: 48px;
  }

  .p-top__mv::after {
    width: 67.778%;
    max-width: 976px;
    aspect-ratio: 976/603;
    left: -247px;
    bottom: max(-30.902vw, -445px);
    background-image: url("/information/dx/img/top/top_bg01.png");
  }
}

@media (max-width: 767px) {
  .p-top__mv {
    padding-top: 138px;
    padding-bottom: 105px;
  }

  .p-top__mv .mv_copy {
    max-width: 670px;
    width: 89.334%;
    margin: 0 auto;
  }

  .p-top__mv .mv_copy img {
    width: 100%;
  }

  .p-top__mv .mv_image {
    max-width: 720px;
    width: 96%;
    margin-left: auto;
  }

  .p-top__mv .mv_scroll {
    left: 20px;
    bottom: 10px;
  }

  .p-top__mv::after {
    width: 212px;
    height: 166px;
    left: 0;
    bottom: -96px;
    background-image: url("/information/dx/img/top/sp_top_bg01.png");
  }
}

.title-en_top {
  position: absolute;
  z-index: -1;
  margin: 0;
  color: rgba(227, 208, 127, 0.2);
  mix-blend-mode: multiply;
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  white-space: nowrap;
  pointer-events: none;
}

@media (min-width: 768px) {
  .title-en_top {
    font-size: 16rem;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .title-en_top {
    font-size: 11.11vw;
  }
}

@media (max-width: 767px) {
  .title-en_top {
    width: 100%;
    min-width: 375px;
    font-size: 6.4rem;
    text-align: right;
  }
}

.top-h2 {
  color: #442a18;
  font-weight: 800;
  line-height: 1.6;
}

.top-h2 small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1.6;
}

.top-h2 small .dt {
  position: relative;
  color: var(--color_green01);
  letter-spacing: 0.2em;
}

.top-h2 small .dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  background: var(--color_brown04);
}

.top-h2 small .dd {
  color: var(--color_brown02);
  letter-spacing: 0.14em;
}

@media (min-width: 768px) {
  .top-h2 {
    margin-bottom: 48px;
    font-size: 4rem;
  }

  .top-h2 small {
    gap: 12px;
    height: 38px;
    margin-bottom: 3px;
    font-size: 2.4rem;
  }

  .top-h2 small .dt {
    padding-right: 22px;
  }
}

@media (max-width: 767px) {
  .top-h2 {
    margin-bottom: 24px;
    font-size: 2.8rem;
  }

  .top-h2 small {
    gap: 8px;
    height: 26px;
    font-size: 1.6rem;
  }

  .top-h2 small .dt {
    padding-right: 18px;
  }
}

.p-top__message {
  position: relative;
}

.p-top__message::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background: no-repeat center/contain;
}

.p-top__message .container {
  position: relative;
  z-index: 2;
}

.p-top__message .role {
  color: var(--color_brown02);
  line-height: 1;
}

.p-top__message .name {
  font-weight: bold;
  line-height: 1;
}

.p-top__message .text_col {
  position: relative;
}

.p-top__message .text_col::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: no-repeat center/contain;
}

.p-top__message .lead {
  font-weight: 600;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .p-top__message {
    padding-top: 80px;
  }

  .p-top__message::after {
    top: calc(100% - 125px);
    left: 51px;
    width: 480px;
    height: 275px;
    background-image: url("/information/dx/img/top/top_bg04.png");
  }

  .p-top__message .title-en_top {
    top: 24px;
    right: calc(50% - 765px);
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__message .title-en_top {
    right: -2.57%;
  }
}

@media (min-width: 768px) {
  .p-top__message .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
  }

  .p-top__message .image_col img {
    margin-left: 0;
  }

  .p-top__message .role {
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .p-top__message .name {
    margin-top: 18px;
    font-size: 2.4rem;
  }

  .p-top__message .text_col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 136px;
  }

  .p-top__message .text_col::before {
    width: min(11.32vw, 163px);
    aspect-ratio: 163/120;
    right: -40px;
    top: 10px;
    background-image: url("/information/dx/img/top/top_bg02.png");
  }

  .p-top__message .lead {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top__message::after {
    left: 39px;
    top: calc(100% - 94px);
    width: 360px;
    height: 207px;
  }

  .p-top__message .row {
    gap: 30px;
  }

  .p-top__message .image_col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (max-width: 767px) {
  .p-top__message {
    padding-top: 105px;
    padding-bottom: 90px;
  }

  .p-top__message::after {
    top: calc(100% - 60px);
    left: 0;
    right: 0;
    width: 315px;
    height: 181px;
    margin: auto;
    background-image: url("/information/dx/img/top/sp_top_bg04.png");
  }

  .p-top__message .title-en_top {
    top: 25px;
    left: 10px;
  }

  .p-top__message .lead {
    font-size: 1.6rem;
  }

  .p-top__message .text_col::before {
    width: 96px;
    height: 71px;
    right: -3px;
    top: -5px;
    background-image: url("/information/dx/img/top/sp_top_bg02.png");
  }

  .p-top__message .image_col {
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-top__message .role {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .p-top__message .name {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}

.p-top__strategy {
  position: relative;
  background: var(--color_green02) var(--bg_green02) center;
}

.p-top__strategy::before,
.p-top__strategy::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  background: no-repeat left bottom/cover;
}

.p-top__strategy::before {
  bottom: calc(100% - 1px);
}

.p-top__strategy::after {
  top: calc(100% - 1px);
}

.p-top__strategy .title-en_top {
  color: rgba(184, 197, 176, 0.2);
  left: 50%;
  z-index: 0;
  translate: -50% 0;
}

.p-top__strategy .container {
  position: relative;
}

.p-top__strategy .top-h2 {
  color: var(--color_white00);
  text-align: center;
}

.p-top__strategy .top-h2 small {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-top__strategy .top-h2 small .dt {
  color: #abd494;
}

.p-top__strategy .top-h2 small .dt::after {
  background: #beccb4;
}

.p-top__strategy .top-h2 small .dd {
  color: #f5cd1d;
}

.p-top__strategy .row_lead p {
  color: var(--color_white00);
  font-weight: 600;
}

.p-top__strategy .row_plan,
.p-top__strategy .row_field {
  position: relative;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
}

.p-top__strategy .row_plan h3,
.p-top__strategy .row_field h3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color_white00);
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}

.p-top__strategy .plans li {
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 12px;
  background: var(--color_white00);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.p-top__strategy .plans li span {
  position: relative;
  z-index: 1;
}

.p-top__strategy .plans li::before {
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
}

.p-top__strategy .plans li:nth-child(1)::before {
  content: "01";
  color: #d7eee6;
}

.p-top__strategy .plans li:nth-child(2)::before {
  content: "02";
  color: #ffeae8;
}

.p-top__strategy .plans li:nth-child(3)::before {
  content: "03";
  color: #f6f0dc;
}

.p-top__strategy .fields .field_item {
  border-radius: 12px;
  overflow: hidden;
}

.p-top__strategy .fields .field_title {
  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;
  position: relative;
  width: 100%;
  background: var(--color_green01) var(--bg_green01);
  color: var(--color_white00);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.p-top__strategy .fields .field_title::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--color_green01) var(--bg_green01);
}

.p-top__strategy .fields .field_content {
  width: 100%;
  background: var(--color_white00);
}

.p-top__strategy .fields .field_detail {
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.p-top__strategy .milestone {
  border-top: 1px solid #57907c;
}

.p-top__strategy .milestone h4 {
  font-weight: bold;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .p-top__strategy {
    margin-top: calc(13.889vw + 65px);
    margin-bottom: 15.278vw;
    padding-top: min(13.889vw, 200px);
    padding-bottom: 10px;
  }

  .p-top__strategy::before {
    aspect-ratio: 1440/200;
    background-image: url("/information/dx/img/top/top_bg03.png");
  }

  .p-top__strategy::after {
    aspect-ratio: 1440/220;
    background-image: url("/information/dx/img/top/top_bg05.png");
  }

  .p-top__strategy .title-en_top {
    top: 0;
  }

  .p-top__strategy .top-h2 {
    margin-bottom: 64px;
  }

  .p-top__strategy .row_lead p {
    font-size: 2rem;
    line-height: 2.2;
  }

  .p-top__strategy .row_plan,
  .p-top__strategy .row_field {
    padding: 64px min(4.444vw, 64px);
  }

  .p-top__strategy .row_plan h3,
  .p-top__strategy .row_field h3 {
    top: -26px;
    font-size: 3.2rem;
  }

  .p-top__strategy .plans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px min(3.824%, 41px);
  }

  .p-top__strategy .plans li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 188px;
    font-size: min(1.667vw, 2rem);
  }

  .p-top__strategy .plans li::before {
    top: -15px;
    font-size: 10rem;
    letter-spacing: 2px;
  }

  .p-top__strategy .fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px min(3.824%, 41px);
  }

  .p-top__strategy .fields .field_item {
    width: min(30.784%, 330px);
  }

  .p-top__strategy .fields .field_title {
    height: 78px;
    font-size: min(1.667vw, 2rem);
  }

  .p-top__strategy .fields .field_title::after {
    width: 32px;
    height: 16px;
  }

  .p-top__strategy .fields .field_content {
    height: 118px;
    padding: 28px 20px;
  }

  .p-top__strategy .fields .field_detail {
    font-size: min(1.5vw, 1.8rem);
  }

  .p-top__strategy .fields .field_detail:not(:first-child) {
    margin-top: 4px;
  }

  .p-top__strategy .cp_message .text_col p {
    font-size: 1.4rem;
    line-height: 2;
  }

  .p-top__strategy .milestone h4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .p-top__strategy {
    margin-top: 21.334vw;
    margin-bottom: 21.334vw;
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .p-top__strategy::before {
    aspect-ratio: 750/160;
    background-image: url("/information/dx/img/top/sp_top_bg03.png");
  }

  .p-top__strategy::after {
    aspect-ratio: 750/160;
    background-image: url("/information/dx/img/top/sp_top_bg05.png");
  }

  .p-top__strategy .title-en_top {
    width: auto;
    top: 50px;
  }

  .p-top__strategy .top-h2 {
    margin-bottom: 32px;
  }

  .p-top__strategy .row_lead p {
    font-size: 1.6rem;
  }

  .p-top__strategy .row_plan,
  .p-top__strategy .row_field {
    padding: 40px 24px;
  }

  .p-top__strategy .row_plan h3,
  .p-top__strategy .row_field h3 {
    top: -19px;
    font-size: 2.4rem;
  }

  .p-top__strategy .plans li {
    width: 100%;
    height: 136px;
    margin: 0 auto;
    font-size: 1.6rem;
  }

  .p-top__strategy .plans li::before {
    top: -8px;
    font-size: 6.4rem;
    letter-spacing: 1px;
  }

  .p-top__strategy .plans li:not(:first-child) {
    margin-top: 20px;
  }

  .p-top__strategy .fields .field_item {
    width: 100%;
    margin: 0 auto;
  }

  .p-top__strategy .fields .field_item:not(:first-child) {
    margin-top: 20px;
  }

  .p-top__strategy .fields .field_title {
    height: 62px;
    font-size: 1.6rem;
  }

  .p-top__strategy .fields .field_title::after {
    width: 24px;
    height: 12px;
  }

  .p-top__strategy .fields .field_content {
    height: 88px;
    padding: 18px 8px;
  }

  .p-top__strategy .fields .field_detail {
    font-size: 1.5rem;
  }

  .p-top__strategy .fields .field_detail:not(:first-child) {
    margin-top: 2px;
  }

  .p-top__strategy .cp_message .text_col p {
    font-size: 1.3rem;
    line-height: 2;
  }

  .p-top__strategy .milestone h4 {
    font-size: 1.5rem;
  }
}

.p-top__case {
  position: relative;
}

.p-top__case::before,
.p-top__case::after {
  content: "";
  display: block;
  position: absolute;
  background: no-repeat center/contain;
}

.p-top__case::before {
  z-index: 1;
}

.p-top__case::after {
  z-index: -1;
}

@media (min-width: 768px) {
  .p-top__case {
    margin-bottom: 76px;
    padding-top: 235px;
  }

  .p-top__case .title-en_top {
    top: 30px;
    right: calc(50% - 765px);
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__case .title-en_top {
    right: -2.57%;
  }
}

@media (min-width: 768px) {
  .p-top__case::before {
    bottom: calc(100% - 165px);
    left: calc(50% - 687px);
    width: 529px;
    height: 330px;
    background-image: url("/information/dx/img/top/top_bg06.png");
  }

  .p-top__case::after {
    width: 39.584%;
    max-width: 570px;
    aspect-ratio: 570/353;
    left: calc(50% - 785px);
    bottom: max(-7.223vw, -104px);
    background-image: url("/information/dx/img/top/top_bg07.png");
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top__case::before {
    bottom: calc(100% - 124px);
    width: 397px;
    height: 248px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__case::before {
    left: 33px;
  }

  .p-top__case::after {
    left: -65px;
  }
}

@media (max-width: 767px) {
  .p-top__case {
    margin-bottom: 64px;
    padding-top: 210px;
  }

  .p-top__case::before {
    bottom: calc(100% - 120px);
    left: 0;
    right: 0;
    width: 315px;
    height: 197px;
    margin: auto;
    background-image: url("/information/dx/img/top/sp_top_bg06.png");
  }

  .p-top__case::after {
    left: 0;
    bottom: -24px;
    width: 255px;
    height: 178px;
    background-image: url("/information/dx/img/top/sp_top_bg07.png");
  }

  .p-top__case .title-en_top {
    top: 130px;
    right: -10px;
  }
}

.p-top__case .container {
  position: relative;
}

.p-top__case .scroll_wrap {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  padding-left: 30px;
  padding-right: 30px;
  overflow-x: auto;
}

@supports (scrollbar-width: auto) {
  .p-top__case .scroll_wrap {
    scrollbar-width: none;
  }
}

@supports selector(::-webkit-scrollbar) {
  .p-top__case .scroll_wrap::-webkit-scrollbar {
    display: none;
  }
}

.p-top__case .scroll_bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(68, 42, 24, 0.1);
}

.p-top__case .scroll_bar .active {
  position: relative;
  display: block;
  width: 75%;
  height: 100%;
  background: var(--bg_green01);
}

@media (min-width: 768px) {
  .p-top__case .scroll_wrap {
    padding-bottom: 59px;
  }

  .p-top__case .pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 49px;
    position: absolute;
    right: 0;
    top: 53px;
  }

  .p-top__case .pager li {
    position: relative;
  }

  .p-top__case .pager li:first-child::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background: var(--color_brown04);
  }

  .p-top__case .pager li a {
    display: block;
    width: 44px;
    height: 0;
    padding-top: 44px;
    overflow: hidden;
    background: no-repeat center;
    text-decoration: none;
    -webkit-transition: none;
    transition: none;
  }

  .p-top__case .pager li a.prev {
    background-image: url("/information/dx/img/top/case_arrow_prev.svg");
  }

  .p-top__case .pager li a.prev:hover {
    background: var(--bg_green01);
    -webkit-mask-image: url("/information/dx/img/top/case_arrow_prev.svg");
    mask-image: url("/information/dx/img/top/case_arrow_prev.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }

  .p-top__case .pager li a.prev.disabled {
    background: #eee5de;
    -webkit-mask-image: url("/information/dx/img/top/case_arrow_prev.svg");
    mask-image: url("/information/dx/img/top/case_arrow_prev.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }

  .p-top__case .pager li a.next {
    background-image: url("/information/dx/img/top/case_arrow_next.svg");
  }

  .p-top__case .pager li a.next:hover {
    background: var(--bg_green01);
    -webkit-mask-image: url("/information/dx/img/top/case_arrow_next.svg");
    mask-image: url("/information/dx/img/top/case_arrow_next.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }

  .p-top__case .pager li a.next.disabled {
    background: #eee5de;
    -webkit-mask-image: url("/information/dx/img/top/case_arrow_next.svg");
    mask-image: url("/information/dx/img/top/case_arrow_next.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }

  .p-top__case .case_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1616px;
    gap: 48px;
  }
}

@media (min-width: 768px) and (min-width: 1260px) {
  .p-top__case .scroll_wrap {
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: calc((100vw - 1200px) / 2);
  }
}

@media (max-width: 767px) {
  .p-top__case .scroll_wrap {
    padding-bottom: 27px;
  }

  .p-top__case .pager {
    display: none;
  }

  .p-top__case .case_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1220px;
    gap: 20px;
  }

  .p-top__case .case_bnr a {
    width: 290px;
    height: 310px;
  }
}

.p-top__action {
  position: relative;
}

.p-top__action::before,
.p-top__action::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: no-repeat center/contain;
}

@media (min-width: 768px) {
  .p-top__action {
    padding-top: 178px;
    padding-bottom: 76px;
  }

  .p-top__action::before {
    top: 115px;
    right: calc(50% - 691px);
    width: 296px;
    height: 191px;
    background-image: url("/information/dx/img/top/top_bg08.png");
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__action::before {
    right: 29px;
  }
}

@media (min-width: 768px) {
  .p-top__action::after {
    top: calc(100% - 188px);
    left: calc(50% - 83px);
    width: 351px;
    height: 227px;
    background-image: url("/information/dx/img/top/top_bg09.png");
  }

  .p-top__action .title-en_top {
    top: 0;
    right: calc(50% - 765px);
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__action .title-en_top {
    right: -2.57%;
  }
}

@media (min-width: 768px) {
  .p-top__action .action_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: min(4%, 48px);
  }

  .p-top__action .action_bnr li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-top__action .action_bnr a .caption {
    font-size: min(1.833vw, 2.2rem);
  }
}

@media (max-width: 767px) {
  .p-top__action {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  .p-top__action::before {
    top: 60px;
    right: 10px;
    width: 127px;
    height: 82px;
    background-image: url("/information/dx/img/top/sp_top_bg08.png");
  }

  .p-top__action::after {
    bottom: 259px;
    right: 6px;
    width: 198px;
    height: 127px;
    background-image: url("/information/dx/img/top/sp_top_bg09.png");
  }

  .p-top__action .title-en_top {
    top: 0;
    right: -10px;
  }
}

.p-top__kpi {
  position: relative;
}

.p-top__kpi::before,
.p-top__kpi::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: no-repeat center/contain;
}

.p-top__kpi::after {
  z-index: 1;
}

.p-top__kpi .container {
  position: relative;
  z-index: 2;
}

.p-top__kpi .kpi_table {
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.p-top__kpi .kpi_table th,
.p-top__kpi .kpi_table td {
  border: 0;
  vertical-align: middle;
  text-align: center;
}

.p-top__kpi .kpi_table thead th {
  position: relative;
  width: 20%;
  color: var(--color_white00);
  font-weight: bold;
  line-height: 1.5;
}

.p-top__kpi .kpi_table thead th:not(:last-child) {
  border-right: 1px solid #408474;
}

.p-top__kpi .kpi_table thead th:nth-child(1) {
  background: var(--bg_green01);
}

.p-top__kpi .kpi_table thead th:nth-child(2) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.09)), to(rgba(0, 0, 0, 0.09))),
    var(--bg_green01);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.09), rgba(0, 0, 0, 0.09)), var(--bg_green01);
}

.p-top__kpi .kpi_table thead th:nth-child(3) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.18)), to(rgba(0, 0, 0, 0.18))),
    var(--bg_green01);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), var(--bg_green01);
}

.p-top__kpi .kpi_table thead th:nth-child(4) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.27)), to(rgba(0, 0, 0, 0.27))),
    var(--bg_green01);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.27), rgba(0, 0, 0, 0.27)), var(--bg_green01);
}

.p-top__kpi .kpi_table thead th:nth-child(5) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.36)), to(rgba(0, 0, 0, 0.36))),
    var(--bg_green01);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), var(--bg_green01);
}

.p-top__kpi .kpi_table tbody td {
  background: var(--color_white00);
  color: #442a18;
  font-weight: 600;
  line-height: 1.4;
}

.p-top__kpi .kpi_table tbody td:not(:last-child) {
  border-right: 1px solid #d9e4e2;
}

.p-top__kpi .kpi_table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #d9e4e2;
}

.p-top__kpi .kpi_table .sup::after {
  content: "※";
  font-size: 60%;
  vertical-align: super;
}

.p-top__kpi .kpi_table .note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  text-align: left;
  line-height: 1.3;
}

.p-top__kpi .kpi_table .note::before {
  content: "※";
}

@media (min-width: 768px) {
  .p-top__kpi {
    padding-top: 206px;
  }

  .p-top__kpi::before {
    top: -92px;
    left: calc(50% - 882px);
    width: 429px;
    height: 261px;
    background-image: url("/information/dx/img/top/top_bg10.png");
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__kpi::before {
    left: -162px;
  }
}

@media (min-width: 768px) {
  .p-top__kpi::after {
    bottom: -134px;
    right: calc(50% - 870px);
    width: 570px;
    height: 353px;
    background-image: url("/information/dx/img/top/top_bg07.png");
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__kpi::after {
    right: -150px;
  }
}

@media (min-width: 768px) {
  .p-top__kpi .title-en_top {
    top: 0;
    right: calc(50% - 700px);
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__kpi .title-en_top {
    right: 0;
  }
}

@media (min-width: 768px) {
  .p-top__kpi .kpi_table {
    width: 1200px;
  }

  .p-top__kpi .kpi_table thead th {
    height: 72px;
    font-size: 1.6rem;
  }

  .p-top__kpi .kpi_table tbody td {
    height: 106px;
    padding: 32px 12px;
    font-size: 1.4rem;
  }

  .p-top__kpi .kpi_table .note {
    margin-top: 8px;
    font-size: 1.1rem;
  }

  .p-top__kpi .js-scrollable.is-scrollable {
    padding-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .p-top__kpi {
    padding-top: 80px;
  }

  .p-top__kpi::before {
    top: -131px;
    left: 0;
    width: 161px;
    height: 157px;
    background-image: url("/information/dx/img/top/sp_top_bg10.png");
  }

  .p-top__kpi::after {
    bottom: -32px;
    right: 0;
    width: 235px;
    height: 197px;
    background-image: url("/information/dx/img/top/sp_top_bg11.png");
  }

  .p-top__kpi .title-en_top {
    top: 0;
    right: 0;
  }

  .p-top__kpi .kpi_table {
    width: 825px;
  }

  .p-top__kpi .kpi_table thead th {
    height: 48px;
    font-size: 1.1rem;
  }

  .p-top__kpi .kpi_table tbody td {
    height: 56px;
    padding: 8px;
    font-size: 1rem;
  }

  .p-top__kpi .kpi_table .note {
    margin-top: 6px;
    font-size: 0.8rem;
  }
}

/* Case */
@media (min-width: 768px) {
  .sec_case_lead {
    margin-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .sec_case_lead {
    margin-bottom: 64px;
  }
}

.sec_case_lead .note {
  font-size: 1.3rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .sec_case_lead .note {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

.sec_case {
  position: relative;
}

.sec_case .container {
  position: relative;
  max-width: 1072px;
}

.sec_case .container::before,
.sec_case .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
}

.sec_case .container::before {
  width: 100%;
  background: #ece6bd;
}

.sec_case .container::after {
  width: 32px;
  background: var(--color_green01);
}

@media (min-width: 768px) {
  .sec_case {
    margin-bottom: 120px;
  }

  .sec_case .container {
    padding-top: 65px;
  }

  .sec_case .note {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .sec_case .note dt {
    margin-bottom: 4px;
  }

  .sec_case .row_flex.case02_s02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 48px;
  }

  .sec_case .row_flex.case02_s02 > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (max-width: 767px) {
  .sec_case {
    margin-bottom: 56px;
  }

  .sec_case .container {
    padding-top: 33px;
  }

  .sec_case .cp p {
    line-height: 1.8;
  }

  .sec_case .note {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .sec_case .note dt {
    margin-bottom: 4px;
  }
}

@media (min-width: 768px) {
  .sec_common_relation .case_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: min(4%, 48px);
  }

  .sec_common_relation .case_bnr > li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
  }
}

@media (max-width: 767px) {
  .sec_common_relation .case_bnr > li:not(:first-child) {
    margin-top: 20px;
  }
}

/* Action */
@media (min-width: 768px) {
  .sec_action + .sec_action {
    margin-top: 120px;
  }
}

@media (max-width: 767px) {
  .sec_action + .sec_action {
    margin-top: 64px;
  }
}

@media (min-width: 768px) {
  .sec_common_relation .action_bnr {
    gap: 48px;
    max-width: 784px;
  }
}
