@charset "UTF-8";
/**
/* Font
/* "Noto Sans JP"
/* "Outfit"
/* "Zen Kaku Gothic New"
**/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
 ******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  background-color: #0f141c;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
html.no-scroll {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header {
  view-transition-name: site-header;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  background-color: #000000;
  border-radius: 4px;
  z-index: 20;
}
@media (min-width: 768px) {
  .header {
    top: 30px;
    height: unset;
  }
}
@media (min-width: 1024px) {
  .header {
    left: 30px;
    width: calc(100% - 60px);
    padding: 0px 50px 0px 35px;
  }
}
.header.fixed {
  position: fixed;
  top: 30px;
}
.header .logo {
  display: block;
  padding: 22px 0;
}
@media (min-width: 768px) {
  .header .logo {
    width: unset;
    height: unset;
  }
}
.header .logo:hover {
  opacity: 0.7;
}
.header .logo__img {
  width: 92px;
  height: 30px;
}
@media (min-width: 768px) {
  .header .logo__img {
    width: 116px;
    height: 38px;
  }
}
.header .logo__top {
  display: none;
}
.header .nav {
  display: none;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  .header .nav {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .header .nav {
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .header .nav__logo {
    display: none;
  }
}
.header .navList {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1280px) {
  .header .navList {
    gap: 48px;
  }
}
.header .navItem_link {
  display: inline-block;
  padding: 32px 0;
  color: #7b7b81;
  letter-spacing: 0.05em;
}
.header .navItem_link:hover {
  color: #e6cd00;
}
.header .navItem.active .navItem_link {
  padding-bottom: 28px;
  font-weight: bold;
  color: #e6cd00;
  border-bottom: solid 4px #e6cd00;
}
.header .navSub {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1280px) {
  .header .navSub {
    gap: 30px;
  }
}
.header .navLang {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .navLang_link {
  color: #7b7b81;
}
.header .navLang_link:hover {
  color: #ffffff;
}
.header .navLang_link.active {
  color: #ffffff;
}
.header .btnContact {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  border: 1px solid #7b7b81;
  border-radius: 6px;
}
@media (min-width: 1024px) {
  .header .btnContact {
    padding: 12px 24px;
  }
}
.header .btnContact:hover {
  border-color: #ffffff;
}
.header .menuBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  padding: 20px;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .header .menuBtn {
    display: none;
  }
}
.header .menuBtn__line {
  position: relative;
  top: 10px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before,
.header .menuBtn__line::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before {
  top: -5px;
}
.header .menuBtn__line::after {
  bottom: -5px;
}
.header .menuBtn__text {
  position: absolute;
  bottom: 15px;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
}
.header .menuBtn.is_open .menuBtn__line {
  background-color: transparent;
}
.header .menuBtn.is_open .menuBtn__line::before {
  top: 0;
  rotate: 20deg;
}
.header .menuBtn.is_open .menuBtn__line::after {
  bottom: 0;
  rotate: -20deg;
}
.header.is_top {
  view-transition-name: none;
  position: absolute;
  background-color: transparent;
}
.header.is_top .logo__top {
  display: block;
}
.header.is_top .logo__common {
  display: none;
}
.header.is_top .logo__img {
  width: 137px;
  height: 49px;
}
@media (min-width: 768px) {
  .header.is_top .logo__img {
    width: 150px;
    height: 53px;
  }
}
@media (min-width: 1024px) {
  .header.is_top .logo__img {
    width: 218px;
    height: 78px;
  }
}
.header .spMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  justify-content: center;
  overflow: scroll;
  background-color: #0f141c;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .spMenu.is_open {
  visibility: visible;
  opacity: 1;
}
.header .spMenu__logo {
  width: 171px;
  margin: 100px auto 0;
}
.header .spMenu__logoLink:hover {
  opacity: 0.7;
}
.header .spMenu__list {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  gap: 40px 77px;
  margin: 55px auto 0;
}
.header .spMenu__item:nth-child(2n - 1) {
  text-align: right;
}
.header .spMenu__link {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.header .spMenu__subList {
  margin-top: 16px;
}
.header .spMenu__subLink {
  color: #7b7b81;
}
.header .spMenu__subLink::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.header .spMenu__subLink + .spMenu__subLink {
  margin-top: 16px;
}
.header .spMenu__contact {
  justify-content: center;
  padding: 22px;
  margin: 70px 20px 0;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 30%
  );
}
.header .spMenu .spMenuLang {
  position: absolute;
  top: 33px;
  left: 43px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link {
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link:hover {
  color: #ffffff;
}
.header .spMenu .spMenuLang__link.active {
  color: #ffffff;
}
.header .spMenu__subMenu {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  color: #7b7b81;
}
.header .spMenu__snsList {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin-top: 30px;
  color: #d3d3d6;
  border-top: 1px solid #383a3d;
}
.header .spMenu__cl {
  padding: 35px;
  font-size: 0.75rem;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}

.footer {
  padding-top: 60px;
  background-image: url("../../images/top/threeBgSp.webp");
  background-repeat: no-repeat;
  background-position: top -50px right 20px;
  background-size: 400px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 100px;
    background-image: url("../../images/top/threeBg.webp");
    background-position: top -60px right -50px;
    background-size: auto;
  }
}
@media (min-width: 1536px) {
  .footer {
    background-position: top -60px right calc((100% - 1200px) / 2 + 180px);
  }
}
.footer .footerContact {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  padding: 30px;
  margin: 0 auto;
  color: #ffffff;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 25%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .footer .footerContact {
    padding: 100px 80px;
    border-radius: 15px;
  }
}
.footer .footerContact:after {
  position: absolute;
  right: 17px;
  bottom: 19px;
  display: block;
  width: 17px;
  height: 12px;
  content: "";
  background-image: url("../../images/common/icon-arrowRight.svg");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .footer .footerContact:after {
    display: none;
  }
}
.footer .footerContact__wrap {
  padding: 0 24px;
}
.footer .footerContact_heading {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_heading {
    font-size: 38px;
  }
}
.footer .footerContact_text {
  margin-top: 10px;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_text {
    width: 90%;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .footer .footerContact_text {
    width: revert;
  }
}
.footer .footerContact .iconCircleArrow {
  position: absolute;
  top: 50%;
  right: 80px;
  display: none;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer .footerContact .iconCircleArrow {
    display: block;
  }
}
.footer .footerContact:hover {
  border-color: white;
}
.footer .footerLogo {
  width: 145px;
  height: 71px;
}
@media (min-width: 768px) {
  .footer .footerLogo {
    width: auto;
    height: auto;
  }
}
.footer .footerLogo:hover {
  opacity: 0.7;
}
.footer .footerNavWrap {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 100px auto 0;
}
@media (min-width: 768px) {
  .footer .footerNavWrap {
    align-items: center;
    justify-content: space-between;
  }
}
.footer .footerNavWrap .footerNav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 40px;
  }
}
.footer .footerNavWrap .footerNav_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.5;
  color: #d3d3d6;
}
.footer .footerNavWrap .footerNav_link:hover {
  color: #e6cd00;
}
.footer .footerNavWrap .footerNav_link_gray {
  font-size: 14px;
  color: #7b7b81;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 12px !important;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 14px;
  }
}
.footer .footerNavWrap .footerNav_link_gray:hover {
  color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray:hover::before {
  border-color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.footer .footerNavWrap .footerNav_childList {
  margin-top: 12px;
}
.footer .footerNavWrap .footerNav_childList .footerNav_item ~ .footerNav_item {
  margin-top: 6px;
}
.footer .footerNavWrap .footerNav_subList .footerNav_link_gray::before {
  content: none;
}
.footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
    margin-top: 20px;
  }
}
.footer .footerSnsWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 95px;
}
.footer .footerSnsWrap .footerSnsCnt {
  flex: 1;
  border-top: 1px solid #383a3d;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt {
    display: flex;
    justify-content: space-between;
    padding: 45px 50px 45px 60px;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns {
    padding: 0;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link:hover {
  color: #e6cd00;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
  padding: 35px;
  font-size: 12px;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
    padding: 0;
    text-align: left;
    background-color: transparent;
  }
}

.pagetop {
  display: none;
}
@media (min-width: 768px) {
  .pagetop {
    display: block;
  }
}
.pagetop_link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  background-image: linear-gradient(
    190deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 70%
  );
  border: 1px solid #383a3d;
}
.pagetop_link:hover {
  border-color: #ffffff;
}
.pagetop_text {
  margin: 0;
}

main {
  background-image: url(../../images/common/bg04.jpg);
  background-repeat: no-repeat;
  background-position: top -18px left calc(50% + 107px);
  background-size: 507px;
}
@media (min-width: 768px) {
  main {
    background-position: top -110px right calc(50% - 323px);
    background-size: 1462px;
  }
}

.title-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 639px) {
  .title-wrapper {
    height: 276px;
    padding-top: 128px;
  }
}
@media (min-width: 640px) {
  .title-wrapper {
    height: 333px;
    padding-top: 128px;
  }
}
@media (min-width: 768px) {
  .title-wrapper {
    height: 500px;
    padding-top: 240px;
  }
}
@media (min-width: 1024px) {
  .title-wrapper {
    height: 650px;
    padding-top: 266px;
  }
}
.title-wrapper::before {
  position: absolute;
  top: 0;
  content: "";
}

.page-title {
  display: grid;
  place-items: center;
  height: 128px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 0.1em;
  background: linear-gradient(-93deg, #fd1010 0%, #ec6d00 100%);
  -webkit-background-clip: text;
}
@media (max-width: 639px) {
  .page-title {
    height: 64px;
    font-size: 2.5rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(-96deg, #fd1010 0%, #edc600 100%);
    background-position: 40% center;
    -webkit-background-clip: text;
    background-size: 200%;
  }
}
@media (min-width: 640px) {
  .page-title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .page-title {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-title {
    font-size: 5rem;
  }
}

.page-title--company {
  background-position: 20% center; /* 50〜70%の中心に当たるように設定（=60%） */
  background-size: 200%; /* 50〜70%の中心に当たるように設定（=60%） */
}

.ja .page-title--page {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
}

.linkCircleIcon {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: bold;
  color: #ffffff;
}
.linkCircleIcon:hover {
  color: #e6cd00;
}
.linkCircleIcon.is_black {
  color: #000000;
}
.linkCircleIcon.is_black:hover {
  color: #e6cd00;
}
.linkCircleIcon .hoverCircle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: circle-out 0.3s forwards;
}
.linkCircleIcon:hover .hoverCircle {
  animation: circle 0.3s forwards;
}
.linkCircleIcon .hoverCircleSmall {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: circle-out 0.3s forwards;
}
.linkCircleIcon:hover .hoverCircleSmall {
  animation: circle 0.3s forwards;
}

@keyframes circle {
  from {
    stroke-dashoffset: 160;
  }
  to {
    stroke-dashoffset: 320;
  }
}
@keyframes circle-out {
  from {
    stroke-dashoffset: 320;
  }
  to {
    stroke-dashoffset: 160;
  }
}
@keyframes circle-small {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 240;
  }
}
@keyframes circle-small-out {
  from {
    stroke-dashoffset: 240;
  }
  to {
    stroke-dashoffset: 120;
  }
}
@media (min-width: 1024px) {
  .breadcrumb {
    max-width: 1000px;
  }
}

.breadcrumb__list {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  margin: 0;
  overflow: hidden;
  list-style: none;
  border-radius: 16px;
}

.breadcrumb__item {
  display: flex;
  flex-shrink: 0; /* 基本的には項目は縮小しない */
  align-items: center;
  white-space: nowrap; /* 基本的には項目は縮小しない */
}

/* 最後の項目だけ省略可能にする */
.breadcrumb__item:last-child {
  flex: 1 1 0;
  min-width: 0; /* 重要！ */
  overflow: hidden;
}

.breadcrumb__item:last-child {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb__item,
.breadcrumb__link {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d3d3d6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: #e6cd00;
}

.breadcrumb__item + .breadcrumb__item::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 16px;
  vertical-align: -2px;
  content: "";
  background-image: url("../../images/common/icon_chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 639px) {
  .breadcrumb__item + .breadcrumb__item::before {
    width: 10px;
    height: 10px;
    vertical-align: -1px;
  }
}

body {
  background-color: transparent;
}

.title-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 276px;
  padding-top: 36px;
}
@media (min-width: 768px) {
  .title-wrapper {
    height: 650px;
  }
}
.title-wrapper::before {
  position: absolute;
  top: 0;
  content: "";
}

.page-title {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}
@media (max-width: 639px) {
  .breadcrumb {
    margin-top: 8px;
  }
}

.title__background {
  position: absolute;
  top: 0;
  right: 0;
}

.philosophy__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
  max-width: 77.1875rem;
  padding-inline: 1.5rem;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .philosophy__inner {
    padding-inline: 1.25rem;
  }
}
@media (min-width: 768px) {
  .philosophy__inner {
    gap: 6.5625rem;
    align-items: center;
    padding-inline: 1.5625rem;
  }
}

.philosophy__content {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.9375rem;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 768px) {
  .philosophy__content {
    gap: 1.875rem;
  }
}

.philosophy__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  padding: 8px 6px 4px 6px;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, #eaac00 -10.45%, #fd1101 54.86%);
  writing-mode: vertical-rl;
}
@media (min-width: 768px) {
  .philosophy__lead {
    width: 3.375rem;
    padding: 19px 10px 5px 9px;
    font-size: 2.3125rem;
    letter-spacing: 0.04em;
  }
}

@media (min-width: 768px) {
  .philosophy__lead + .philosophy__lead {
    margin-top: revert;
  }
}

.philosophy__lead:nth-child(4) {
  margin-right: 1.875rem;
}
@media (min-width: 768px) {
  .philosophy__lead:nth-child(4) {
    margin-right: 1.875rem;
  }
}

.philosophy__text-content {
  width: initial;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .philosophy__text-content {
    width: 100%;
    margin-top: revert;
    font-size: 0.8125rem;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .philosophy__text-content {
    align-self: center;
  }
}

.philosophy__text {
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (max-width: 639px) {
  .philosophy__text {
    letter-spacing: 0.01em;
  }
}
@media (min-width: 768px) {
  .philosophy__text {
    margin-top: -0.625rem;
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.philosophy__text strong {
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .philosophy__text strong {
    font-size: 2rem;
  }
}

.philosophy__text + .philosophy__text {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .philosophy__text + .philosophy__text {
    margin-top: 1.9375rem;
  }
}

.mission__inner {
  padding-inline: 1rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .mission__inner {
    padding-inline: 4.375rem;
  }
}

.mission-content {
  position: relative;
  max-width: 97.5rem;
  padding: 3.75rem 1rem 3.625rem;
  margin-inline: auto;
  background-color: #000000;
  border-radius: 1rem;
}
.mission-content::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background: linear-gradient(to right, rgb(112, 102, 15), rgb(143, 9, 0));
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .mission-content {
    padding: 7.0625rem 3.75rem 6.25rem;
  }
}
@media (min-width: 1280px) {
  .mission-content {
    padding: 7.0625rem 7.8125rem 6.25rem;
  }
}

.mission__overview {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
@media (max-width: 639px) {
  .mission__overview {
    gap: 0.75rem;
  }
}
@media (min-width: 640px) {
  .mission__overview {
    gap: 0.75rem;
  }
}
@media (min-width: 768px) {
  .mission__overview {
    gap: 5%;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .mission__overview {
    flex-direction: row;
    gap: 11%;
  }
}

.mission__heading {
  text-align: center;
}

.mission__lead {
  position: absolute;
  top: -2.6%;
  right: 0;
  left: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 0.1em;
  background: linear-gradient(
    93deg,
    #e6cd00 -38.66%,
    #cde600 -38.65%,
    #e38500 28.41%,
    #fd1101 108.18%
  );
  -webkit-background-clip: text;
  writing-mode: normal;
}
@media (min-width: 768px) {
  .mission__lead {
    top: 1%;
    right: revert;
    left: -3.125rem;
    font-size: 1.125rem;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
    background: linear-gradient(
      #e6cd00 -38.66%,
      #cde600 -38.65%,
      #e38500 28.41%,
      #fd1101 108.18%
    );
    -webkit-background-clip: text;
    writing-mode: vertical-rl;
    transform: translateY(0);
  }
}

.mission__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .mission__title {
    max-width: 40.625rem;
    font-size: 2.3125rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
}

.mission__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #d3d3d6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .mission__text {
    max-width: 31.25rem;
    margin-top: 10px;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: revert;
  }
}

.mission__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.125rem 2rem;
  justify-items: center;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .mission__cards {
    gap: 3.0625rem 2.5rem;
    margin-top: 11.25rem;
  }
}
@media (min-width: 1280px) {
  .mission__cards {
    grid-template-columns: repeat(auto-fit, minmax(28.125rem, 1fr));
    justify-items: center;
  }
}
@media (min-width: 1536px) {
  .mission__cards {
    justify-items: stretch;
  }
}

.about {
  position: relative;
}

.about__inner {
  display: grid;
  max-width: 78.125rem;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}
@media (min-width: 1280px) {
  .about__inner {
    gap: 2.5rem;
  }
}

.about {
  position: relative;
}
.about::after {
  position: absolute;
  top: 29%;
  right: 0;
  z-index: -2;
  width: 21.5625rem;
  height: 17.9375rem;
  pointer-events: none;
  content: "";
  background-image: url("../../images/story/image_about-decoration.webp");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.8;
}
@media (min-width: 1024px) {
  .about::after {
    top: initial;
    right: 0;
    bottom: -18%;
    width: 59.125rem;
    height: 49.25rem;
  }
}

.about__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .about__title {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    align-self: end;
    font-size: 2rem;
  }
}

.about__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  color: #7b7b81;
  letter-spacing: 0.1em;
}

.about__image {
  max-width: 19.375rem;
  margin-inline: auto;
  margin-top: 2.3125rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .about__image {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    max-width: 34.3125rem;
    margin-top: revert;
  }
}
@media (min-width: 1536px) {
  .about__image {
    margin-left: -3.125rem;
  }
}
.about__image img {
  width: 100%;
  max-width: 34.3125rem;
  height: auto;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2.5625rem auto 0;
}
@media (min-width: 1024px) {
  .about__text {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    min-width: 35.625rem;
    margin-top: 0.625rem;
  }
}

.about__paragraph {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #d3d3d6;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .about__paragraph {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }
}
@media (max-width: 639px) {
  .about__paragraph br {
    display: none;
  }
}

.about__paragraph + .about__paragraph {
  margin-top: 0.1875rem;
}
@media (min-width: 768px) {
  .about__paragraph + .about__paragraph {
    margin-top: 1.1875rem;
  }
}

.about__button {
  display: flex;
  justify-content: center;
  max-width: 38.75rem;
  margin-inline: auto;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .about__button {
    justify-content: flex-start;
    margin-inline: revert;
    margin-top: 1.875rem;
  }
}

.about__link {
  display: inline-flex;
  gap: 0.6875rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.about__link:hover {
  color: #e6cd00;
  opacity: 0.8;
}

@media (min-width: 640px) {
  .brand-state {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .brand-state {
    margin-top: 80px;
  }
}
@media (min-width: 1024px) {
  .brand-state {
    padding-top: 128px;
  }
}

/*****************************************
 * 表示・非表示のユーティリティクラス
 ******************************************/
.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: flex;
  }
}

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

/*# sourceMappingURL=story.css.map */
