@charset "UTF-8";

:root {
  /* フォント */
  --jp-font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック体", "Meiryo", "メイリオ", sans-serif;
  --en-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* 色 */
  --main-color: #e60012;
  --bright-red-color: #ff2319;
  --deep-red-color: #d10b2f;
  --lavender-color: #f4f1f6;
  --gray-color: #737373;
  --deep-gray-color: #d5d1d5;
  --light-gray-color: #f2f3f5;
  --very-light-gray-color: #fafafa;
  --mist-gray-color: #ecf1ef;
  --dark-gray-color: #707070;
  --soft-blue-color: #3a6fb7;
  --bright-blue-color: #1984ff;
  --deep-blue-color: #0077fe;
  --dark-blue-color: #00007a;
  --bright-yellow-color: #9c9f00;
  --dark-gold-color: #ba7e11;
  --bright-orange-color: #ff7919;
  --bright-green-color: #00b012;
  --deep-green-color: #00a900;
  --pale-purple-color: #f1f3ff;
  --bright-black-color: #333333;
  /* z-index */
  --z-index-default: 0;
  --z-index-floating: 10;
  --z-index-header: 100;
  --z-index-overlay: 200;
  --z-index-modal: 300;
  --z-index-cookie: 400;
}
html {
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 750px) {
  html {
    font-size: calc(1000vw / 750);
  }
}
@media (min-width: 751px) and (max-width: 1300px) {
  html {
    font-size: calc(1000vw / 1300);
  }
}
body {
  -webkit-text-size-adjust: none;
  font-family: var(--jp-font-family);
}
body.js-modal-open {
  overflow: hidden;
  overflow: clip;
  overscroll-behavior: none;
}
.sp {
  display: none;
}
@media (max-width: 750px) {
  .sp {
    display: block !important;
  }
}
.pc {
  display: block;
}
@media (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
a {
  cursor: pointer;
  transition: filter 0.3s;
}
a:hover {
  filter: brightness(0.9);
}
a[href*="tel"] {
  pointer-events: none;
}
@media (max-width: 750px) {
  a:hover {
    filter: none;
  }
  a[href*="tel"] {
    pointer-events: revert;
  }
}
img {
  width: 100%;
  height: auto;
}
.anchor {
  scroll-margin-top: 10rem;
}
@media (max-width: 750px) {
  .anchor {
    scroll-margin-top: 15rem;
  }
}
/* inner */
.inner {
  margin-inline: auto;
  max-width: 110rem;
  width: 100%;
}
@media (max-width: 750px) {
  .inner {
    padding-inline: 4.5rem;
    max-width: 100%;
  }
}
/* header */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 22.4rem 1fr;
  gap: 0 4rem;
  background-color: #fff;
  padding-inline: 3.2rem;
  z-index: var(--z-index-header);
}
header h1 {
  padding-block: 3.5rem 2.5rem;
}
header .menu-btn {
  display: none;
}
header .header-nav {
  margin-left: auto;
  padding-block: 4.5rem 2rem;
}
header .header-nav .wrap {
  display: none;
}
header .header-nav .global-nav-list {
  display: flex;
  gap: 0 3.6rem;
}
header .header-nav .global-nav-list .nav-item .nav-link {
  display: inline-block;
  border-bottom: 2px solid transparent;
  padding-inline: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  transition: border-color 0.3s, color 0.3s;
}
@media (min-width: 751px) {
  header .header-nav .global-nav-list .nav-item:hover .nav-link,
  header .header-nav .global-nav-list .nav-item .nav-link.current {
    border-color: var(--main-color);
    color: var(--main-color);
  }
}
header .header-nav .global-nav-list .nav-item .megamenu-toggle {
  display: none;
}
header .header-nav .global-nav-list .nav-item .megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  width: 100%;
  color: #fff;
  z-index: var(--z-index-floating);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s;
}
header .header-nav .global-nav-list .nav-item.active .megamenu {
  visibility: visible;
  opacity: 1;
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu {
  display: grid;
  grid-template-columns: 22.4rem 1fr;
  gap: 0 11rem;
  margin-inline: auto;
  padding-block: 4rem;
  max-width: 98rem;
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-head a {
  position: relative;
  display: inline-block;
  padding-right: 4.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-head a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 1.4rem;
  aspect-ratio: 1;
  background: url("../images/common/ic-circle-arrow_white.svg") no-repeat center / contain;
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 1rem 7.5rem;
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items.company {
  grid-template-rows: repeat(4, 1fr);
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items.business {
  grid-template-rows: repeat(3, 1fr);
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items.sustainability {
  grid-template-rows: repeat(2, 1fr);
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items.safety {
  grid-template-rows: repeat(2, 1fr);
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items.newsrelease {
  grid-template-rows: 1fr;
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items li a {
  position: relative;
  display: block;
  padding-right: 3.3rem;
  min-width: 27.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
  color: #fff;
}
header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 1.4rem;
  aspect-ratio: 1;
  background: url("../images/common/ic-circle-arrow_white.svg") no-repeat center / contain;
}
header .translate {
  margin-bottom: 2rem;
  border-left: 1px solid #000;
  padding-block: 1.5rem 1rem;
}
header .translate figure img {
  display: block;
  margin-inline: auto;
  width: 8.1rem;
}
@media (max-width: 750px) {
  header {
    grid-template-columns: 1fr 12.7rem;
    gap: 0;
    padding-inline: 3.2rem 0;
  }
  header h1 {
    padding-block: 3.5rem;
    width: 34.4rem;
  }
  header .header-nav .wrap {
    display: flex;
    justify-content: space-between;
    padding-block: 3rem;
    padding-inline: 3rem 4rem;
  }
  header .header-nav .wrap a {
    max-width: 34.4rem;
  }
  header .header-nav .wrap .close-btn {
    max-width: 5.4rem;
  }
  header .header-nav .global-nav-list {
    flex-direction: column;
    padding-block: 6rem;
    padding-inline: 6rem 4.5rem;
    max-height: 95vh;
    overflow-y: scroll;
    scrollbar-width: none;
  }
  header .header-nav .global-nav-list .nav-item .megamenu-toggle {
    position: relative;
    display: block;
    width: 3.8rem;
    aspect-ratio: 1;
  }
  header .header-nav .global-nav-list .nav-item .megamenu-toggle::before,
  header .header-nav .global-nav-list .nav-item .megamenu-toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 3.8rem;
    height: 0.3rem;
    background-color: #fff;
  }
  header .header-nav .global-nav-list .nav-item .megamenu-toggle[aria-expanded="false"]::after {
    rotate: 90deg;
  }
  header .header-nav .global-nav-list .nav-item .megamenu-toggle[aria-expanded="true"]::after {
    rotate: 0deg;
  }
  header .header-nav .global-nav-list .nav-item .megamenu {
    position: static;
    display: none;
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: transparent;
  }
  header .header-nav .global-nav-list .nav-item.active .megamenu {
    display: block;
  }
  header .menu-btn {
    display: flex;
    align-items: end;
    margin-bottom: 4rem;
    border-left: 1px solid #000;
    padding-block: 2.5rem 1rem;
  }
  header .menu-btn img {
    display: block;
    margin-inline: auto;
    width: 6.7rem;
  }
  header .header-nav {
    position: absolute;
    inset: 0;
    background-color: rgb(0, 0, 0, 0.8);
    padding: 0;
    width: 100%;
    height: 110vh;
    z-index: var(--z-index-header);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s;
  }
  header .header-nav.active {
    visibility: visible;
    opacity: 1;
  }
  header .header-nav .global-nav-list .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    border-bottom: 1px solid #fff;
  }
  header .header-nav .global-nav-list .nav-item.sp {
    margin-bottom: 4rem;
  }
  header .header-nav .global-nav-list .nav-item.btn {
    border-bottom: initial;
  }
  header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-head {
    display: none;
  }
  header .header-nav .global-nav-list .nav-item .nav-link {
    display: block;
    padding-block: 1rem;
    font-size: 4rem;
    line-height: 1.4;
    color: #fff;
  }
  header .header-nav .global-nav-list .nav-item.btn .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 7rem;
    margin-inline: auto;
    border: 1px solid #fff;
    border-radius: 999rem;
    padding-block: 2rem;
    width: 49rem;
  }
  header .header-nav .global-nav-list .nav-item.btn .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10rem;
    margin-inline: auto;
    width: 21.6rem;
  }
  header .header-nav .global-nav-list .nav-item .megamenu .submenu {
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: auto;
    padding-block: 4rem;
    max-width: 100%;
  }
  header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items {
    grid-template-columns: 1fr;
    grid-auto-flow: initial;
    gap: 3rem 0;
    padding-inline: 5rem 1rem;
  }
  header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items li a {
    font-size: 3.2rem;
  }
  header .header-nav .global-nav-list .nav-item .megamenu .submenu .submenu-items li a::after {
    width: 2.8rem;
  }
  header .translate {
    margin-bottom: 4rem;
    border-right: 1px solid #000;
    padding-block: 1.5rem 1rem;
  }
  header .translate figure img {
    width: 12.4rem;
  }
}
/* footer */
footer {
  border-top: 1px solid #e6e6e6;
}
footer .lower-banner {
  position: relative;
  padding-block: 6rem 12rem;
}
footer .lower-banner::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  aspect-ratio: 1297 / 67;
  background: url("../images/common/footer-bg.png") no-repeat center center / contain;
  z-index: 1;
}
footer .lower-banner .inner {
  display: grid;
  grid-template-columns: 29rem 1fr 26rem;
  gap: 5rem;
}
footer .lower-banner .logo {
  text-align: center;
}
footer .lower-banner .logo .company-name {
  margin-top: 3rem;
}
footer .lower-banner .logo .company-name p {
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 500;
}
footer .lower-banner .logo .company-name span {
  font-size: 1.2rem;
  font-weight: 500;
}
footer .lower-banner .logo .address {
  margin-top: 3rem;
  font-size: 1.3rem;
  font-weight: 500;
}
footer .lower-banner .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
}
footer .lower-banner .wrap .links > a {
  position: relative;
  display: block;
  padding-left: 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}
footer .lower-banner .wrap .links > a::after {
  content: "●";
  position: absolute;
  top: 0.2rem;
  left: 0;
  font-size: 1.6rem;
  color: var(--main-color);
}
footer .lower-banner .sns-links {
  border-radius: 3rem;
  padding: 4rem 2rem 3rem;
  background-color: #f5f5f5;
  max-height: 15.7rem;
}
footer .lower-banner .sns-links > p {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
}
footer .lower-banner .sns-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
  margin-top: 3rem;
  margin-inline: auto;
  max-width: 15rem;
}
footer .lower-banner .sns-links li {
  width: calc((100% - 6rem) / 3);
}
footer .other ul {
  display: flex;
  justify-content: center;
  gap: 0 2rem;
  padding-block: 2rem;
  background-color: var(--main-color);
}
footer .other ul li a {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2;
  color: #fff;
}
footer .other .copyright {
  text-align: center;
  padding-block: 2rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 750px) {
  footer .lower-banner {
    padding-block: 12rem 16rem;
    overflow-x: hidden;
  }
  footer .lower-banner::after {
    left: -16rem;
    width: 184.8rem;
    background: url("../images/common/footer-bg.png") no-repeat center center / cover;
  }
  footer .lower-banner .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .lower-banner .logo .company-name {
    margin-top: 9rem;
  }
  footer .lower-banner .logo .company-name p {
    padding-bottom: 1rem;
    font-size: 3.6rem;
  }
  footer .lower-banner .logo .company-name span {
    font-size: 2.3rem;
  }
  footer .lower-banner .logo .address {
    margin-top: 4rem;
    font-size: 2.8rem;
  }
  footer .lower-banner .wrap {
    gap: 4rem;
    margin-top: 10rem;
    margin-left: 0;
  }
  footer .lower-banner .wrap .links > a {
    padding-left: 2.5rem;
    font-size: 3.2rem;
  }
  footer .lower-banner .wrap .links > a::after {
    top: 1.2rem;
    font-size: 1.8rem;
  }
  footer .lower-banner .sns-links {
    margin-top: 7rem;
    padding: 4rem 2rem;
    max-height: initial;
  }
  footer .lower-banner .sns-links > p {
    font-size: 3.4rem;
  }
  footer .lower-banner .sns-links ul {
    gap: 0 5rem;
    margin-top: 5rem;
    max-width: 30rem;
  }
  footer .lower-banner .sns-links li {
    width: calc((100% - 6rem) / 3);
  }

  footer .other ul {
    flex-direction: column;
    gap: 1rem 0;
    padding-block: 2rem;
    padding-inline: 4.5rem;
  }
  footer .other ul li a {
    font-size: 3rem;
  }
  footer .other .copyright {
    background-color: #fff;
    padding-block: 2rem;
    font-size: 2.1rem;
  }
}
/* ページトップボタン */
.page-top {
  position: fixed;
  display: block;
  bottom: 2rem;
  right: 2rem;
  width: 4.3rem;
  aspect-ratio: 1;
  z-index: var(--z-index-floating);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s, filter 0.3s;
}
.page-top.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 750px) {
  .page-top {
    width: 7.6rem;
  }
}
/* Cookie同意バナー */
#cookie-consent-banner {
  position: relative;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(255, 0, 0, 0.9);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  color: white;
  opacity: 1;
  z-index: var(--z-index-cookie);
  transition: opacity 0.3s ease-out;
}
#cookie-consent-banner.show {
  display: block;
}
#cookie-consent-banner.fade-out {
  opacity: 0;
}
.cookie-consent-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
}
.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-inline: auto;
  max-width: 103rem;
  padding: 2.5rem;
}
.cookie-consent-text {
  font-size: 1.6rem;
  line-height: 1.8;
}
.cookie-consent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 1rem;
  min-width: 18.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  white-space: nowrap;
  color: #000;
  cursor: pointer;
}
@media (max-width: 750px) {
  .cookie-consent-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 4.3rem;
    height: 4.3rem;
  }
  .cookie-consent-content {
    justify-content: center;
    gap: 2.4rem;
    max-width: 100%;
    padding: 9rem 6rem 3.2rem;
  }
  .cookie-consent-text {
    font-size: 3rem;
  }
  .cookie-consent-btn {
    padding: 3rem;
    min-width: 37.5rem;
    font-size: 3.2rem;
  }
}

/* 見出し */
#front h2 {
  text-align: center;
  margin-top: 10rem;
  padding-bottom: 3.2rem;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (max-width: 750px) {
  #front h2 {
    margin-top: 12rem;
    padding-bottom: 4rem;
    font-size: 5.5rem;
    line-height: 1.75;
  }
}
#page .heading {
  position: relative;
  text-align: center;
}
#page .heading hgroup {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  gap: 1rem 0;
  margin-inline: auto;
  max-width: 114rem;
  padding-bottom: 5rem;
  padding-inline: 2rem;
  color: #fff;
  z-index: 1;
}
#page .heading hgroup h2 {
  font-size: 3.6rem;
  font-weight: 600;
}
#page .heading hgroup p {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 750px) {
  #page .heading hgroup {
    gap: 2rem 0;
    justify-content: center;
    align-items: center;
    max-width: initial;
    padding-bottom: 0;
    padding-inline: 4.5rem;
  }
  #page .heading hgroup h2 {
    font-size: 5.4rem;
  }
  #page .heading hgroup p {
    font-size: 3.2rem;
  }
}
#page.subpage .heading {
  background-color: var(--main-color);
  padding-block: 2.4rem;
}
#page.subpage .heading hgroup {
  position: relative;
  justify-content: center;
  align-items: center;
  inset: initial;
  padding-bottom: 0;
}
@media (max-width: 750px) {
  #page.subpage .heading {
    padding-block: 6rem;
  }
}
/* パンくず */
.breadcrumbs {
  background-color: var(--mist-gray-color);
  padding-block: 1rem;
  padding-inline: 3.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.breadcrumbs .current-item {
  color: var(--main-color);
}
@media (max-width: 750px) {
  .breadcrumbs {
    padding-block: 3rem;
    padding-inline: 3.8rem;
    font-size: 2.1rem;
  }
}
/* 下層ページ共通 */
#page h2 {
  position: relative;
  padding-left: 1.6rem;
  font-size: 3.6rem;
  line-height: 1.2;
}
@media (max-width: 750px) {
  #page h2 {
    padding-left: 3.2rem;
    font-size: 7.2rem;
  }
}
/* 第二下層ページ共通 */
#page.page .desc {
  margin-inline: auto;
  padding-top: 5rem;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
}
#page.page ul.wrap {
  margin-block: 6rem;
}
#page.page .c-lower-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4.5rem;
}
#page.page .c-lower-card a {
  display: block;
  height: 100%;
}
#page.page .c-lower-card a p {
  position: relative;
  margin-top: 2.4rem;
  padding-inline: 0.8rem 3rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}
#page.page .c-lower-card a p::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 2.4rem;
  aspect-ratio: 1;
  mask: url("../images/common/ic-circle-arrow_red.svg") no-repeat center / contain;
  background-color: currentColor;
  z-index: 1;
}
@media (max-width: 750px) {
  #page.page .desc {
    text-align: justify;
    font-size: 3.2rem;
    line-height: 1.5;
  }
  #page.page ul.wrap {
    margin-block: 8rem 12rem;
  }
  #page.page .c-lower-list {
    grid-template-columns: 1fr;
    gap: 10rem 0;
  }
  #page.page .c-lower-card a p {
    margin-top: 4rem;
    padding-inline: 1.6rem 5.4rem;
    font-size: 4rem;
  }
  #page.page .c-lower-card a p::after {
    width: 4.8rem;
  }
}
/* 第三下層ページ共通 */
#page.subpage .summary {
  display: grid;
  gap: 0 4rem;
}
#page.subpage .summary .textarea {
  text-align: justify;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#page.subpage .links {
  display: grid;
  gap: 4rem 0;
  margin-top: 12rem;
  padding-bottom: 10rem;
}
#page.subpage .links a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  border-radius: 999rem;
  background-color: var(--main-color);
  padding-block: 1.5rem;
  padding-inline: 1rem;
  width: 31rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
#page.subpage .links a.top-btn {
  background-color: var(--bright-black-color);
}
@media (max-width: 750px) {
  #page.subpage .summary {
    grid-template-columns: 1fr;
    gap: 10rem 0;
  }
  #page.subpage .summary .textarea {
    font-size: 2.9rem;
  }
  #page.subpage .links {
    gap: 8rem 0;
    margin-top: 10rem;
    padding-bottom: 12rem;
  }
  #page.subpage .links a {
    padding-block: 3rem;
    padding-inline: 4rem;
    width: 100%;
    font-size: 3.2rem;
  }
}


.grecaptcha-badge {
  bottom: 100px !important;
  z-index: 1000;
}