
@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input[type=checkbox],
input[type=radio] {
  display: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

/* リキッドレイアウト対応 */
@font-face {
  font-family: "DM Sans";
  font-weight: 400;
  src: url(../font/DMSans-Light.ttf) format("opentype");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 500;
  src: url(../font/DMSans-Regular.ttf) format("opentype");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 700;
  src: url(../font/DMSans-Bold.ttf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 300;
  src: url(../font/NotoSansJP-Light.ttf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url(../font/NotoSansJP-Regular.ttf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url(../font/NotoSansJP-Medium.ttf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url(../font/NotoSansJP-SemiBold.ttf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url(../font/NotoSansJP-Bold.ttf) format("opentype");
}
body {
  font-family: "Noto Sans JP", sans-serif;
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-family: 400;
}

.en {
  font-family: "DM Sans", sans-serif;
  font-family: 400;
}

html body .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  html body .pc {
    display: none;
  }
}

html {
  font-size: 18px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.8vw;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1.5189873418vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 1.3502109705vw;
  }
}
@media (min-width: 1185px) {
  html {
    font-size: 18px;
  }
}

/* aタグ設定 */
a {
  text-decoration: none;
  color: inherit;
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*-----------------------
アニメーション
-------------------------*/
a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 767px) {
  a:hover {
    opacity: 0.7;
  }
}

.fadeInTrigger {
  opacity: 0;
}
.fadeInTrigger.animated {
  opacity: 1;
}

.js-title {
  overflow: hidden;
}
.js-title span {
  opacity: 0;
  -webkit-transform: translateY(calc(100% + 2px)) rotate(0deg);
          transform: translateY(calc(100% + 2px)) rotate(0deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  display: inline-block;
}
.js-title.animated.delay-01 span {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.js-title.animated span {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(0deg);
          transform: translateY(0) rotate(0deg);
  -webkit-transition: opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.3s linear 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.js-title-txt {
  overflow: hidden;
}
.js-title-txt span {
  opacity: 0;
  -webkit-transform: translateY(calc(100% + 2px)) rotate(0deg);
          transform: translateY(calc(100% + 2px)) rotate(0deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  display: inline-block;
}
.js-title-txt.animated.delay-01 span {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.js-title-txt.animated span {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(0deg);
          transform: translateY(0) rotate(0deg);
  -webkit-transition: opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.3s linear 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.js-block {
  opacity: 0;
  -webkit-transform: translateY(calc(0% + 60px)) rotate(0deg);
          transform: translateY(calc(0% + 60px)) rotate(0deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  display: inline-block;
}
.js-block.animated {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(0deg);
          transform: translateY(0) rotate(0deg);
  -webkit-transition: opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.3s linear 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.3s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.header__logo__non-scroll.animated {
  -webkit-animation: bg 0.6s cubic-bezier(0.35, 0.1, 0.2, 1);
          animation: bg 0.6s cubic-bezier(0.35, 0.1, 0.2, 1);
}
@-webkit-keyframes bg {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes bg {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__logo__non-scroll__wrap.animated {
  -webkit-animation: logo 0.6s cubic-bezier(0.35, 0.1, 0.2, 1);
          animation: logo 0.6s cubic-bezier(0.35, 0.1, 0.2, 1);
}
@-webkit-keyframes logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header__logo__non-scroll__wrap.fadeIn {
  opacity: 1;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.header__nav {
  margin-top: -10%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.header__nav.fadeIn {
  margin-top: 0;
}

.section-mv__content__right__wrap img {
  opacity: 0;
}

.section-mv__content__right__wrap.fadeIn img {
  opacity: 1;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.section-mv__content__right__wrap.animated {
  -webkit-animation: bg2 0.6s cubic-bezier(0.35, 0.1, 0.2, 1);
  animation: bg2 0.6s cubic-bezier(0.35, 0.1, 0.2, 1);
}

.header__logo__non-scroll__bg.animated.end {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes bg2 {
  0% {
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bg2 {
  0% {
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media screen and (max-width: 821px) {
  .section-material {
    position: relative;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  footer {
    position: relative;
  }
}

.js-block-num {
  opacity: 0;
}
.js-block-num.animated {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.js-bg {
  opacity: 0;
}
.js-bg.animated {
  -webkit-animation: bg2 0.5s ease;
          animation: bg2 0.5s ease;
  opacity: 1;
}

.js-bg2 {
  opacity: 0;
}
.js-bg2.animated {
  -webkit-animation: bg 0.5s ease;
          animation: bg 0.5s ease;
  opacity: 1;
}

/*-----------------------
共通部分
-------------------------*/
body {
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
  font-weight: 500;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.7777777778rem;
  }
}

.inner {
  width: 1185px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.section-ttl__en {
  color: #E30012;
  font-size: 0.8333333333rem;
}
.section-ttl__ja {
  margin-top: 1.1111111111rem;
  font-size: 1.4444444444rem;
  letter-spacing: 0.025em;
  font-weight: 700;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .section-ttl__ja {
    margin-top: 0.8333333333rem;
    font-size: 1.25rem;
    padding-top: 7px;
  }
}
.section-ttl__ja rt {
  font-size: 0.7222222222rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
@media screen and (max-width: 767px) {
  .section-ttl__ja rt {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.container {
  width: 100%;
  position: relative;
  height: 100%;
  z-index: 2;
}

footer {
  position: relative;
  z-index: 1;
  /*以下はレイアウトのための記述。削除可能*/
}

.section-trapezoid {
  position: relative;
  width: 12.1111111111rem;
  height: 11.1111111111rem;
  background-color: #D7D7D7;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .section-trapezoid {
    width: 5rem;
    height: 5rem;
  }
}
.section-trapezoid::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 0;
  height: 0;
  border-left: 6.4444444444rem solid transparent;
  border-bottom: 11.1111111111rem solid #D7D7D7;
}
@media screen and (max-width: 767px) {
  .section-trapezoid::before {
    border-left: 2.9444444444rem solid transparent;
    border-bottom: 5rem solid #D7D7D7;
  }
}
.section-trapezoid.section-trapezoid-right {
  background: #C5B2A6;
}
.section-trapezoid.section-trapezoid-right::before {
  border-bottom: 11.1111111111rem solid #C5B2A6;
}
@media screen and (max-width: 767px) {
  .section-trapezoid.section-trapezoid-right::before {
    border-bottom: 5rem solid #C5B2A6;
  }
}

/*-----------------------
header
-------------------------*/
.header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 10;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header.fixed .header__logo__non-scroll {
  display: none;
}
.header.fixed .header__logo__scroll {
  display: block;
}
.header.non-scroll {
  -webkit-transition: margin-top 0.5s;
  transition: margin-top 0.5s;
}
.header.non-scroll.is-scroll {
  margin-top: -100px;
}
.header.active-scroll {
  margin-top: -100px;
  -webkit-transition: margin-top 0.5s;
  transition: margin-top 0.5s;
}
.header.active-scroll + .header__hamburger-menu:not(.open) span {
  background-color: #fff;
}
.header.active-scroll.scroll {
  margin-top: 0;
}
.header.active-scroll.scroll + .header__hamburger-menu:not(.open) span {
  background-color: #000;
}
.header.active-scroll .header__logo__scroll__bg {
  height: 100%;
  position: absolute;
  width: 31.1111111111rem;
  height: 4.7222222222rem;
  left: -0.8333333333rem;
  top: -0.4444444444rem;
  background-image: url(../images/scroll-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .header.active-scroll .header__logo__scroll__bg {
    width: 17.0555555556rem;
    height: 3.6111111111rem;
  }
}
.header.active-scroll .header__logo__scroll__wrap {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  place-content: center;
  width: 27.7777777778rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header.active-scroll .header__logo__scroll__wrap {
    display: block;
    width: 17.0555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.header.active-scroll .header__logo__scroll__wrap img {
  width: 24.4444444444rem;
  position: relative;
  top: 1rem;
  left: 0.5555555556rem;
}
@media screen and (max-width: 767px) {
  .header.active-scroll .header__logo__scroll__wrap img {
    width: 14rem;
    top: 0.7222222222rem;
    left: 0.2777777778rem;
  }
}
.header.active-scroll .header__nav__btn {
  color: #000;
}
.header.active-scroll .header__nav__btn svg {
  stroke: #000;
}
.header.active-scroll .header__nav__btn.red {
  color: #fff;
}
.header.active-scroll .header__nav__btn.red svg {
  stroke: #fff;
}
.header.active-scroll + .header__hamburger-menu span {
  background-color: #000;
}
.header__logo {
  position: relative;
  width: 28.6111111111rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 11.9444444444rem;
  }
}
.header__logo__non-scroll {
  height: 5.5555555556rem;
}
@media screen and (max-width: 767px) {
  .header__logo__non-scroll {
    height: 3.3333333333rem;
  }
}
.header__logo__non-scroll span {
  white-space: nowrap;
}
.header__logo__non-scroll__bg {
  height: 100%;
  background-color: #fff;
  position: absolute;
  width: 100%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__logo__non-scroll__bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: -3.1666666667rem;
  width: 0;
  height: 0;
  border-right: 3.1944444444rem solid transparent;
  border-top: 5.5555555556rem solid #fff;
}
@media screen and (max-width: 1024px) {
  .header__logo__non-scroll__bg::before {
    border-right: 3.25rem solid transparent;
  }
}
@media screen and (max-width: 767px) {
  .header__logo__non-scroll__bg::before {
    right: -1.9722222222rem;
    border-right: 2rem solid transparent;
    border-top: 3.3333333333rem solid #fff;
  }
}
.header__logo__non-scroll__wrap {
  position: relative;
  z-index: 3;
  font-size: 0.8333333333rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 1.3888888889rem 0.8333333333rem 2.5rem 2.2222222222rem;
  height: 100%;
  opacity: 0;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .header__logo__non-scroll__wrap {
    padding-left: 0.8333333333rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__logo__non-scroll__wrap img {
  width: 24.8313944444rem;
  position: relative;
  top: -0.4444444444rem;
}
@media screen and (max-width: 767px) {
  .header__logo__non-scroll__wrap img {
    width: 9rem;
    top: 0.5555555556rem;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.3888888889rem;
     -moz-column-gap: 1.3888888889rem;
          column-gap: 1.3888888889rem;
  padding-right: 1.9444444444rem;
  padding-top: 0.8333333333rem;
  font-weight: 400;
}
.header__nav__btn {
  color: #fff;
  font-size: max(0.8333333333rem, 12px);
  display: block;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.2222222222rem;
}
.header__nav__btn svg {
  stroke: #fff;
  width: 0.6666666667rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 0.2777777778rem;
  top: 0.0555555556rem;
  position: relative;
}
@media screen and (max-width: 821px) {
  .header__nav__btn svg {
    position: relative;
  }
}
.header__nav__btn.fixed {
  color: #000;
}
.header__nav__btn.red {
  background-color: #E30012;
  border-radius: 9999px;
  border: 0.1111111111rem solid #E30012;
  padding: 0rem 0.5rem;
  height: 2.2777777778rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: max(0.8333333333rem, 12px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  place-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav__btn.red svg {
  margin-left: 0.2777777778rem;
}
@media screen and (max-width: 821px) {
  .header__nav__btn.red svg {
    top: 0rem;
    position: relative;
  }
}
.header__offcanvas {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.header__offcanvas.open {
  display: block;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.4);
}
.header__offcanvas__inner {
  position: fixed;
  width: 100%;
  top: -100%;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-transition: top 0.8s ease;
  transition: top 0.8s ease;
  height: 24.1666666667rem;
  min-height: 435px;
  background-color: #fff;
  overflow-y: auto;
}
@media (orientation: landscape) {
  .header__offcanvas__inner {
    -webkit-transition: top 0.4s ease;
    transition: top 0.4s ease;
  }
}
.header__offcanvas .header__logo__non-scroll__wrap {
  display: block;
  padding-top: 0.5555555556rem;
  padding-bottom: 0;
}
.header__offcanvas .header__logo__non-scroll__wrap img {
  top: 0;
}
.header__offcanvas__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  font-size: 15px;
  font-weight: 400;
  padding-top: 60px;
}
@media (orientation: landscape) {
  .header__offcanvas__language {
    padding-top: 80px;
  }
}
.header__offcanvas__language a {
  font-size: 0.8333333333rem;
  font-weight: 300;
}
.header__offcanvas__language a.active {
  color: #bdb9b8;
}
.header__offcanvas__link {
  font-size: 19.5px;
  background: #E30012;
  color: #fff;
  width: 250px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  border-radius: 9999px;
  margin: 50px auto 0;
  font-weight: 400;
  stroke: #fff;
}
@media screen and (max-width: 767px) {
  .header__offcanvas__link {
    font-size: 0.8333333333rem;
  }
}
.header__offcanvas__link svg {
  width: 12px;
  height: 12px;
  margin-left: 5px;
  margin-top: 2px;
}
.header__offcanvas__logo {
  padding-top: 5px;
  height: 3.3333333333rem;
}
.header.dark-bg .header__nav__btn {
  color: white;
}
.header.dark-bg .header__nav__btn svg {
  stroke: #fff;
}
.header.dark-bg .header__nav__btn.contact {
  color: #fff;
}
.header.dark-bg .header__nav__btn.contact svg {
  stroke: #fff;
}
.header.dark-bg + .header__hamburger-menu:not(.open) span {
  background-color: #fff !important;
}

.header__hamburger-menu {
  margin-top: 1.1111111111rem;
  z-index: 100;
  position: fixed;
  right: 1rem;
}
.header__hamburger-menu span {
  display: block;
  background-color: #fff;
  height: 0.0555555556rem;
  width: 2.2222222222rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__hamburger-menu span + span {
  margin-top: 0.3333333333rem;
}
.header__hamburger-menu.open span {
  background-color: #231815;
}
.header__hamburger-menu.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  top: 9px;
  position: relative;
}
.header__hamburger-menu.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  top: 2px;
  position: relative;
}

/*-----------------------
section-mv
-------------------------*/
.section-mv {
  background-image: url(../images/en/section-mv.jpg);
  background-position: bottom center;
  background-size: cover;
  height: 100vh;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .section-mv {
    background-image: url(../images/en/section-mv-sp.jpg);
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .section-mv {
    padding-top: 8.3333333333rem;
    height: 100vh;
    height: 100svh;
  }
}
.section-mv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 11.1111111111rem;
  width: 100%;
  place-content: end;
}
@media screen and (max-width: 767px) {
  .section-mv__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.7777777778rem;
  }
}
.section-mv__content__left {
  color: #fff;
  width: calc(100% - 31.3333333333rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 7.7777777778rem;
  /*
  align-items: center;
  justify-content: center;
  */
}
@media screen and (max-width: 1440px) {
  .section-mv__content__left {
    padding-left: 3.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .section-mv__content__left {
    display: block;
    width: 100%;
    padding-left: 1.1111111111rem;
    padding-right: 0.5555555556rem;
    padding-bottom: 7.5rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .section-mv__content__left {
    padding-bottom: 2.2222222222rem;
  }
}
.section-mv__content__left__ttl {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 821px) {
  .section-mv__content__left__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .section-mv__content__left__ttl {
    font-size: 1.1666666667rem;
    padding-bottom: 0.5555555556rem;
  }
}
.section-mv__content__left__txt {
  margin-top: 0.8333333333rem;
  white-space: nowrap;
  font-weight: 400;
  font-size: 18px;
}
@media screen and (max-width: 821px) {
  .section-mv__content__left__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .section-mv__content__left__txt {
    letter-spacing: 0;
    font-size: 0.7777777778rem;
  }
}
@media screen and (max-width: 1240px) {
  .section-mv__content__left__wrap {
    margin-left: -2.2222222222rem;
    margin-left: 0;
    position: absolute;
    bottom: 13.8888888889rem;
    left: 2.2222222222rem;
  }
}
@media screen and (max-width: 821px) {
  .section-mv__content__left__wrap {
    margin-left: 0px;
    position: absolute;
    bottom: 16.6666666667rem;
    left: 2.2222222222rem;
  }
}
@media screen and (max-width: 767px) {
  .section-mv__content__left__wrap {
    margin-left: 0rem;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.section-mv__content__right {
  position: relative;
  width: 31.3333333333rem;
}
@media screen and (max-width: 767px) {
  .section-mv__content__right {
    position: absolute;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    height: 5.0555555556rem;
    width: 13.3333333333rem;
  }
}
.section-mv__content__right__wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-mv__content__right__wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 0;
  height: 0;
  border-left: 6.4444444444rem solid transparent;
  border-bottom: 11.1111111111rem solid #fff;
}
@media screen and (max-width: 767px) {
  .section-mv__content__right__wrap::before {
    border-left: 3.0555555556rem solid transparent;
    border-bottom: 5.0555555556rem solid #fff;
  }
}
.section-mv__content__right__logo {
  width: 15.1666666667rem;
  margin-left: -5.5555555556rem;
}
@media screen and (max-width: 767px) {
  .section-mv__content__right__logo {
    width: 9.1666666667rem;
    margin-left: 0rem;
  }
}

/*-----------------------
section-thoughts
-------------------------*/
.section-thoughts {
  padding-top: 5.7222222222rem;
  padding-bottom: 5.5555555556rem;
}
@media screen and (max-width: 767px) {
  .section-thoughts {
    padding-top: 5.9444444444rem;
    padding-bottom: 6.6666666667rem;
  }
}
.section-thoughts__inner {
  width: 37.2222222222rem;
}
.section-thoughts .section-ttl__ja {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.section-thoughts__txt {
  margin-top: 2.5555555556rem;
  font-size: 0.9444444444rem;
}
@media screen and (max-width: 767px) {
  .section-thoughts__txt {
    margin-top: 2.1111111111rem;
    font-size: 0.8333333333rem;
  }
}

/*-----------------------
section-remine
-------------------------*/
.section-remine {
  background-color: #F0F0F0;
}
.section-remine__inner {
  overflow: hidden;
}
.section-remine__img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .section-remine__img {
    height: 11.8888888889rem;
  }
}
.section-remine__img img {
  height: 100%;
}
.section-remine__trapezoid {
  margin-top: -7.7777777778rem;
}
@media screen and (max-width: 767px) {
  .section-remine__trapezoid {
    margin-top: -3.2777777778rem;
  }
}
.section-remine__inner {
  padding-top: 4.7222222222rem;
  width: calc(66.1111111111rem + 60px);
}
@media screen and (max-width: 767px) {
  .section-remine__inner {
    padding-top: 3rem;
  }
}
.section-remine__ttl {
  width: 12.7777777778rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .section-remine__ttl {
    width: 11.6666666667rem;
    margin-bottom: 1.5rem;
  }
}
.section-remine__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 32.5% 35% 32.5%;
  grid-template-columns: 32.5% 35% 32.5%;
}
@media screen and (max-width: 767px) {
  .section-remine__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.section-remine__list + .section-remine__list {
  margin-top: 1.6666666667rem;
  padding-top: 1.6666666667rem;
  border-top: 1px solid #D7D7D7;
}
@media screen and (max-width: 767px) {
  .section-remine__list + .section-remine__list {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
}
.section-remine__list__item {
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item {
    padding-top: 1.6666666667rem;
    padding-bottom: 2.2222222222rem;
    border-bottom: 1px solid #D7D7D7;
  }
}
.section-remine__list__item:nth-child(3n+1) {
  padding-left: 0.3888888889rem;
}
.section-remine__list__item:not(:first-child) {
  padding-left: 1.6666666667rem;
  border-left: 1px solid #D7D7D7;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
}
.section-remine__list__item:not(:nth-child(3n)) {
  padding-right: 1.1111111111rem;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item:not(:nth-child(3n)) {
    padding-right: 0;
  }
}
.section-remine__list__item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -1.6666666667rem;
  margin-left: -1.6666666667rem;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__head {
    margin-top: -1.1111111111rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-remine__list__item__head dt {
  background-image: url(../images/section-remine__list__item_ttl.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 13.0555555556rem;
  height: 13.0555555556rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__head dt {
    width: 8.7777777778rem;
    height: 8.7777777778rem;
    background-size: 110%;
  }
}
.section-remine__list__item__head dt .black {
  font-size: 1.8333333333rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 0.6111111111rem;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__head dt .black {
    font-size: 1.6666666667rem;
  }
}
.section-remine__list__item__head dt .black sub {
  vertical-align: bottom;
  font-size: 1rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__head dt .black sub {
    font-size: 0.8333333333rem;
  }
}
.section-remine__list__item__head dt .red {
  font-weight: 400;
  color: #E30012;
  line-height: 1.47;
  font-size: 11px;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__head dt .red {
    letter-spacing: -0.05em;
  }
}
.section-remine__list__item__head dd {
  margin-left: -0.8333333333rem;
  font-size: max(0.7222222222rem, 10px);
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__head dd {
    font-size: 0.8333333333rem;
    margin-left: 0;
  }
}
.section-remine__list__item__head dd .number {
  margin-top: 0.5555555556rem;
  color: #E30012;
  display: inline-block;
  border: 0.0555555556rem solid #E30012;
  border-radius: 0.36rem;
  padding: 0.3em 0.7em 0.15em;
  line-height: 1;
  font-size: max(0.7222222222rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__head dd .number {
    font-size: 0.7777777778rem;
  }
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__content {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-remine__list__item__content__ttl {
  font-size: 1.1111111111rem;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.section-remine__list__item__content__ttl sub {
  vertical-align: text-bottom;
  font-size: 0.5555555556rem;
  display: inline-block;
}
.section-remine__list__item__content__list-01 {
  margin-top: 0.5555555556rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2777777778rem;
}
.section-remine__list__item__content__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 0.2em;
     -moz-column-gap: 0.2em;
          column-gap: 0.2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.8333333333rem;
  padding: 0.2em 1em;
  height: 1.5rem;
  position: relative;
  letter-spacing: 0.025em;
  border-radius: 0.2777777778rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__content__btn {
    min-height: 1.5rem;
    place-content: baseline;
  }
}
.section-remine__list__item__content__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.5555555556rem;
     -moz-column-gap: 0.5555555556rem;
          column-gap: 0.5555555556rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section-remine__list__item__content__btn a img {
  width: 12px;
}
@media screen and (max-width: 1024px) {
  .section-remine__list__item__content__btn a img {
    width: 1em;
  }
}
@media screen and (max-width: 767px) {
  .section-remine__list__item__content__btn a img {
    width: 12px;
  }
}
@media screen and (min-width: 767px) {
  .section-remine__list__item__content__btn a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 767px) {
  .section-remine__list__item__content__btn {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .section-remine__list__item__content__btn:hover {
    opacity: 0.7;
  }
}
.section-remine__list__item__content__btn.black {
  background-color: #231815;
  border: 0.1111111111rem solid #231815;
}
.section-remine__list__item__content__btn.red {
  background-color: #E30012;
  border: 0.1111111111rem solid #E30012;
}
.section-remine__list__item__content__link {
  color: #E30012;
  line-height: 1.2;
  font-size: max(0.7222222222rem, 10px);
  margin-top: 1em;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  line-height: 1.6;
}
.section-remine__list__item__content__link:nth-child(1) {
  margin-top: 1.1111111111rem;
}
.section-remine__list__item__content__link:nth-child(3) {
  letter-spacing: -0.05em;
}
.section-remine__list__item__content__link:nth-child(4) {
  letter-spacing: 0;
}
.section-remine__list__item__content__link a img {
  display: inline-block;
  width: max(1.5555555556rem, 24px);
}
/*.section-remine__iso14021 {
  margin-top: 3.8888888889rem;
  padding-top: 3.3333333333rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 6.1111111111rem;
     -moz-column-gap: 6.1111111111rem;
          column-gap: 6.1111111111rem;
}*/
  /*2025.03 追記*/
.section-remine__iso14021 {
  margin-top: 3.8888888889rem;
  padding-top: 3.3333333333rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 6.1111111111rem;
     -moz-column-gap: 6.1111111111rem;
          column-gap: 6.1111111111rem;
}
/*2025.03 追記*/
.section-remine__iso14021:last-child {
  padding-bottom: 5.5555555556rem;
}
@media screen and (max-width: 767px) {
  .section-remine__iso14021 {
    margin-top: 3.4444444444rem;
    display: -ms-grid;
    display: grid;
  }
/*2025.03 追記*/
  .section-remine__iso14021:last-child {
    padding-bottom: 6.8333333333rem;
  }
}
.section-remine__iso14021:before {
  content: "";
  background-image: url(../images/bg-dotted.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 0.1111111111rem;
  position: absolute;
  left: 0;
  top: 0;
}
.section-remine__iso14021__ttl__en {
  color: #E30012;
  font-size: 0.7333333333rem;
  font-weight: 400;
}
.section-remine__iso14021__ttl__ja {
  font-size: 1.4444444444rem;
  letter-spacing: 0.025em;
    margin-bottom: 10px;
}
/*2025.03 追記*/
.section-remine__iso14021 .section-remine__iso14021__ttl__ja,
.section-remine__iso14021 .section-remine__iso14021__ttl__en {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .section-remine__iso14021__ttl__ja {
    font-size: 1.25rem;
    padding: 1.1111111111rem 0 1.6666666667rem;
    width: 100%;
  }
  .section-remine__iso14021 .section-remine__iso14021__ttl__ja {
    padding: 1.1111111111rem 0 1.6666666667rem;
    width: 100%;
  }
}

.section-remine__iso14021__txt {
  max-width: 29.2222222222rem;
}
.section-remine__iso14021 .section-remine__iso14021__txt,
.section-remine__iso14021_en .section-remine__iso14021__txt {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .section-remine__iso14021__txt {
    font-size: 0.8333333333rem;
  }
.section-remine__iso14021 .section-remine__iso14021__txt,
.section-remine__iso14021_en .section-remine__iso14021__txt {
  max-width: 100%;
    }
}

/*-----------------------
section-material
-------------------------*/
.section-material {
  background-color: #F0F0F0;
  padding-top: 6.9444444444rem;
  padding-bottom: 6.9444444444rem;
  overflow: hidden;
}
@media screen and (max-width: 821px) {
  .section-material {
    padding-top: 5.5555555556rem;
    padding-bottom: 5.5555555556rem;
  }
}
@media screen and (max-width: 821px) {
  .section-material__inner {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 767px) {
  .section-material__inner {
    overflow: hidden;
  }
}
.section-material__txt {
  text-align: center;
  color: #231815;
  font-size: 0.9444444444rem;
  font-weight: 600;
}
.section-material__list {
  margin-top: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 63.3333333333rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: 10%;
}
@media screen and (max-width: 821px) {
  .section-material__list {
    margin-top: 0.5555555556rem;
    left: 0rem;
  }
}
@media screen and (max-width: 821px) {
  .section-material__list.sp {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .section-material__list.pc {
    display: none;
  }
}
@media screen and (max-width: 821px) {
  .section-material__list__item__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.8333333333rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0.8333333333rem;
    margin-top: -0.8333333333rem;
    max-width: 22.2222222222rem;
    margin: 0 auto;
  }
}
.section-material__list__item {
  background-image: url(../images/section-material__list__item.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15.3333333333rem;
  height: 15.3333333333rem;
  margin-left: -1.9444444444rem;
  margin-right: -1.9444444444rem;
  margin-bottom: -2.7777777778rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .section-material__list__item {
    width: 14.4444444444rem;
    height: 14.4444444444rem;
  }
}
@media screen and (max-width: 821px) {
  .section-material__list__item {
    width: 12.7777777778rem;
    height: 12.7777777778rem;
    opacity: 0.8;
  }
}
.section-material__list__item.opacity {
  position: relative;
  background: none;
  width: 15.3333333333rem;
  height: 15.3333333333rem;
}
@media screen and (max-width: 1300px) {
  .section-material__list__item.opacity {
    width: 14.4444444444rem;
    height: 14.4444444444rem;
  }
}
@media screen and (max-width: 821px) {
  .section-material__list__item.opacity {
    width: 12.7777777778rem;
    height: 12.7777777778rem;
  }
}
.section-material__list__item.opacity > div {
  background-image: url(../images/section-material__list__item.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;
  width: 15.3333333333rem;
  height: 15.3333333333rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
}
@media screen and (max-width: 821px) {
  .section-material__list__item.opacity > div {
    width: 12.7777777778rem;
    height: 12.7777777778rem;
  }
}
.section-material__list__item.opacity > div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 100%;
  width: 9.7222222222rem;
  height: 9.7222222222rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), to(#FFF));
  background-image: linear-gradient(90deg, transparent 0 10%, #FFF 100%);
  z-index: 5;
  border-radius: 100%;
}
@media screen and (max-width: 821px) {
  .section-material__list__item.opacity > div::before {
    width: 7.1111111111rem;
    height: 7.1111111111rem;
  }
}
.section-material__list__item.opacity::after {
  content: "";
  background-image: url(../images/dots.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: -1.6666666667rem;
  width: 42px;
  height: 10px;
}
@media screen and (max-width: 821px) {
  .section-material__list__item.opacity::after {
    content: none;
  }
}
.section-material__list__item__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  opacity: 0.5;
  margin-top: 0.5555555556rem;
}
.section-material__list__item__txt .en {
  font-size: 2rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
  font-weight: 700;
  color: #231815;
}
@media screen and (max-width: 821px) {
  .section-material__list__item__txt .en {
    font-size: 1.6666666667rem;
  }
}
.section-material__list__item__txt .red {
  color: #E30012;
  font-size: max(0.7222222222rem, 10px);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 821px) {
  .section-material__list__item__txt .red {
    font-size: 0.6388888889rem;
  }
}

/*-----------------------
section-information
-------------------------*/
.section-information__logo {
  margin-top: 5.8333333333rem;
  width: 9.2777777778rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .section-information__logo {
    margin-top: 4.6111111111rem;
  }
}
.section-information__wrap {
  max-width: 54.4444444444rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.4444444444rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 5.5555555556rem;
     -moz-column-gap: 5.5555555556rem;
          column-gap: 5.5555555556rem;
}
@media screen and (max-width: 767px) {
  .section-information__wrap {
    margin-top: 3.6111111111rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.6666666667rem;
  }
}
.section-information__ttl {
  font-weight: 700;
  font-size: 1.4444444444rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .section-information__ttl {
    font-size: 1.25rem;
  }
}
.section-information__ttl .en {
  white-space: nowrap;
  margin-bottom: 1rem;
  display: block;
  font-weight: 400;
  color: #E30012;
  font-size: 0.8333333333rem;
}
.section-information__list {
  width: 100%;
}
.section-information__list__item {
  border-bottom: 1px solid #D7D7D7;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.7;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-information__list__item {
    font-size: 0.9722222222rem;
  }
}
.section-information__list__item:not(:first-child) {
  padding-top: 1.5rem;
}
.section-information__list__item a {
  display: block;
  position: relative;
  padding-right: 4.5555555556rem;
}
@media screen and (max-width: 767px) {
  .section-information__list__item a {
    padding-right: 2rem;
  }
}
.section-information__list__item a::before, .section-information__list__item a::after {
  content: "";
  display: block;
  position: absolute;
}
.section-information__list__item a::before {
  z-index: 2;
  width: 0.4444444444rem;
  height: 0.4444444444rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  -webkit-transform: translate(0px, -50%) rotate(45deg);
          transform: translate(0px, -50%) rotate(45deg);
  right: 1.1111111111rem;
}
@media screen and (max-width: 767px) {
  .section-information__list__item a::before {
    right: 0.8333333333rem;
  }
}
.section-information__list__item a::after {
  z-index: 1;
  border-radius: 50%;
  background-color: #E30012;
  width: 1.8888888889rem;
  height: 1.8888888889rem;
  right: 0.2777777778rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .section-information__list__item a::after {
    right: 0;
  }
}
.section-information__list__item img {
  width: 11px;
  display: inline-block;
  margin-left: 0.2em;
}
.section-information__list__item svg {
  width: 11px;
  display: inline-block;
  margin-left: 0.2em;
}
.section-information__list__item svg .cls-1 {
  stroke: #E30012;
  stroke-width: 1.5px;
  fill: none;
  stroke-miterlimit: 10;
}

/*-----------------------
footer
-------------------------*/
.footer__trapezoid {
  margin-top: -3.1111111111rem;
}
.footer__wrap {
  background-color: #fff;
  position: relative;
  z-index: 5;
}
.footer__head {
  padding-top: 0rem;
}
@media screen and (max-width: 767px) {
  .footer__head {
    padding-top: 0rem;
  }
}
.footer__head__txt {
  text-align: center;
  letter-spacing: 0.025em;
  font-size: 0.9444444444rem;
}
@media screen and (max-width: 767px) {
  .footer__head__txt {
    font-size: 0.8333333333rem;
    text-align: left;
  }
}
.footer__middle {
  padding-top: 3.7777777778rem;
  padding-left: 1.7777777778rem;
  padding-right: 2.2222222222rem;
  padding-bottom: 1.6111111111rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .footer__middle {
    padding-left: 1.1111111111rem;
    padding-right: 1.1111111111rem;
    padding-bottom: 0.8333333333rem;
    padding-top: 1.1111111111rem;
  }
}
.footer__middle div:nth-child(2) {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15%;
  white-space: nowrap;
}
.footer__middle div:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: flex-end;
  width: 7.7777777778rem;
}
@media screen and (max-width: 767px) {
  .footer__middle div:nth-child(3) {
    width: auto;
  }
}
.footer__middle__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 7.7777777778rem;
}
@media screen and (max-width: 767px) {
  .footer__middle__language {
    width: auto;
  }
}
.footer__middle__language a {
  font-size: max(0.6666666667rem, 10px);
  color: #231815;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__middle__language a {
    font-size: 0.7222222222rem;
  }
}
.footer__middle__language a:first-child {
  padding-right: 2em;
}
.footer__middle__language a:last-child:before {
  content: "/";
  margin-right: 2em;
  color: #231815;
}
.footer__middle__language a.active {
  color: #BDB9B8;
}
.footer__middle__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.2777777778rem;
     -moz-column-gap: 0.2777777778rem;
          column-gap: 0.2777777778rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(0.8333333333rem, 11px);
}
@media screen and (max-width: 767px) {
  .footer__middle__link {
    font-size: 0.8333333333rem;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-content: center;
  }
}
.footer__middle__link svg {
  stroke: #000;
  width: 0.6388888889rem;
  height: 0.6666666667rem;
}
@media screen and (max-width: 767px) {
  .footer__middle__link svg {
    width: 0.7222222222rem;
    height: 0.7222222222rem;
    position: relative;
    top: 0.0555555556rem;
  }
}
.footer__middle__link.sp {
  margin-top: 2.7777777778rem;
  position: relative;
}
.footer__middle__link.sp::after {
  position: absolute;
  margin-top: 0.3888888889rem;
  margin-left: 0.2777777778rem;
}
.footer__middle__link.sp:nth-child(2) {
  margin-top: 1.6666666667rem;
}
.footer__middle__pagetop {
  text-align: center;
  font-size: 0.6666666667rem;
}
.footer__middle__pagetop .circle {
  display: block;
  width: 2.6666666667rem;
  height: 2.6666666667rem;
  border-radius: 50%;
  border: 0.0555555556rem solid #231815;
  margin-bottom: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__middle__pagetop .circle {
    width: 2.1388888889rem;
    height: 2.1388888889rem;
  }
}
.footer__middle__pagetop .circle::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 0.0555555556rem solid #231815;
  border-right: 0.0555555556rem solid #231815;
  position: absolute;
  left: 0.8333333333rem;
  top: 40%;
  left: calc(50% + 0.25rem);
  text-align: center;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .footer__middle__pagetop .circle::after {
    width: 0.5555555556rem;
    height: 0.5555555556rem;
    left: calc(50% + 0.1377777778rem);
  }
}
@media screen and (min-width: 767px) {
  .footer__middle__pagetop:hover .circle::after {
    top: 30%;
  }
}
.footer__foot {
  background-color: #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.1666666667rem 1.5555555556rem 1.1666666667rem 1.8888888889rem;
}
@media screen and (max-width: 767px) {
  .footer__foot {
    display: block;
    place-content: center;
    padding: 1.1111111111rem 1.1111111111rem 0.5555555556rem 1.1111111111rem;
  }
}
.footer__foot__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #231815;
  font-weight: 400;
  font-size: max(0.7222222222rem, 10px);
}
@media screen and (max-width: 767px) {
  .footer__foot__list {
    display: block;
    overflow: hidden;
  }
  .footer__foot__list li {
    float: left;
    margin-bottom: 0.8333333333rem;
  }
  .footer__foot__list li:first-of-type {
    margin-right: 1.6666666667rem;
  }
  .footer__foot__list li:nth-child(2) {
    margin-left: 1.6666666667rem;
  }
  .footer__foot__list li:nth-child(3) {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .footer__foot__list {
    width: 100%;
  }
}
.footer__foot__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__foot__list li + li {
  padding-left: 1.7222222222rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__foot__list li + li {
    white-space: nowrap;
  }
}
.footer__foot__list li + li::before {
  content: "";
  display: block;
  background-color: #231815;
  width: 1px;
  height: 0.9444444444rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__foot__list li + li::before {
    left: -1.6111111111rem;
  }
}
.footer__foot__list li:first-child {
  padding-right: 1.7222222222rem;
}
@media screen and (max-width: 767px) {
  .footer__foot__list li:first-child {
    padding-right: 0rem;
  }
}
.footer__foot__list li:nth-child(2) {
  padding-right: 1.7222222222rem;
}
@media screen and (max-width: 767px) {
  .footer__foot__list li:nth-child(2) {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__foot__list li:nth-child(3) {
    padding-left: 0;
  }
  .footer__foot__list li:nth-child(3)::before {
    content: none;
  }
}
.footer__foot__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.4166666667rem;
     -moz-column-gap: 0.4166666667rem;
          column-gap: 0.4166666667rem;
  font-weight: 300;
}
.footer__foot__list li a::after {
  content: "";
  background-image: url(../images/ico-link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.5555555556rem;
  height: 0.6111111111rem;
  position: relative;
  top: 0.0555555556rem;
}
@media screen and (max-width: 1024px) {
  .footer__foot__list li a::after {
    top: 0.0833333333rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__foot__list li a::after {
    width: 0.6111111111rem;
    height: 0.6111111111rem;
    top: 0.0277777778rem;
  }
}
.footer__foot__copyright {
  font-weight: 400;
  font-size: max(0.6111111111rem, 10px);
}
@media screen and (max-width: 767px) {
  .footer__foot__copyright {
    font-size: max(0.6666666667rem, 10px);
    text-align: center;
    color: #231815;
    border-top: 1px solid rgba(107, 107, 107, 0.3);
    padding-top: 0.5555555556rem;
    width: 100%;
    text-align: center;
    display: block;
  }
}

.section-background {
  margin-top: -200px;
  background: #000;
  color: #fff;
  position: relative;
}
.section-background .section-trapezoid-right {
  position: absolute;
  top: 4.4444444444rem;
}
@media screen and (max-width: 767px) {
  .section-background .section-trapezoid-right {
    top: 0.5555555556rem;
  }
}
.section-background .section-trapezoid-right::before {
  right: -52.5%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .section-background .section-trapezoid-right::before {
    right: -59%;
  }
}
.section-background .section-background__inner {
  max-width: 36.1111111111rem;
  white-space: nowrap;
  margin: 0 auto;
  padding-top: 11.1111111111rem;
  padding-bottom: 14rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-background .section-background__inner {
    max-width: 100%;
    padding-top: 29.1666666667rem;
    padding-bottom: 35.0555555556rem;
    white-space: normal;
  }
}
.section-background .section-background-bg__inner {
  max-width: 111.1111111111rem;
  margin: 0 auto;
  position: relative;
}
.section-background .section-background-bg__inner2 {
  max-width: 111.1111111111rem;
  margin: 0 auto;
  position: relative;
}
.section-background .section-background__img-02 {
  width: 19.3888888889rem;
  position: absolute;
  right: 0;
  top: -2.7777777778rem;
}
@media screen and (max-width: 767px) {
  .section-background .section-background__img-02 {
    width: 11.6666666667rem;
  }
}
.section-background .section-background__img-03 {
  width: 19.3888888889rem;
  position: absolute;
  left: 0;
  top: 5.8333333333rem;
}
@media screen and (max-width: 767px) {
  .section-background .section-background__img-03 {
    width: 11.6666666667rem;
    top: 12.9444444444rem;
  }
}
.section-background .section-background__img-04 {
  width: 19.4272888889rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .section-background .section-background__img-04 {
    width: 11.6666666667rem;
    bottom: 4.3333333333rem;
  }
}
.section-background .section-background__img-05 {
  width: 19.2777777778rem;
  position: absolute;
  left: 0;
  bottom: -6.2222222222rem;
}
@media screen and (max-width: 1500px) {
  .section-background .section-background__img-05 {
    bottom: 0rem;
  }
}
@media screen and (max-width: 767px) {
  .section-background .section-background__img-05 {
    width: 11.6666666667rem;
    top: auto;
    bottom: 20.2777777778rem;
  }
}

/*-----------------------
共通部分
-------------------------*/
.page-en {
  font-family: "DM Sans", sans-serif;
}
.page-en .section-mv__content__left__ttl {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .page-en .section-mv__content__left {
    padding-bottom: 5.5555555556rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .page-en .section-mv__content__left {
    padding-bottom: 1.1111111111rem;
  }
}
.page-en .section-mv__content__left__txt {
  white-space: normal;
}
.page-en .section-mv__content__left__wrap {
  margin-bottom: 1.6666666667rem;
}
.page-en .section-remine__list-02__item__list__btn.black {
  width: 11.1111111111rem;
}
@media screen and (max-width: 767px) {
  .page-en .section-remine__list-02__item__list__btn.black {
    width: 100%;
    max-width: 375px;
  }
}
.page-en .section-thoughts__txt {
  white-space: normal;
}
.page-en .header__logo__non-scroll__wrap img {
  width: 22.1111111111rem;
  top: 1.4444444444rem;
}
@media screen and (max-width: 767px) {
  .page-en .header__logo__non-scroll__wrap img {
    width: 12.2222222222rem;
    top: 0.2222222222rem;
  }
}
.page-en .header__logo {
  width: 28.1111111111rem;
}
@media screen and (max-width: 767px) {
  .page-en .header__logo {
    width: 13.8888888889rem;
  }
}
.page-en .header__nav__btn svg {
  top: -0.0277777778rem;
}
@media screen and (max-width: 821px) {
  .page-en .header__nav__btn svg {
    top: -0.0166666667rem;
  }
}
.page-en .header__offcanvas__contact svg {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .page-en .section-background .section-background__inner .section-thoughts__ttl {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (max-width: 520px) {
  .page-en .section-remine__list__item__content__list-01 .section-remine__list__item__content__btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .page-en .footer__middle div:nth-child(2) {
    gap: 10%;
    padding-left: 40px;
  }
}

/*-----------------------
   2025.03 改修
-------------------------*/
.pcOnly { display: inline; }
.spOnly { display: none; }

@media (max-width: 767px) {
  .pcOnly { display: none; }
  .spOnly { display: inline; }
}

.leadText_ja {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
}
.leadText_en {
    font-size: 1.0em;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #333;
    margin-top: 16px;
}
.section-remine__list__item__content__ttl sup {
    font-size: 0.65em;
    color: #3f3f3f;
    position: relative;
    top: 1px;
    left: -5px;
}
.page-en .section-remine__list__item__content__ttl sup {
    font-size: 0.8em;
    color: #3f3f3f;
    position: relative;
    top: 4px;
    left: 4px;
}
.supplement {
    font-size: 0.65em;
    color: #545454;
    margin: 3em 0 0 1.5em;
    text-indent: -1em;
}
.supplement_en {
    font-size: 0.65em;
    color: #545454;
    margin: 3em 0 0 1.5em;
    text-indent: -0.5em;
}
@media screen and (max-width: 767px) {
    .supplement,
    .supplement_en {
    font-size: 0.8em;
    }
}