@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1240px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.3em;
}

sup {
  top: -0.3em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #333333;
  line-height: 200%;
  position: relative;
  min-width: 1240px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    min-width: initial;
    line-height: 180%;
  }
}

a {
  text-decoration: underline;
  color: #008E66;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  padding: 145px 0 0;
}
@media screen and (max-width: 1240px) {
  main {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding: 16vw 0 0;
  }
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
.l-section.last {
  padding: 0 0 250px;
  background: url(../../src/img/main_bottom.png) bottom center no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.last {
    padding: 0 0 21.3333333333vw;
  }
}
.l-section.last.bg_color {
  background-image: url(../../src/img/main_bottom.png), url(../../src/img/bg.png);
  background-position: bottom center, center center;
  background-repeat: no-repeat, repeat;
  background-size: contain, auto;
}
.l-section .l-inner {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 150px 20px;
}
@media screen and (max-width: 767px) {
  .l-section .l-inner {
    padding: 16vw 5.3333333333vw;
  }
}
.l-section .l-inner_s {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .l-section .l-inner_s {
    padding: 8vw 5.3333333333vw;
  }
}
.l-section .l-inner_wide {
  width: calc(100% - 50px);
  max-width: 1720px;
  margin: 0 auto;
  padding: 150px 20px;
}
@media screen and (max-width: 767px) {
  .l-section .l-inner_wide {
    width: calc(100% - 10.6666666667vw);
    padding: 16vw 0;
  }
}

.bg_color {
  background: url(../../src/img/bg.png) center center repeat;
  background-size: auto;
}

.bg_color2 {
  background-color: #f7faf8;
}

@media screen and (max-width: 767px) {
  .scroll {
    overflow-x: scroll;
  }
  .scroll_img600 {
    max-width: 600px !important;
  }
}
/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 768px) {
  .fv.sa {
    opacity: 1;
    transform: none;
  }
}
/* 表示方向 */
.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 50px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

/* 時間ずらし */
.sa.time01 {
  transition-delay: 0s;
}

.sa.time02 {
  transition-delay: 0.3s;
}

.sa.time03 {
  transition-delay: 0.6s;
}

.sa.time04 {
  transition-delay: 0.9s;
}

.fade {
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes SlideIn {
  0% {
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes SlideIn2 {
  0% {
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-btn_foot_contact {
  width: 280px;
  height: 60px;
  margin: 30px auto 0;
  background: #001524;
  border: 1px solid #CCCCCC;
  border-radius: 100px;
  padding: 0 36px 0 0;
  font-size: 20px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn_foot_contact {
    width: 89.3333333333vw;
    height: 14.4vw;
    margin: 5.3333333333vw auto 10.6666666667vw;
    line-height: 14.4vw;
    padding: 0 8vw 0 0;
    font-size: 4.8vw;
  }
}
.c-btn_foot_contact span {
  position: relative;
}
.c-btn_foot_contact span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/mail_white.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-btn_foot_contact span::before {
    right: -10.1333333333vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.c-btn_foot_contact:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  background-color: #2c2f36;
  opacity: 0.7;
}

.c-list__dot li {
  padding-left: 18px;
  position: relative;
  line-height: 160%;
  margin-bottom: 10px;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-list__dot li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 3.4666666667vw;
    padding-left: 5.3333333333vw;
  }
}
.c-list__dot li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 2px;
}
@media screen and (max-width: 767px) {
  .c-list__dot li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.6666666667vw;
    left: 1.3333333333vw;
  }
}
.c-list__dot li:last-child {
  margin-bottom: 0;
}
.c-list__dot li .c-list__mark2 {
  margin: 10px 0 20px;
}
@media screen and (max-width: 767px) {
  .c-list__dot li .c-list__mark2 {
    margin: 1.3333333333vw 0 4vw;
  }
}
.c-list__dot li .c-list__mark2 li {
  padding-left: 30px;
  position: relative;
  line-height: 180%;
  margin-bottom: 5px;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-list__dot li .c-list__mark2 li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 3.4666666667vw;
    padding-left: 5.3333333333vw;
  }
}
.c-list__dot li .c-list__mark2 li::before {
  display: none !important;
}
.c-list__dot li .c-list__mark2 li span {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -12px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-list__dot li .c-list__mark2 li span {
    font-size: 16px;
    font-size: 0.8888888889rem;
    top: 0;
    left: -3.2vw;
  }
}
.c-list__no {
  counter-reset: cnt;
}
.c-list__no li {
  padding-left: 30px;
  position: relative;
  line-height: 160%;
  font-size: 18px;
  margin-bottom: 10px;
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-list__no li {
    font-size: 4vw;
    padding-left: 6.6666666667vw;
    margin-bottom: 2.1333333333vw;
    line-height: 160%;
  }
}
.c-list__no li:last-child {
  margin-bottom: 0;
}
.c-list__no li::before {
  position: absolute;
  content: counter(cnt) ".";
  display: inline-block;
  font-family: "Poppins", serif;
  font-weight: 500;
  color: #333333;
  font-size: 20px;
  left: 2px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-list__no li::before {
    font-size: 4vw;
    left: 0.8vw;
    top: 0.2666666667vw;
  }
}
.c-list__mark li {
  padding-left: 35px;
  position: relative;
  line-height: 180%;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-list__mark li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 3.4666666667vw;
    padding-left: 6.6666666667vw;
  }
}
.c-list__mark li .ttl {
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-list__mark li .ttl {
    margin-bottom: 1.3333333333vw;
  }
}
.c-list__mark li span {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-list__mark li span {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.c-list__mark li:last-child {
  margin-bottom: 0;
}

.c-nav__sub {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  visibility: visible;
  height: auto;
}
.c-nav__sub--btn {
  font-size: 16px;
  font-size: 0.8888888889rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: #ffffff;
  border: 1px solid #AAAAAA;
  color: #333333;
  border-radius: 100px;
  padding: 8px 46px 8px 22px;
  background-position: right 0.5rem center;
  transition: 0.3s;
  text-decoration: none;
}
.c-nav__sub--btn span {
  position: relative;
}
.c-nav__sub--btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/blank.svg) center center no-repeat;
  background-size: cover;
}
.c-nav__sub--btn span.mail {
  position: relative;
}
.c-nav__sub--btn span.mail::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/mail_black.svg) center center no-repeat;
  background-size: cover;
}
.c-nav__sub--btn:hover {
  background-color: #008E66;
  border: 1px solid #008E66;
  color: #ffffff;
}
.c-nav__sub--btn:hover span:after {
  background: url(../../src/img/icon/blank_white.svg) center center no-repeat;
  background-size: cover;
}
.c-nav__sub--btn:hover span.mail:after {
  background: url(../../src/img/icon/mail_white.svg) center center no-repeat;
  background-size: cover;
}
.c-nav__main {
  display: flex;
  justify-content: flex-end;
}
.c-nav__main li {
  font-size: 17px;
  font-size: 0.9444444444rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.c-nav__main li a {
  transition: 0.3s;
  padding: 0 20px;
  border-right: 1px solid #AAAAAA;
  color: #333333;
  text-decoration: none;
}
.c-nav__main li a:hover {
  color: #008E66;
}
.c-nav__main li:last-child a {
  border-right: none;
  padding: 0 0 0 20px;
}
.c-nav__main li.current a {
  color: #008E66;
}
.c-nav_sp a {
  font-family: sans-serif;
  text-decoration: none;
}
.c-nav_sp .hamburger {
  display: block;
  height: 60px;
  width: 60px;
  margin-left: auto;
  position: relative;
  z-index: 10;
  border: none;
  background-color: #ffffff;
}
.c-nav_sp .hamburger.-active .hamburger__line {
  background-color: transparent;
}
.c-nav_sp .hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.c-nav_sp .hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.c-nav_sp .hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  background-color: #4D5C66;
  transition: 0.3s;
}
.c-nav_sp .hamburger__line:before,
.c-nav_sp .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #4D5C66;
  transition: inherit;
}
.c-nav_sp .hamburger__line:before {
  top: -9px;
}
.c-nav_sp .hamburger__line:after {
  top: 9px;
}
.c-nav_sp .header {
  width: 100%;
}
.c-nav_sp .header__nav-area {
  position: fixed;
  top: 60px;
  left: -100%;
  z-index: 9;
  height: 100dvh;
  width: 100%;
  visibility: hidden;
  padding-top: 0;
  background-color: #ffffff;
  transition: 0.3s;
}
.c-nav_sp .header__nav-area.-active {
  left: 0;
  visibility: visible;
  height: 100vh;
  overflow: auto;
}
.c-nav_sp .global-navigation {
  padding: 8vw 5.3333333333vw 48vw;
}
.c-nav_sp .global-navigation__list > li {
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}
.c-nav_sp .global-navigation__list > li.sub--btn {
  border-bottom: none;
}
.c-nav_sp .global-navigation__list > li.sub--btn.top {
  margin-top: 40px;
  padding-bottom: 0;
}
.c-nav_sp .global-navigation__list > li.sub--btn .global-navigation__link {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: #ffffff;
  border: 1px solid #AAAAAA;
  color: #333333;
  border-radius: 100px;
  padding: 0 20px 0 0;
  background-position: right 0.5rem center;
  transition: 0.3s;
  text-decoration: none;
  width: 300px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.c-nav_sp .global-navigation__list > li.sub--btn .global-navigation__link span {
  position: relative;
}
.c-nav_sp .global-navigation__list > li.sub--btn .global-navigation__link span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/blank.svg) center center no-repeat;
  background-size: cover;
}
.c-nav_sp .global-navigation__list > li.sub--btn .global-navigation__link::after {
  display: none;
}
.c-nav_sp .global-navigation__list > li + li {
  margin-top: 20px;
}
.c-nav_sp .global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333333;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 16px;
  position: relative;
}
.c-nav_sp .global-navigation__link.-active {
  color: #008E66;
}
.c-nav_sp .global-navigation__link::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #008E66;
  border-right: 2px solid #008E66;
}
.c-nav_sp .global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
}
.c-nav_sp .global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 7px;
  width: 2px;
  background-color: #008E66;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.c-nav_sp .global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  background-color: #008E66;
  transform: translateY(-50%);
}
.c-nav_sp .global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.c-nav_sp .accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.3s;
}
.c-nav_sp .accordion.-active {
  height: auto;
  padding-top: 22px;
  visibility: visible;
}
.c-nav_sp .accordion__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.c-nav_sp .accordion__list li {
  font-size: 15px;
  text-align: left;
  margin-top: 0;
  line-height: 150%;
}
.c-nav_sp .accordion__list li + li.sub {
  padding-left: 30px;
}
.c-nav_sp .accordion__list li + li.sub a {
  position: relative;
}
.c-nav_sp .accordion__list li + li.sub a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 50%;
  transition: 0.3s all;
  background-color: #888888;
  transform: none;
}
.c-nav_sp .accordion__link {
  color: #333333;
}

.child-nav .contentsWrap {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}
.child-nav .contentsWrap_sav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.child-nav .contentsWrap_sav .link2 {
  max-width: 360px;
}
.child-nav .contentsWrap_sav .link2 a {
  margin: 0;
  height: auto;
  color: #333333 !important;
  font-size: 15px;
  position: relative;
}
.child-nav .contentsWrap_sav .link2 a:hover {
  text-decoration: none;
  color: #008E66 !important;
}
.child-nav .contentsWrap_sav .link2 a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  width: 20px;
  height: 20px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}

.c-table_top {
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-table_top {
    width: 800px;
  }
}
.c-table_top th {
  padding: 10px 20px;
  border: 1px solid #CCCCCC;
  text-align: left;
  font-weight: 700;
  background-color: #F0F5F2;
}
@media screen and (max-width: 767px) {
  .c-table_top th {
    padding: 2.6666666667vw 5.3333333333vw;
  }
}
.c-table_top td {
  padding: 10px 20px;
  border: 1px solid #CCCCCC;
  background-color: #ffffff;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-table_top td {
    padding: 2.6666666667vw 5.3333333333vw;
  }
}
.c-table_top td.last {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .c-table_top td.last {
    width: 60vw;
    padding: 2.6666666667vw;
  }
}
.c-table_health {
  border-collapse: collapse;
  width: 100%;
  font-weight: 500;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
.c-table_health thead th {
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  padding: 8px 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-table_health thead th {
    padding: 1.3333333333vw 0;
    line-height: 120%;
  }
}
.c-table_health tbody th {
  text-align: left;
  border-bottom: 1px solid #CCCCCC;
  padding: 8px 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-table_health tbody th {
    padding: 2.6666666667vw 0;
    line-height: 120%;
  }
}
.c-table_health tbody td {
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  padding: 8px 25px;
}
@media screen and (max-width: 767px) {
  .c-table_health tbody td {
    padding: 2.6666666667vw 0;
    line-height: 120%;
  }
}
.c-table_enviro {
  border-collapse: collapse;
  width: 100%;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  border-top: 1px solid #CCCCCC;
}
.c-table_enviro tbody th {
  text-align: left;
  border-bottom: 1px solid #CCCCCC;
  padding: 8px 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-table_enviro tbody th {
    width: 100%;
    display: block;
    padding: 3.2vw 0 0 0;
    border-bottom: none;
    font-weight: 600;
  }
}
.c-table_enviro tbody td {
  text-align: left;
  border-bottom: 1px solid #CCCCCC;
  padding: 8px 25px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-table_enviro tbody td {
    width: 100%;
    display: block;
    padding: 0.5333333333vw 0 3.2vw;
  }
}

.c-title-h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-title-h2 {
    font-size: 30px;
    font-size: 1.6666666667rem;
  }
}
.c-title-h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .c-title-h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-title-h3 {
    font-size: 22px;
    font-size: 1.2222222222rem;
    margin-bottom: 2.6666666667vw;
  }
}
.c-title_lowerh1 {
  font-size: 46px;
  font-weight: 700;
  color: #333333;
  line-height: 120%;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .c-title_lowerh1 {
    font-size: 30px;
    font-size: 1.6666666667rem;
    margin-bottom: 5.3333333333vw;
    line-height: 140%;
  }
}
.c-title_lowerh1 .en {
  font-size: 20px;
  color: #AAAAAA;
  font-weight: 600;
  font-family: "Poppins", serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-title_lowerh1 .en {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.c-title_lowerh3 {
  font-size: 46px;
  font-weight: 700;
  color: #333333;
  line-height: 120%;
  margin-bottom: 60px;
  padding-bottom: 40px;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .c-title_lowerh3 {
    font-size: 26px;
    font-size: 1.4444444444rem;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 4vw;
  }
}
.c-title_lowerh3 .en {
  font-size: 16px;
  color: #AAAAAA;
  font-weight: 600;
  font-family: "Poppins", serif;
  border-left: 1px solid #CCCCCC;
  padding-left: 25px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .c-title_lowerh3 .en {
    display: block;
    font-size: 14px;
    font-size: 0.7777777778rem;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    margin-top: 1.0666666667vw;
  }
}
.c-title_lowerh4 {
  font-size: 26px;
  line-height: 160%;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-title_lowerh4 {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-bottom: 2.6666666667vw;
  }
}
.c-title_lowerh5 {
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 10px;
  font-weight: 700;
  color: #008E66;
}
@media screen and (max-width: 767px) {
  .c-title_lowerh5 {
    font-size: 18px;
    font-size: 1rem;
    margin-bottom: 1.8666666667vw;
  }
}

.p-header {
  width: 100%;
  min-width: 1240px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (max-width: 1240px) {
  .p-header {
    position: sticky;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    min-width: 100%;
    position: fixed;
  }
}
.p-header_Box {
  width: 100%;
  height: 145px;
  position: relative;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #CCCCCC;
  padding: 0px 50px;
}
@media screen and (max-width: 767px) {
  .p-header_Box {
    height: 60px;
    padding: 0;
    border-bottom: none;
  }
}
.p-header__logo {
  width: 400px;
  height: 32px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 262px;
    height: auto;
    margin: 0 0 0 5.3333333333vw;
  }
}
.p-header__logo:hover {
  opacity: 0.7;
}
.p-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-header__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(100% - 400px);
}

.p-footer {
  background-color: #001524;
  color: #ffffff;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 13.3333333333vw;
  }
}
.p-footer a {
  color: #ffffff;
  text-decoration: none;
}
.p-footer a:hover {
  color: #008E66;
  text-decoration: none;
}
.p-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    max-width: calc(100% - 10.6666666667vw);
  }
}
.p-footer_logo {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #4D5C66;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .p-footer_logo {
    border-bottom: none;
    margin-bottom: 2.6666666667vw;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_logo img {
    width: 40vw;
  }
}
.p-footer_logo__title {
  font-size: 20px;
  font-size: 1.1111111111rem;
  margin-top: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-footer_logo__title {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-top: 5.3333333333vw;
    margin-bottom: 0px;
  }
}
.p-footer-common {
  display: grid;
  grid-template-columns: 1fr 640px;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-footer-common {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-footer-info__inner {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-footer-info__inner {
    font-size: 16px;
    font-size: 0.8888888889rem;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
  }
}
.p-footer-info__inner p {
  font-size: 18px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .p-footer-info__inner p {
    font-size: 16px;
    font-size: 0.8888888889rem;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
  }
}
.p-footer-info__inner p span {
  margin-left: 1rem;
}
.p-footer-info__heading {
  position: relative;
  padding-left: 1rem;
  font-weight: 700 !important;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-footer-info__heading {
    margin-top: 4vw;
    font-size: 14px;
    font-size: 0.7777777778rem;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
  }
}
.p-footer-info__heading.mt10 {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-footer-info__heading.mt10 {
    margin-top: 4vw;
  }
}
.p-footer-info__heading span {
  font-weight: 400;
}
.p-footer-info__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ffffff;
}
.p-footer-info__link {
  width: fit-content;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  transition: all 0.3s;
  position: relative;
  padding-right: 20px;
}
.p-footer-info__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 13px;
  height: 28px;
  background: url(../../src/img/icon/union.svg) center center no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
.p-footer-info__link:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 13px;
  height: 28px;
  background: url(../../src/img/icon/union--green.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer-nav {
    width: 100%;
  }
}
.p-footer-nav table {
  width: 100%;
}
.p-footer-nav tr {
  border-bottom: 1px solid #4D5C66;
}
.p-footer-nav tr:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-footer-nav tr {
    font-size: 14px;
    font-size: 0.7777777778rem;
    padding: 5.3333333333vw 0;
    border-bottom: none;
    border-top: 1px solid #4D5C66;
  }
}
.p-footer-nav tr th {
  padding: 20px 0;
  color: #ffffff;
  font-size: 18px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .p-footer-nav tr th {
    padding: 5.3333333333vw 0;
    font-size: 18px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }
}
.p-footer-nav tr th a {
  transition: 0.3s;
}
.p-footer-nav tr th a:hover {
  color: #008E66;
}
.p-footer-nav tr .pb0 {
  padding-bottom: 0px !important;
}
@media screen and (max-width: 767px) {
  .p-footer-nav tr .pb0 {
    margin-bottom: 10px !important;
  }
}
.p-footer-nav--fwl {
  display: flex;
  justify-content: flex-start;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .p-footer-nav--fwl {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-nav--fwl th {
    padding: 0 !important;
  }
}
.p-footer-nav__company {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 24px !important;
}
.p-footer-nav__company th {
  width: 100%;
  padding-bottom: 15px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer-nav__company th {
    padding: 0 !important;
    margin-bottom: 20px;
  }
}
.p-footer-nav__company td {
  margin: 0 40px 20px 0;
  color: #ffffff;
  font-size: 16px;
  font-size: 0.8888888889rem;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  opacity: 0.6;
  transition: 0.3s;
}
.p-footer-nav__company td:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-footer-nav__company td {
    width: 100%;
    margin: 0 0 2.1333333333vw 0;
    font-size: 14px;
    font-size: 0.7777777778rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
  .p-footer-nav__company td:last-of-type {
    margin: 0;
  }
}
.p-footer-nav__company td.mr0 {
  margin-right: 0;
}
.p-footer-btinfo {
  text-align: center;
  position: relative;
  margin-top: 20px;
  padding: 20px 0 60px;
  border-top: 1px solid #4D5C66;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer-btinfo {
    text-align: left;
    margin-top: 8vw;
    padding-bottom: 8vw;
    justify-content: center;
  }
}
.p-footer-btinfo__privacy {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer-btinfo__privacy {
    justify-content: center;
  }
}
.p-footer-btinfo__privacy a {
  font-size: 12px;
  font-size: 0.6666666667rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
  border-left: 1px solid #4D5C66;
  padding: 0 20px;
}
.p-footer-btinfo__privacy a:last-child {
  border-right: 1px solid #4D5C66;
}
.p-footer-btinfo__copyright {
  font-size: 12px;
  font-size: 0.6666666667rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-footer-btinfo__copyright {
    margin-top: 5.3333333333vw;
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 50px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  z-index: 20;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
    padding-bottom: 6vw;
  }
}
.pagetop.on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 12vw;
    height: 12vw;
  }
}
.pagetop a:hover {
  opacity: 0.7;
}

.p-top_main {
  width: 100%;
  position: relative;
}
.p-top_main img {
  width: 100%;
}
.p-top_main_catch {
  text-align: left;
  position: absolute;
  left: 5%;
  top: 50%;
  font-size: max(3.2vw, 45px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_main_catch {
    width: 100%;
    font-size: 30px;
    font-size: 1.6666666667rem;
    text-align: center;
    left: 50%;
    top: 16vw;
    transform: translate(-50%, 0);
  }
}
.p-top_main_catch .main_catch span {
  display: block;
}
.p-top_main_catch .txt01 {
  margin: -15% 0 10%;
}
@media screen and (max-width: 767px) {
  .p-top_main_catch .txt01 {
    margin: 0 0 4vw 0;
    padding-left: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_catch .txt02 {
    padding-left: 6.6666666667vw;
  }
}
.p-top_titlewrap {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap {
    margin-bottom: 6.6666666667vw;
  }
}
.p-top_titlewrap .en {
  font-size: 20px;
  color: #AAAAAA;
  font-weight: 600;
  font-family: "Poppins", serif;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap .en {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 0.5333333333vw;
  }
}
.p-top_sustain_wrap {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 1500px) {
  .p-top_sustain_wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_sustain_wrap {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-top_sustain_wrap_box {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
}
.p-top_sustain_wrap_box dt {
  width: 100%;
}
.p-top_sustain_wrap_box dt a {
  width: 100%;
  height: auto;
  padding: 17px 0;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  line-height: 130%;
  display: inline-block;
}
@media screen and (max-width: 1500px) {
  .p-top_sustain_wrap_box dt a {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_sustain_wrap_box dt a {
    font-size: 22px;
    font-size: 1.2222222222rem;
    padding: 0 0 2.6666666667vw;
  }
}
.p-top_sustain_wrap_box dt a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../../src/img/icon/arrow_right.svg) center center no-repeat;
  background-size: cover;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.3s all;
}
@media screen and (max-width: 1500px) {
  .p-top_sustain_wrap_box dt a::after {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_sustain_wrap_box dt a::after {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    top: 1.3333333333vw;
    right: 0;
    transform: translateY(0);
  }
}
.p-top_sustain_wrap_box dt a:hover {
  color: #008E66;
}
.p-top_sustain_wrap_box dt a:hover::after {
  right: 5px;
}
.p-top_sustain_wrap_box dd {
  border-top: 1px solid #CCCCCC;
}
.p-top_sustain_wrap_box dd .txt {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-top_sustain_wrap_box dd .txt {
    padding: 2.6666666667vw 0 4vw;
  }
}
.p-top_esg_wrap {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
@media screen and (max-width: 1500px) {
  .p-top_esg_wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-top_esg_wrap_ditail {
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
}
.p-top_esg_wrap_ditail_inner {
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 1500px) {
  .p-top_esg_wrap_ditail_inner {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap_ditail_inner {
    padding: 5.3333333333vw;
  }
}
.p-top_esg_wrap_box {
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  margin-bottom: 15px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap_box {
    margin-bottom: 4vw;
  }
}
.p-top_esg_wrap_box:last-of-type {
  margin-bottom: 0;
}
.p-top_esg_wrap_box dt a {
  width: 100%;
  height: auto;
  padding: 17px 20px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  line-height: 130%;
  display: inline-block;
}
@media screen and (max-width: 1500px) {
  .p-top_esg_wrap_box dt a {
    font-size: 18px;
    padding: 17px 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap_box dt a {
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-top_esg_wrap_box dt a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../../src/img/icon/arrow_right.svg) center center no-repeat;
  background-size: cover;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: 0.3s all;
}
@media screen and (max-width: 1500px) {
  .p-top_esg_wrap_box dt a::after {
    width: 25px;
    height: 25px;
    right: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap_box dt a::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    right: 4vw;
  }
}
.p-top_esg_wrap_box dt a:hover {
  background-color: #f7faf8;
  color: #008E66;
}
.p-top_esg_wrap_box dt a:hover::after {
  right: 20px;
}
@media screen and (max-width: 1500px) {
  .p-top_esg_wrap_box dt a:hover::after {
    right: 13px;
  }
}
.p-top_esg_wrap_box dd {
  border-top: 1px solid #CCCCCC;
}
.p-top_esg_wrap_box_list {
  padding: 20px 25px;
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap_box_list {
    padding: 4vw;
  }
}
.p-top_esg_wrap_box_list li {
  padding-left: 18px;
  position: relative;
  line-height: 160%;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap_box_list li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding-left: 4vw;
    margin-bottom: 2.1333333333vw;
  }
}
.p-top_esg_wrap_box_list li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 2px;
}
@media screen and (max-width: 767px) {
  .p-top_esg_wrap_box_list li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.4vw;
    left: 0.5333333333vw;
  }
}
.p-top_esg_wrap_box_list li:last-child {
  margin-bottom: 0;
}
.p-top_esg_wrap_box_list li a {
  color: #333333;
  text-decoration: none;
}
.p-top_esg_wrap_box_list li a:hover {
  color: #008E66;
  text-decoration: underline;
}
.p-top_sdgsimg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_sdgsimg {
    gap: 2.6666666667vw;
  }
}
.p-top_sdgsimg li {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .p-top_sdgsimg li {
    width: 16vw;
  }
}
.p-top_sdgsimg li img {
  width: 100%;
}
.p-top_sdgstxt {
  width: 100%;
  border: 1px solid #CCCCCC;
  background-color: #ffffff;
  padding: 20px;
  margin-top: -1px;
  border-radius: 0 0 6px 6px;
}
@media screen and (max-width: 767px) {
  .p-top_sdgstxt {
    width: 800px;
    padding: 5.3333333333vw;
  }
}
.p-top_sdgstxt dl:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_sdgstxt dl:first-child {
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_sdgstxt dl dt {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-top_sdgstxt dl dt {
    font-size: 18px;
    font-size: 1rem;
    margin-bottom: 1.0666666667vw;
  }
}
.p-top_sdgstxt dl dd {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-top_sdgstxt dl dd {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.p-lower_mainttl {
  width: 100%;
}
.p-lower_mainttl .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-lower_mainttl .inner {
    max-width: calc(100% - 10.6666666667vw);
    padding: 8vw 0;
  }
}
.p-lower_mainttl_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .p-lower_mainttl_nav.long {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-lower_mainttl_nav.long li:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #AAAAAA;
    top: 0;
    right: 0;
  }
}
.p-lower_mainttl_nav li {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lower_mainttl_nav li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding: 0 4vw;
    margin-top: 2.1333333333vw;
  }
}
.p-lower_mainttl_nav li.current {
  color: #008E66;
}
.p-lower_mainttl_nav li a {
  color: #AAAAAA;
  text-decoration: none;
}
.p-lower_mainttl_nav li a:hover {
  color: #008E66;
  text-decoration: underline;
}
.p-lower_mainttl_nav li::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #AAAAAA;
  top: 0;
  left: 0;
}
.p-lower_mainttl_nav li:last-child::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #AAAAAA;
  top: 0;
  right: 0;
}
.p-lower_mainttl_img {
  width: 100%;
  height: auto;
}
.p-lower_mainttl_img img {
  width: 100%;
}
.p-lower_subnav {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .p-lower_subnav {
    width: calc(100% - 10.6666666667vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-lower_subnav li.child {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-lower_subnav li.child {
    flex: inherit;
  }
}
.p-lower_subnav li.long {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .p-lower_subnav li.long {
    width: auto;
  }
}
.p-lower_subnav li a {
  padding: 25px 20px 25px 0;
  border: 1px solid #CCCCCC;
  border-right: none;
  background-color: #ffffff;
  text-decoration: none;
  color: #333333;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-lower_subnav li a {
    border: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    margin-top: -1px;
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding: 2.6666666667vw;
    text-align: left;
    position: relative;
  }
  .p-lower_subnav li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 4vw;
    height: 4vw;
    background: url(../../src/img/icon/arrow_down.svg) center center no-repeat;
    background-size: cover;
    top: 50%;
    right: 3.2vw;
    transform: translateY(-50%);
  }
}
.p-lower_subnav li a:hover {
  background-color: #f7faf8;
}
.p-lower_subnav li a span {
  position: relative;
}
.p-lower_subnav li a span::after {
  content: "";
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  background: url(../../src/img/icon/arrow_down.svg) center center no-repeat;
  background-size: cover;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-lower_subnav li a span::after {
    display: none;
  }
}
.p-lower_subnav li:last-child a {
  border-right: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-lower_subnav_list .btn_detail {
    width: calc(100% - 10.6666666667vw);
    border: 1px solid #CCCCCC;
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding: 2.1333333333vw 2.6666666667vw 2.1333333333vw 3.4666666667vw;
    text-align: left;
    position: relative;
    cursor: pointer;
    margin: 8vw auto 0;
    font-family: "Poppins", serif;
    font-weight: 500;
  }
  .p-lower_subnav_list .btn_detail::before {
    content: "";
    position: absolute;
    width: 4vw;
    top: 5.3333333333vw;
    right: 3.2vw;
    height: 2px;
    background-color: #008E66;
  }
  .p-lower_subnav_list .btn_detail:after {
    content: "";
    position: absolute;
    background-color: #008E66;
    width: 4vw;
    top: 5.3333333333vw;
    right: 3.2vw;
    height: 2px;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .p-lower_subnav_list .btn_detail.active::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  .p-lower_subnav_list .close {
    display: none;
  }
}
.p-lower_img01 {
  width: 100%;
  text-align: center;
}
.p-lower_img01 .img800 {
  max-width: 800px;
}
.p-lower_img01 .img900 {
  max-width: 900px;
}
.p-lower_img01 li.arrow {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-lower_img01 li.arrow {
    margin-bottom: 13.3333333333vw;
  }
}
.p-lower_img01 li.arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -35px;
  display: block;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-right: 25px solid transparent;
  border-top: 25px solid #008E66;
  border-left: 25px solid transparent;
}
@media screen and (max-width: 767px) {
  .p-lower_img01 li.arrow::after {
    bottom: -9.3333333333vw;
    border-right: 6.6666666667vw solid transparent;
    border-top: 6.6666666667vw solid #008E66;
    border-left: 6.6666666667vw solid transparent;
  }
}
.p-lower_img02 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-lower_img02 {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-lower_img02 li p {
  font-size: 16px;
  text-align: left;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-lower_img02 li p {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-top: 1.3333333333vw;
  }
}
.p-lower_img03 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-lower_img03 {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-lower_img03 li p {
  font-size: 16px;
  text-align: left;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-lower_img03 li p {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-top: 1.3333333333vw;
  }
}
.p-lower_img03 li.qr {
  background-color: #f7faf8;
  padding: 20px;
}
.p-lower_img03 li.qr p {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 160%;
}
.p-lower_img03 li.qr img {
  width: 100px;
}
.p-lower_box {
  width: 100%;
  border-radius: 6px;
  background-color: #ffffff;
  border: 2px solid #D8E6DE;
  padding: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-lower_box {
    padding: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-lower_box:last-of-type {
  margin-bottom: 0;
}
.p-lower_colm2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-lower_colm2 {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-lower_colm2 .img {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_colm2 .img {
    margin-top: 0;
  }
}
.p-lower .txt_s {
  font-size: 16px;
  line-height: 160%;
  background-color: #f8f8f8;
  border-radius: 6px;
  padding: 20px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-lower .txt_s {
    font-size: 14px;
    font-size: 0.7777777778rem;
    padding: 5.3333333333vw;
  }
}
.p-lower_sastainttl {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 40px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-lower_sastainttl {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin: 0 0 5.3333333333vw;
  }
}
.p-lower_sastainttl span {
  display: block;
  color: #008E66;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-lower_sastainttl span {
    font-size: 26px;
    font-size: 1.4444444444rem;
  }
}
.p-lower_sdgs {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-lower_sdgs {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-lower_sdgs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_sdgs ul {
    justify-content: flex-start;
    gap: 2.6666666667vw;
  }
}
.p-lower_sdgs ul li {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .p-lower_sdgs ul li {
    width: 21.3333333333vw;
  }
}
.p-lower_STePP {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-lower_STePP {
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
  .p-lower_STePP img {
    width: 53.3333333333vw;
    margin: 0 auto;
  }
}

.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 4vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--15 {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--80 {
    margin-bottom: 8vw !important;
  }
}
.u-mb--100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--100 {
    margin-bottom: 13.3333333333vw !important;
  }
}
.u-mb--120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--120 {
    margin-bottom: 16vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}
.u-mt--60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--60 {
    margin-top: 8vw !important;
  }
}
.u-mt--25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--25 {
    margin-top: 5.3333333333vw !important;
  }
}

.u-ml--10 {
  margin-left: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-ml--10 {
    margin-left: 1.3333333333vw !important;
  }
}

.u-mr--10 {
  margin-right: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mr--10 {
    margin-right: 1.3333333333vw !important;
  }
}

.u-mlr--10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mlr--10 {
    margin-right: 1.3333333333vw !important;
    margin-left: 1.3333333333vw !important;
  }
}

.u-pb--210 {
  padding-bottom: 210px !important;
}
@media screen and (max-width: 767px) {
  .u-pb--210 {
    padding-bottom: 32vw !important;
  }
}
.u-pb--150 {
  padding-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .u-pb--150 {
    padding-bottom: 16vw !important;
  }
}

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

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

.u-fontsize--22 {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .u-fontsize--22 {
    font-size: 18px;
    font-size: 1rem;
  }
}

.u-fontcolor--red {
  color: #e0311d;
}
.u-fontcolor--black {
  color: #333333 !important;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

.u-text-align--center {
  text-align: center !important;
}
.u-text-align--right {
  text-align: right !important;
}
.u-text-align--left {
  text-align: left !important;
}

.u-width--200 {
  width: 200px !important;
}
@media screen and (max-width: 767px) {
  .u-width--200 {
    width: 80px !important;
  }
}
.u-width--200_ttl {
  width: 200px !important;
}
@media screen and (max-width: 767px) {
  .u-width--200_ttl {
    width: 60px !important;
  }
}
.u-width--170 {
  width: 170px !important;
}
@media screen and (max-width: 767px) {
  .u-width--170 {
    width: 60px !important;
  }
}
.u-width--180 {
  width: 180px !important;
}
.u-width--260 {
  width: 260px !important;
}
@media screen and (max-width: 767px) {
  .u-width--260 {
    width: 100px !important;
  }
}

.u-text-color--red {
  color: #e0311d;
}