@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500&family=Noto+Sans+JP:wght@400;500&family=Roboto:wght@400;500&display=swap";
/*! destyle.css v4.0.0 | 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.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* 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;
  font-weight: inherit;
  margin: 0;
}

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

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

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 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.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

/**
 * 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;
}

/**
 * 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. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * 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]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 100;
  src: local(hiraginosans-w0);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 200;
  src: local(hiraginosans-w1);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 300;
  src: local(hiraginosans-w2);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 400;
  src: local(hiraginosans-w3);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 500;
  src: local(hiraginosans-w4);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 600;
  src: local(hiraginosans-w5);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 700;
  src: local(hiraginosans-w6);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 800;
  src: local(hiraginosans-w7);
}
@font-face {
  font-family: "Hiragino Sans Modified";
  font-weight: 900;
  src: local(hiraginosans-w8);
}
html {
  height: 100%;
  line-height: 1.5;
}

body {
  min-height: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
  word-break: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:lang(en) {
  font-family: "Roboto", sans-serif;
}

.text--inlineBlock {
  display: inline-block;
}

.br--xl {
  display: none;
}
@media screen and (min-width: 1025px), print {
  .br--xl {
    display: block;
  }
}

.br--l {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px), print {
  .br--l {
    display: block;
  }
}

.br--m {
  display: none;
}
@media screen and (min-width: 481px) and (max-width: 768px), print {
  .br--m {
    display: block;
  }
}

.br--s {
  display: none;
}
@media screen and (max-width: 480px), print {
  .br--s {
    display: block;
  }
}

.br--pc {
  display: none;
}
@media screen and (min-width: 769px), print {
  .br--pc {
    display: block;
  }
}

.br--sp {
  display: none;
}
@media screen and (max-width: 768px), print {
  .br--sp {
    display: block;
  }
}

@media screen and (min-width: 769px), print {
  .display-none--pc {
    display: none;
  }
}

@media screen and (max-width: 768px), print {
  .display-none--sp {
    display: none;
  }
}

@media screen and (min-width: 769px), print {
  main {
    position: relative;
  }
}

@media screen and (min-width: 769px), print {
  .section__inner {
    max-width: 1260px;
    padding-right: 80px;
    padding-left: 80px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px), print {
  .section__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 769px), print {
  .section--news {
    padding-top: 66px;
  }
}
@media screen and (max-width: 768px), print {
  .section--news {
    padding-top: 46px;
  }
}
.section--news .pageTitleBackground__en {
  color: #040000;
}
.section--news .pageTitleBackground__ja {
  color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .section--news .breadcrumb {
    padding-top: 36px;
  }
}
@media screen and (max-width: 768px), print {
  .section--news .breadcrumb {
    padding-top: 19px;
  }
}
@media screen and (max-width: 480px), print {
  .section--news .breadcrumb::after {
    background: linear-gradient(to right, rgba(247, 247, 245, 0.04), rgb(247, 247, 245));
  }
}
@media screen and (min-width: 769px), print {
  .section--news .section__inner {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .section--news .section__inner {
    padding-right: 0;
    padding-bottom: 70px;
    padding-left: 0;
  }
}

.newsContentWrap {
  background-color: #fff;
}
@media screen and (min-width: 769px), print {
  .newsContentWrap {
    padding: 37px 70px 70px;
    margin-top: 39px;
  }
}
@media screen and (max-width: 768px), print {
  .newsContentWrap {
    padding: 26px 20px 8px;
    margin-top: 5px;
  }
}

@media screen and (min-width: 769px), print {
  .section--recruit .sectionHeading__ja {
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 768px), print {
  .section--recruit .sectionHeading__ja {
    letter-spacing: 0.02em;
  }
}
@media screen and (min-width: 769px), print {
  .section--recruit .section__inner {
    padding-top: 146px;
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .section--recruit .section__inner {
    padding-top: 86px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 769px), print {
  .recruitMessage {
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.recruitMessage__title {
  font-weight: 500;
}
@media screen and (min-width: 769px), print {
  .recruitMessage__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px), print {
  .recruitMessage__title {
    font-size: 27px;
    line-height: 1.5;
  }
}

.recruitMessage__text {
  font-weight: 400;
}
@media screen and (min-width: 769px), print {
  .recruitMessage__text {
    margin-top: 56px;
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px), print {
  .recruitMessage__text {
    margin-top: 48px;
    font-size: 16px;
    line-height: 2;
  }
}

.section__security {
  background-color: #f7f7f5;
}
@media screen and (max-width: 768px), print {
  .section__security .breadcrumb::after {
    background: linear-gradient(to right, rgba(247, 247, 245, 0.04), rgb(247, 247, 245));
  }
}
@media screen and (min-width: 769px), print {
  .section__security .section__inner {
    padding-bottom: 162px;
  }
}
@media screen and (max-width: 768px), print {
  .section__security .section__inner {
    padding-right: 0;
    padding-bottom: 74px;
    padding-left: 0;
    margin-top: 7px;
    background-color: #fff;
  }
}
@media screen and (min-width: 769px), print {
  .section__security .antisocial__list {
    margin-top: 39px;
  }
}
@media screen and (max-width: 768px), print {
  .section__security + .backToTop {
    background-color: #fff;
  }
}

@media screen and (min-width: 769px), print {
  .security__wrapper {
    padding: 85px 90px;
    margin-top: 41px;
    line-height: 2;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px), print {
  .security__wrapper {
    padding-top: 73px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 2.3;
  }
}

@media screen and (min-width: 769px), print {
  .section--brand .section__inner {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .section--brand .section__inner {
    padding-bottom: 80px;
  }
}
.section--brand .breadcrumb {
  background-color: #fff;
}
.section--brand .anchorLink {
  background-color: #fff;
}
@media screen and (min-width: 769px), print {
  .section--brand .anchorLink {
    padding-top: 35px;
    padding-bottom: 97px;
  }
}
@media screen and (max-width: 768px), print {
  .section--brand .anchorLink {
    padding-top: 24px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 769px), print {
  .section--company {
    background-color: #fff;
  }
}
@media screen and (min-width: 769px), print {
  .section--company .section__inner {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .section--company .section__inner {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px), print {
  .section--company .breadcrumb {
    background-color: #fff;
  }
}
@media screen and (min-width: 769px), print {
  .section--company .anchorLink {
    padding-top: 35px;
  }
}
@media screen and (max-width: 768px), print {
  .section--company .anchorLink {
    padding-top: 24px;
    padding-bottom: 40px;
    background-color: #fff;
  }
}

@media screen and (min-width: 769px), print {
  .section--history .section__inner {
    padding-bottom: 160px;
    margin-top: 113px;
  }
}
@media screen and (max-width: 768px), print {
  .section--history .section__inner {
    padding-bottom: 61px;
    margin-top: 48px;
  }
}

@media screen and (min-width: 769px), print {
  .section--managementTeam .section__inner {
    padding-bottom: 184px;
  }
}
@media screen and (max-width: 768px), print {
  .section--managementTeam .section__inner {
    padding-bottom: 76px;
  }
}

.section--services {
  background-color: #fff;
}
@media screen and (min-width: 769px), print {
  .section--services .section__inner {
    padding-top: 126px;
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .section--services .section__inner {
    padding-top: 86px;
  }
}

@media screen and (max-width: 768px), print {
  .services__contents {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 769px), print {
  .services__contentsGroup {
    margin-top: 104px;
  }
}
@media screen and (max-width: 768px), print {
  .services__contentsGroup {
    margin-top: 72px;
  }
}
.services__contentsGroup:nth-child(1) {
  margin-top: 0;
}

.services__contentsGroupTitle {
  font-weight: 500;
}
@media screen and (min-width: 769px), print {
  .services__contentsGroupTitle {
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
    font-size: 26px;
    line-height: 1.5;
    text-align: center;
  }
}
@media screen and (max-width: 768px), print {
  .services__contentsGroupTitle {
    font-size: 20px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 769px), print {
  .services__contentsGroupTitle + .services__contentsGroupText {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px), print {
  .services__contentsGroupTitle + .services__contentsGroupText {
    margin-top: 20px;
  }
}

.services__contentsGroupText {
  font-weight: 400;
}
@media screen and (min-width: 769px), print {
  .services__contentsGroupText {
    margin-top: 48px;
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px), print {
  .services__contentsGroupText {
    margin-top: 32px;
    font-size: 16px;
    line-height: 2;
  }
}

@media screen and (min-width: 769px), print {
  .services__contentsGroupImage {
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px), print {
  .services__contentsGroupImage {
    margin-top: 32px;
  }
}
.services__contentsGroupImage img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 769px), print {
  .anchorLink {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 768px), print {
  .anchorLink {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.anchorLink__list {
  display: flex;
}
@media screen and (max-width: 768px), print {
  .anchorLink__list {
    width: 100%;
  }
}

.anchorLink__item {
  position: relative;
}
@media screen and (min-width: 769px), print {
  .anchorLink__item {
    width: 218px;
    height: 58px;
  }
}
@media screen and (max-width: 768px), print {
  .anchorLink__item {
    width: 50%;
    height: 60px;
  }
}
.anchorLink__item:first-of-type::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 40px;
  content: "";
  background-color: #969799;
}
@media screen and (min-width: 769px), print {
  .anchorLink__item:first-of-type::before {
    top: 10px;
  }
}
@media screen and (max-width: 768px), print {
  .anchorLink__item:first-of-type::before {
    top: 12px;
  }
}
.anchorLink__item::after {
  position: absolute;
  right: 0;
  width: 1px;
  height: 40px;
  content: "";
  background-color: #969799;
}
@media screen and (min-width: 769px), print {
  .anchorLink__item::after {
    top: 10px;
  }
}
@media screen and (max-width: 768px), print {
  .anchorLink__item::after {
    top: 12px;
  }
}

.anchorLink__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 500;
  color: #040000;
  transition: color 0.2s linear;
}
.anchorLink__link:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 768px), print {
  .anchorLink__link:lang(en) {
    font-size: 17px;
  }
}
@media screen and (min-width: 769px), print {
  .anchorLink__link {
    padding-bottom: 2px;
    font-size: 18px;
    line-height: 1.5556;
  }
}
@media screen and (max-width: 768px), print {
  .anchorLink__link {
    padding-bottom: 3px;
    font-size: 16px;
    line-height: 1.75;
  }
}
.anchorLink__link::after {
  width: 12px;
  height: 8px;
  content: "";
  background-image: url("../images/common/icon_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
@media screen and (min-width: 769px), print {
  .anchorLink__link::after {
    margin-top: 6px;
  }
}
@media screen and (max-width: 768px), print {
  .anchorLink__link::after {
    margin-top: 5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .anchorLink__link:hover {
    color: #969799;
  }
}
@media (hover: none) and (pointer: coarse) {
  .anchorLink__link:active {
    color: #969799;
  }
}

@media screen and (min-width: 1388px) {
  .backToTop {
    right: 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1387px) {
  .backToTop {
    right: 20px;
  }
}
@media screen and (min-width: 769px), print {
  .backToTop {
    position: absolute;
    bottom: 64px;
    width: 38px;
    height: 186px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px), print {
  .backToTop {
    display: flex;
    justify-content: center;
    padding-bottom: 26px;
  }
}

.backToTop__button {
  position: relative;
  font-weight: 500;
  color: #ff4600;
}
.backToTop__button:lang(ja), .backToTop__button:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .backToTop__button {
    height: 166px;
    padding-left: 6px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7778;
    text-align: right;
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 768px), print {
  .backToTop__button {
    padding-top: 14px;
    font-size: 20px;
    line-height: 1.6;
  }
}
.backToTop__button::after {
  position: absolute;
  top: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
@media screen and (min-width: 769px), print {
  .backToTop__button::after {
    left: 0;
    width: 11px;
    height: 187px;
    background-image: url("../images/common/arrow_backtotop_pc.svg");
    transition: transform 0.2s linear;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px), print {
  .backToTop__button::after {
    left: 50%;
    width: 12px;
    height: 8px;
    background-image: url("../images/common/arrow_backtotop_sp.svg");
    transform: translateX(-50%);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px), print and (hover: hover) and (pointer: fine) {
  .backToTop__button:hover::after {
    transform: translateY(-20px);
  }
}
@media screen and (hover: none) and (pointer: coarse) and (min-width: 769px), print and (hover: none) and (pointer: coarse) {
  .backToTop__button:active::after {
    transform: translateY(-20px);
  }
}

.breadcrumb {
  white-space: nowrap;
}
@media screen and (min-width: 769px), print {
  .breadcrumb {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 480px), print {
  .breadcrumb {
    position: relative;
  }
  .breadcrumb::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 55px;
    height: 18px;
    content: "";
    background: linear-gradient(to right, rgba(255, 255, 255, 0.04), rgb(255, 255, 255));
    transform: translateY(-50%);
  }
}

.breadcrumb__list {
  display: flex;
  overflow-x: auto;
}
@media screen and (min-width: 769px), print {
  .breadcrumb__list {
    width: 100%;
    max-width: 1100px;
    padding-top: 20px;
    margin-right: 80px;
    margin-left: 80px;
  }
}
@media screen and (max-width: 768px), print {
  .breadcrumb__list {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-left: 20px;
  }
}

.breadcrumb__listItem {
  display: flex;
  justify-content: center;
  font-size: 12px;
}
.breadcrumb__listItem:lang(en) {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
}
.breadcrumb__listItem a {
  margin: auto;
}
@media screen and (min-width: 769px), print {
  .breadcrumb__listItem a {
    transition: opacity 0.2s linear;
  }
  .breadcrumb__listItem a:hover {
    opacity: 0.5;
  }
}
.breadcrumb__listItem::after {
  display: block;
  width: 8px;
  height: 6px;
  content: "";
  background-image: url("../images/common/icon_arrow_right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 769px), print {
  .breadcrumb__listItem::after {
    margin: auto 16px;
  }
}
@media screen and (max-width: 768px), print {
  .breadcrumb__listItem::after {
    margin: auto 8px;
  }
}
.breadcrumb__listItem:last-of-type {
  padding-right: 30px;
  pointer-events: none;
}
.breadcrumb__listItem:last-of-type::after {
  display: none;
}

.breadcrumb__icon {
  display: block;
  width: 14px;
  height: 14px;
  margin: auto 0;
}

.button--iconPositionRightEdge {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 769px), print {
  .button--iconPositionRightEdge {
    width: 567px;
  }
}
@media screen and (max-width: 768px), print {
  .button--iconPositionRightEdge {
    max-width: 335px;
  }
}
@media screen and (min-width: 769px), print {
  .button--iconPositionRightEdge:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .button--iconPositionRightEdge:not(:first-child) {
    margin-top: 24px;
  }
}
.button--iconPositionRightEdge .button__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: #ff4600;
  background-color: #fff;
  border: 1px solid #ff4600;
}
@media screen and (min-width: 769px), print {
  .button--iconPositionRightEdge .button__link {
    min-height: 112px;
    padding: 12px 60px;
    font-size: 22px;
    line-height: 1.6364;
    transition: color 0.2s linear, background-color 0.2s linear;
  }
}
@media screen and (max-width: 768px), print {
  .button--iconPositionRightEdge .button__link {
    min-height: 72px;
    padding: 12px 42px;
    font-size: 18px;
    line-height: 1.3333;
  }
}
.button--iconPositionRightEdge .button__link:lang(en) {
  font-family: "Barlow", sans-serif;
}
.button--iconPositionRightEdge .button__link::before, .button--iconPositionRightEdge .button__link::after {
  position: absolute;
  top: 50%;
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px), print {
  .button--iconPositionRightEdge .button__link::before, .button--iconPositionRightEdge .button__link::after {
    right: 30px;
    width: 18px;
    height: 18px;
    transition: opacity 0.2s linear;
  }
}
@media screen and (max-width: 768px), print {
  .button--iconPositionRightEdge .button__link::before, .button--iconPositionRightEdge .button__link::after {
    right: 20px;
    width: 12px;
    height: 12px;
  }
}
.button--iconPositionRightEdge .button__link::before {
  background-image: url("../images/common/icon_blank_orange.svg");
}
.button--iconPositionRightEdge .button__link::after {
  background-image: url("../images/common/icon_blank_white.svg");
  opacity: 0;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px), print and (hover: hover) and (pointer: fine) {
  .button--iconPositionRightEdge .button__link:hover {
    color: #fff;
    background-color: #ff4600;
  }
  .button--iconPositionRightEdge .button__link:hover::before {
    opacity: 0;
  }
  .button--iconPositionRightEdge .button__link:hover::after {
    opacity: 1;
  }
}
@media screen and (hover: none) and (pointer: coarse) and (min-width: 769px), print and (hover: none) and (pointer: coarse) {
  .button--iconPositionRightEdge .button__link:active {
    color: #fff;
    background-color: #ff4600;
  }
  .button--iconPositionRightEdge .button__link:active::before {
    opacity: 0;
  }
  .button--iconPositionRightEdge .button__link:active::after {
    opacity: 1;
  }
}
.button--iconPositionRightEdge span {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.button--more {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 769px), print {
  .button--more {
    width: 313px;
  }
}
@media screen and (max-width: 768px), print {
  .button--more {
    max-width: 295px;
  }
}
@media screen and (min-width: 769px), print {
  .button--more:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .button--more:not(:first-child) {
    margin-top: 24px;
  }
}
.button--more .button__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5556;
  color: #ff4600;
  border: 1px solid #ff4600;
}
@media screen and (min-width: 769px), print {
  .button--more .button__link {
    min-height: 48px;
    transition: color 0.2s linear, background-color 0.2s linear;
  }
}
@media screen and (max-width: 768px), print {
  .button--more .button__link {
    min-height: 48px;
  }
}
.button--more .button__link:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px), print and (hover: hover) and (pointer: fine) {
  .button--more .button__link:hover {
    color: #fff;
    background-color: #ff4600;
  }
  .button--more .button__link:hover span::before {
    opacity: 0;
  }
  .button--more .button__link:hover span::after {
    opacity: 1;
  }
}
@media screen and (hover: none) and (pointer: coarse) and (min-width: 769px), print and (hover: none) and (pointer: coarse) {
  .button--more .button__link:active {
    color: #fff;
    background-color: #ff4600;
  }
  .button--more .button__link:active span::before {
    opacity: 0;
  }
  .button--more .button__link:active span::after {
    opacity: 1;
  }
}
.button--more span {
  position: relative;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.button--more span::before, .button--more span::after {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 12px;
  height: 12px;
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px), print {
  .button--more span::before, .button--more span::after {
    transition: opacity 0.2s linear;
  }
}
.button--more span::before {
  background-image: url("../images/common/icon_blank_orange.svg");
}
.button--more span::after {
  background-image: url("../images/common/icon_blank_white.svg");
  opacity: 0;
}

@media screen and (min-width: 769px), print {
  .footer .footer__inner {
    margin-right: auto;
    margin-left: auto;
  }
}

.globalNav__item {
  font-weight: 500;
}
@media screen and (min-width: 769px), print {
  .globalNav__item {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px), print {
  .globalNav__item {
    margin-left: 10px;
    font-size: 17px;
  }
  .globalNav__item::after {
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #fff;
  }
  .globalNav__item:last-of-type::after {
    display: none;
  }
}
@media screen and (max-width: 768px), print {
  .globalNav__item.toggleList .globalNav__linkText {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
    margin: auto 0;
  }
  .globalNav__item.toggleList .globalNav__linkText::before {
    position: absolute;
    right: 10px;
    display: block;
    width: 12px;
    height: 2px;
    content: "";
    background-color: #fff;
  }
  .globalNav__item.toggleList .globalNav__linkText::after {
    position: absolute;
    right: 15px;
    display: block;
    width: 2px;
    height: 12px;
    content: "";
    background-color: #fff;
    transition: transform 0.2s linear;
  }
  .globalNav__item.toggleList.open .globalNav__linkText::after {
    transform: rotate(90deg);
  }
  .globalNav__item.toggleList.open .globalNav__subList {
    visibility: visible;
    opacity: 1;
  }
  .globalNav__item.toggleList.open .globalNav__subList::before {
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #fff;
  }
  .globalNav__item.toggleList.open .globalNav__subList .globalNav__subItem {
    display: flex;
  }
}

.globalNav__subList {
  line-height: 2.6;
}
.globalNav__subList .globalNav__subItem.globalNav__sustainability:first-of-type {
  display: none;
}
@media screen and (max-width: 768px), print {
  .globalNav__subList {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s linear;
  }
}

.globalNav__subItem {
  font-weight: normal;
}
@media screen and (min-width: 769px), print {
  .globalNav__subItem:lang(en) {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px), print {
  .globalNav__subItem {
    display: none;
    margin-left: 10px;
    font-size: 15px;
  }
  .globalNav__subItem:first-of-type {
    padding-top: 22px;
  }
  .globalNav__subItem:last-of-type {
    padding-bottom: 25px;
  }
}
.globalNav__subItem::before {
  padding-right: 8px;
  content: "-";
}
@media screen and (max-width: 768px), print {
  .globalNav__subItem .globalNav__subLink {
    display: block;
    width: 100%;
  }
}

.globalNav__groupCompany {
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.globalNav__groupCompany .globalNav__subItem {
  position: relative;
  display: flex;
  align-items: center;
}
.globalNav__groupCompany .globalNav__subItem::before {
  padding-right: 0;
  content: "";
}
.globalNav__groupCompany .globalNav__subLink span {
  position: relative;
  padding-right: 20px;
}
.globalNav__groupCompany .globalNav__subLink span::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 13px;
  height: 13px;
  margin: auto 0;
  content: "";
  background-image: url("../images/common/icon_blank_white.svg");
  background-size: contain;
}

.globalNav__form {
  margin: 0;
  color: #040000;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 769px), print {
  .globalNav__form:lang(en) {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px), print {
  .globalNav__form:lang(en) {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
  }
}
@media screen and (min-width: 769px), print {
  .globalNav__form {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 224px;
    transition: color 0.2s linear, background-color 0.2s linear;
  }
  .globalNav__form a {
    display: block;
    width: 100%;
  }
  .globalNav__form:hover {
    color: #ff4600;
    background-color: #f7f7f5;
  }
}
@media screen and (max-width: 768px), print {
  .globalNav__form {
    max-width: 232px;
    margin: 40px auto 0;
  }
  .globalNav__form a {
    display: block;
    width: 100%;
    padding-top: 11px;
    padding-bottom: 13px;
  }
}

@media screen and (min-width: 1560px) {
  .header {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1559px) {
  .header {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding-bottom: 57px;
  }
}
.header.open {
  background-color: #ff4600;
}
.header .header__inner {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 1560px) {
  .header .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1559px) {
  .header.open {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
  }
  .header.open .globalnav {
    display: block;
    height: 100%;
    transition: transform 0.2s linear;
    transform: translateY(0);
  }
  .header.open .globalHeaderNav {
    background-color: #ff4600;
  }
  .header.open .globalHeaderNav .headerLogo {
    pointer-events: none;
    opacity: 0;
  }
  .header.open .globalHeaderNav .globalHeaderNav__btn .visuallu-hidden {
    display: none;
  }
  .header.open .globalHeaderNav .globalHeaderNav__btn::before {
    position: absolute;
    top: 9px;
    left: 0;
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.2s linear;
    transform: rotate(-45deg);
  }
  .header.open .globalHeaderNav .globalHeaderNav__btn::after {
    position: absolute;
    top: 9px;
    left: 0;
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.2s linear;
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 768px), print {
  .governance__internalink:lang(en) {
    max-width: 335px;
    margin-right: auto;
    margin-left: auto;
  }
}

.internalLink {
  display: block;
  width: 100%;
  border: solid 1px #ff4600;
}
@media screen and (min-width: 769px), print {
  .internalLink {
    max-width: 424px;
  }
  .internalLink:hover .internalLink__inner .internalLink__innerImg {
    transform: translate(10px, -100%);
  }
  .internalLink:hover .internalLink__inner .internalLink__innerText {
    color: #969799;
  }
}
@media screen and (max-width: 768px), print {
  .internalLink {
    max-width: 288px;
    margin: 0 auto;
  }
  .internalLink:lang(en) {
    max-width: 312px;
    margin-right: 23px;
    margin-left: 0;
  }
}

.internalLink__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (min-width: 769px), print {
  .internalLink__inner::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 85.61%;
    height: 100%;
    content: "";
    background-color: #fff;
  }
}

.internalLink__innerText {
  font-weight: 500;
  color: #040000;
}
.internalLink__innerText:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .internalLink__innerText:lang(en) {
    font-size: 22px;
    line-height: 1.2727;
  }
}
@media screen and (max-width: 768px), print {
  .internalLink__innerText:lang(en) {
    font-size: 21px;
    line-height: 1.3333;
    letter-spacing: -0.01em;
  }
}
@media screen and (min-width: 769px), print {
  .internalLink__innerText {
    position: relative;
    z-index: 1;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px), print {
  .internalLink__innerText {
    font-size: 18px;
  }
}

.internalLink__innerImg {
  position: absolute;
}
@media screen and (min-width: 769px), print {
  .internalLink__innerImg {
    right: -32px;
    width: 103px;
    height: 7px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(0, -100%);
  }
}
@media screen and (max-width: 768px), print {
  .internalLink__innerImg {
    top: 50%;
    right: 0;
    width: 72px;
    height: 7px;
    transform: translate(25px, -100%);
  }
}

@media screen and (min-width: 769px), print {
  .section--notFound .section__inner {
    padding-bottom: 27px;
  }
}
@media screen and (max-width: 768px), print {
  .section--notFound .section__inner {
    padding-bottom: 116px;
  }
}

.notFound {
  display: block;
  text-align: center;
}
@media screen and (min-width: 769px), print {
  .notFound {
    padding-top: 240px;
    padding-bottom: 240px;
  }
}
@media screen and (max-width: 768px), print {
  .notFound {
    padding-top: 113px;
  }
}

.notFound__title {
  font-weight: 500;
}
@media screen and (min-width: 769px), print {
  .notFound__title {
    margin-bottom: 35px;
    font-size: 30px;
    line-height: 1.0667;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 768px), print {
  .notFound__title {
    margin-bottom: 23px;
    font-size: 23px;
    line-height: 1.3913;
  }
}

.notFound__text {
  line-height: 2;
}
@media screen and (min-width: 769px), print {
  .notFound__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px), print {
  .notFound__text {
    font-size: 13px;
  }
}
.notFound__text a {
  color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .notFound__text a:hover {
    opacity: 0.5;
  }
}

.pageTitleBackground {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 769px), print {
  .pageTitleBackground {
    height: 280px;
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackground {
    height: 160px;
    padding-top: 3px;
  }
}
@media screen and (min-width: 769px), print {
  .pageTitleBackground.pageTitleBackground--orange {
    padding-bottom: 24px;
    background-image: url("../images/common/bg_heading_pc.jpg");
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackground.pageTitleBackground--orange {
    background-image: url("../images/common/bg_heading_sp.jpg");
  }
}
@media screen and (min-width: 769px), print {
  .pageTitleBackground.pageTitleBackground--blue {
    background-image: url("../images/common/bg_heading_blue_pc.jpg");
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackground.pageTitleBackground--blue {
    background-image: url("../images/common/bg_heading_blue_sp.jpg");
  }
}
@media screen and (min-width: 769px), print {
  .pageTitleBackground.pageTitleBackground--green {
    background-image: url("../images/common/bg_heading_green_pc.jpg");
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackground.pageTitleBackground--green {
    background-image: url("../images/common/bg_heading_green_sp.jpg");
  }
}
@media screen and (min-width: 769px), print {
  .pageTitleBackground.pageTitleBackground--orange2 {
    padding-bottom: 24px;
    background-image: url("../images/common/bg_heading_orange_pc.jpg");
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackground.pageTitleBackground--orange2 {
    background-image: url("../images/common/bg_heading_orange_sp.jpg");
  }
}

.pageTitleBackground__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pageTitleBackground__en {
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.pageTitleBackground__en:lang(ja), .pageTitleBackground__en:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .pageTitleBackground__en {
    font-size: 62px;
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackground__en {
    font-size: 36px;
    line-height: 1.1111;
    letter-spacing: -0.02em;
  }
}

.pageTitleBackground__ja {
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 769px), print {
  .pageTitleBackground__ja {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackground__ja {
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.7778;
  }
}

.pageTitleBackgroundNone {
  display: block;
}
@media screen and (min-width: 769px), print {
  .pageTitleBackgroundNone {
    padding: 98px 0 52px;
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackgroundNone {
    padding: 64px 0 23px;
  }
}

.pageTitleBackgroundNone__text {
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 769px), print {
  .pageTitleBackgroundNone__text {
    font-size: 38px;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 768px), print {
  .pageTitleBackgroundNone__text {
    font-size: 23px;
  }
}

.postHeading {
  display: flex;
  flex-direction: column;
}
.postHeading:lang(en) {
  font-family: "Barlow", sans-serif;
}

.postHeading__post {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7143;
  color: #ff4600;
}
.postHeading__post:lang(en) {
  font-size: 16px;
}

.postHeading__name {
  font-weight: 500;
}
@media screen and (min-width: 769px), print {
  .postHeading__name:lang(en) {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px), print {
  .postHeading__name:lang(en) {
    font-size: 26px;
  }
}
@media screen and (min-width: 769px), print {
  .postHeading__name {
    margin-top: 7px;
    font-size: 28px;
  }
}
@media screen and (max-width: 768px), print {
  .postHeading__name {
    margin-top: -2px;
    font-size: 22px;
    line-height: 1.2727;
  }
}

.sectionHeading {
  display: flex;
  flex-direction: column;
}

.sectionHeading__en {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.7778;
  color: #ff4600;
}
.sectionHeading__en:lang(ja), .sectionHeading__en:lang(en) {
  font-family: "Barlow", sans-serif;
}
.sectionHeading__en::after {
  display: inline-block;
  width: 48px;
  height: 1px;
  margin-left: 10px;
  content: "";
  background-color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .sectionHeading__en::after {
    margin-top: 6px;
  }
}
@media screen and (max-width: 768px), print {
  .sectionHeading__en::after {
    margin-top: 4px;
  }
}

.sectionHeading__ja {
  font-weight: 500;
  color: #040000;
}
.sectionHeading__ja:lang(en) {
  font-family: "Barlow", sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .brandPurpose .sectionHeading__ja:lang(en), .brandValues .sectionHeading__ja:lang(en) {
    letter-spacing: 0.02em;
  }
}
@media screen and (min-width: 769px), print {
  .sectionHeading__ja {
    font-size: 36px;
    line-height: 1.7778;
  }
  .sectionHeading__ja:lang(ja) {
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 768px), print {
  .sectionHeading__ja {
    font-size: 32px;
    line-height: 1.75;
  }
  .sectionHeading__ja:lang(ja) {
    letter-spacing: 0.04em;
  }
}

.irList__link {
  border-top: 1px solid #cacbcf;
}
@media screen and (min-width: 769px), print {
  .irList__link {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 88px 1fr;
    padding-top: 16px;
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 768px), print {
  .irList__link {
    display: block;
    padding-top: 21px;
    padding-bottom: 22px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .irList__link:hover .irList__titleText {
    text-decoration: underline;
  }
}
@media (hover: none) and (pointer: coarse) {
  .irList__link:active .irList__titleText {
    text-decoration: underline;
  }
}

.irList__date {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .irList__date {
    grid-area: 1/1/span 1/span 1;
    font-size: 14px;
    line-height: 2.2857;
  }
}
@media screen and (max-width: 768px), print {
  .irList__date {
    font-size: 20px;
    line-height: 1.6;
  }
}

.irList__title {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .irList__title {
    grid-area: 2/1/span 1/span 2;
    font-size: 14px;
    line-height: 2.2857;
  }
}
@media screen and (max-width: 768px), print {
  .irList__title {
    margin-top: 2px;
    font-size: 16px;
    line-height: 1.625;
  }
}

.irList__tag {
  display: inline;
  grid-row-start: 2;
  grid-column: 1/2;
  padding: 0 10px;
  margin-left: 5px;
  font-size: 10px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none !important;
  vertical-align: middle;
}

.irList__tag--url {
  background-color: #2196f3;
}

.irList__tag--pdf {
  background-color: #ee3d23;
}

.getAdobeAcrobatReader {
  display: flex;
}
@media screen and (min-width: 769px), print {
  .getAdobeAcrobatReader {
    gap: 20px;
    align-items: center;
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px), print {
  .getAdobeAcrobatReader {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 58px;
  }
}

.getAdobeAcrobatReader__text {
  font-size: 14px;
}

.irList__fileSize {
  font-size: 12px;
  text-decoration: none !important;
}

.newsCategory {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
}
@media screen and (min-width: 769px), print {
  .newsCategory {
    grid-auto-columns: 130px;
    column-gap: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .newsCategory {
    column-gap: 10px;
  }
}

.newsCategory__button {
  position: relative;
  display: block;
  font-weight: 500;
  color: #969799;
  text-align: center;
  transition: color 0.2s linear;
}
@media screen and (min-width: 769px), print {
  .newsCategory__button {
    width: 100%;
    padding-bottom: 14px;
    font-size: 18px;
    line-height: 1.7778;
  }
}
@media screen and (max-width: 768px), print {
  .newsCategory__button {
    min-width: 58px;
    padding-right: 5px;
    padding-bottom: 7px;
    padding-left: 5px;
    font-size: 16px;
    line-height: 2;
  }
}
.newsCategory__button::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #ff4600;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .newsCategory__button:hover {
    color: #ff4600;
  }
  .newsCategory__button:hover::after {
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .newsCategory__button:active {
    color: #ff4600;
  }
  .newsCategory__button:active::after {
    opacity: 1;
  }
}
.is-select .newsCategory__button {
  color: #ff4600;
}
.is-select .newsCategory__button::after {
  opacity: 1;
}

.section--newsDetail {
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .section--newsDetail .section__inner {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .section--newsDetail .section__inner {
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
    margin-top: 16px;
  }
}
@media screen and (min-width: 769px), print {
  .section--newsDetail .breadcrumb {
    padding-top: 96px;
  }
}
@media screen and (max-width: 768px), print {
  .section--newsDetail .breadcrumb {
    padding-top: 4px;
  }
}
@media screen and (max-width: 480px), print {
  .section--newsDetail .breadcrumb::after {
    background: linear-gradient(to right, rgba(247, 247, 245, 0.04), rgb(247, 247, 245));
  }
}

.newsDetail {
  background-color: #fff;
}
@media screen and (min-width: 769px), print {
  .newsDetail {
    padding: 75px 70px 200px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail {
    padding: 60px 20px;
  }
}

@media screen and (min-width: 769px), print {
  .newsDetail__headArea {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 18px;
    column-gap: 18px;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail__headArea {
    display: flex;
    flex-direction: column;
  }
}

.newsDetail__head {
  font-weight: 500;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .newsDetail__head {
    grid-area: 2/1/span 1/span 2;
    font-size: 26px;
    line-height: 1.0769;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail__head {
    order: 1;
    margin-top: 7px;
    font-size: 25px;
    line-height: 1.68;
  }
}

.newsDetail__date {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .newsDetail__date {
    grid-area: 1/1/span 1/span 1;
    font-size: 14px;
    line-height: 2.2857;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail__date {
    font-size: 16px;
    line-height: 2;
  }
}

.newsDetail__tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .newsDetail__tag {
    grid-area: 1/2/span 1/span 1;
    margin-top: 6px;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail__tag {
    margin-top: 4px;
  }
}
.newsDetail__tag span {
  padding-right: 3px;
  padding-left: 3px;
  margin-right: 6px;
  margin-bottom: 6px;
  color: #ff4600;
  border: 1px solid #ff4600;
  border-radius: 2px;
}
@media screen and (min-width: 769px), print {
  .newsDetail__tag span {
    height: 19px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail__tag span {
    height: 22px;
    font-size: 13px;
  }
}

.newsDetail__content {
  position: relative;
}
@media screen and (min-width: 769px), print {
  .newsDetail__content {
    padding-top: 26px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail__content {
    padding-top: 37px;
    margin-top: 38px;
  }
}
.newsDetail__content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #cacbcf;
}
.newsDetail__content p {
  font-size: 16px;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .newsDetail__content p {
    line-height: 2.375;
  }
}
@media screen and (max-width: 768px), print {
  .newsDetail__content p {
    line-height: 2;
  }
}

@media screen and (min-width: 769px), print {
  .newsList {
    margin-top: 37px;
  }
}
@media screen and (max-width: 768px), print {
  .newsList {
    margin-top: 19px;
  }
}

.newsList__link {
  border-top: 1px solid #cacbcf;
}
@media screen and (min-width: 769px), print {
  .newsList__link {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 88px 1fr;
    padding-top: 16px;
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 768px), print {
  .newsList__link {
    display: block;
    padding-top: 21px;
    padding-bottom: 22px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .newsList__link:hover .newsList__title {
    text-decoration: underline;
  }
}
@media (hover: none) and (pointer: coarse) {
  .newsList__link:active .newsList__title {
    text-decoration: underline;
  }
}

.newsList__date {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .newsList__date {
    grid-area: 1/1/span 1/span 1;
    font-size: 14px;
    line-height: 2.2857;
  }
}
@media screen and (max-width: 768px), print {
  .newsList__date {
    font-size: 20px;
    line-height: 1.6;
  }
}

.newsList__tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .newsList__tag {
    grid-area: 1/2/span 1/span 1;
    margin-top: 4px;
  }
}
@media screen and (max-width: 768px), print {
  .newsList__tag {
    margin-top: 6px;
  }
}
.newsList__tag span {
  height: 22px;
  padding-right: 3px;
  padding-left: 3px;
  margin-right: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #ff4600;
  border: 1px solid #ff4600;
  border-radius: 2px;
}

.newsList__title {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .newsList__title {
    grid-area: 2/1/span 1/span 2;
    font-size: 14px;
    line-height: 2.2857;
  }
}
@media screen and (max-width: 768px), print {
  .newsList__title {
    margin-top: 2px;
    font-size: 16px;
    line-height: 1.625;
  }
}

@media screen and (min-width: 769px), print {
  .newsSection {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px), print {
  .newsSection {
    margin-top: 33px;
  }
}

.newsSection__head {
  font-weight: 500;
}
@media screen and (min-width: 769px), print {
  .newsSection__head {
    font-size: 22px;
    line-height: 1.4545;
  }
}
@media screen and (max-width: 768px), print {
  .newsSection__head {
    font-size: 24px;
    line-height: 1.3333;
  }
}

@media screen and (min-width: 769px), print {
  .recruitInfo {
    margin-top: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .recruitInfo {
    margin-top: 88px;
  }
}

.recruitInfo__heading {
  position: relative;
  padding-bottom: 20px;
  font-weight: 500;
  color: #ff4600;
}
.recruitInfo__heading:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .recruitInfo__heading {
    font-size: 28px;
    line-height: 1.1429;
  }
}
@media screen and (max-width: 768px), print {
  .recruitInfo__heading {
    font-size: 20px;
    line-height: 1.6;
  }
  .recruitInfo__heading:lang(en) {
    font-size: 22px;
    line-height: 1.3636;
  }
}
.recruitInfo__heading::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #cacbcf;
}
.recruitInfo__heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #ff4600;
}

@media screen and (min-width: 769px), print {
  .recruitInfo__buttonArea {
    margin-top: 72px;
  }
}
@media screen and (max-width: 768px), print {
  .recruitInfo__buttonArea {
    margin-top: 40px;
  }
}

@media screen and (min-width: 769px), print {
  .security__list {
    margin: 39px 0 56px;
  }
}
@media screen and (max-width: 768px), print {
  .security__list {
    margin: 44px auto 28px;
    font-size: 16px;
  }
}

@media screen and (min-width: 769px), print {
  .security__listItem {
    margin-bottom: 39px;
    font-size: 18px;
    font-weight: 500;
  }
  .security__listItem:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px), print {
  .security__listItem {
    margin-bottom: 44px;
    font-size: 16px;
    font-weight: 500;
  }
  .security__listItem:last-of-type {
    margin-bottom: 0;
  }
}

.security__listText {
  font-weight: normal;
}
@media screen and (min-width: 769px), print {
  .security__listText {
    margin-top: 8px;
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px), print {
  .security__listText {
    margin-top: 3px;
    font-size: 14px;
  }
}

.security__signature {
  text-align: right;
}
@media screen and (max-width: 768px), print {
  .security__signature p + p {
    margin-top: -6px;
  }
}

@media screen and (min-width: 769px), print {
  .section--compliance .pageTitleBackground {
    padding-bottom: 26px;
  }
}
@media screen and (min-width: 769px), print {
  .section--compliance .section__inner {
    padding-bottom: 155px;
  }
}
@media screen and (max-width: 768px), print {
  .section--compliance .section__inner {
    padding-bottom: 73px;
  }
}

@media screen and (min-width: 769px), print {
  .section--governance .pageTitleBackground {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 769px), print {
  .section--governance .section__inner {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .section--governance .section__inner {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 769px), print {
  .section--sdgs .pageTitleBackground {
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 769px), print {
  .section--sdgs .section__inner {
    padding-bottom: 158px;
  }
}
@media screen and (max-width: 768px), print {
  .section--sdgs .section__inner {
    padding-bottom: 76px;
  }
}

@media screen and (min-width: 769px), print {
  .section--social .pageTitleBackground {
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 769px), print {
  .section--social .section__inner {
    padding-bottom: 168px;
  }
}
@media screen and (max-width: 768px), print {
  .section--social .section__inner {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 769px), print {
  .section--sustainability .pageTitleBackground__text {
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 769px), print {
  .section--sustainability .sectionHeading__ja {
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 768px), print {
  .section--sustainability .sectionHeading__ja {
    letter-spacing: 0.02em;
  }
}
@media screen and (min-width: 769px), print {
  .section--sustainability .section__inner {
    padding-bottom: 160px;
    margin-top: 98px;
  }
}
@media screen and (max-width: 768px), print {
  .section--sustainability .section__inner {
    padding-bottom: 80px;
  }
}

.sustainabilityHeading {
  position: relative;
  padding-bottom: 20px;
  font-weight: 500;
  color: #ff4600;
}
.sustainabilityHeading:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .sustainabilityHeading {
    font-size: 28px;
    line-height: 1.1429;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityHeading {
    font-size: 20px;
    line-height: 1.6;
  }
  .sustainabilityHeading:lang(en) {
    font-size: 22px;
    line-height: 1.3636;
  }
}
.sustainabilityHeading::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #cacbcf;
}
.sustainabilityHeading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #ff4600;
}

@media screen and (min-width: 769px), print {
  .sustainabilityList {
    max-width: 960px;
    margin-top: 101px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityList {
    margin-top: 48px;
  }
}

@media screen and (min-width: 769px), print {
  .sustainabilityList__item + .sustainabilityList__item {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityList__item + .sustainabilityList__item {
    margin-top: 58px;
  }
}

.sustainabilityList__head {
  position: relative;
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: flex-start;
  font-weight: 500;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sustainabilityList__head {
    padding-bottom: 9px;
    font-size: 18px;
    line-height: 1.7778;
  }
  .sustainabilityList__head:lang(en) {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityList__head {
    padding-bottom: 10px;
    font-size: 17px;
    line-height: 1.5294;
  }
  .sustainabilityList__head:lang(en) {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5556;
  }
}
.sustainabilityList__head::before {
  width: 9px;
  height: 9px;
  content: "";
  background-color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .sustainabilityList__head::before {
    margin-top: 13px;
  }
  .sustainabilityList__head::before:lang(en) {
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityList__head::before {
    margin-top: 9px;
  }
}
.sustainabilityList__head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #cacbcf;
}

@media screen and (min-width: 769px), print {
  .sustainabilityList__content {
    margin-top: 9px;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityList__content {
    margin-top: 14px;
  }
}

.sustainabilityList__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sustainabilityList__text {
    font-size: 16px;
    line-height: 2.125;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityList__text {
    font-size: 14px;
    line-height: 2.2857;
  }
  .sustainabilityList__text:lang(en) {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 768px), print {
  .clauseList {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.clauseList__item {
  display: grid;
  font-size: 16px;
  line-height: 2.125;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .clauseList__item {
    grid-template-columns: 26px 1fr;
    font-size: 16px;
    line-height: 2.125;
  }
}
@media screen and (max-width: 768px), print {
  .clauseList__item {
    grid-template-columns: 20px 1fr;
    font-size: 14px;
    line-height: 1.8571;
  }
}
@media screen and (max-width: 768px), print {
  .clauseList__item + .clauseList__item {
    margin-top: 18px;
  }
}

@media screen and (min-width: 769px), print {
  .sustainabilityList__image {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .sustainabilityList__image {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }
}
.sustainabilityList__image img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px), print {
  .section--keyVisual .section__inner {
    padding-right: 0;
    padding-left: 0;
  }
}

.keyVisual {
  position: relative;
}
.keyVisual img {
  max-width: 100%;
  height: auto;
}

.keyVisual__head {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px), print {
  .keyVisual__head {
    top: 29.55%;
    left: 0.27%;
    width: 29.095%;
    max-width: 320px;
  }
  .keyVisual__head:lang(en) {
    top: 32.6%;
    left: 0;
    width: 31.72%;
    max-width: 349px;
  }
}
@media screen and (max-width: 768px), print {
  .keyVisual__head {
    top: 10.42%;
    left: 10.27%;
    width: 66.27%;
  }
  .keyVisual__head:lang(en) {
    top: 11.7%;
    left: 7.5%;
    width: 70.14%;
  }
}
.keyVisual__head img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 769px), print {
  .topAboutGroupList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(438px, 1fr));
    column-gap: 15px;
    margin-top: 62px;
  }
}
@media screen and (max-width: 768px), print {
  .topAboutGroupList {
    margin-top: 36px;
  }
}

.topAboutGroupList__item {
  position: relative;
}
.topAboutGroupList__item::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #cacbcf;
}
@media screen and (min-width: 769px), print {
  .topAboutGroupList__item:nth-last-of-type(-n + 2)::after {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #cacbcf;
  }
}

.topAboutGroupList__link {
  display: block;
  color: #040000;
  transition: color 0.2s linear;
}
@media screen and (min-width: 769px), print {
  .topAboutGroupList__link {
    height: 115px;
    padding-right: 64px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px), print {
  .topAboutGroupList__link {
    height: 104px;
    padding-left: 20px;
  }
}
.topAboutGroupList__link::after {
  position: absolute;
  top: 50%;
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
@media screen and (min-width: 769px), print {
  .topAboutGroupList__link::after {
    right: 22px;
    width: 43px;
    height: 5px;
    background-image: url("../images/top/icon_arrow_top_aboutgroup_pc.svg");
    transition: transform 0.2s linear;
    transform: translate(-8px, -5px);
  }
}
@media screen and (max-width: 768px), print {
  .topAboutGroupList__link::after {
    right: 20px;
    width: 41px;
    height: 6px;
    background-image: url("../images/top/icon_arrow_top_aboutgroup_sp.svg");
    transform: translateY(-50%);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px), print and (hover: hover) and (pointer: fine) {
  .topAboutGroupList__link:hover {
    color: #646566;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px), print and (hover: hover) and (pointer: fine) {
  .topAboutGroupList__link:hover::after {
    transform: translate(0, -5px);
  }
}
@media screen and (hover: none) and (pointer: coarse) and (min-width: 769px), print and (hover: none) and (pointer: coarse) {
  .topAboutGroupList__link:active {
    color: #646566;
  }
}
@media screen and (hover: none) and (pointer: coarse) and (min-width: 769px), print and (hover: none) and (pointer: coarse) {
  .topAboutGroupList__link:active::after {
    transform: translate(0, -5px);
  }
}

.topAboutGroupList__linkInner {
  position: relative;
  z-index: 1;
  height: 100%;
}
@media screen and (min-width: 769px), print {
  .topAboutGroupList__linkInner {
    display: grid;
    grid-template-columns: 1fr 122px;
    align-items: center;
    background-color: #fff;
  }
}

.topAboutGroupList__jaText {
  font-weight: 500;
}
.topAboutGroupList__jaText:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .topAboutGroupList__jaText:lang(en) {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px), print {
  .topAboutGroupList__jaText:lang(en) {
    padding-top: 38px;
    font-size: 22px;
  }
}
@media screen and (min-width: 769px), print {
  .topAboutGroupList__jaText {
    padding-bottom: 4px;
    font-size: 22px;
    line-height: 1.2727;
  }
}
@media screen and (max-width: 768px), print {
  .topAboutGroupList__jaText {
    padding-top: 26px;
    font-size: 20px;
    line-height: 1.4;
  }
}

.topAboutGroupList__enText:lang(ja), .topAboutGroupList__enText:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .topAboutGroupList__enText {
    padding-bottom: 2px;
    font-size: 14px;
    line-height: 2.8571;
  }
}
@media screen and (max-width: 768px), print {
  .topAboutGroupList__enText {
    padding-bottom: 8px;
    margin-top: -8px;
    font-size: 15px;
    line-height: 2.6667;
  }
}

.topArrowButton {
  overflow: hidden;
}
@media screen and (min-width: 769px), print {
  .topArrowButton {
    width: 145px;
  }
}
@media screen and (max-width: 768px), print {
  .topArrowButton {
    width: 124px;
  }
}

.topArrowButton__link {
  position: relative;
  display: block;
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7778;
  color: #ff4600;
}
.topArrowButton__link:lang(ja), .topArrowButton__link:lang(en) {
  font-family: "Barlow", sans-serif;
}
.topArrowButton__link::after {
  position: absolute;
  bottom: 0;
  width: 145px;
  height: 9px;
  content: "";
  background-image: url("../images/top/icon_arrow_top_button.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  transform: translateX(-19px);
}
@media screen and (min-width: 769px), print {
  .topArrowButton__link::after {
    left: 0;
    transition: transform 0.2s linear;
  }
}
@media screen and (max-width: 768px), print {
  .topArrowButton__link::after {
    right: 0;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px), print and (hover: hover) and (pointer: fine) {
  .topArrowButton__link:hover::after {
    transform: translateX(0);
  }
}
@media screen and (hover: none) and (pointer: coarse) and (min-width: 769px), print and (hover: none) and (pointer: coarse) {
  .topArrowButton__link:active::after {
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px), print {
  .section--topContact .section__inner {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 769px), print {
  .topContact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 44px;
    align-items: center;
    padding: 73px 72px 83px;
  }
}

.topContactHeading {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px), print {
  .topContactHeading {
    grid-area: 1/1/span 1/span 1;
  }
}

.topContactHeading__en {
  font-weight: 500;
  color: #040000;
}
.topContactHeading__en:lang(ja), .topContactHeading__en:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .topContactHeading__en {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px), print {
  .topContactHeading__en {
    font-size: 36px;
    line-height: 1.1111;
  }
}

.topContactHeading__ja {
  font-weight: 500;
  color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .topContactHeading__ja {
    margin-top: -9px;
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px), print {
  .topContactHeading__ja {
    margin-top: -2px;
    font-size: 14px;
    line-height: 2.2857;
  }
}

.topContact__text {
  font-size: 16px;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .topContact__text:lang(en) {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px), print {
  .topContact__text:lang(en) {
    font-size: 17px;
  }
}
@media screen and (min-width: 769px), print {
  .topContact__text {
    grid-area: 2/1/span 1/span 1;
    margin-top: 29px;
    line-height: 2.125;
  }
}
@media screen and (max-width: 768px), print {
  .topContact__text {
    margin-top: 9px;
    line-height: 2;
  }
}

@media screen and (min-width: 769px), print {
  .topContact__button {
    grid-area: 1/2/span 2/span 1;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px), print {
  .topContact__button {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }
}

.topContact__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #ff4600;
  border: 1px solid #ff4600;
}
@media screen and (min-width: 769px), print {
  .topContact__link {
    max-width: 424px;
    height: 88px;
    padding-bottom: 3px;
    margin-right: 32px;
    font-size: 20px;
    line-height: 1.4;
  }
  .topContact__link:lang(en) {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px), print {
  .topContact__link {
    width: 100%;
    max-width: 312px;
    height: 72px;
    margin-right: 23px;
    font-size: 18px;
    line-height: 1.5556;
  }
  .topContact__link:lang(en) {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
  }
}
.topContact__link::before {
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 104px;
  height: 8px;
  content: "";
  background-image: url("../images/top/icon_arrow_top_contact.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}
@media screen and (min-width: 769px), print {
  .topContact__link::before {
    right: -42px;
    transition: transform 0.2s linear;
    transform: translate(-10px, -100%);
  }
}
@media screen and (max-width: 768px), print {
  .topContact__link::before {
    right: -23px;
    transform: translateY(-100%);
  }
}
.topContact__link::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  content: "";
  background-color: #fff;
}
@media screen and (min-width: 769px), print {
  .topContact__link::after {
    width: 85.61%;
  }
}
@media screen and (max-width: 768px), print {
  .topContact__link::after {
    width: calc(100% - 50px);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px), print and (hover: hover) and (pointer: fine) {
  .topContact__link:hover::before {
    transform: translate(0, -100%);
  }
}
@media screen and (hover: none) and (pointer: coarse) and (min-width: 769px), print and (hover: none) and (pointer: coarse) {
  .topContact__link:active::before {
    transform: translate(0, -100%);
  }
}

.section--topIrNews {
  padding-top: 0;
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .section--topIrNews {
    padding-top: 142px;
  }
}
@media screen and (max-width: 768px), print {
  .section--topIrNews {
    padding-bottom: 80px;
  }
}
.section--topIrNews .irTop__newsSec {
  margin-top: 0;
}

.section--topNews {
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .section--topNews {
    padding-top: 98px;
  }
}
@media screen and (max-width: 768px), print {
  .section--topNews {
    padding-top: 74px;
  }
}

@media screen and (min-width: 769px), print {
  .topNews {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 260px 1fr;
  }
}
.topNews .newsList:lang(en) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
}
@media screen and (min-width: 769px), print {
  .topNews .newsList {
    grid-area: 1/2/span 2/span 1;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px), print {
  .topNews .newsList {
    margin-top: 28px;
  }
}
.topNews .newsList__link {
  border: none;
}
@media screen and (max-width: 768px), print {
  .topNews .newsList__link {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px), print {
  .topNews .newsList__item + .newsList__item {
    margin-top: 14px;
  }
}
@media screen and (max-width: 768px), print {
  .topNews .newsList__item + .newsList__item {
    margin-top: 27px;
  }
}
@media screen and (max-width: 768px), print {
  .topNews .newsList__date {
    font-size: 14px;
    line-height: 2.2857;
  }
}
@media screen and (max-width: 768px), print {
  .topNews .newsList__tag {
    margin-top: 1px;
  }
}
@media screen and (min-width: 769px), print {
  .topNews .newsList__title {
    margin-top: 4px;
    line-height: 1.5714;
  }
}

.topNewsHeading,
.irTop__newsSec_ttl {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px), print {
  .topNewsHeading,
  .irTop__newsSec_ttl {
    grid-area: 1/1/span 1/span 1;
    padding-top: 9px;
  }
}

.topNewsHeading__en {
  font-weight: 500;
  color: #040000;
}
.topNewsHeading__en:lang(ja), .topNewsHeading__en:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .topNewsHeading__en {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .topNewsHeading__en {
    font-size: 36px;
    line-height: 1.1111;
  }
}

.topNewsHeading__ja {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2857;
  color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .topNewsHeading__ja {
    margin-top: -11px;
  }
}
@media screen and (max-width: 768px), print {
  .topNewsHeading__ja {
    margin-top: -2px;
  }
}

@media screen and (min-width: 769px), print {
  .topNews__button {
    grid-area: 2/1/span 1/span 1;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px), print {
  .topNews__button {
    display: flex;
    justify-content: center;
    margin-top: 42px;
  }
}

.topSection {
  background-color: #fff;
}
@media screen and (max-width: 768px), print {
  .topSection {
    padding-top: 34px;
  }
}

@media screen and (min-width: 769px), print {
  .topSection__text {
    margin-top: 40px;
    font-size: 17px;
  }
}
@media screen and (max-width: 768px), print {
  .topSection__text {
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 2;
  }
}

@media screen and (min-width: 769px), print {
  .topSection__text:lang(en) {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px), print {
  .topSection__text:lang(en) {
    font-size: 17px;
  }
}

/* -------------------------------------- */
.section--topAboutGroup {
  position: relative;
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .section--topAboutGroup {
    padding-top: 183px;
  }
}
@media screen and (max-width: 768px), print {
  .section--topAboutGroup {
    padding-top: 144px;
  }
}
.section--topAboutGroup::before {
  position: absolute;
  left: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
@media screen and (min-width: 769px), print {
  .section--topAboutGroup::before {
    top: 103px;
    width: calc(50% + 220px);
    max-width: 61.41%;
    height: 530px;
    background-image: url("../images/top/bg_top_aboutgroup_pc.jpg");
  }
}
@media screen and (max-width: 768px), print {
  .section--topAboutGroup::before {
    top: 80px;
    width: calc(50% + 137px);
    height: 160px;
    background-image: url("../images/top/bg_top_aboutgroup_sp.jpg");
  }
}
.section--topAboutGroup .section__inner {
  position: relative;
}
@media screen and (max-width: 768px), print {
  .section--topAboutGroup .section__inner {
    padding-right: 0;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 769px), print {
  .section--topAboutGroup .topSection {
    padding: 63px 72px 95px;
  }
}
@media screen and (min-width: 769px), print {
  .section--topAboutGroup .topSection__text:lang(ja) {
    max-width: 575px;
    line-height: 2;
  }
}
@media screen and (min-width: 769px), print {
  .section--topAboutGroup .topSection__text:lang(en) {
    line-height: 2;
  }
}

/* -------------------------------------- */
.section--topSustainability {
  position: relative;
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .section--topSustainability {
    padding-top: 200px;
    padding-bottom: 142px;
  }
}
@media screen and (max-width: 768px), print {
  .section--topSustainability {
    padding-top: 64px;
  }
}
.section--topSustainability::before {
  position: absolute;
  left: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
@media screen and (min-width: 769px), print {
  .section--topSustainability::before {
    top: 121px;
    width: calc(50% + 220px);
    max-width: 61.41%;
    height: 375px;
    background-image: url("../images/top/bg_top_sustainability_pc.jpg");
  }
}
@media screen and (max-width: 768px), print {
  .section--topSustainability::before {
    top: 0;
    width: calc(50% + 138px);
    height: 160px;
    background-image: url("../images/top/bg_top_sustainability_sp.jpg");
  }
}
.section--topSustainability .section__inner {
  position: relative;
}
@media screen and (max-width: 768px), print {
  .section--topSustainability .section__inner {
    padding-right: 0;
    padding-bottom: 80px;
  }
}
.section--topSustainability .topSection {
  position: relative;
}
@media screen and (min-width: 769px), print {
  .section--topSustainability .topSection {
    padding: 56px 72px 75px;
  }
}
@media screen and (max-width: 768px), print {
  .section--topSustainability .topSection {
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 769px), print {
  .section--topSustainability .topSection__text:lang(ja) {
    width: 66.94%;
    max-width: 640px;
    line-height: 2.1176;
  }
}
@media screen and (min-width: 769px), print {
  .section--topSustainability .topSection__text:lang(en) {
    width: 72.8033472803%;
    max-width: 696px;
    line-height: 1.8;
  }
}

/* -------------------------------------- */
.section--topIr {
  position: relative;
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .section--topIr {
    padding-top: 200px;
  }
}
@media screen and (max-width: 768px), print {
  .section--topIr {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}
.section--topIr::before {
  position: absolute;
  right: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
@media screen and (min-width: 769px), print {
  .section--topIr::before {
    top: 121px;
    width: calc(50% + 390px);
    max-width: 70.36%;
    height: 375px;
    background-image: url("../images/top/bg_top_ir_pc.jpg");
  }
}
@media screen and (max-width: 768px), print {
  .section--topIr::before {
    top: 0;
    width: calc(50% + 138px);
    height: 160px;
    background-image: url("../images/top/bg_top_ir_sp.jpg");
  }
}
.section--topIr .section__inner {
  position: relative;
}
@media screen and (max-width: 768px), print {
  .section--topIr .section__inner {
    padding-left: 0;
  }
}
.section--topIr .topSection {
  position: relative;
}
@media screen and (min-width: 769px), print {
  .section--topIr .topSection {
    padding: 56px 72px 75px;
  }
}
@media screen and (max-width: 768px), print {
  .section--topIr .topSection {
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 769px), print {
  .section--topIr .topSection__text:lang(ja) {
    width: 66.94%;
    max-width: 640px;
    line-height: 2.1176;
  }
}
@media screen and (min-width: 769px), print {
  .section--topIr .topSection__text:lang(en) {
    width: 72.8033472803%;
    max-width: 696px;
    line-height: 1.8;
  }
}

.topSectionHeading {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px), print {
  .topSectionHeading {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.topSectionHeading__en {
  font-weight: 500;
  color: #040000;
}
.topSectionHeading__en:lang(ja), .topSectionHeading__en:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .topSectionHeading__en {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px), print {
  .topSectionHeading__en {
    font-size: 40px;
  }
}

.topSectionHeading__ja {
  font-weight: 500;
  color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .topSectionHeading__ja {
    margin-top: -3px;
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px), print {
  .topSectionHeading__ja {
    margin-top: -8px;
    font-size: 14px;
    line-height: 2.2857;
  }
}

@media screen and (min-width: 769px), print {
  .topSustainabilityButton {
    position: absolute;
    right: 53px;
    bottom: 82px;
  }
}
@media screen and (max-width: 768px), print {
  .topSustainabilityButton {
    display: flex;
    justify-content: center;
    margin-top: 23px;
    transform: translateX(10px);
  }
}

@media screen and (min-width: 769px), print {
  .brandMessage {
    padding-top: 160px;
  }
}
@media screen and (max-width: 768px), print {
  .brandMessage {
    padding-top: 96px;
  }
}

.messageFromCeo {
  position: relative;
}
@media screen and (min-width: 769px), print {
  .messageFromCeo:lang(ja) {
    display: grid;
    grid-template-columns: 40.87% 1fr;
    row-gap: 40px;
    align-items: flex-end;
    max-width: 1100px;
    padding: 88px 8.182%;
    margin-top: 44px;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo:lang(ja) {
    margin-top: 28px;
  }
}
@media screen and (min-width: 1000px) {
  .messageFromCeo:lang(en) {
    display: grid;
    grid-template-columns: 40.87% 1fr;
    row-gap: 40px;
    align-items: flex-end;
    max-width: 1100px;
    padding: 88px 8.182%;
    margin-top: 44px;
    background-color: #fff;
  }
}
@media screen and (max-width: 999px) {
  .messageFromCeo:lang(en) {
    margin-top: 28px;
  }
}
@media screen and (min-width: 769px), print {
  .messageFromCeo .postHeading:lang(ja) {
    grid-area: 1/1/span 1/span 1;
    padding-bottom: 57px;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo .postHeading:lang(ja) {
    position: absolute;
    top: 170px;
    left: calc(50% - 167.8px);
    z-index: 1;
    padding: 8px 20px 13px;
    background-color: #fff;
  }
}
@media screen and (min-width: 1000px) {
  .messageFromCeo .postHeading:lang(en) {
    grid-area: 1/1/span 1/span 1;
    padding-bottom: 57px;
  }
}
@media screen and (max-width: 999px) {
  .messageFromCeo .postHeading:lang(en) {
    position: absolute;
    top: 383px;
    left: 50%;
    z-index: 1;
    width: 290px;
    padding: 8px 20px 13px;
    background-color: #fff;
    transform: translate(-273px, -100%);
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo .postHeading:lang(en) {
    top: 247px;
    width: 242px;
    padding: 8px 0 13px 20px;
    transform: translate(-168px, -100%);
  }
}

@media screen and (min-width: 769px), print {
  .messageFromCeo__image:lang(ja) {
    grid-area: 1/2/span 1/span 1;
    justify-self: flex-end;
    margin-top: -222px;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo__image:lang(ja) {
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .messageFromCeo__image:lang(en) {
    grid-area: 1/2/span 1/span 1;
    justify-self: flex-end;
    margin-top: -222px;
  }
}
@media screen and (min-width: 769px) and (max-width: 999px) {
  .messageFromCeo__image:lang(en) {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 999px) {
  .messageFromCeo__image:lang(en) {
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
  }
}
.messageFromCeo__image img {
  height: auto;
}
@media screen and (min-width: 769px), print {
  .messageFromCeo__image img {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo__image img {
    max-width: 335px;
  }
}

@media screen and (min-width: 769px), print {
  .messageFromCeo__textArea {
    grid-area: 2/1/span 1/span 2;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo__textArea {
    margin-top: 20px;
  }
}

.messageFromCeo__text {
  font-size: 16px;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .messageFromCeo__text:lang(en) {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px), print {
  .messageFromCeo__text {
    line-height: 2.375;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo__text {
    line-height: 2;
  }
}
@media screen and (min-width: 769px), print {
  .messageFromCeo__text + .messageFromCeo__text {
    margin-top: 38px;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo__text + .messageFromCeo__text {
    margin-top: 32px;
  }
}

.messageFromCeo__signature {
  text-align: right;
}
@media screen and (min-width: 769px), print {
  .messageFromCeo__signature {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.7778;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo__signature {
    margin-top: 33px;
    font-size: 15px;
    line-height: 1.8667;
  }
}
.messageFromCeo__signature p span {
  display: inline-block;
}
@media screen and (min-width: 769px), print {
  .messageFromCeo__signature p span + span {
    margin-left: 14px;
  }
}
@media screen and (max-width: 768px), print {
  .messageFromCeo__signature p span + span {
    margin-left: 26px;
  }
}

.messageFromCeo__signatureName {
  font-size: 22px;
  font-weight: 500;
}

@media screen and (min-width: 769px), print {
  .brandPurpose {
    padding-top: 80px;
    margin-top: 46px;
  }
}
@media screen and (max-width: 768px), print {
  .brandPurpose {
    padding-top: 58px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px), print {
  .purposeContent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 44px;
  }
}
@media screen and (max-width: 768px), print {
  .purposeContent {
    margin-top: 36px;
  }
}

.purposeContent__text {
  position: relative;
  width: 100%;
  max-width: 920px;
  color: #040000;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.purposeContent__text::before, .purposeContent__text::after {
  position: absolute;
  width: 30px;
  height: 30px;
  content: "";
}
.purposeContent__text::before {
  top: 0;
  left: 0;
  border-top: 10px solid #ff4600;
  border-left: 10px solid #ff4600;
}
.purposeContent__text::after {
  right: 0;
  bottom: 0;
  border-right: 10px solid #ff4600;
  border-bottom: 10px solid #ff4600;
}
@media screen and (min-width: 769px), print {
  .purposeContent__text {
    padding: 39px 30px 47px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px), print {
  .purposeContent__text {
    padding: 40px 30px;
    font-size: 22px;
    line-height: 1.6364;
    text-align: center;
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 769px), print {
  .purposeContent .purposeContent__text:lang(en) {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px), print {
  .brandSlogan {
    padding-top: 160px;
    text-align: center;
  }
}
@media screen and (max-width: 768px), print {
  .brandSlogan {
    padding-top: 96px;
  }
}

.brandSlogan__title {
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px), print {
  .brandSlogan__title {
    font-size: 32px;
    line-height: 1;
  }
}
@media screen and (max-width: 768px), print {
  .brandSlogan__title {
    font-size: 27px;
    line-height: 1.1852;
  }
}

@media screen and (min-width: 769px), print {
  .brandSlogan__textArea {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px), print {
  .brandSlogan__textArea {
    margin-top: 57px;
  }
}

.brandSlogan__text {
  font-weight: 400;
}
@media screen and (min-width: 769px), print {
  .brandSlogan__text {
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px), print {
  .brandSlogan__text {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (min-width: 769px), print {
  .brandSlogan__text:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .brandSlogan__text:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px), print {
  .brandSlogan__text span {
    display: inline-block;
  }
}

@media screen and (min-width: 769px), print {
  .brandValues {
    padding-top: 80px;
    margin-top: 46px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValues {
    padding-top: 58px;
    margin-top: 33px;
  }
}

@media screen and (min-width: 769px), print {
  .brandValuesList:lang(ja) {
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList:lang(ja) {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1000px) {
  .brandValuesList:lang(en) {
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
  }
}
@media screen and (max-width: 999px) {
  .brandValuesList:lang(en) {
    margin-top: 36px;
  }
}

.brandValuesList__item {
  background-color: #fff;
}
@media screen and (min-width: 769px), print {
  .brandValuesList__item:lang(ja) {
    width: 32.72%;
  }
}
@media screen and (min-width: 1000px) {
  .brandValuesList__item:lang(en) {
    width: 32.72%;
  }
}
@media screen and (max-width: 999px) {
  .brandValuesList__item:lang(en) {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 999px) {
  .brandValuesList__item:lang(en) + .brandValuesList__item:lang(en) {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList__item + .brandValuesList__item {
    margin-top: 16px;
  }
}

.brandValuesContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .brandValuesContent {
    padding: 28px 42px 45px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList__item:nth-of-type(1) .brandValuesContent {
    padding: 16px 42px 44px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList__item:nth-of-type(2) .brandValuesContent {
    padding: 34px 42px 68px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList__item:nth-of-type(3) .brandValuesContent {
    padding: 36px 42px 68px;
  }
}

.brandValuesContent__image {
  order: -1;
}
@media screen and (min-width: 769px), print {
  .brandValuesContent__image {
    max-width: 276px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesContent__image {
    max-width: 240px;
  }
}
.brandValuesContent__image img {
  max-width: 100%;
  height: auto;
}

.brandValuesContent__head {
  font-weight: 500;
  color: #040000;
}
.brandValuesContent__head:lang(en) {
  font-family: "Barlow", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px), print {
  .brandValuesContent__head:lang(en) {
    font-size: 28px;
  }
}
@media screen and (min-width: 769px), print {
  .brandValuesContent__head {
    margin-top: 19px;
    font-size: 26px;
    line-height: 1.2308;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesContent__head {
    font-size: 22px;
    line-height: 1.4545;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList__item:nth-of-type(1) .brandValuesContent__head {
    margin-top: 3px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList__item:nth-of-type(2) .brandValuesContent__head {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesList__item:nth-of-type(3) .brandValuesContent__head {
    margin-top: 23px;
  }
}

.brandValuesContent__text {
  color: #040000;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 769px), print {
  .brandValuesContent__text {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.8333;
  }
}
@media screen and (max-width: 768px), print {
  .brandValuesContent__text {
    margin-top: 13px;
    font-size: 16px;
    line-height: 2;
  }
  .brandValuesContent__text:lang(en) {
    font-size: 17px;
  }
}

@media screen and (min-width: 769px), print {
  .companyAboutUs {
    padding-top: 81px;
    margin-top: -23px;
  }
}
@media screen and (max-width: 768px), print {
  .companyAboutUs {
    padding-top: 58px;
  }
}

.companyAboutUsList {
  border-top: 1px solid #cacbcf;
}
@media screen and (min-width: 769px), print {
  .companyAboutUsList {
    margin-top: 44px;
  }
}
@media screen and (max-width: 768px), print {
  .companyAboutUsList {
    margin-top: 36px;
  }
}

.companyAboutUsList__item {
  border-bottom: 1px solid #cacbcf;
}

@media screen and (min-width: 769px), print {
  .aboutUsContent {
    display: grid;
    grid-template-columns: 275px 1fr;
    padding-top: 22px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 768px), print {
  .aboutUsContent {
    padding-top: 20px;
    padding-bottom: 23px;
  }
}

.aboutUsContent__head {
  font-weight: normal;
  color: #646566;
}
@media screen and (min-width: 769px), print {
  .aboutUsContent__head {
    padding-left: 24px;
    font-size: 18px;
    line-height: 1.7778;
  }
}
@media screen and (max-width: 768px), print {
  .aboutUsContent__head {
    font-size: 16px;
    line-height: 2;
  }
  .aboutUsContent__head:lang(en) {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px), print {
  .aboutUsContent__detail {
    margin-top: 5px;
  }
}

@media screen and (min-width: 769px), print {
  .aboutUsContent__text {
    padding-right: 24px;
    font-size: 18px;
    line-height: 1.7778;
  }
}
@media screen and (max-width: 768px), print {
  .aboutUsContent__text {
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.01em;
  }
  .aboutUsContent__text:lang(en) {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
    font-size: 18px;
  }
}
.aboutUsContent__text a {
  color: #ff4600;
  text-decoration: underline;
}

.aboutUsContent__item {
  position: relative;
  padding-left: 9px;
}
@media screen and (min-width: 769px), print {
  .aboutUsContent__item {
    padding-right: 24px;
    font-size: 18px;
    line-height: 1.7778;
  }
}
@media screen and (max-width: 768px), print {
  .aboutUsContent__item {
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.01em;
  }
  .aboutUsContent__item:lang(en) {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
    font-size: 18px;
  }
}
.aboutUsContent__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.aboutUsContent__map {
  width: 100%;
}
@media screen and (min-width: 769px), print {
  .aboutUsContent__map {
    height: 384px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px), print {
  .aboutUsContent__map {
    height: 208px;
    margin-top: 23px;
    margin-bottom: 9px;
  }
}
.aboutUsContent__map iframe {
  width: 100%;
  height: 100%;
}

.aboutUsContent__officer:lang(ja) {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 769px), print {
  .aboutUsContent__officer:lang(ja) {
    font-size: 18px;
  }
}
.aboutUsContent__officer:lang(en):not(:last-child) {
  margin-bottom: 22px;
}
@media screen and (max-width: 768px), print {
  .aboutUsContent__officer:lang(en) {
    font-family: "Roboto", sans-serif;
  }
}
.aboutUsContent__officer .aboutUsContent__post {
  width: 100%;
}
.aboutUsContent__officer .aboutUsContent__post:lang(ja) {
  max-width: 160px;
}
@media screen and (max-width: 768px), print {
  .aboutUsContent__officer .aboutUsContent__post:lang(ja) {
    font-size: 16px;
  }
}
.aboutUsContent__officer .aboutUsContent__post:lang(en) {
  font-size: 16px;
}
.aboutUsContent__officer .aboutUsContent__post a {
  color: #ff4600;
  text-decoration: underline;
}
.aboutUsContent__officer .aboutUsContent__name:lang(ja) {
  padding-left: 40px;
}
.aboutUsContent__officer .aboutUsContent__name:lang(en) {
  font-size: 22px;
  font-weight: 500;
}
.aboutUsContent__officer .aboutUsContent__name a {
  color: #ff4600;
  text-decoration: underline;
}

@media screen and (min-width: 769px), print {
  .groupCompany {
    padding-top: 81px;
    margin-top: 34px;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompany {
    padding-top: 58px;
    margin-top: 33px;
  }
}

@media screen and (min-width: 769px), print {
  .groupCompanyList {
    margin-top: 44px;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyList {
    margin-top: 36px;
  }
}

@media screen and (min-width: 769px), print {
  .groupCompanyList__item + .groupCompanyList__item {
    margin-top: 56px;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyList__item + .groupCompanyList__item {
    margin-top: 56px;
  }
}

@media screen and (min-width: 769px), print {
  .groupCompanyContent {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 44.365% 1fr;
    row-gap: 32px;
    column-gap: 48px;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyContent {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 769px), print {
  .groupCompanyContent__image {
    grid-area: 1/1/span 2/span 1;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyContent__image {
    display: flex;
    justify-content: center;
    order: -1;
  }
}
.groupCompanyContent__image img {
  max-width: 100%;
  height: auto;
}

.groupCompanyContent__name {
  font-weight: 500;
  color: #040000;
}
.groupCompanyContent__name:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 768px), print {
  .groupCompanyContent__name:lang(en) {
    font-size: 24px;
  }
}
@media screen and (min-width: 769px), print {
  .groupCompanyContent__name {
    grid-area: 1/2/span 1/span 1;
    padding-top: 5px;
    font-size: 26px;
    line-height: 1.0769;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyContent__name {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyList__item:nth-of-type(2) .groupCompanyContent__name {
    margin-top: 33px;
  }
}

@media screen and (min-width: 769px), print {
  .groupCompanyContent__detail {
    grid-area: 2/2/span 1/span 1;
    margin-top: 1px;
    margin-left: 2px;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyContent__detail {
    margin-top: 20px;
  }
}

.groupCompanyContent__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .groupCompanyContent__text {
    font-size: 16px;
    line-height: 2;
  }
  .groupCompanyContent__text:lang(en) {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyContent__text {
    font-size: 14px;
    line-height: 2;
  }
  .groupCompanyContent__text:lang(en) {
    font-size: 16px;
  }
}

.groupCompanyContent__button {
  width: 288px;
  height: 48px;
}
@media screen and (min-width: 769px), print {
  .groupCompanyContent__button {
    margin-top: 44px;
  }
}
@media screen and (max-width: 768px), print {
  .groupCompanyContent__button {
    margin-top: 28px;
    margin-right: auto;
    margin-left: auto;
  }
}

.groupCompanyContent__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #ff4600;
  border: 1px solid #ff4600;
  transition: color 0.2s linear;
}
.groupCompanyContent__link:lang(en) {
  font-family: "Barlow", sans-serif;
}
.groupCompanyContent__link::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #ff4600;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .groupCompanyContent__link:hover {
    color: #fff;
  }
  .groupCompanyContent__link:hover::before {
    opacity: 1;
  }
  .groupCompanyContent__link:hover span::before {
    opacity: 0;
  }
  .groupCompanyContent__link:hover span::after {
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .groupCompanyContent__link:active {
    color: #fff;
  }
  .groupCompanyContent__link:active::before {
    opacity: 1;
  }
  .groupCompanyContent__link:active span::before {
    opacity: 0;
  }
  .groupCompanyContent__link:active span::after {
    opacity: 1;
  }
}
.groupCompanyContent__link span {
  position: relative;
  padding-right: 28px;
}
.groupCompanyContent__link span::before, .groupCompanyContent__link span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  transition: opacity 0.2s linear;
  transform: translateY(-50%);
}
.groupCompanyContent__link span::before {
  background-image: url("../images/common/icon_blank_orange.svg");
}
.groupCompanyContent__link span::after {
  background-image: url("../images/common/icon_blank_white.svg");
  opacity: 0;
}

@media screen and (min-width: 769px), print {
  .history__wrapper + .history__wrapper {
    margin-top: 119px;
  }
}
@media screen and (max-width: 768px), print {
  .history__wrapper + .history__wrapper {
    margin-top: 57px;
  }
  .history__wrapper + .history__wrapper:lang(en) {
    margin-top: 30px;
  }
}

.historiesTitle {
  color: #646566;
}
@media screen and (min-width: 769px), print {
  .historiesTitle {
    margin-bottom: 34px;
    font-size: 20px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px), print {
  .historiesTitle {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
  }
  .historiesTitle:lang(en) {
    font-size: 17px;
  }
}

@media screen and (min-width: 769px), print {
  .history__inner {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 148px 1fr;
  }
  .history__inner:lang(en) {
    grid-template-columns: 115px 1fr;
  }
}
@media screen and (min-width: 769px), print {
  .history__inner::after {
    grid-area: 2/1/span 1/span 1;
    width: 2px;
    height: calc(100% - 20px);
    margin-top: 20px;
    margin-left: 40px;
    content: "";
    background-color: #ff4600;
  }
}
@media screen and (min-width: 769px), print {
  .history__inner:lang(en)::after {
    margin-left: 33px;
  }
}
@media screen and (min-width: 769px), print {
  .history__inner + .history__inner {
    margin-top: 24px;
  }
}

.historyYear {
  font-weight: 500;
  color: #ff4600;
  white-space: nowrap;
}
@media screen and (min-width: 769px), print {
  .historyYear {
    grid-area: 1/1/span 1/span 1;
    font-size: 28px;
    line-height: 1.1429;
  }
  .historyYear:lang(en) {
    font-size: 29px;
  }
}
@media screen and (max-width: 768px), print {
  .historyYear {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.4545;
  }
}

@media screen and (min-width: 769px), print {
  .historiesList {
    grid-area: 1/2/span 2/span 1;
    max-width: 940px;
    padding-top: 2px;
    padding-bottom: 79px;
  }
}
@media screen and (max-width: 768px), print {
  .historiesList {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
  }
  .historiesList::before {
    position: absolute;
    top: 0;
    left: 10px;
    display: block;
    width: 1px;
    height: 100%;
    content: "";
    background-color: #ff4600;
  }
}

.historiesListData {
  display: flex;
  align-items: baseline;
}
@media screen and (min-width: 769px), print {
  .historiesListData {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px), print {
  .historiesListData {
    padding-bottom: 28px;
    font-size: 14px;
  }
  .historiesListData:lang(en) {
    display: block;
  }
}
.historiesListData:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px), print {
  .historiesListData:last-of-type {
    padding-bottom: 37px;
  }
}

.historiesListData__month {
  position: relative;
  font-weight: 500;
  color: #ff4600;
  white-space: nowrap;
}
@media screen and (min-width: 769px), print {
  .historiesListData__month {
    width: 77px;
    padding-left: 18px;
  }
  .historiesListData__month:lang(en) {
    width: 135px;
  }
}
@media screen and (max-width: 768px), print {
  .historiesListData__month {
    width: 56px;
    padding-left: 14px;
  }
  .historiesListData__month:lang(en) {
    font-size: 15px;
    font-weight: 500;
  }
}
.historiesListData__month::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background-color: #ff4600;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px), print {
  .historiesListData__month::before {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px), print {
  .historiesListData__month::before {
    width: 6px;
    height: 6px;
  }
}

@media screen and (min-width: 769px), print {
  .historiesListData__text {
    width: calc(100% - 77px);
    line-height: 1.6667;
  }
}
@media screen and (max-width: 768px), print {
  .historiesListData__text {
    width: calc(100% - 56px);
    line-height: 1.7143;
  }
  .historiesListData__text:lang(en) {
    width: 100%;
    font-size: 15px;
  }
}
.historiesListData__text a {
  color: #ff4600;
  text-decoration: underline;
}

.managementCategory {
  font-weight: 500;
  color: #040000;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 769px), print {
  .managementCategory {
    margin-top: 119px;
    margin-bottom: 81px;
    font-size: 36px;
  }
}
@media screen and (max-width: 768px), print {
  .managementCategory {
    margin-top: 87px;
    margin-bottom: 49px;
    font-size: 30px;
  }
}
@media screen and (min-width: 769px), print {
  .managementCategory:first-of-type {
    margin-top: 113px;
    margin-bottom: 81px;
    font-size: 36px;
  }
}
@media screen and (max-width: 768px), print {
  .managementCategory:first-of-type {
    margin-top: 56px;
  }
}

.managementIntroduction::after {
  display: block;
  width: 100%;
  content: "";
  border-bottom: solid 1px #cacbcf;
}
@media screen and (min-width: 769px), print {
  .managementIntroduction::after {
    margin: 64px 0;
  }
}
@media screen and (max-width: 768px), print {
  .managementIntroduction::after {
    margin: 40px 0;
  }
}
@media screen and (min-width: 769px), print {
  .managementIntroduction.managementImage__none + .managementImage__none {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px), print {
  .managementIntroduction.managementImage__none + .managementImage__none {
    margin-top: 50px;
  }
}
.managementIntroduction.managementImage__none::after {
  display: none;
  margin-top: 0;
  margin-bottom: 0;
}
.managementIntroduction.managementImage__none .managementIntroduction__inner {
  display: block;
}
@media screen and (min-width: 769px), print {
  .managementIntroduction.managementImage__none .managementIntroduction__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
  }
  .managementIntroduction.managementImage__none .managementIntroduction__content .managementTitle {
    width: 260px;
    margin-top: 0;
    white-space: nowrap;
  }
  .managementIntroduction.managementImage__none .managementIntroduction__content .management__text {
    flex: 1;
    padding-left: 10px;
    margin-top: 0;
  }
}

@media screen and (min-width: 769px), print {
  .managementIntroduction__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 769px), print {
  .managementImage {
    display: block;
    width: 32%;
    margin: 0 auto auto;
  }
}

@media screen and (min-width: 769px), print {
  .managementImage__img {
    width: 100%;
    max-width: 344px;
    border-radius: 25px 25px 25px 0;
  }
}
@media screen and (max-width: 768px), print {
  .managementImage__img {
    display: block;
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
    border-radius: 15px 15px 15px 0;
  }
}

@media screen and (min-width: 769px), print {
  .managementIntroduction__content {
    width: 70%;
    padding-left: 56px;
  }
}

@media screen and (max-width: 768px), print {
  .managementTitle {
    margin-top: 21px;
  }
}
.managementTitle .managementTitle__title {
  display: block;
  font-weight: 500;
  color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .managementTitle .managementTitle__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px), print {
  .managementTitle .managementTitle__title {
    margin-bottom: 2px;
    font-size: 15px;
  }
}
.managementTitle .managementTitle__name {
  display: block;
  font-weight: 500;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .managementTitle .managementTitle__name {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px), print {
  .managementTitle .managementTitle__name {
    font-size: 26px;
  }
}

.management__text {
  line-height: 2;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .management__text {
    margin-top: 28px;
  }
}
@media screen and (max-width: 768px), print {
  .management__text {
    margin-top: 28px;
  }
}

.services__cardList {
  display: grid;
  justify-content: center;
}
@media screen and (min-width: 769px), print {
  .services__cardList {
    grid-template-columns: repeat(auto-fit, 360px);
    gap: 10px;
    margin-top: 49px;
  }
}
@media screen and (max-width: 768px), print {
  .services__cardList {
    grid-template-columns: repeat(auto-fit, 100%);
    gap: 16px;
    margin-top: 20px;
  }
}

.services__cardListItem {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .services__cardListItem {
    padding: 48px 24px;
  }
}
@media screen and (max-width: 768px), print {
  .services__cardListItem {
    padding: 48px 20px;
  }
}

.services__cardIcon {
  width: 160px;
  height: 160px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  border-radius: 50%;
}
.services__cardIcon .services__cardIconImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__cardTitle {
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 769px), print {
  .services__cardTitle {
    margin-top: 32px;
    font-size: 24px;
    line-height: 1.3333;
  }
}
@media screen and (max-width: 768px), print {
  .services__cardTitle {
    margin-top: 32px;
    font-size: 20px;
    line-height: 1.4;
  }
}

.services__cardText {
  font-weight: 400;
}
@media screen and (min-width: 769px), print {
  .services__cardText {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.8333;
  }
}
@media screen and (max-width: 768px), print {
  .services__cardText {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
}

.services__cardButton {
  padding-top: 32px;
  margin-top: auto;
}

.footer__nav {
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #040000;
}
@media screen and (min-width: 769px), print {
  .footer__nav {
    font-size: 13px;
  }
}
@media screen and (max-width: 1059px) {
  .footer__nav {
    padding-top: 40px;
    padding-bottom: 16px;
    line-height: 3;
  }
}
@media screen and (max-width: 768px), print {
  .footer__nav {
    font-size: 12px;
  }
}

.footer__navList {
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 1060px) {
  .footer__navList {
    display: flex;
    align-items: center;
    max-width: 1140px;
    padding: 15px 20px 23px;
  }
}

.footer__navItem {
  margin-left: 16px;
  white-space: nowrap;
}
.footer__navItem:lang(en) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1060px) {
  .footer__navItem {
    margin-left: 16px;
  }
  .footer__navItem::before {
    padding-right: 9px;
    content: "｜";
  }
  .footer__navItem:first-of-type {
    margin-left: 0;
  }
  .footer__navItem:first-of-type::before {
    content: none;
  }
}
@media screen and (min-width: 769px), print {
  .footer__navItem a {
    transition: opacity 0.2s linear;
  }
  .footer__navItem a:hover {
    opacity: 0.6;
  }
}

.copyright {
  margin: auto 0 auto auto;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: #f5f5f5;
  text-align: center;
  letter-spacing: 0.07em;
}
.copyright:lang(ja), .copyright:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 1060px) {
  .copyright {
    padding-left: 20px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1059px) {
  .copyright {
    margin: 48px auto 0;
  }
}

.globalFooterNav {
  color: #fff;
  background-color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .globalFooterNav {
    padding-top: 60px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .globalFooterNav {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.globalFooterNav .globalNav__list {
  position: relative;
}
@media screen and (min-width: 769px) {
  .globalFooterNav .globalNav__list {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .globalFooterNav .globalNav__list:lang(ja) {
    max-width: 917px;
  }
  .globalFooterNav .globalNav__list:lang(en) {
    max-width: 870px;
  }
}
@media screen and (max-width: 768px) {
  .globalFooterNav .globalNav__list {
    padding: 20px 20px 48px;
  }
}

@media screen and (min-width: 769px) {
  .footer__inner .globalNav__item.globalNav__item--home:lang(ja) {
    width: 60px;
  }
}
@media screen and (min-width: 769px) {
  .footer__inner .globalNav__item.globalNav__item--news:lang(ja) {
    position: absolute;
    top: 40px;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  .footer__inner .globalNav__item.globalNav__item--recruit {
    position: absolute;
    top: 0;
    right: 180px;
    z-index: 1;
  }
}
@media screen and (min-width: 769px) {
  .footer__inner .globalNav__item.globalNav__groupCompany:lang(ja) {
    padding-top: 40px;
  }
  .footer__inner .globalNav__item.globalNav__groupCompany .globalNav__subList {
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 769px), print {
  .footer__inner .toggleList .globalNav__link:hover {
    opacity: 1;
  }
  .footer__inner .toggleList .globalNav__link.globalNav__link--sustainability:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 769px), print {
  .footer__inner .globalNav__link {
    transition: opacity 0.2s linear;
  }
  .footer__inner .globalNav__link:lang(en) {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
  }
  .footer__inner .globalNav__link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px), print {
  .footer__inner .globalNav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 10px;
  }
}
.footer__inner .globalNav__link.globalNav__link--groupCompany:hover {
  opacity: 1;
}
.footer__inner .globalNav__subItem {
  font-weight: normal;
}
@media screen and (min-width: 769px), print {
  .footer__inner .globalNav__subItem {
    font-size: 13px;
    transition: opacity 0.2s linear;
  }
  .footer__inner .globalNav__subItem:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1230px) {
  .footer__inner .globalNav__subList {
    padding-top: 13px;
  }
}

@media screen and (min-width: 1560px) {
  .header__inner .globalNav__list {
    max-width: 910px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1559px) {
  .header__inner .globalNav__list {
    display: flex;
    justify-content: space-between;
    max-width: 910px;
    padding: 60px 20px 75px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .header__inner .globalNav__list {
    padding: 20px 20px 48px;
  }
}
.header__inner .globalnav {
  display: flex;
  color: #040000;
}
@media screen and (max-width: 1559px) {
  .header__inner .globalnav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    padding-top: 36px;
    color: #fff;
    background-color: #ff4600;
    transition: transform 0.2s linear;
    transform: translateY(-100%);
  }
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__list {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__list {
    position: relative;
    display: block;
    height: 100vh;
    padding: 40px 20px 120px;
    overflow-y: scroll;
  }
  .header__inner .globalNav__list::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 16px;
    white-space: nowrap;
  }
  .header__inner .globalNav__item:lang(en) {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
    font-size: 18px;
  }
  .header__inner .globalNav__item .globalNav__link {
    width: 100%;
    margin: 0 32px;
    transition: color 0.2s linear;
  }
  .header__inner .globalNav__item:first-of-type {
    display: none;
  }
  .header__inner .globalNav__item:hover .globalNav__link {
    color: #ff4600;
  }
  .header__inner .globalNav__item:hover .globalNav__link .globalNav__linkText::after {
    transform: scale(1, 1);
  }
  .header__inner .globalNav__item:hover .globalNav__subList {
    display: block;
  }
  .header__inner .globalNav__item:hover .globalNav__subList .globalNav__subItem:hover {
    color: #ff4600;
    transition: color 0.2s linear;
  }
  .header__inner .globalNav__item:hover .globalNav__subList .globalNav__subItem:hover::before {
    opacity: 1;
    transition: opacity 0.2s linear;
  }
  .header__inner .globalNav__item:hover .globalNav__subList .globalNav__subItem.active {
    color: #ff4600;
    transition: color 0.2s linear;
  }
  .header__inner .globalNav__item:hover .globalNav__subList .globalNav__subItem.active::before {
    opacity: 1;
    transition: opacity 0.2s linear;
  }
  .header__inner .globalNav__item.active .globalNav__link {
    color: #ff4600;
  }
  .header__inner .globalNav__item.active .globalNav__link .globalNav__linkText::after {
    transform: scale(1, 1);
  }
  .header__inner .globalNav__item.display-none--pc {
    display: none;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__item {
    margin-left: 0;
    font-size: 17px;
  }
  .header__inner .globalNav__item::after {
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #fff;
  }
  .header__inner .globalNav__item:last-of-type::after {
    display: none;
  }
  .header__inner .globalNav__item.globalNav__form {
    margin-left: auto;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__item.toggleList .globalNav__linkText {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
    margin: auto 0;
  }
  .header__inner .globalNav__item.toggleList .globalNav__linkText::before {
    position: absolute;
    right: 10px;
    display: block;
    width: 12px;
    height: 2px;
    content: "";
    background-color: #fff;
  }
  .header__inner .globalNav__item.toggleList .globalNav__linkText::after {
    position: absolute;
    right: 15px;
    display: block;
    width: 2px;
    height: 12px;
    content: "";
    background-color: #fff;
    transition: transform 0.2s linear;
  }
}
.header__inner .globalNav__item.toggleList.open .globalNav__linkText::after {
  transform: rotate(90deg);
}
.header__inner .globalNav__item.toggleList.open .globalNav__subList {
  visibility: visible;
  opacity: 1;
}
.header__inner .globalNav__item.toggleList.open .globalNav__subList::before {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #fff;
}
.header__inner .globalNav__item.toggleList.open .globalNav__subList .globalNav__subItem {
  display: flex;
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .header__inner .globalNav__link .globalNav__linkText::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    content: "";
    background-color: #ff4600;
    transition: transform 0.2s linear;
    transform: scale(0, 1);
    transform-origin: left bottom;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 10px;
  }
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__subList {
    position: absolute;
    top: 80px;
    left: 50%;
    display: none;
    width: 208px;
    margin: 0 auto;
    line-height: 0;
    background-color: #fff;
    transform: translateX(-50%);
  }
  .header__inner .globalNav__subList:lang(en) {
    width: 250px;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__subList {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s linear;
  }
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__subItem {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
  }
  .header__inner .globalNav__subItem:last-of-type {
    border-bottom: none;
  }
  .header__inner .globalNav__subItem::before {
    display: block;
    width: 0;
    height: 6px;
    padding-right: 6px;
    margin-top: 8px;
    margin-left: 18px;
    content: "";
    background-color: #ff4600;
    opacity: 0;
    transition: opacity 0.2s linear;
  }
  .header__inner .globalNav__subItem.globalNav__sustainability:first-of-type {
    display: none;
    border-bottom: 0;
  }
  .header__inner .globalNav__subItem.globalNav__sustainability:first-of-type a {
    display: none;
    padding: 0;
  }
  .header__inner .globalNav__subItem.globalNav__sustainability:first-of-type::before {
    display: none;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__subItem {
    display: none;
    padding-left: 10px;
    margin-left: 0;
  }
  .header__inner .globalNav__subItem:lang(en) {
    font-size: 16px;
  }
  .header__inner .globalNav__subItem:first-of-type {
    padding-top: 13px;
  }
  .header__inner .globalNav__subItem:last-of-type {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__subLink {
    display: block;
    width: 100%;
    padding: 36px 64px 32px 8px;
    margin: 0;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__subLink {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__form:lang(en) {
    font-family: "Barlow", sans-serif;
    font-size: 24px;
  }
  .header__inner .globalNav__form:lang(en) a {
    max-height: 80px;
    padding: 22px 67px 22px 53px;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__form:lang(en) {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
  }
}
@media screen and (min-width: 1560px) {
  .header__inner .globalNav__form {
    position: static;
    margin-left: 174px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background-color: #ff4600;
  }
  .header__inner .globalNav__form:hover {
    color: #ff4600;
    background-color: #f0f0ed;
  }
  .header__inner .globalNav__form a {
    padding: 25px 67px 25px 53px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalNav__form {
    position: static;
    max-width: none;
    margin-top: 40px;
  }
  .header__inner .globalNav__form a {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 1559px) {
  .header__inner .globalHeaderNav {
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
  }
}
@media screen and (max-width: 1559px) and (max-width: 768px) {
  .header__inner .globalHeaderNav {
    padding-left: 20px;
  }
}
.header__inner .globalHeaderNav__btn {
  position: relative;
  width: 24px;
  height: 19px;
  margin: 19px 20px;
  border: none;
}
@media screen and (min-width: 1560px) {
  .header__inner .globalHeaderNav__btn.display-none__pc {
    display: none;
  }
}
@media screen and (max-width: 1559px) {
  .header__inner .globalHeaderNav__btn.display-none__pc {
    display: block;
  }
}
.header__inner .globalHeaderNav__btn .visuallu-hidden {
  position: absolute;
  top: 9px;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 1px;
  overflow: hidden;
  background-color: #040000;
  transition: transform 0.2s linear, top 0.2s linear;
}
.header__inner .globalHeaderNav__btn::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 1px;
  content: "";
  background-color: #040000;
  transition: transform 0.2s linear, top 0.2s linear;
}
.header__inner .globalHeaderNav__btn::after {
  position: absolute;
  top: 19px;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 1px;
  content: "";
  background-color: #040000;
  transition: transform 0.2s linear, top 0.2s linear;
}

@media screen and (min-width: 1025px), print {
  .headerLogo {
    padding: 25px 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px), print {
  .headerLogo {
    padding: 25px 20px;
  }
}
.headerLogo .headerLogo__link {
  display: block;
  height: 100%;
}
@media screen and (max-width: 768px), print {
  .headerLogo .headerLogo__link {
    width: 220px;
  }
}
.headerLogo .headerlogo__img {
  width: 100%;
}
@media screen and (min-width: 769px), print {
  .headerLogo .headerlogo__img {
    width: 276px;
    height: auto;
  }
}
@media screen and (max-width: 768px), print {
  .headerLogo .headerlogo__img {
    max-width: 220px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.languageSwitching {
  position: absolute;
  width: 70px;
}
@media screen and (min-width: 1560px) {
  .languageSwitching {
    top: 0;
    right: 296px;
    height: 100%;
  }
}
@media screen and (max-width: 1559px) {
  .languageSwitching {
    top: 17px;
    left: 50%;
    display: none;
    width: 100%;
    max-width: 910px;
    margin-left: 20px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1559px) {
  .header.open .languageSwitching {
    display: block;
  }
}

.languageSwitching__lists {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1560px) {
  .languageSwitching__lists {
    color: #040000;
  }
}
@media screen and (max-width: 1559px) {
  .languageSwitching__lists {
    width: 70px;
    color: #fff;
  }
}
.languageSwitching__lists::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  font-size: 12px;
  line-height: 2.3333;
  content: "/";
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px), print {
  .languageSwitching__listItem {
    font-size: 14px;
    line-height: 2;
  }
}
.languageSwitching__listItem:nth-child(2) {
  margin-left: 20px;
}
.languageSwitching__listItem a {
  display: block;
  width: 25px;
  padding: 3px 0;
  text-align: center;
  transition: color 0.2s linear;
}
.languageSwitching__listItem a.active {
  pointer-events: none;
}
.languageSwitching__listItem a.active, .languageSwitching__listItem a:hover {
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 1560px) {
  .languageSwitching__listItem a.active, .languageSwitching__listItem a:hover {
    color: #ff4600;
  }
}
.languageSwitching__listItem a.active::after, .languageSwitching__listItem a:hover::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width: 1560px) {
  .languageSwitching__listItem a.active::after, .languageSwitching__listItem a:hover::after {
    background: #ff4600;
  }
}
@media screen and (max-width: 1559px) {
  .languageSwitching__listItem a.active::after, .languageSwitching__listItem a:hover::after {
    background: #fff;
  }
}

.sdgsAttempt {
  position: relative;
  background-color: #f7f7f5;
}
@media screen and (min-width: 769px), print {
  .sdgsAttempt {
    padding: 63px 62px 58px;
    margin-top: 60px;
    margin-bottom: 49px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttempt {
    padding: 40px 20px 38px;
    margin-top: 34px;
    margin-bottom: 40px;
  }
}
.sdgsAttempt::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-color: #f7f7f5 transparent transparent;
  border-style: solid;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px), print {
  .sdgsAttempt::after {
    border-width: 49px 39px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttempt::after {
    border-width: 40px 32px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsAttempt__section + .sdgsAttempt__section {
    margin-top: 61px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttempt__section + .sdgsAttempt__section {
    margin-top: 35px;
  }
}

.sdgsAttempt__head {
  position: relative;
  font-weight: 500;
  color: #ff4600;
}
.sdgsAttempt__head:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .sdgsAttempt__head:lang(en) {
    font-size: 28px;
    line-height: 1.1429;
  }
}
@media screen and (min-width: 769px), print {
  .sdgsAttempt__head {
    padding-bottom: 18px;
    font-size: 26px;
    line-height: 1.2308;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttempt__head {
    padding-bottom: 19px;
    font-size: 20px;
    line-height: 1.6;
  }
}
.sdgsAttempt__head::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #cacbcf;
}
.sdgsAttempt__head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #ff4600;
}

.sdgsAttempt__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsAttempt__text {
    margin-top: 27px;
    font-size: 18px;
    line-height: 1.7778;
  }
  .sdgsAttempt__text:lang(en) {
    font-size: 17px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttempt__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }
  .sdgsAttempt__text:lang(en) {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsAttempt__list {
    margin-top: 39px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttempt__list {
    margin-top: 31px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsAttempt__item + .sdgsAttempt__item {
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttempt__item + .sdgsAttempt__item {
    margin-top: 36px;
  }
}

.sdgsAttemptDetail__head {
  display: grid;
  align-items: center;
  font-weight: 500;
  color: #040000;
}
.sdgsAttemptDetail__head:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .sdgsAttemptDetail__head {
    grid-template-columns: 52px 1fr;
    column-gap: 22px;
    font-size: 22px;
    line-height: 1.6364;
  }
  .sdgsAttemptDetail__head:lang(en) {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttemptDetail__head {
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    font-size: 16px;
    line-height: 1.625;
  }
  .sdgsAttemptDetail__head:lang(en) {
    font-size: 18px;
    line-height: 1.4444;
    letter-spacing: -0.004em;
  }
}
.sdgsAttemptDetail__head span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  background-color: #ff4600;
  border-radius: 4px 4px 4px 0;
}
.sdgsAttemptDetail__head span:lang(en) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans Modified", "Hiragino Sans", meiryo, arial, sans-serif;
}
@media screen and (min-width: 769px), print {
  .sdgsAttemptDetail__head span {
    height: 52px;
    font-size: 28px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttemptDetail__head span {
    height: 48px;
    font-size: 25px;
  }
}

.sdgsAttemptDetail__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsAttemptDetail__text {
    margin-top: 17px;
    font-size: 18px;
    line-height: 1.7778;
  }
  .sdgsAttemptDetail__text:lang(en) {
    font-size: 17px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsAttemptDetail__text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 2;
  }
  .sdgsAttemptDetail__text:lang(en) {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsChallenge {
    margin-top: 59px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallenge {
    margin-top: 27px;
  }
}

.sdgsChallenge__head {
  font-weight: 500;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsChallenge__head {
    font-size: 26px;
    line-height: 1.0769;
    text-align: center;
  }
  .sdgsChallenge__head:lang(en) {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.95;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallenge__head {
    font-size: 18px;
    line-height: 1.7778;
  }
  .sdgsChallenge__head:lang(en) {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
  }
}

.sdgsChallenge__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsChallenge__text {
    margin-top: 11px;
    font-size: 18px;
    line-height: 1.7778;
    text-align: center;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallenge__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 2;
  }
  .sdgsChallenge__text:lang(en) {
    font-size: 17px;
    line-height: 1.8;
  }
}

.sdgsChallenge__quote {
  color: #040000;
  text-align: right;
}
@media screen and (min-width: 769px), print {
  .sdgsChallenge__quote {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }
  .sdgsChallenge__quote:lang(en) {
    font-weight: 400;
    line-height: 1.7143;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallenge__quote {
    margin-top: 5px;
    font-size: 12px;
    line-height: 2.3333;
  }
  .sdgsChallenge__quote:lang(en) {
    margin-top: 27px;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.0571;
  }
}
.sdgsChallenge__quote cite {
  font-style: normal;
}

@media screen and (min-width: 769px), print {
  .sdgsChallengeList {
    display: grid;
    grid-template-rows: 131px;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    margin-top: 35px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1250px) {
  .sdgsChallengeList:lang(en) {
    display: block;
    width: 356px;
    margin: 35px auto 0;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList {
    margin-top: 36px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1250px) {
  .sdgsChallengeList__item:lang(en) {
    height: 131px;
  }
  .sdgsChallengeList__item:lang(en):not(:first-child) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__item + .sdgsChallengeList__item {
    margin-top: 32px;
  }
}

.sdgsChallengeList__case {
  position: relative;
  height: 100%;
  border: 1px solid #ff4600;
}
.sdgsChallengeList__case:lang(ja) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px), print {
  .sdgsChallengeList__case {
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .sdgsChallengeList__case:lang(en) {
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 39px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__case {
    min-height: 104px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
  }
  .sdgsChallengeList__case:lang(en) {
    position: relative;
    display: block;
    width: 100%;
    min-height: 132px;
    padding-top: 10px;
    padding-right: 40px;
    padding-left: 40px;
    text-align: center;
  }
}
.sdgsChallengeList__case::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-color: #ff4600 transparent transparent #ff4600;
  border-style: solid;
}
@media screen and (min-width: 769px), print {
  .sdgsChallengeList__case::after {
    border-width: 10px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__case::after {
    border-width: 8px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsChallengeList__caseWrap:lang(en) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__caseWrap:lang(en) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0;
    transform: translate(-50%, -58%);
  }
}

.sdgsChallengeList__number {
  font-weight: 500;
  color: #ff4600;
}
.sdgsChallengeList__number:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .sdgsChallengeList__number {
    font-size: 20px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__number {
    font-size: 16px;
    line-height: 1.5625;
  }
}
@media screen and (min-width: 769px), print {
  .sdgsChallengeList__number span {
    margin-left: 8px;
    font-size: 44px;
  }
  .sdgsChallengeList__number span:lang(en) {
    margin-right: 35px;
    margin-left: 0;
    font-size: 50px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__number span {
    margin-left: 6px;
    font-size: 30px;
  }
  .sdgsChallengeList__number span:lang(en) {
    margin-left: 0;
  }
}

.sdgsChallengeList__subject {
  font-weight: 500;
  color: #040000;
  text-align: center;
}
.sdgsChallengeList__subject:lang(en) {
  flex: 1;
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .sdgsChallengeList__subject:lang(en) {
    text-align: left;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__subject:lang(en) {
    font-size: 23px;
    line-height: 1.2174;
  }
}
@media screen and (min-width: 769px), print {
  .sdgsChallengeList__subject {
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.1667;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsChallengeList__subject {
    font-size: 18px;
    line-height: 1.4444;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsContribution {
    margin-top: 69px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContribution {
    margin-top: 42px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsContributionList {
    padding-top: 39px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList {
    padding-top: 42px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsContributionList__item + .sdgsContributionList__item {
    margin-top: 107px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__item + .sdgsContributionList__item {
    margin-top: 50px;
  }
}

.sdgsContributionList__head {
  position: relative;
  font-weight: 500;
  color: #ff4600;
  text-align: center;
}
.sdgsContributionList__head:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__head {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__head {
    font-size: 22px;
    line-height: 1.2727;
  }
}
.sdgsContributionList__head span {
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__head span {
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__head span {
    padding-bottom: 14px;
  }
}
.sdgsContributionList__head span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  background-color: #ff4600;
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__head span::after {
    height: 4px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__head span::after {
    height: 3px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsContributionList__content {
    margin-top: 17px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__content {
    margin-top: 20px;
  }
}

.sdgsContributionList__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__text {
    font-size: 18px;
    line-height: 1.7778;
    text-align: center;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__text {
    font-size: 16px;
    line-height: 2;
  }
  .sdgsContributionList__text:lang(en) {
    font-size: 17px;
    line-height: 1.8;
  }
}

.sdgsContributionList__image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__image {
    margin-top: 54px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__image {
    margin-top: 25px;
  }
}
.sdgsContributionList__image figcaption {
  font-weight: 500;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__image figcaption {
    font-size: 22px;
    line-height: 1.4545;
  }
  .sdgsContributionList__image figcaption:lang(en) {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.3333;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__image figcaption {
    font-size: 17px;
    line-height: 1.8824;
  }
  .sdgsContributionList__image figcaption:lang(en) {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4444;
    text-align: center;
  }
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__image picture {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsContributionList__image picture {
    margin-top: 4px;
  }
  .sdgsContributionList__image picture:lang(en) {
    margin-top: 24px;
  }
}
.sdgsContributionList__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 769px), print {
  .sdgsContributionList__image img:lang(en) {
    max-width: 540px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsTarget {
    margin-top: 89px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsTarget {
    margin-top: 30px;
  }
}

.sdgsTarget__lead {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsTarget__lead {
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsTarget__lead {
    font-size: 16px;
    line-height: 2;
  }
  .sdgsTarget__lead:lang(en) {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsTarget__section {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsTarget__section {
    margin-top: 41px;
  }
}

.sdgsTarget__content {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .sdgsTarget__content {
    max-width: 1042px;
    margin-top: 39px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsTarget__content {
    flex-direction: column;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px), print {
  .sdgsTarget__image {
    width: 167px;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsTarget__image {
    width: 176px;
  }
}
.sdgsTarget__image img {
  width: 100%;
  height: auto;
}

.sdgsTarget__text {
  font-weight: 500;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .sdgsTarget__text {
    flex: 1;
    margin-left: 40px;
    font-size: 22px;
    line-height: 1.6364;
  }
  .sdgsTarget__text:lang(en) {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px), print {
  .sdgsTarget__text {
    margin-top: 36px;
    font-size: 16px;
    line-height: 2;
  }
  .sdgsTarget__text:lang(en) {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
  }
}

@media screen and (min-width: 769px), print {
  .socialActivity {
    padding-top: 67px;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivity {
    padding-top: 43px;
  }
}

@media screen and (min-width: 769px), print {
  .socialActivity__content {
    display: flex;
    align-items: flex-start;
    margin-top: 36px;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivity__content {
    margin-top: 29px;
  }
}

@media screen and (min-width: 769px), print {
  .socialActivity__textArea {
    width: 49.09%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivity__textArea {
    margin-top: 15px;
  }
}

.socialActivity__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .socialActivity__text {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivity__text {
    font-size: 14px;
    line-height: 2.2857;
  }
  .socialActivity__text:lang(en) {
    font-size: 16px;
    line-height: 1.8;
  }
}
.socialActivity__text a {
  color: #ff4600;
  text-decoration: underline;
}

@media screen and (min-width: 769px), print {
  .socialActivityList {
    margin-top: 79px;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivityList {
    margin-top: 53px;
  }
}

@media screen and (min-width: 769px), print {
  .socialActivityList__item + .socialActivityList__item {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivityList__item + .socialActivityList__item {
    margin-top: 20px;
  }
}

.socialActivityList__content {
  background-color: #f7f7f5;
}
@media screen and (max-width: 768px), print {
  .socialActivityList__content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.socialActivityList__head {
  position: relative;
  color: #040000;
}
.socialActivityList__head:lang(en) {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px), print {
  .socialActivityList__head:lang(en) {
    font-size: 22px;
    line-height: 1.4545;
  }
}
@media screen and (min-width: 769px), print {
  .socialActivityList__head {
    padding: 28px 41px 24px;
    font-size: 26px;
    line-height: 1.2308;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivityList__head {
    padding-top: 25px;
    padding-bottom: 19px;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
  }
}
.socialActivityList__head::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #cacbcf;
}
.socialActivityList__head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #ff4600;
}
@media screen and (max-width: 768px), print {
  .socialActivityList__head.socialActivityList__head--small {
    padding-top: 24px;
    padding-bottom: 22px;
    font-size: 18px;
    line-height: 1.6111;
  }
}

.socialActivityList__text {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .socialActivityList__text {
    padding: 16px 41px 21px;
    font-size: 16px;
    line-height: 2;
  }
  .socialActivityList__text:lang(en) {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px), print {
  .socialActivityList__text {
    padding-top: 25px;
    padding-bottom: 22px;
    font-size: 14px;
    line-height: 2;
  }
  .socialActivityList__text:lang(en) {
    font-size: 16px;
    line-height: 1.8;
  }
}
.socialActivityList__text a {
  color: #ff4600;
  text-decoration: underline;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.socialCarousel {
  position: relative;
}
@media screen and (min-width: 769px), print {
  .socialCarousel {
    width: 50.91%;
    padding-top: 4px;
  }
}
@media screen and (max-width: 768px), print {
  .socialCarousel {
    max-width: 670px;
  }
}

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

.socialCarousel__navigation {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px), print {
  .socialCarousel__navigation {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px), print {
  .socialCarousel__navigation {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 769px), print {
  .socialCarousel__navigation img {
    width: 14px;
  }
}
@media screen and (max-width: 768px), print {
  .socialCarousel__navigation img {
    width: 10px;
  }
}
.socialCarousel__navigation.swiper-button-prev {
  left: 0;
}
.socialCarousel__navigation.swiper-button-next {
  right: 0;
}
.socialCarousel__navigation.swiper-button-next img {
  transform: rotate(180deg);
}
.socialCarousel__navigation::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #969799;
  opacity: 0.3;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .socialCarousel__navigation:hover::before {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .socialCarousel__navigation:active::before {
    opacity: 0.6;
  }
}

.socialLead {
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .socialLead {
    margin-top: 84px;
    font-size: 18px;
    line-height: 2;
    text-align: center;
    word-break: keep-all;
  }
}
@media screen and (max-width: 768px), print {
  .socialLead {
    margin-top: 29px;
    font-size: 16px;
    line-height: 2;
  }
  .socialLead:lang(en) {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 768px), print {
  .governance .sectionHeading__ja {
    font-size: 28px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 769px), print {
  .governance + .society, .governance + .governance {
    margin-top: 138px;
  }
}
@media screen and (max-width: 768px), print {
  .governance + .society, .governance + .governance {
    margin-top: 80px;
  }
}

.governance__internalink .internalLink__inner {
  padding: 10px 46px;
}
@media screen and (min-width: 769px), print {
  .governance__internalink {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    max-width: 960px;
    margin-top: 76px;
    margin-right: auto;
    margin-left: auto;
  }
  .governance__internalink .internalLink {
    flex-shrink: 0;
    width: 100%;
    min-height: 88px;
    margin-right: 32px;
  }
  .governance__internalink .internalLink__inner {
    min-height: 88px;
  }
}
@media screen and (min-width: 769px) and (max-width: 999px) {
  .governance__internalink:lang(en) {
    flex-direction: column;
    align-items: center;
  }
  .governance__internalink:lang(en) .internalLink {
    width: 100%;
  }
  .governance__internalink:lang(en) .internalLink + .internalLink {
    margin-top: 31px;
  }
}
@media screen and (max-width: 768px), print {
  .governance__internalink {
    margin-top: 42px;
  }
  .governance__internalink .internalLink {
    min-height: 72px;
  }
  .governance__internalink .internalLink + .internalLink {
    margin-top: 31px;
  }
  .governance__internalink .internalLink__inner {
    min-height: 72px;
  }
}

@media screen and (max-width: 768px), print {
  .society {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px), print {
  .society .sectionHeading .sectionHeading__ja {
    font-size: 30px;
  }
}
@media screen and (min-width: 769px), print {
  .society + .society, .society + .governance {
    margin-top: 138px;
  }
}
@media screen and (max-width: 768px), print {
  .society + .society, .society + .governance {
    margin-top: 80px;
  }
}

@media screen and (min-width: 769px), print {
  .society__wrapper {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px), print {
  .society__wrapper {
    margin-top: 37px;
  }
}

.society__list:lang(ja) {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .society__list:lang(ja) {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px), print {
  .society__list:lang(ja) {
    flex-direction: column;
    margin-bottom: 62px;
  }
}
.society__list:lang(en) {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .society__list:lang(en) {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 999px) {
  .society__list:lang(en) {
    flex-direction: column;
    margin-bottom: 62px;
  }
}

@media screen and (min-width: 769px), print {
  .society__listImg {
    max-width: 352px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}
@media screen and (max-width: 768px), print {
  .society__listImg {
    max-width: 335px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

@media screen and (min-width: 769px), print {
  .society_listItem {
    padding-bottom: 42px;
    margin-left: 54px;
  }
}
@media screen and (max-width: 768px), print {
  .society_listItem {
    text-align: left;
  }
}

.society__listItemTitle {
  font-weight: 500;
  color: #040000;
}
.society__listItemTitle:lang(en) {
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 769px), print {
  .society__listItemTitle:lang(en) {
    font-size: 28px;
    line-height: 1;
  }
}
@media screen and (max-width: 768px), print {
  .society__listItemTitle:lang(en) {
    font-size: 26px;
    line-height: 1.2308;
  }
}
@media screen and (min-width: 769px), print {
  .society__listItemTitle {
    margin-bottom: 34px;
    font-size: 26px;
    line-height: 1.0769;
  }
}
@media screen and (min-width: 769px) and (max-width: 999px) {
  .society__listItemTitle:lang(en) {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px), print {
  .society__listItemTitle {
    margin-top: 32px;
    margin-bottom: 21px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }
}

.society__listItemText {
  font-size: 16px;
  line-height: 2;
  color: #040000;
}
@media screen and (min-width: 769px), print {
  .society__listItemText {
    margin-bottom: 38px;
  }
  .society__listItemText:lang(en) {
    font-size: 17px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px), print {
  .society__listItemText {
    margin-bottom: 23px;
  }
}

@media screen and (min-width: 769px), print {
  .society__listItemLink {
    position: relative;
    display: block;
  }
  .society__listItemLink:hover .society__listItemLink__inner img {
    transform: translate(0, -15px);
  }
}
@media screen and (max-width: 768px), print {
  .society__listItemLink {
    display: table;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px), print {
  .society__listItemLink .society__listItemLink__inner {
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: hidden;
  }
}
.society__listItemLink .society__listItemLink__inner h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7778;
  color: #ff4600;
}
.society__listItemLink .society__listItemLink__inner h3:lang(ja), .society__listItemLink .society__listItemLink__inner h3:lang(en) {
  font-family: "Barlow", sans-serif;
}
.society__listItemLink .society__listItemLink__inner .society__listItemLink__innerImg {
  width: 144px;
  height: 9px;
  transform: translateY(-15px);
}
@media screen and (min-width: 769px), print {
  .society__listItemLink .society__listItemLink__inner .society__listItemLink__innerImg {
    transition: transform 0.2s linear;
    transform: translate(-20px, -15px);
  }
}

.keyVisualIcon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.keyVisualIcon__list {
  position: relative;
  height: 100%;
}

.keyVisualIcon__item {
  position: absolute;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 420ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0);
}
.keyVisualIcon__item.is-display {
  opacity: 1;
  transform: scale(1);
}
@media screen and (min-width: 769px), print {
  .keyVisualIcon__item.keyVisualIcon__item--heart {
    top: 18.52%;
    left: 45.09%;
    width: 3%;
  }
}
@media screen and (max-width: 768px), print {
  .keyVisualIcon__item.keyVisualIcon__item--heart {
    top: 40.58%;
    left: 28%;
    width: 5.87%;
  }
}
@media screen and (min-width: 769px), print {
  .keyVisualIcon__item.keyVisualIcon__item--inspiration {
    top: 36.7%;
    right: 6.73%;
    width: 2.91%;
  }
}
@media screen and (max-width: 768px), print {
  .keyVisualIcon__item.keyVisualIcon__item--inspiration {
    top: 52.99%;
    right: 9.07%;
    width: 5.2%;
  }
}
@media screen and (min-width: 769px), print {
  .keyVisualIcon__item.keyVisualIcon__item--talk {
    right: 42.91%;
    bottom: 20.8%;
    width: 4.18%;
  }
}
@media screen and (max-width: 768px), print {
  .keyVisualIcon__item.keyVisualIcon__item--talk {
    bottom: 16.49%;
    left: 38.27%;
    width: 7.6%;
  }
}
@media screen and (min-width: 769px), print {
  .keyVisualIcon__item.keyVisualIcon__item--question {
    top: 11.25%;
    right: 32%;
    width: 2.36%;
  }
}
@media screen and (max-width: 768px), print {
  .keyVisualIcon__item.keyVisualIcon__item--question {
    top: 35.14%;
    right: 41.07%;
    width: 4.67%;
  }
}
@media screen and (min-width: 769px), print {
  .keyVisualIcon__item.keyVisualIcon__item--exclamation {
    bottom: 28.3%;
    left: 27.36%;
    width: 2.36%;
  }
}
@media screen and (max-width: 768px), print {
  .keyVisualIcon__item.keyVisualIcon__item--exclamation {
    bottom: 21.47%;
    left: 5.87%;
    width: 4.4%;
  }
}
@media screen and (min-width: 769px), print {
  .keyVisualIcon__item.keyVisualIcon__item--nice {
    top: 42.95%;
    left: 44.55%;
    width: 3.64%;
  }
}
@media screen and (max-width: 768px), print {
  .keyVisualIcon__item.keyVisualIcon__item--nice {
    top: 57.25%;
    left: 27.2%;
    width: 7.07%;
  }
}

.bg__gray {
  background-color: #f7f7f5;
}

@media screen and (min-width: 769px), print {
  .antisocial__list {
    margin-top: 44px;
  }
}
@media screen and (max-width: 768px), print {
  .antisocial__list {
    margin-top: 44px;
    font-size: 30px;
  }
}