@charset "UTF-8";
/* ----- reset ----- */
a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  background-color: transparent;
  border-style: none;
}

button,
[role=button] {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* ----- font-face ----- */
@font-face {
  font-family: "D-DIN-PRO";
  src: url("../fonts/d_din_pro/D-DIN-PRO-600-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "D-DIN-PRO";
  src: url("../fonts/d_din_pro/D-DIN-PRO-700-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ----- base ----- */
html:root {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4a474c;
  background-color: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* c-inner */
.c-inner--sm {
  margin: 0 auto;
  width: 78.1%;
  max-width: 1124px;
}
@media (max-width: 768px) {
  .c-inner--sm {
    width: 87.8%;
  }
}

.c-inner--md {
  margin: 0 auto;
  width: 89.1%;
  max-width: 1283px;
}
@media (max-width: 768px) {
  .c-inner--md {
    width: 87.8%;
  }
}

.c-inner--lg {
  margin: 0 auto;
  width: 81.7%;
  max-width: 1411px;
}
@media (max-width: 768px) {
  .c-inner--lg {
    width: calc(100% - 40px);
  }
}

/* c-breadcrumb */
.c-breadcrumb {
  margin-left: 3.9%;
  position: relative;
}
@media (max-width: 768px) {
  .c-breadcrumb {
    margin-left: 6.1%;
  }
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item {
  color: #4a474c;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .c-breadcrumb__item {
    font-size: 0.9rem;
    line-height: 2.3;
  }
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  margin: 0 14px;
  display: inline-block;
  width: 5px;
  height: 2.1rem;
  background-color: #4a474c;
  -webkit-mask: url("../images/global/breadcrumb-sep.svg") center/contain no-repeat;
          mask: url("../images/global/breadcrumb-sep.svg") center/contain no-repeat;
  vertical-align: middle;
}
.c-breadcrumb__item--current[aria-current=page] {
  opacity: 1;
}
.c-breadcrumb__item--current[aria-current=page]::before {
  background-color: #E60012;
}
.c-breadcrumb__link {
  display: inline-block;
}
.c-breadcrumb.-white li {
  color: #fff;
}
.c-breadcrumb.-white li:not(:first-child)::before {
  background-color: #fff;
}
.c-breadcrumb.-white li[aria-current=page]::before {
  background-color: #E60012;
}

/* c-back */
.c-back {
  position: relative;
}
.c-back__link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 4.4;
  letter-spacing: 0.16rem;
  color: #4a474c;
  text-decoration: none;
}
@media (max-width: 768px) {
  .c-back__link {
    gap: 16px;
    font-size: 1.4rem;
    line-height: 2.6;
    letter-spacing: 0.1em;
  }
}
.c-back__arrow {
  width: 21px;
  height: 8px;
  background-color: #4A474C;
  -webkit-mask: url("../images/global/arrow-back.svg") center/contain no-repeat;
          mask: url("../images/global/arrow-back.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}
.c-back__link:hover .c-back__arrow {
  transform: translateX(-7px);
}
.c-back.-white a {
  color: #fff;
}
.c-back.-white .c-back__arrow {
  background-color: #FFF;
}

/* c-page-title */
.c-page-title {
  font-style: normal;
}
.c-page-title__en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #b8b5b5;
  font-style: normal;
}
@media (max-width: 1024px) {
  .c-page-title__en {
    font-size: 4.8rem;
  }
}
@media (max-width: 768px) {
  .c-page-title__en {
    font-weight: 600;
    font-size: 3.2rem;
  }
}
.c-page-title__ja {
  display: block;
  margin: 22px 0 0 4px;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #3d3939;
  font-style: normal;
}
@media (max-width: 768px) {
  .c-page-title__ja {
    margin: 10px 0 0;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.c-page-title.-white .c-page-title__ja {
  color: #fff;
}

/* c-border */
.c-border--row {
  position: relative;
  border-bottom: 1px solid #4a474c;
}
.c-border--row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.75px;
  width: 198px;
  height: 3px;
  background-color: #e60012;
}
@media (max-width: 768px) {
  .c-border--row::before {
    width: 120px;
  }
}

/* c-circle-arrow (丸矢印アイコン) */
.c-circle-arrow {
  display: block;
  width: 18px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #4a474c;
}
@media (max-width: 768px) {
  .c-circle-arrow {
    width: 12px;
  }
}
.c-circle-arrow::before {
  content: "";
  position: absolute;
  top: 41.1%;
  right: 44.4%;
  width: 12px;
  height: auto;
  aspect-ratio: 12/4;
  -webkit-mask: url("../images/global/arrow.svg") center/contain no-repeat;
          mask: url("../images/global/arrow.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .c-circle-arrow::before {
    width: 8px;
  }
}

a:hover .c-circle-arrow::before,
button:hover .c-circle-arrow::before {
  transform: translateX(50%);
}

/* c-btn-more (「詳しくはこちら」グラスカードボタン) */
.c-btn-more {
  display: grid;
  place-content: center;
  position: relative;
  padding: 20px 108px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #4a474c;
  text-shadow: 0 4px 30px #fff;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .c-btn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.c-btn-more:hover {
  opacity: 0.7;
}
.c-btn-more__icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 27px;
  width: 25px;
  height: 22px;
  background: url("../images/corporate/btn-icon.svg") center/contain no-repeat;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .c-btn-more__icon {
    position: static;
    transform: unset;
  }
}

/* c-btn-check  */
.c-btn-check {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 23px 37px 22px;
  gap: 28px;
  color: #4a474c;
  background-color: #f0f1f3;
  border-radius: 300px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (max-width: 768px) {
  .c-btn-check {
    gap: 16px;
    padding: 12px 24px;
    border-radius: 40px;
  }
}
.c-btn-check .c-icon-check::before {
  display: none;
}
.c-btn-check[aria-pressed=true] {
  color: #fff;
  background-color: #e60012;
}
.c-btn-check[aria-pressed=true] .c-icon-check::before {
  display: block;
}
.c-btn-check__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
}
@media (max-width: 768px) {
  .c-btn-check__box {
    gap: 4px;
  }
}
.c-btn-check__label {
  font-family: "Inter", sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: inherit;
}
@media (max-width: 768px) {
  .c-btn-check__label {
    font-size: 0.8rem;
  }
}
.c-btn-check__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: left;
  color: inherit;
}
@media (max-width: 768px) {
  .c-btn-check__title {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* c-btn-submit  */
.c-btn-submit {
  position: relative;
  display: block;
  min-width: 401px;
  margin-inline: auto;
  padding: 17px 77px 17px 57px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #1F1E22;
  border-radius: 120px;
  color: #fff;
}
@media (max-width: 768px) {
  .c-btn-submit {
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 13px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.c-btn-submit .c-circle-arrow {
  position: absolute;
  top: 50%;
  right: 33px;
  width: 22px;
  background-color: #fff;
  transform: translateY(-50%);
}
.c-btn-submit .c-circle-arrow::before {
  width: 15px;
  background-color: #1F1E22;
}
@media (max-width: 768px) {
  .c-btn-submit .c-circle-arrow {
    right: 14px;
  }
}

/* c-glass-card: ガラスカード */
.c-glass-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
}

/* p-corporate (会社情報トップページ専用) */
.p-corporate {
  padding-bottom: 216px;
}
@media (max-width: 1024px) {
  .p-corporate {
    padding-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .p-corporate {
    padding: 64px 0 40px;
  }
}
.p-corporate__head {
  padding-top: 158px;
  height: 535px;
  background: url("../images/corporate/head_bg.jpg") top center/cover no-repeat;
}
@media (max-width: 1024px) {
  .p-corporate__head {
    padding-top: 130px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .p-corporate__head {
    padding-top: 24px;
    height: 246px;
    background-image: url("../images/corporate/head_bg-sp.jpg");
  }
}
.p-corporate__title {
  margin-top: 73px;
}
@media (max-width: 1024px) {
  .p-corporate__title {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .p-corporate__title {
    margin-top: 64px;
  }
}
.p-corporate .c-page-title__en {
  mix-blend-mode: multiply;
}
.p-corporate .c-page-title__ja {
  font-weight: 500;
}
.p-corporate__body {
  position: relative;
  padding: 41px 0 168px;
  background-color: #F7F7F7;
}
@media (max-width: 1024px) {
  .p-corporate__body {
    padding: 38px 0 130px;
  }
}
@media (max-width: 768px) {
  .p-corporate__body {
    padding: 34px 0 98px;
  }
}
.p-corporate__body::before {
  content: "";
  position: absolute;
  top: -91px;
  bottom: -17px;
  left: 0;
  width: 38.5%;
  border-top-right-radius: 30px;
  background-color: #db0112;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .p-corporate__body::before {
    top: -70px;
    width: 46%;
  }
}
@media (max-width: 768px) {
  .p-corporate__body::before {
    top: -40px;
    bottom: 0;
    width: 71.2%;
    border-top-right-radius: 20px;
  }
}
.p-corporate__body .c-inner--sm {
  position: relative;
}
.p-corporate__section + .p-corporate__section {
  margin-top: 76px;
}
@media (max-width: 768px) {
  .p-corporate__section + .p-corporate__section {
    margin-top: 53px;
  }
}
.p-corporate__section-title {
  position: relative;
  margin-bottom: 61px;
  padding-bottom: 26px;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (max-width: 1024px) {
  .p-corporate__section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .p-corporate__section-title {
    margin-bottom: 26px;
    padding-bottom: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.p-corporate__section-title::before, .p-corporate__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #fff;
}
.p-corporate__section-title::before {
  bottom: 0;
  width: 257px;
  height: 1.5px;
}
@media (max-width: 768px) {
  .p-corporate__section-title::before {
    width: 161px;
  }
}
.p-corporate__section-title::after {
  bottom: -0.75px;
  width: 58px;
  height: 3px;
}
@media (max-width: 768px) {
  .p-corporate__section-title::after {
    width: 64px;
  }
}
.p-corporate__history-list {
  display: flex;
  flex-direction: column;
  gap: 29px;
  padding-right: 35px;
}
@media (max-width: 1024px) {
  .p-corporate__history-list {
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .p-corporate__history-list {
    gap: 50px;
  }
}
.p-corporate__history-item {
  position: relative;
  padding: 38px 0 45px 58px;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .p-corporate__history-item {
    padding: 30px 0 40px 40px;
  }
}
@media (max-width: 768px) {
  .p-corporate__history-item {
    padding: 32px 24px;
    border-radius: 8px;
  }
}
.p-corporate__history-item:first-child {
  background: url("../images/corporate/history_item_bg-1.jpg") center/cover no-repeat;
}
@media (max-width: 768px) {
  .p-corporate__history-item:first-child {
    background-image: url("../images/corporate/history_item_bg-1-sp.jpg");
  }
}
.p-corporate__history-item:nth-child(2) {
  background: url("../images/corporate/history_item_bg-2.jpg") center/cover no-repeat;
}
@media (max-width: 768px) {
  .p-corporate__history-item:nth-child(2) {
    background-image: url("../images/corporate/history_item_bg-2-sp.jpg");
  }
}
.p-corporate__history-item:nth-child(3) {
  background: url("../images/corporate/history_item_bg-3.jpg") center/cover no-repeat;
}
@media (max-width: 768px) {
  .p-corporate__history-item:nth-child(3) {
    background-image: url("../images/corporate/history_item_bg-3-sp.jpg");
  }
}
.p-corporate__history-en {
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(74, 71, 76, 0.3);
}
@media (max-width: 768px) {
  .p-corporate__history-en {
    font-size: 2.4rem;
    line-height: 1.4;
    color: rgba(74, 71, 76, 0.45);
  }
}
.p-corporate__history-ja {
  margin-top: 9.5px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-corporate__history-ja {
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.p-corporate__history-btn {
  position: absolute;
  bottom: -16px;
  right: -35px;
}
@media (max-width: 1024px) {
  .p-corporate__history-btn {
    right: -20px;
  }
}
@media (max-width: 768px) {
  .p-corporate__history-btn {
    bottom: -24px;
    right: -24px;
  }
}
.p-corporate__cards {
  display: flex;
  gap: 27px;
}
@media (max-width: 1024px) {
  .p-corporate__cards {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p-corporate__cards {
    flex-direction: column;
    gap: 50px;
    padding-right: 24px;
  }
}
.p-corporate__card {
  position: relative;
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .p-corporate__card {
    width: 100%;
  }
}
.p-corporate__card-img-wrap {
  position: relative;
  aspect-ratio: 548/355;
}
.p-corporate__card-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .p-corporate__card-img {
    border-radius: 8px;
    box-shadow: none;
  }
}
.p-corporate__card-overlay {
  position: absolute;
  bottom: 71px;
  left: 10.2%;
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 17px;
       column-gap: 17px;
  row-gap: 8px;
  flex-wrap: wrap;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .p-corporate__card-overlay {
    bottom: 30px;
    left: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-shadow: none;
  }
}
.p-corporate__card-en {
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .p-corporate__card-en {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .p-corporate__card-en {
    line-height: 1.4;
  }
}
.p-corporate__card-ja {
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-corporate__card-ja {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.p-corporate__card-footer {
  position: absolute;
  bottom: -37px;
  right: 0;
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-corporate__card-footer {
    bottom: -24px;
    right: -24px;
  }
}
.p-corporate__link-panels {
  display: flex;
  flex-direction: column;
  gap: 43px;
  margin-top: 137px;
}
@media (max-width: 1024px) {
  .p-corporate__link-panels {
    margin-top: 100px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .p-corporate__link-panels {
    margin-top: 53px;
    gap: 13px;
  }
}
.p-corporate__link-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 122px;
  padding-left: 79px;
  background-color: rgba(255, 255, 255, 0.64);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s;
}
@media (max-width: 1024px) {
  .p-corporate__link-panel {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .p-corporate__link-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    height: auto;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
}
.p-corporate__link-panel:hover {
  opacity: 0.7;
}
.p-corporate__link-panel-label {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 34px;
       column-gap: 34px;
  row-gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}
@media (max-width: 768px) {
  .p-corporate__link-panel-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
}
.p-corporate__link-panel-en {
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(74, 71, 76, 0.45);
}
@media (max-width: 1024px) {
  .p-corporate__link-panel-en {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .p-corporate__link-panel-en {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.p-corporate__link-panel-ja {
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-corporate__link-panel-ja {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.p-corporate__link-panel-btn {
  display: grid;
  place-content: center;
  padding: 24px 80px;
  width: 33.7%;
  min-width: 280px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  border-left: 1px solid rgba(74, 71, 76, 0.5);
  color: #4a474c;
  text-shadow: 0 4px 30px #fff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-corporate__link-panel-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    min-width: unset;
    padding: 19px 0 0;
    font-size: 1.4rem;
    line-height: 1.4;
    border-left: none;
    border-top: 1px solid rgba(74, 71, 76, 0.5);
  }
}
.p-corporate__link-panel-btn .c-btn-more__icon {
  right: 36px;
}
.p-corporate__back {
  display: none;
}
@media (max-width: 768px) {
  .p-corporate__back {
    display: block;
    margin-top: 120px;
  }
}

/* p-enkaku (ミツフジの沿革ページ専用) */
.page-enkaku {
  background-color: #161417;
}

.p-enkaku {
  position: relative;
  padding-bottom: 54px;
}
@media (max-width: 768px) {
  .p-enkaku {
    padding: 64px 0 0;
  }
}
.p-enkaku .c-breadcrumb {
  position: absolute;
  top: 154px;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-enkaku .c-breadcrumb {
    top: 88px;
  }
}
.p-enkaku__fv {
  display: flex;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  padding: 111px 0 40px;
  width: 100%;
  height: 100vh;
  background: url("../images/corporate/enkaku/hero_bg.jpg") top left/cover no-repeat #403C42;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-enkaku__fv {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .p-enkaku__fv {
    padding: 45px 0 0;
  }
}
.p-enkaku__fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/corporate/enkaku/hero_kv.jpg") top left/100% auto no-repeat;
}
.p-enkaku__fv-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 27px;
}
@media (max-width: 768px) {
  .p-enkaku__fv-content {
    gap: min(40px, 6.6vh);
  }
}
.p-enkaku__fv-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 500;
  font-size: 5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background-image: linear-gradient(248deg, #ffffff 51%, #998b77 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 1024px) {
  .p-enkaku__fv-title {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .p-enkaku__fv-title {
    font-size: 3.2rem;
    line-height: 2;
  }
}
.p-enkaku__fv-desc {
  display: inline-block;
  margin-left: auto;
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
  color: #fff;
}
.p-enkaku__fv-desc p + p {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .p-enkaku__fv-desc {
    width: 69.6%;
    font-size: 1.4rem;
    line-height: 2;
  }
  .p-enkaku__fv-desc p + p {
    margin-top: 28px;
  }
}
.p-enkaku__inner {
  position: relative;
}
.p-enkaku .c-back {
  margin-top: 53px;
}
@media (max-width: 768px) {
  .p-enkaku .c-back {
    margin-top: 0;
    padding: 80px 0 40px;
  }
}

/* p-enkaku History セクション */
.p-enkaku__history {
  position: relative;
}
.p-enkaku__history::before {
  content: "";
  position: absolute;
  top: 148px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 16, 19, 0) 0%, #161417 62%);
}
@media (max-width: 768px) {
  .p-enkaku__history {
    margin-top: 40px;
  }
}
.p-enkaku__history-card {
  width: 92.1%;
  max-width: 1592px;
  margin-inline: auto;
  padding: 140px 0 55px;
  padding-inline: min(10.6%, 152px);
  overflow: hidden;
  border: 1px solid rgba(168, 168, 168, 0.5);
  background: rgba(25, 23, 27, 0.2);
  transform: translateZ(0);
}
@media (max-width: 1024px) {
  .p-enkaku__history-card {
    padding: 100px 0 55px;
    padding-inline: 48px;
  }
}
@media (max-width: 768px) {
  .p-enkaku__history-card {
    width: 87.8%;
    padding: 40px 24px;
    border-radius: 16px;
  }
}
.p-enkaku__history-en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #aeaeae;
}
@media (max-width: 1024px) {
  .p-enkaku__history-en {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .p-enkaku__history-en {
    font-size: 4rem;
  }
}
.p-enkaku__history-ja {
  display: block;
  margin: 17px 0 0 5px;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
.p-enkaku__timeline-nav-list {
  display: flex;
  gap: 20px;
  margin-top: 101px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-enkaku__timeline-nav-list {
    gap: 16px;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-enkaku__timeline-nav-list {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
}
.p-enkaku__timeline-nav-item:first-child {
  flex: 27.1%;
}
.p-enkaku__timeline-nav-item:nth-child(2) {
  flex: 32.1%;
}
.p-enkaku__timeline-nav-item:nth-child(3) {
  flex: 35.5%;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-nav-item {
    flex: none;
  }
}
.p-enkaku__timeline-nav-btn {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 14px 60px 12px 0;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-nav-btn {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 12px 40px 12px 16px;
  }
}
.p-enkaku__timeline-nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top-right-radius: 10px;
  background-color: #5A514C;
  transform: skew(38deg);
  transform-origin: bottom left;
}
.p-enkaku__timeline-nav-btn.is-active::before {
  background-color: #DDDCDD;
}
.p-enkaku__timeline-nav-btn.is-active .p-enkaku__timeline-nav-year,
.p-enkaku__timeline-nav-btn.is-active .p-enkaku__timeline-nav-label {
  color: #4a474c;
}
.p-enkaku__timeline-nav-btn.is-active .p-enkaku__timeline-nav-divider {
  background-color: #423E45;
}
.p-enkaku__timeline-nav-year {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: min(1.4vw, 18px);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-nav-year {
    font-size: 14px;
    color: #fff;
  }
}
.p-enkaku__timeline-nav-divider {
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .p-enkaku__timeline-nav-divider {
    height: 32px;
    margin-inline: 12px;
    background-color: #fff;
  }
}
.p-enkaku__timeline-nav-label {
  font-weight: 500;
  font-size: min(1.3vw, 16px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .p-enkaku__timeline-nav-label {
    flex: 1;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    color: #fff;
  }
}
.p-enkaku__timeline-body {
  position: relative;
  margin-top: 95px;
}
@media (max-width: 1024px) {
  .p-enkaku__timeline-body {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-enkaku__timeline-body {
    margin-top: 0;
  }
}
.p-enkaku__timeline-scroll {
  position: relative;
}
.p-enkaku__stage {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-enkaku__stage {
    top: 19px;
    left: -15px;
    gap: 0;
  }
}
.p-enkaku__stage-text {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  white-space: nowrap;
  color: #fff;
}
@media (max-width: 768px) {
  .p-enkaku__stage-text {
    font-size: 20px;
    line-height: 1.4;
  }
}
.p-enkaku__stage-num {
  margin-left: -7px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .p-enkaku__stage-num {
    margin-left: 0;
    font-size: 28px;
    line-height: 1.4;
  }
}
.p-enkaku__timeline-wrapper {
  position: relative;
  margin-left: -75px;
  width: 117%;
  overflow: hidden;
  -webkit-mask: linear-gradient(to top, rgba(35, 32, 37, 0) 0%, rgba(32, 29, 34, 0.5) 51%, rgba(20, 17, 22, 0.95) 80%);
          mask: linear-gradient(to top, rgba(35, 32, 37, 0) 0%, rgba(32, 29, 34, 0.5) 51%, rgba(20, 17, 22, 0.95) 80%);
}
@media (max-width: 1024px) {
  .p-enkaku__timeline-wrapper {
    width: calc(100% + 75px);
  }
}
@media (max-width: 768px) {
  .p-enkaku__timeline-wrapper {
    margin-left: -24px;
    width: calc(100% + 24px);
  }
}
.p-enkaku__timeline-line {
  width: 334px;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-line {
    width: 150px;
  }
  .p-enkaku__timeline-line.-pc {
    display: none;
  }
}
.p-enkaku__timeline-line.-sp {
  display: none;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-line.-sp {
    display: block;
    width: 319px;
  }
}
.p-enkaku__timeline-item {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 38px;
       column-gap: 38px;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-item {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.p-enkaku__timeline-item.is-active {
  top: 82px;
  left: 205px;
  gap: 47px;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-item.is-active {
    top: 24px;
    left: 51px;
    gap: 20px;
  }
}
.p-enkaku__timeline-marker {
  flex-shrink: 0;
  width: 39px;
  height: auto;
  aspect-ratio: 1/1;
  border: 12px solid #151216;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-marker {
    width: 26px;
    border-width: 8px;
  }
}
.is-active .p-enkaku__timeline-marker {
  margin-top: 7px;
  width: 51px;
  background-color: #E60012;
}
@media (max-width: 768px) {
  .is-active .p-enkaku__timeline-marker {
    width: 30px;
    margin-top: 1px;
  }
}
.p-enkaku__timeline-info {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 38px;
       column-gap: 38px;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-info {
    flex-direction: column;
    gap: 4px;
  }
}
.p-enkaku__timeline-year {
  flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: min(1.4vw, 18px);
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-year {
    font-size: 14px;
    line-height: 1.4;
  }
  .p-enkaku__timeline-year br {
    display: none;
  }
}
.is-active .p-enkaku__timeline-year {
  font-size: min(1.5vw, 22px);
  line-height: 2.5;
}
@media (max-width: 768px) {
  .is-active .p-enkaku__timeline-year {
    font-size: 16px;
    line-height: 1.4;
  }
}
.p-enkaku__timeline-title {
  margin-bottom: 18px;
  font-weight: 400;
  font-size: min(1.9vw, 24px);
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-title {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.4;
  }
  .p-enkaku__timeline-title br {
    display: none;
  }
}
.is-active .p-enkaku__timeline-title {
  margin-bottom: 23px;
  font-size: min(3.1vw, 45px);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .is-active .p-enkaku__timeline-title {
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 1.4;
  }
  .is-active .p-enkaku__timeline-title.-sm {
    font-size: 18px;
  }
}
.p-enkaku__timeline-text {
  font-weight: 400;
  font-size: min(1.4vw, 18px);
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (max-width: 768px) {
  .p-enkaku__timeline-text {
    font-size: 12px;
    line-height: 1.4;
  }
}
.is-active .p-enkaku__timeline-text {
  font-size: min(1.5vw, 22px);
  line-height: 1.2;
}
.is-active .p-enkaku__timeline-text.-lh {
  line-height: 2.5;
}
@media (max-width: 768px) {
  .is-active .p-enkaku__timeline-text {
    font-size: 14px;
    line-height: 1.4;
  }
  .is-active .p-enkaku__timeline-text.-lh {
    line-height: 1.4;
  }
  .is-active .p-enkaku__timeline-text br {
    display: none;
  }
}
.p-enkaku__history-images {
  position: absolute;
  top: -8px;
  right: -82px;
  display: grid;
  width: 44.2%;
}
@media (max-width: 768px) {
  .p-enkaku__history-images {
    position: static;
    width: 100%;
  }
}
.p-enkaku__history-image {
  margin-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  grid-area: 1/1;
}
.p-enkaku__history-image picture {
  width: 100%;
}
.p-enkaku__history-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-enkaku__history-image img {
    max-height: 20vh;
  }
}

/* p-enkaku Awards セクション */
.p-enkaku__awards {
  position: relative;
  padding-top: 79px;
  background-color: #161417;
}
.p-enkaku__awards-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12.7%;
  width: 92.1%;
  max-width: 1592px;
  margin-inline: auto;
  padding-right: min(6%, 95px);
  padding-left: min(9.2%, 147px);
  overflow: hidden;
  border-radius: 30px;
  background: #f7f7f7;
}
@media (max-width: 1024px) {
  .p-enkaku__awards-card {
    gap: 60px;
    padding-inline: 40px;
  }
}
@media (max-width: 768px) {
  .p-enkaku__awards-card {
    flex-direction: column;
    align-items: flex-start;
    width: 87.8%;
    padding: 40px 24px;
    gap: 0;
    border-radius: 16px;
  }
}
.p-enkaku__awards-bg {
  position: absolute;
  top: -746.5px;
  bottom: -746.5px;
  right: 66%;
  width: 71.9%;
  border-radius: 50%;
  background-color: #DB0112;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .p-enkaku__awards-bg {
    right: 70%;
  }
}
@media (max-width: 768px) {
  .p-enkaku__awards-bg {
    top: -152px;
    bottom: auto;
    left: -127px;
    right: -127px;
    width: auto;
    height: 320px;
  }
}
.p-enkaku__awards-label {
  position: relative;
}
@media (max-width: 768px) {
  .p-enkaku__awards-label {
    padding-bottom: 64px;
  }
}
.p-enkaku__awards-en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: min(5.5vw, 8rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #e5c78c;
}
@media (max-width: 768px) {
  .p-enkaku__awards-en {
    font-size: 3.2rem;
  }
}
.p-enkaku__awards-ja {
  display: block;
  margin-top: 12px;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (max-width: 768px) {
  .p-enkaku__awards-ja {
    margin-top: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
  }
}
.p-enkaku__awards-list {
  position: relative;
  padding: 64px 0 111px;
}
@media (max-width: 1024px) {
  .p-enkaku__awards-list {
    padding: 48px 0 80px;
  }
}
@media (max-width: 768px) {
  .p-enkaku__awards-list {
    padding: 0;
  }
}
.p-enkaku__award-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8%;
  padding: 30px 0;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-enkaku__award-item {
    flex-direction: column;
    gap: 8px;
    padding: 40px 0 24px;
  }
}
.p-enkaku__award-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(74, 71, 76, 0.9);
}
.p-enkaku__award-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 146px;
  height: 3px;
  background-color: #e60012;
}
@media (max-width: 768px) {
  .p-enkaku__award-item::after {
    width: 120px;
  }
}
.p-enkaku__award-date, .p-enkaku__award-title {
  font-size: min(1.4vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #4a474c;
}
.p-enkaku__award-date {
  width: 7em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-enkaku__award-date {
    width: auto;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-enkaku__award-body {
  flex: 1;
}
@media (max-width: 768px) {
  .p-enkaku__award-body {
    padding-left: 16px;
  }
}
.p-enkaku__award-title {
  margin-bottom: 2px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-enkaku__award-title {
    margin-bottom: 4px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-enkaku__award-desc {
  font-weight: 500;
  font-size: min(1.1vw, 1.4rem);
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-enkaku__award-desc {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

/* p-company (会社概要ページ専用) */
.page-company .footer {
  background-color: #f0f1f3;
}

.p-company {
  padding-top: 154px;
}
@media (max-width: 1024px) {
  .p-company {
    padding-top: 130px;
  }
}
@media (max-width: 768px) {
  .p-company {
    margin-top: 64px;
    padding: 24px 0 0;
  }
}
.p-company__row {
  display: flex;
  align-items: flex-start;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-company__row {
    flex-direction: column;
    gap: 12px;
  }
}
.p-company__label {
  flex-shrink: 0;
  width: 23.2%;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-company__label {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-company__value {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-company__value {
    padding-left: 16px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-company__company {
  margin-top: 83px;
  padding-bottom: 157px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .p-company__company {
    margin-top: 60px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .p-company__company {
    margin-top: 64px;
    padding-bottom: 80px;
  }
}
.p-company__table {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .p-company__table {
    margin-top: 26px;
  }
}
.p-company__table > div {
  padding: 43px 0;
}
@media (max-width: 768px) {
  .p-company__table > div {
    padding: 31px 0 24px;
  }
}
.p-company__license + .p-company__license {
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .p-company__license + .p-company__license {
    margin-top: 2.2rem;
  }
}
.p-company__license-heading {
  margin-bottom: 0;
}
.p-company__officer {
  display: flex;
}
.p-company__officer-title {
  flex-shrink: 0;
  width: 8.6em;
}
.p-company__access {
  padding: 170px 0 98px;
  width: 100%;
  background-color: #f0f1f3;
}
@media (max-width: 1024px) {
  .p-company__access {
    padding: 120px 0 80px;
  }
}
@media (max-width: 768px) {
  .p-company__access {
    padding: 40px 0;
  }
}
.p-company__tabs {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 69px;
}
@media (max-width: 1024px) {
  .p-company__tabs {
    margin-top: 60px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 768px) {
  .p-company__tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}
.p-company__accordion-item {
  display: contents;
}
@media (max-width: 768px) {
  .p-company__accordion-item {
    display: block;
  }
}
.p-company__tab-btn {
  position: relative;
  display: grid;
  place-content: center;
  padding-block: 24px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.64);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #4a474c;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
@media (max-width: 1024px) {
  .p-company__tab-btn {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-company__tab-btn {
    width: 100%;
    padding: 16px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-company__tab-btn.is-active {
  background-color: #e60012;
  box-shadow: none;
  color: #fff;
}
.p-company__tab-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #e60012;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .p-company__tab-icon {
    right: 20px;
  }
}
.p-company__tab-icon::after {
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  background-color: #fff;
  -webkit-clip-path: path("M0.00122715 0.664675L0.570319 -0.000119506L3.34827 2.38135L6.12622 -0.000119021L6.69531 0.664675L3.34827 3.5332L0.00122715 0.664675Z");
          clip-path: path("M0.00122715 0.664675L0.570319 -0.000119506L3.34827 2.38135L6.12622 -0.000119021L6.69531 0.664675L3.34827 3.5332L0.00122715 0.664675Z");
  transform: translateY(1px);
  transition: background-color 0.3s, transform 0.3s;
}
.p-company__tab-btn.is-active .p-company__tab-icon {
  background-color: #fff;
}
.p-company__tab-btn.is-active .p-company__tab-icon::after {
  background-color: #e60012;
  transform: translateY(0) scaleY(-1);
}
.p-company__tab-content {
  grid-column: 1/-1;
  grid-row: 2;
}
@media (max-width: 768px) {
  .p-company__tab-content {
    padding: 23px 0 40px;
  }
}
.p-company__map {
  height: 476px;
  background-color: #d9d9d9;
}
@media (max-width: 768px) {
  .p-company__map {
    height: 146px;
  }
}
.p-company__map-link-wrap {
  margin-top: 37px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .p-company__map-link-wrap {
    margin-top: 24px;
  }
}
.p-company__map-link {
  position: relative;
  display: inline-grid;
  place-content: center;
  padding: 13px 45px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  border: 1px solid #3d3939;
  border-radius: 10px;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-company__map-link {
    padding: 7px 37px;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.p-company__map-link-icon {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%) rotate(-24.5deg);
}
@media (max-width: 768px) {
  .p-company__map-link-icon {
    right: 7px;
  }
}
.p-company__map-link-icon::before {
  background-color: #fff;
}
.p-company__info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-company__info {
    gap: 23px;
    margin-top: 23px;
  }
}
.p-company__row {
  min-height: 122px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .p-company__row {
    min-height: 0;
    padding-bottom: 24px;
  }
}
.p-company .c-back {
  margin-top: 130px;
}
@media (max-width: 1024px) {
  .p-company .c-back {
    margin-top: 90px;
  }
}
@media (max-width: 768px) {
  .p-company .c-back {
    margin-top: 171px;
  }
}

/* p-message (代表メッセージ ページ専用) */
.page-message {
  background: url("../images/corporate/message/bg.jpg") top center/cover no-repeat;
}
@media (max-width: 768px) {
  .page-message {
    background-image: url("../images/corporate/message/bg-sp.jpg");
  }
}

.p-message {
  position: relative;
  padding: 154px 0 88px;
}
@media (max-width: 1024px) {
  .p-message {
    padding: 130px 0 70px;
  }
}
@media (max-width: 768px) {
  .p-message {
    margin-top: 64px;
    padding: 24px 0 40px;
  }
}
.p-message::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32%;
  height: 948px;
  background-color: #1C1B1D;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .p-message::before {
    width: 36%;
  }
}
@media (max-width: 768px) {
  .p-message::before {
    display: none;
  }
}
.p-message__title {
  margin-top: 83.5px;
}
@media (max-width: 1024px) {
  .p-message__title {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-message__title {
    margin-top: 64px;
  }
}
.p-message__layout {
  position: relative;
  margin-top: -30px;
  display: flex;
  align-items: flex-start;
  gap: 94px;
}
@media (max-width: 1024px) {
  .p-message__layout {
    gap: 50px;
    margin-top: -20px;
  }
}
@media (max-width: 768px) {
  .p-message__layout {
    flex-direction: column;
    gap: 0;
    margin-top: -2px;
  }
}
.p-message__col-left {
  margin-top: 66px;
  width: 30.2%;
}
@media (max-width: 1024px) {
  .p-message__col-left {
    width: 27.3%;
  }
}
@media (max-width: 768px) {
  .p-message__col-left {
    position: relative;
    width: 100%;
    margin-top: 0;
  }
  .p-message__col-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 192px;
    background-color: #1c1b1d;
  }
}
.p-message__col-left img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-message__col-left img {
    position: relative;
    display: block;
    width: 200px;
    margin-left: auto;
  }
}
.p-message__col-right {
  flex: 1;
  min-width: 0;
  color: #edecec;
}
@media (max-width: 768px) {
  .p-message__col-right {
    margin-top: 40px;
  }
}
.p-message__heading {
  margin-left: -5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-message__heading {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .p-message__heading {
    margin-left: 0;
    font-size: 2rem;
  }
}
.p-message__body {
  margin-top: 48px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-message__body {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-message__body {
    margin-top: 40px;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-message__body p {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .p-message__body p {
    margin-bottom: 2.8rem;
  }
}
.p-message__sig {
  margin-top: 78px;
}
@media (max-width: 1024px) {
  .p-message__sig {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-message__sig {
    margin-top: 40px;
  }
}
.p-message__sig-line {
  position: relative;
  width: 289px;
  height: 1.5px;
  background-color: #edecec;
}
@media (max-width: 768px) {
  .p-message__sig-line {
    width: 160px;
  }
}
.p-message__sig-line::before {
  content: "";
  position: absolute;
  top: -0.75px;
  left: 0;
  display: block;
  width: 110px;
  height: 3px;
  background-color: #edecec;
}
@media (max-width: 768px) {
  .p-message__sig-line::before {
    width: 64px;
  }
}
.p-message__sig-name {
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-message__sig-name {
    margin-top: 40px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-message__sig-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-message__sig-title {
    margin-top: 8px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-message .c-back {
  margin-top: 47px;
}
@media (max-width: 768px) {
  .p-message .c-back {
    margin-top: 120px;
  }
}

/* p-slogan (コーポレートスローガン ページ専用) */
.p-slogan {
  padding: 154px 0 70px;
  width: 100%;
}
@media (max-width: 1024px) {
  .p-slogan {
    padding: 130px 0 60px;
  }
}
@media (max-width: 768px) {
  .p-slogan {
    margin-top: 64px;
    padding: 24px 0 40px;
  }
}
.p-slogan__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/corporate/slogan/bg.jpg") top center/cover no-repeat;
  pointer-events: none;
}
.p-slogan__title {
  position: relative;
  margin-top: 84px;
  font-size: 0;
  font-style: normal;
}
@media (max-width: 1024px) {
  .p-slogan__title {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-slogan__title {
    margin-top: 64px;
  }
}
.p-slogan__title--en {
  display: block;
}
@media (max-width: 768px) {
  .p-slogan__title--en {
    display: none;
  }
}
.p-slogan__title .c-page-title__en {
  display: none;
}
@media (max-width: 768px) {
  .p-slogan__title .c-page-title__en {
    display: block;
  }
}
.p-slogan__title--ja {
  margin-top: 24px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-slogan__title--ja {
    margin-top: 8px;
    white-space: normal;
  }
}
.p-slogan__content {
  position: relative;
  width: 92.1%;
  max-width: 1591px;
  margin: 82px auto 0;
  padding: 113px min(15.3%, 244px) 145px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  background-color: rgba(247, 247, 247, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #4a474c;
  transform: translateZ(0);
}
@media (max-width: 1024px) {
  .p-slogan__content {
    margin-top: 60px;
    padding: 80px min(6.3%, 100px) 100px;
  }
}
@media (max-width: 768px) {
  .p-slogan__content {
    width: 87.8%;
    margin-top: 32px;
    padding: 47px 32px 53px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
}
.p-slogan__logo {
  width: 511px;
  height: auto;
}
@media (max-width: 1024px) {
  .p-slogan__logo {
    width: 380px;
  }
}
@media (max-width: 768px) {
  .p-slogan__logo {
    width: 224px;
  }
}
.p-slogan__heading {
  margin-top: 60px;
  font-size: 0;
}
@media (max-width: 768px) {
  .p-slogan__heading {
    margin-top: 32px;
  }
}
.p-slogan__heading img {
  width: auto;
  height: 41px;
}
@media (max-width: 768px) {
  .p-slogan__heading img {
    height: 22px;
  }
}
.p-slogan__body {
  margin-top: 75px;
  font-size: 2rem;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-slogan__body {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .p-slogan__body {
    margin-top: 32px;
    font-size: 1.3rem;
    line-height: 2;
  }
}
.p-slogan__body p + p {
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .p-slogan__body p + p {
    margin-top: 26px;
  }
}
.p-slogan__closing {
  margin-top: 65px;
  font-size: 3.2rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-slogan__closing {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .p-slogan__closing {
    margin-top: 26px;
    font-size: 1.8rem;
    line-height: 2;
  }
}
.p-slogan .c-back {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .p-slogan .c-back {
    margin-top: 72px;
  }
}

/* p-fukushima (福島センター ページ専用) */
@-webkit-keyframes fukushima-hero-crossfade {
  0%, 35% {
    opacity: 1;
  }
  45%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fukushima-hero-crossfade {
  0%, 35% {
    opacity: 1;
  }
  45%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-fukushima .footer {
  background-color: #f0f1f3;
}

@media (max-width: 768px) {
  .p-fukushima {
    margin-top: 64px;
  }
}
.p-fukushima__hero {
  position: relative;
}
.p-fukushima__hero-bg {
  height: 1131px;
  padding-top: 154px;
}
@media (max-width: 1024px) {
  .p-fukushima__hero-bg {
    height: 800px;
    padding-top: 130px;
  }
}
@media (max-width: 768px) {
  .p-fukushima__hero-bg {
    position: relative;
    height: 400px;
    padding-top: 24px;
    padding-bottom: 0;
  }
}
.p-fukushima__hero-bg::before, .p-fukushima__hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-fukushima__hero-bg::before {
  background-image: url("../images/corporate/fukushima/hero-bg-02.jpg");
}
.p-fukushima__hero-bg::after {
  background-image: url("../images/corporate/fukushima/hero-bg-01.jpg");
  -webkit-animation: fukushima-hero-crossfade 12s ease-in-out infinite;
          animation: fukushima-hero-crossfade 12s ease-in-out infinite;
}
@media (max-width: 768px) {
  .p-fukushima__hero-bg::after {
    background-image: url("../images/corporate/fukushima/hero-bg-01-sp.jpg");
  }
}
.p-fukushima__page-title {
  margin-top: 83px;
}
@media (max-width: 1024px) {
  .p-fukushima__page-title {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .p-fukushima__page-title {
    margin-top: 64px;
  }
}
.p-fukushima__page-title .c-page-title__en {
  color: #fff;
}
.p-fukushima__page-title .c-page-title__ja {
  font-weight: 700;
}
.p-fukushima__photo-credit {
  position: absolute;
  right: 56px;
  bottom: 37px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  -webkit-animation: fukushima-hero-crossfade 12s ease-in-out infinite;
          animation: fukushima-hero-crossfade 12s ease-in-out infinite;
}
@media (max-width: 768px) {
  .p-fukushima__photo-credit {
    right: 20px;
    bottom: 20px;
    font-size: 0.8rem;
  }
}
.p-fukushima__about {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 82%;
  padding: 56px 105px 71px;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-right-radius: 30px;
  color: #fff;
}
@media (max-width: 1024px) {
  .p-fukushima__about {
    width: 85%;
    padding: 40px 50px;
  }
}
@media (max-width: 768px) {
  .p-fukushima__about {
    position: static;
    width: 100%;
    padding: 40px 24px;
    background-color: #3f4145;
    border-radius: 0;
  }
}
.p-fukushima__about-inner {
  width: 1005px;
  max-width: 100%;
  margin-left: auto;
}
.p-fukushima__about-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-fukushima__about-heading {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .p-fukushima__about-heading {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-fukushima__about-body {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-fukushima__about-body {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-fukushima__gallery {
  margin-top: 17px;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .p-fukushima__gallery {
    overflow-x: auto;
  }
}
@media (max-width: 768px) {
  .p-fukushima__gallery {
    margin-top: 24px;
  }
}
.p-fukushima__gallery-track {
  display: flex;
  gap: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: gallery-scroll 60s linear infinite;
          animation: gallery-scroll 60s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .p-fukushima__gallery-track {
    -webkit-animation: none;
            animation: none;
  }
}
@media (max-width: 768px) {
  .p-fukushima__gallery-track {
    gap: 10px;
  }
}
.p-fukushima__gallery-item {
  flex-shrink: 0;
  width: 356px;
  height: 230px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-fukushima__gallery-item {
    width: 185px;
    height: 120px;
  }
}
.p-fukushima__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.p-fukushima__gallery-item:hover img {
  transform: scale(1.05);
}
.p-fukushima__description {
  padding: 77px 0 182px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-fukushima__description {
    padding: 64px 0 100px;
  }
}
@media (max-width: 768px) {
  .p-fukushima__description {
    padding-bottom: 40px;
  }
}
.p-fukushima__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-fukushima__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-fukushima__text p + p {
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .p-fukushima__text p + p {
    margin-top: 2.8rem;
  }
}
.p-fukushima__facility {
  position: relative;
  display: flex;
  gap: 37px;
  align-items: flex-start;
  margin-top: 64px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-fukushima__facility {
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }
  .p-fukushima__facility::before {
    display: none;
  }
}
.p-fukushima__facility::before {
  content: "";
  position: absolute;
  top: 32px;
  right: -59px;
  width: 73.8%;
  height: calc(100% + 42px);
  background-color: #f0f1f3;
  border-top-right-radius: 30px;
}
.p-fukushima__facility-left {
  position: relative;
  flex-shrink: 0;
  width: 60.9%;
}
@media (max-width: 768px) {
  .p-fukushima__facility-left {
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}
.p-fukushima__facility-left img {
  display: block;
  width: 100%;
}
.p-fukushima__facility-right {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-areas: "panel";
}
@media (max-width: 768px) {
  .p-fukushima__facility-right {
    flex: none;
    width: 100%;
    margin-top: -34.5px;
    margin-left: calc(50% - 50vw);
    padding: 40px 32px;
    background-color: #f0f1f3;
    border-top-right-radius: 16px;
  }
}
.p-fukushima__spot-wrap {
  position: relative;
  overflow: visible;
}
.p-fukushima__spot {
  position: absolute;
  width: 39px;
  height: 39px;
}
@media (max-width: 1024px) {
  .p-fukushima__spot {
    width: 30px;
    height: 30px;
  }
}
.p-fukushima__spot.-n1 {
  left: 55.9%;
  top: 20.9%;
}
@media (max-width: 768px) {
  .p-fukushima__spot.-n1 {
    left: 58.8%;
    top: 18%;
  }
}
.p-fukushima__spot.-n2 {
  left: 38.7%;
  top: 41.1%;
}
@media (max-width: 768px) {
  .p-fukushima__spot.-n2 {
    left: 36.6%;
    top: 41.6%;
  }
}
.p-fukushima__spot.-n3 {
  left: 41.6%;
  top: 34.5%;
}
@media (max-width: 768px) {
  .p-fukushima__spot.-n3 {
    left: 41.7%;
    top: 31.2%;
  }
}
.p-fukushima__spot.-n4 {
  left: 30.5%;
  top: 32.4%;
}
@media (max-width: 768px) {
  .p-fukushima__spot.-n4 {
    left: 26%;
    top: 28.4%;
  }
}
.p-fukushima__spot::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18.5px;
  height: 18.5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-fukushima__spot::before {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 768px) {
  .p-fukushima__spot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    background-color: #fff;
    pointer-events: none;
    transform: translateX(-50%);
  }
}
.p-fukushima__spot-btn {
  position: absolute;
  inset: 0;
  display: block;
  width: 18.5px;
  height: auto;
  aspect-ratio: 1/1;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .p-fukushima__spot-btn {
    width: 13.4px;
  }
}
.p-fukushima__spot-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-fukushima__spot-circle {
    transform: rotate(90deg);
  }
}
.p-fukushima__spot-circle circle {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
  vector-effect: non-scaling-stroke;
}
.p-fukushima__spot-line {
  position: absolute;
  bottom: calc(100% - 6px);
  left: calc(100% - 8px);
  height: auto;
  overflow: visible;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-fukushima__spot-line {
    display: none;
  }
}
.p-fukushima__spot-line.-n1 {
  width: 21.5vw;
  max-width: 309px;
}
.p-fukushima__spot-line.-n2 {
  width: 29.9vw;
  max-width: 431px;
}
.p-fukushima__spot-line.-n3 {
  width: 28.5vw;
  max-width: 410px;
}
.p-fukushima__spot-line.-n4 {
  width: 33.7vw;
  max-width: 485px;
}
.p-fukushima__facility-panel {
  grid-area: panel;
}
.p-fukushima__facility-photo {
  padding-right: 42px;
}
.p-fukushima__facility-photo img {
  display: block;
  width: 100%;
  box-shadow: 30px 24px #fff;
}
@media (max-width: 768px) {
  .p-fukushima__facility-photo {
    padding-right: 40px;
  }
  .p-fukushima__facility-photo img {
    aspect-ratio: 240/136;
    -o-object-fit: cover;
       object-fit: cover;
    box-shadow: 17px 20px #fff;
  }
}
.p-fukushima__facility-detail {
  margin-top: 45px;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-fukushima__facility-detail {
    margin-top: 44px;
  }
}
.p-fukushima__facility-heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-fukushima__facility-heading {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.p-fukushima__facility-text {
  margin-top: 13px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-fukushima__facility-text {
    margin-top: 8px;
  }
}
.p-fukushima__access {
  padding: 95px 0 128px;
  background-color: #f0f1f3;
}
@media (max-width: 768px) {
  .p-fukushima__access {
    padding-block: 40px;
  }
  .p-fukushima__access .p-company__info {
    gap: 40px;
    margin-top: 40px;
  }
  .p-fukushima__access .p-company__row {
    gap: 8px;
  }
}
.p-fukushima__access .c-inner--sm {
  margin-top: 78px;
}
@media (max-width: 1024px) {
  .p-fukushima__access .c-inner--sm {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-fukushima__access .c-inner--sm {
    margin-top: 40px;
  }
}
.p-fukushima .c-back {
  margin-top: 130px;
}
@media (max-width: 1024px) {
  .p-fukushima .c-back {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .p-fukushima .c-back {
    margin-top: 120px;
  }
}

/* p-officers (役員一覧ページ専用) */
.page-officers .footer {
  background-color: #f0f1f3;
}

.p-officers {
  padding-top: 154px;
}
@media (max-width: 1024px) {
  .p-officers {
    padding-top: 130px;
  }
}
@media (max-width: 768px) {
  .p-officers {
    margin-top: 64px;
    padding-top: 24px;
  }
}
.p-officers__title {
  margin-top: 83.5px;
}
@media (max-width: 1024px) {
  .p-officers__title {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-officers__title {
    margin-top: 64px;
  }
}
.p-officers__ceo {
  position: relative;
  margin-top: 36px;
  padding-bottom: 103px;
}
@media (max-width: 1024px) {
  .p-officers__ceo {
    margin-top: 20px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .p-officers__ceo {
    margin-top: 0;
  }
}
.p-officers__ceo::before {
  content: "";
  position: absolute;
  top: 165px;
  bottom: 0;
  width: 32%;
  background-color: #cfd1d6;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-officers__ceo::before {
    display: none;
  }
}
.p-officers__layout {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 92px;
}
@media (max-width: 1024px) {
  .p-officers__layout {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .p-officers__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-officers__col-left {
  flex-shrink: 0;
  width: 30.2%;
}
@media (max-width: 1024px) {
  .p-officers__col-left {
    width: 27.3%;
  }
}
@media (max-width: 768px) {
  .p-officers__col-left {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
  }
  .p-officers__col-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 320px;
    background-color: #cfd1d6;
  }
}
.p-officers__photo-wrap {
  position: relative;
}
.p-officers__photo-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-officers__photo-wrap img {
    display: block;
    width: 209px;
    margin-left: auto;
  }
}
.p-officers__sig {
  margin-top: 59px;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-officers__sig {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .p-officers__sig {
    position: relative;
    margin-top: -11px;
  }
}
.p-officers__sig-name {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-officers__sig-name {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .p-officers__sig-name {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-officers__sig-pos {
  margin-top: 15px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-officers__sig-pos {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .p-officers__sig-pos {
    margin-top: 8px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-officers__message-link {
  position: relative;
  display: inline-block;
  margin-top: 46px;
  padding: 13px 51px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #4a474c;
  border: 1px solid #3d3939;
  border-radius: 100px;
}
@media (max-width: 1024px) {
  .p-officers__message-link {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .p-officers__message-link {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.4;
    padding: 6px 46px;
  }
}
.p-officers__message-link-icon {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
}
.p-officers__message-link-icon::before {
  background-color: #cfd1d6;
}
@media (max-width: 768px) {
  .p-officers__message-link-icon {
    right: 8px;
  }
}
.p-officers__col-right {
  position: relative;
  flex: 1;
  min-width: 0;
  margin-top: 114px;
}
@media (max-width: 1024px) {
  .p-officers__col-right {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-officers__col-right {
    margin-top: 40px;
  }
}
.p-officers__bio {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-officers__bio {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-officers__bio {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-officers__bio p {
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .p-officers__bio p {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 768px) {
  .p-officers__bio p {
    margin-bottom: 2.8rem;
  }
}
.p-officers__bio p:last-child {
  margin-bottom: 0;
}
.p-officers__career {
  position: relative;
  margin-top: 62px;
  padding: 56px 123px 68px;
  border-top-right-radius: 30px;
  background-color: #f0f1f3;
}
@media (max-width: 1024px) {
  .p-officers__career {
    margin-top: 48px;
    padding: 40px 48px 48px 108px;
  }
}
@media (max-width: 768px) {
  .p-officers__career {
    margin-top: 40px;
    margin-left: -7%;
    padding: 36px 24px 40px 13.9%;
  }
}
.p-officers__career::before {
  content: "";
  position: absolute;
  top: 68px;
  bottom: 80px;
  left: 80px;
  width: 3px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .p-officers__career::before {
    top: 48px;
    bottom: 56px;
    left: 60px;
  }
}
@media (max-width: 768px) {
  .p-officers__career::before {
    top: 40px;
    bottom: 40px;
    left: 6.5%;
  }
}
.p-officers__career p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-officers__career p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-officers__career p {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-officers__members {
  padding: 145px 0 78px;
  background-color: #f0f1f3;
}
@media (max-width: 1024px) {
  .p-officers__members {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .p-officers__members {
    padding: 80px 0 40px;
  }
}
.p-officers__members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 45px;
}
@media (max-width: 768px) {
  .p-officers__members-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.p-officers__member {
  color: #4a474c;
}
.p-officers__member-name {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-officers__member-name {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .p-officers__member-name {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.p-officers__member-line {
  position: relative;
  margin: 14px 0 16px;
  height: 1px;
  background-color: #4a474c;
}
@media (max-width: 768px) {
  .p-officers__member-line {
    margin: 12px 0;
  }
}
.p-officers__member-line::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 43%;
  height: 3px;
  background-color: #4a474c;
}
.p-officers__member-pos {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-officers__member-pos {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .p-officers__member-pos {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-officers .c-back {
  margin-top: 134px;
}
@media (max-width: 1024px) {
  .p-officers .c-back {
    margin-top: 90px;
  }
}
@media (max-width: 768px) {
  .p-officers .c-back {
    margin-top: 120px;
  }
}

/* p-about (私たちについて ページ専用) */
@media (max-width: 768px) {
  .p-about {
    margin-top: 64px;
  }
}
.p-about__lead {
  padding: 154px 0 85px;
  background: url("../images/corporate/about/lead_bg.jpg") top center/cover no-repeat;
}
@media (max-width: 1024px) {
  .p-about__lead {
    padding-top: 130px;
  }
}
@media (max-width: 768px) {
  .p-about__lead {
    padding: 24px 0 80px;
    background: linear-gradient(113deg, #F4F4F5 0%, rgba(255, 255, 255, 0.63) 67.5%);
  }
}
.p-about__title {
  margin-top: 84px;
}
@media (max-width: 1024px) {
  .p-about__title {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-about__title {
    margin-top: 64px;
  }
}
.p-about__content-card {
  position: relative;
  margin: 89px auto 0;
  width: 92.1%;
  max-width: 1591px;
  padding: 107px 0 157px;
  background-color: rgba(247, 247, 247, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .p-about__content-card {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .p-about__content-card {
    width: 87.8%;
    margin-top: 40px;
    padding: 24px 6.1%;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
}
.p-about__content-inner {
  width: 78.1vw;
  max-width: 1124px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-about__content-inner {
    width: 100%;
  }
}
.p-about__intro {
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-about__intro {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-about__gallery {
  width: 100vw;
  margin-top: 63px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-about__gallery {
    margin-top: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-about__gallery {
    overflow-x: auto;
  }
}
.p-about__gallery-track {
  display: flex;
  gap: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: gallery-scroll 55s linear infinite;
          animation: gallery-scroll 55s linear infinite;
}
@media (max-width: 768px) {
  .p-about__gallery-track {
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-about__gallery-track {
    -webkit-animation: none;
            animation: none;
  }
}
.p-about__gallery-item {
  flex-shrink: 0;
  width: 356px;
  height: 230px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-about__gallery-item {
    width: 200px;
    height: 130px;
  }
}
.p-about__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.p-about__gallery-item:hover img {
  transform: scale(1.05);
}
.p-about__subtitle {
  margin-top: 70px;
  font-size: 2.4rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-about__subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p-about__subtitle {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 2;
  }
}
.p-about__body {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-about__body {
    margin-top: 8px;
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-about__body p + p {
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .p-about__body p + p {
    margin-top: 2.4rem;
  }
}
.p-about__story {
  position: relative;
  padding: 174px 0 239px;
  overflow: hidden;
  background-color: #403c42;
  color: #fff;
}
@media (max-width: 1024px) {
  .p-about__story {
    padding: 100px 0 150px;
  }
}
@media (max-width: 768px) {
  .p-about__story {
    padding: 80px 0 292px;
  }
}
.p-about__story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #403C42 3%, rgba(88, 83, 92, 0.75) 27.5%, rgba(162, 153, 168, 0) 93%);
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .p-about__story::before {
    background: url("../images/corporate/about/story_bg-sp.jpg") top center/cover no-repeat;
    mix-blend-mode: unset;
  }
}
.p-about__story-inner {
  position: relative;
  width: 1124px;
  max-width: 92.1%;
}
@media (max-width: 768px) {
  .p-about__story-inner {
    width: 87.8%;
    max-width: none;
  }
}
.p-about__story-label-en {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .p-about__story-label-en {
    font-weight: 600;
    color: #fff;
  }
}
.p-about__story-label-ja {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .p-about__story-label-ja {
    margin-top: 8px;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #fff;
  }
}
.p-about__story-lead {
  margin-top: 78px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.6rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-about__story-lead {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .p-about__story-lead {
    margin-top: 40px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p-about__story-intro {
  margin-top: 33px;
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-about__story-intro {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-about__story-intro {
    margin-top: 16px;
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-about__features {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .p-about__features {
    width: 345px;
    margin: 40px auto 0;
  }
}
.p-about__feature {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.p-about__feature:nth-child(even) {
  flex-direction: row-reverse;
}
.p-about__feature:nth-child(even) .p-about__feature-hex::before {
  content: "";
  position: absolute;
  top: 11.7%;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
          clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
@media (max-width: 768px) {
  .p-about__feature:nth-child(even) {
    margin-left: auto;
  }
  .p-about__feature:nth-child(even) .p-about__feature-hex::before {
    top: 17px;
  }
}
.p-about__feature.-n01 {
  gap: 8.3%;
}
.p-about__feature.-n02 {
  align-items: flex-start;
  gap: 9.5%;
  margin-top: 33px;
}
@media (max-width: 768px) {
  .p-about__feature.-n02 {
    margin-top: 176px;
  }
}
.p-about__feature.-n03 {
  align-items: flex-start;
  gap: 11px;
  margin-top: -5.5%;
  padding-left: 0;
}
@media (max-width: 768px) {
  .p-about__feature.-n03 {
    margin-top: 176px;
  }
}
.p-about__feature.-n04 {
  gap: 61px;
  margin-top: 11.7%;
}
@media (max-width: 768px) {
  .p-about__feature.-n04 {
    width: 100%;
    margin-top: 326px;
  }
}
@media (max-width: 768px) {
  .p-about__feature {
    display: block;
    width: 93%;
    padding-left: 0;
  }
  .p-about__feature:nth-child(odd) {
    margin-right: auto;
  }
}
.p-about__feature-hex {
  position: relative;
  min-width: 0;
}
.-n01 .p-about__feature-hex {
  width: 37.8%;
}
.-n02 .p-about__feature-hex {
  width: 50.7%;
  margin-top: 3.6%;
  transform: translateX(-25.2%);
}
.-n02 .p-about__feature-hex::before {
  content: "";
  background: linear-gradient(to right, #929292 28%, #E2E2E3 97%);
  opacity: 0.2;
}
.-n03 .p-about__feature-hex {
  width: 46.9%;
  transform: translateX(-3.5%);
}
.-n04 .p-about__feature-hex {
  width: 52.9%;
  transform: translateX(6.7%);
}
.-n04 .p-about__feature-hex::before {
  background: linear-gradient(245deg, #D9D9D9 23%, #A6A6A6 60%, #737373 80%);
  opacity: 0.35;
}
@media (max-width: 768px) {
  .-n04 .p-about__feature-hex::before {
    background: linear-gradient(to right, #929292 28%, #E2E2E3 97%);
    opacity: 0.2;
  }
}
@media (max-width: 768px) {
  .-n01 .p-about__feature-hex, .-n02 .p-about__feature-hex, .-n03 .p-about__feature-hex {
    width: 100%;
    margin-top: 0;
    transform: none;
  }
  .-n04 .p-about__feature-hex {
    width: 88.4%;
    margin: 0 0 0 auto;
    transform: none;
  }
}
.p-about__feature-text {
  flex: 1;
  min-width: 0;
}
.-n03 .p-about__feature-text {
  margin-top: 11.6%;
}
@media (max-width: 768px) {
  .-n03 .p-about__feature-text {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .p-about__feature-text {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 100%;
  }
}
.p-about__feature-hex-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  pointer-events: none;
}
.p-about__feature-img {
  position: absolute;
  display: block;
}
.-n02 .p-about__feature-img {
  top: 22.1%;
  right: -30.5%;
  width: 71.9%;
}
@media (max-width: 768px) {
  .-n02 .p-about__feature-img {
    top: 20.2%;
    right: -21.2%;
    width: 74.5%;
  }
}
.-n03 .p-about__feature-img {
  top: 73%;
  right: 2.5%;
  width: 57.3%;
}
@media (max-width: 768px) {
  .-n03 .p-about__feature-img {
    top: 60.1%;
    right: -11.5%;
    width: 54.5%;
  }
}
.-n04 .p-about__feature-img {
  top: 2.9%;
  left: -17.3%;
  width: 55.6%;
}
@media (max-width: 768px) {
  .-n04 .p-about__feature-img {
    top: -20.2%;
    left: -19.6%;
    width: 58.6%;
  }
}
.p-about__feature-heading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.-n01 .p-about__feature-heading {
  transform: translateY(-6%);
}
.-n02 .p-about__feature-heading {
  transform: translateY(-3%);
}
.-n03 .p-about__feature-heading {
  transform: translateY(-12%);
}
@media (max-width: 768px) {
  .-n01 .p-about__feature-heading, .-n02 .p-about__feature-heading, .-n03 .p-about__feature-heading, .-n04 .p-about__feature-heading {
    transform: none;
  }
}
.p-about__feature-num {
  display: block;
  font-family: "D-DIN-PRO", sans-serif;
  font-size: min(2.3vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ab937c;
}
.-n02 .p-about__feature-num, .-n04 .p-about__feature-num {
  color: #d7bda4;
}
@media (max-width: 768px) {
  .p-about__feature-num {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-about__feature-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: min(1.9vw, 24px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 1024px) {
  .p-about__feature-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .p-about__feature-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-about__feature-quote {
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: min(1.4vw, 18px);
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.1em;
}
.-n03 .p-about__feature-quote {
  width: 91.3%;
}
@media (max-width: 1024px) {
  .p-about__feature-quote {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-about__feature-quote {
    margin-bottom: 8px;
    font-size: 1.6rem;
    line-height: 2;
  }
  .-n03 .p-about__feature-quote {
    width: 100%;
  }
}
.p-about__feature-desc {
  font-size: min(1.1vw, 14px);
  line-height: 2.1;
  letter-spacing: 0.09em;
}
.p-about__feature-desc + .p-about__feature-desc {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .p-about__feature-desc {
    font-size: 1.2rem;
    line-height: 2;
  }
  .p-about__feature-desc + .p-about__feature-desc {
    margin-top: 24px;
  }
}
.p-about__feature-line {
  position: absolute;
  height: auto;
}
.-n01 .p-about__feature-line {
  top: 50%;
  left: 39.3%;
  width: 56.2%;
}
@media (max-width: 768px) {
  .-n01 .p-about__feature-line {
    left: 184px;
    width: 162px;
  }
}
.-n02 .p-about__feature-line {
  top: 55.5%;
  right: 61.7%;
  width: 16.5%;
}
@media (max-width: 768px) {
  .-n02 .p-about__feature-line {
    top: 50%;
    right: 100%;
    width: 25px;
  }
}
.-n03 .p-about__feature-line {
  top: 81.4%;
  left: 21.9%;
  width: 55.9%;
}
@media (max-width: 768px) {
  .-n03 .p-about__feature-line {
    top: 50%;
    left: 100%;
    width: 25px;
  }
}
@media (max-width: 768px) {
  .p-about__feature-line.-pc {
    display: none;
  }
}
.p-about__feature-line.-sp {
  display: none;
}
@media (max-width: 768px) {
  .p-about__feature-line.-sp {
    display: block;
  }
}
.p-about .products-wrapper {
  height: 200vh;
}
.p-about .c-back {
  padding: 73px 0 86px;
}
@media (max-width: 768px) {
  .p-about .c-back {
    padding: 40px 24px;
  }
}

/* p-news-archive (お知らせ一覧 アーカイブページ専用) */
.post-type-archive-news .cta__wave,
.tax-news_category .cta__wave {
  display: none;
}
.post-type-archive-news .cta__bg,
.tax-news_category .cta__bg {
  padding-top: 130px;
}
@media (max-width: 768px) {
  .post-type-archive-news .cta__bg,
.tax-news_category .cta__bg {
    padding-top: 80px;
  }
}

.p-news-archive {
  padding-top: 154px;
  width: 100%;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .p-news-archive {
    padding-top: 130px;
  }
}
@media (max-width: 768px) {
  .p-news-archive {
    padding: 88px 0 40px;
  }
  .p-news-archive .c-inner--lg {
    width: 87.8%;
  }
}
.p-news-archive__title {
  margin: 74px 0 0 63px;
}
@media (max-width: 1024px) {
  .p-news-archive__title {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .p-news-archive__title {
    margin: 64px 0 0;
  }
}
.p-news-archive__title .c-page-title__en {
  mix-blend-mode: multiply;
}
.p-news-archive__title .c-page-title__ja {
  margin-top: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-news-archive__title .c-page-title__ja {
    margin-top: 8px;
  }
}
.p-news-archive__content {
  position: relative;
  margin-top: 65px;
  padding: 135px 0 120px;
  border-top-right-radius: 30px;
  background: #fff;
}
@media (max-width: 1024px) {
  .p-news-archive__content {
    padding: 60px 0 90px;
  }
}
@media (max-width: 768px) {
  .p-news-archive__content {
    margin-top: 40px;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
  }
}
.p-news-archive__content-inner {
  padding-inline: 17.3%;
}
@media (max-width: 1024px) {
  .p-news-archive__content-inner {
    padding-inline: 6%;
  }
}
@media (max-width: 768px) {
  .p-news-archive__content-inner {
    padding: 40px 7%;
    background-color: #fff;
    border-top-right-radius: 16px;
  }
}
.p-news-archive__filters {
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .p-news-archive__filters {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .p-news-archive__filters {
    flex-direction: column;
    gap: 16px;
    margin: 0;
    max-width: none;
  }
}
.p-news-archive__filter-btn {
  position: relative;
  display: grid;
  place-content: center;
  padding: 7px 40px 9px;
  width: 100%;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  background: #1f1e22;
  border-radius: 100px;
  color: #fff;
}
@media (max-width: 768px) {
  .p-news-archive__filter-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 1.2rem;
  }
}
.p-news-archive__filter-arrow {
  position: absolute;
  top: 50%;
  right: 23px;
  width: 13px;
  height: 10px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .p-news-archive__filter-arrow {
    position: static;
    width: 10px;
    height: 9px;
    transform: none;
  }
}
.p-news-archive__filter-wrap {
  position: relative;
  flex: 1;
}
.p-news-archive__filter-wrap.is-open {
  z-index: 5;
  background: #3f4145;
  border-radius: 20px 20px 0 0;
}
.p-news-archive__filter-wrap.is-open .p-news-archive__filter-arrow {
  transform: translateY(-50%) scaleY(-1);
}
@media (max-width: 768px) {
  .p-news-archive__filter-wrap.is-open .p-news-archive__filter-arrow {
    transform: scaleY(-1);
  }
}
.p-news-archive__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  padding: 7px 17px 24px;
  background: #3f4145;
  border-radius: 0 0 30px 30px;
}
.p-news-archive__year-list > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.p-news-archive__year-link > a,
.p-news-archive .cat-item > a {
  display: block;
  padding: 11px 0;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0.5;
  color: #fff;
  transition: opacity 0.3s;
}
.p-news-archive__year-link > a:hover,
.p-news-archive .cat-item > a:hover {
  opacity: 1;
}
.p-news-archive__year-link.current-cat > a,
.p-news-archive__year-link > a[aria-current=page],
.p-news-archive .cat-item.current-cat > a,
.p-news-archive .cat-item > a[aria-current=page] {
  opacity: 1;
}
.p-news-archive__list {
  margin-top: 103px;
}
@media (max-width: 1024px) {
  .p-news-archive__list {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .p-news-archive__list {
    margin-top: 40px;
  }
}
.p-news-archive__item {
  margin-top: 30px;
  border-bottom: 1px solid rgba(74, 71, 76, 0.4);
}
.p-news-archive__item:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .p-news-archive__item {
    margin-top: 16px;
    border-bottom-color: rgba(74, 71, 76, 0.5);
  }
}
.p-news-archive__link {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 18px;
  min-height: 82px;
  color: #4a474c;
}
.p-news-archive__link:hover .p-news-archive__arrow-icon {
  transform: translateX(20px) scaleX(1.5);
}
@media (max-width: 768px) {
  .p-news-archive__link {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-right: 37px;
    padding-bottom: 24px;
    min-height: 0;
  }
}
.p-news-archive__date {
  padding-right: 15px;
  font-family: "D-DIN-PRO", sans-serif;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  color: #4a474c;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-news-archive__date {
    padding-right: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.12em;
    width: auto;
  }
}
.p-news-archive__category {
  flex-shrink: 0;
  margin-right: 5px;
  padding: 7px;
  width: 129px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1.1px solid #4a474c;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .p-news-archive__category {
    margin-right: 0;
    padding: 4px 12px;
    width: auto;
    min-width: 0;
    font-size: 1.2rem;
    line-height: 1.4;
    border-width: 1px;
    border-radius: 999px;
  }
}
.p-news-archive__title-text {
  flex: 1;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-news-archive__title-text {
    flex: 0 0 100%;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-news-archive__arrow-icon {
  display: block;
  flex-shrink: 0;
  width: 36px;
  height: 8px;
  background-color: #4a474c;
  -webkit-mask: url("../images/global/arrow-archive.svg") center/contain no-repeat;
          mask: url("../images/global/arrow-archive.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .p-news-archive__arrow-icon {
    position: absolute;
    top: 50%;
    right: 0;
    width: 21px;
    height: 7px;
    -webkit-mask-image: url("../images/news/news_arrow-sp.svg");
            mask-image: url("../images/news/news_arrow-sp.svg");
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .p-news-archive__link:hover .p-news-archive__arrow-icon {
    transform: translate(7px, -50%);
  }
}
.p-news-archive__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 74px;
}
@media (max-width: 768px) {
  .p-news-archive__pagination {
    margin-top: 40px;
    gap: 8px;
  }
}
.p-news-archive__pagination .page-numbers {
  display: grid;
  place-content: center;
  width: 57px;
  height: 57px;
  margin: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  color: #3e3e3e;
  box-shadow: none;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
.p-news-archive__pagination .page-numbers.current {
  background-color: #e60012;
  color: #fff;
  pointer-events: none;
}
.p-news-archive__pagination .page-numbers:hover:not(.current) {
  background-color: transparent;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .p-news-archive__pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}
.p-news-archive__pagination .page-numbers.next {
  display: block;
  background-color: #e60012;
  -webkit-mask: url("../images/global/pagination-sep.svg") center/auto no-repeat;
          mask: url("../images/global/pagination-sep.svg") center/auto no-repeat;
}
@media (max-width: 768px) {
  .p-news-archive__pagination .page-numbers.next {
    width: 9px;
    height: 16px;
    margin-left: 8px;
  }
}
.p-news-archive__back {
  margin-top: 91px;
  padding-inline: 4.8%;
}
@media (max-width: 768px) {
  .p-news-archive__back {
    margin-top: 40px;
    padding-inline: 0;
  }
}

/* p-news-single (お知らせ記事詳細ページ専用) */
.single-news .cta__wave {
  display: none;
}
.single-news .cta__bg {
  padding-top: 130px;
}
@media (max-width: 768px) {
  .single-news .cta__bg {
    padding-top: 80px;
  }
}

.p-news-single {
  width: 100%;
  padding-top: 154px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .p-news-single {
    padding-top: 130px;
  }
}
@media (max-width: 768px) {
  .p-news-single {
    padding-top: 88px;
  }
}
.p-news-single__content {
  position: relative;
  margin: 65px 59px 0 0;
  padding: 118px 0 104px;
  border-top-right-radius: 200px;
  background: #fff;
}
@media (max-width: 1024px) {
  .p-news-single__content {
    margin: 50px 30px 0 0;
    padding: 80px 0 90px;
    border-top-right-radius: 80px;
  }
}
@media (max-width: 768px) {
  .p-news-single__content {
    margin: 24px 0 0 0;
    padding-block: 40px;
    border-top-right-radius: 40px;
  }
}
.p-news-single__content-inner {
  width: 72.3%;
  max-width: 1206px;
  margin-inline: auto;
  transform: translateX(-12.5px);
}
@media (max-width: 1024px) {
  .p-news-single__content-inner {
    width: auto;
    padding-inline: 6%;
    transform: none;
  }
}
@media (max-width: 768px) {
  .p-news-single__content-inner {
    padding-inline: 6.1%;
  }
}
.p-news-single__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 24px;
  min-width: 129px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #3d3939;
  border: 1.1px solid #4a474c;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .p-news-single__category {
    padding: 5px 18px;
    font-size: 1.2rem;
    border-width: 1px;
    border-radius: 999px;
  }
}
.p-news-single__heading {
  margin-top: 51px;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-news-single__heading {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__heading {
    margin-top: 32px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-news-single__lead {
  margin-top: 2px;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-news-single__lead {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__lead {
    font-size: 1.8rem;
  }
}
.p-news-single__date {
  display: block;
  margin-top: 7px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-news-single__date {
    margin-top: 4px;
    font-size: 1.2rem;
  }
}
.p-news-single__thumbnail {
  margin-top: 35px;
}
.p-news-single__thumbnail img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-news-single__thumbnail {
    margin-top: 24px;
  }
}
.p-news-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-news-single__tags {
    gap: 8px;
    margin-top: 16px;
  }
}
.p-news-single__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 239px;
  padding: 8px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #3e3e3e;
  border: 2px solid #3d3939;
}
@media (max-width: 1024px) {
  .p-news-single__tag {
    min-width: 160px;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__tag {
    min-width: 0;
    padding: 6px 16px;
    font-size: 1.3rem;
  }
}
.p-news-single__body {
  margin-top: 46px;
}
@media (max-width: 768px) {
  .p-news-single__body {
    margin-top: 32px;
  }
}
.p-news-single__body h2 {
  margin-top: 60px;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
.p-news-single__body h2:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .p-news-single__body h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__body h2 {
    margin-top: 40px;
    font-size: 1.8rem;
  }
}
.p-news-single__body h3 {
  margin-top: 40px;
  font-size: 2.2rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
.p-news-single__body h3:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .p-news-single__body h3 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__body h3 {
    margin-top: 28px;
    font-size: 1.7rem;
  }
}
.p-news-single__body h4 {
  margin-top: 30px;
  font-size: 1.9rem;
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: #4a474c;
}
.p-news-single__body h4:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .p-news-single__body h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__body h4 {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
.p-news-single__body p {
  margin-top: 20px;
  font-size: 1.8rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
.p-news-single__body p:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .p-news-single__body p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__body p {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
.p-news-single__body ul,
.p-news-single__body ol {
  margin-top: 20px;
}
.p-news-single__body ul li,
.p-news-single__body ol li {
  position: relative;
  margin-top: 8px;
  padding-left: 1.5em;
  font-size: 1.8rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
.p-news-single__body ul li:first-child,
.p-news-single__body ol li:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .p-news-single__body ul li,
.p-news-single__body ol li {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__body ul li,
.p-news-single__body ol li {
    margin-top: 6px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-news-single__body ul,
.p-news-single__body ol {
    margin-top: 14px;
  }
}
.p-news-single__body ul li::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e60012;
}
.p-news-single__body ol {
  counter-reset: list-counter;
}
.p-news-single__body ol li {
  counter-increment: list-counter;
}
.p-news-single__body ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a474c;
}
.p-news-single__body figure {
  margin-top: 30px;
}
.p-news-single__body figure img {
  width: 100%;
  height: auto;
}
.p-news-single__body figure figcaption {
  margin-top: 8px;
  font-size: 1.3rem;
  color: rgba(74, 71, 76, 0.6);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-news-single__body figure {
    margin-top: 20px;
  }
}
.p-news-single__body blockquote {
  position: relative;
  margin-top: 40px;
  padding: 42px 53px 61px;
  background: #F0F1F3;
  border-top-right-radius: 40px;
}
.p-news-single__body blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 33.5%;
  background-color: #3F4145;
}
.p-news-single__body blockquote p {
  margin-top: 0;
}
.p-news-single__body blockquote cite {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: right;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-news-single__body blockquote {
    padding: 32px 36px 48px;
  }
}
@media (max-width: 768px) {
  .p-news-single__body blockquote {
    margin-top: 24px;
    padding: 24px;
    border-top-right-radius: 24px;
  }
  .p-news-single__body blockquote::before {
    width: 6px;
  }
}
.p-news-single__body a {
  color: #e60012;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-news-single__body a:hover {
  opacity: 0.7;
}
.p-news-single__body strong {
  font-weight: 700;
}
.p-news-single__body em {
  font-style: italic;
}
.p-news-single__back-link {
  margin-top: 114px;
}
@media (max-width: 1024px) {
  .p-news-single__back-link {
    margin-top: 80px;
  }
}

/* corporate ページ共通アニメーション */
@-webkit-keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.c-blur-in, .p-message__heading, .p-enkaku__fv-title, .p-enkaku__fv-desc {
  opacity: 0;
  filter: blur(12px);
  transform: translateZ(0);
  transition: opacity 1.4s ease 0.8s, filter 1.4s ease 0.8s;
}
.c-blur-in.is-animated, .is-animated.p-message__heading, .is-animated.p-enkaku__fv-title, .is-animated.p-enkaku__fv-desc {
  opacity: 1;
  filter: blur(0);
}

.c-opacity-y, .p-hamon__algorithm-img, .p-hamon__cloud-img-wrap, .p-hamon__usecase, .p-about__subtitle, .p-about__body, .p-about__story-heading, .p-officers__photo-wrap, .p-fukushima__about, .p-message__sig-name, .p-message__sig-title, .p-message__body, .p-message__col-left {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.c-opacity-y.is-animated, .is-animated.p-hamon__algorithm-img, .is-animated.p-hamon__cloud-img-wrap, .is-animated.p-hamon__usecase, .is-animated.p-about__subtitle, .is-animated.p-about__body, .is-animated.p-about__story-heading, .is-animated.p-officers__photo-wrap, .is-animated.p-fukushima__about, .is-animated.p-message__sig-name, .is-animated.p-message__sig-title, .is-animated.p-message__body, .is-animated.p-message__col-left {
  opacity: 1;
  transform: translateY(0);
}

.p-enkaku__fv-bg {
  opacity: 0;
  transition: opacity 1s ease 0.3s;
}
.p-enkaku__fv-bg.is-animated {
  opacity: 1;
}
.p-enkaku__awards-bg {
  transform: translateX(-50%);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .p-enkaku__awards-bg {
    transform: translateY(-60%);
  }
}
.p-enkaku__awards-label {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}
.p-enkaku__awards-list {
  opacity: 0;
  transition: opacity 1s ease 1.6s;
}
.p-enkaku__awards-list .p-enkaku__award-item::before, .p-enkaku__awards-list .p-enkaku__award-item::after {
  transform-origin: left;
  transform: scaleX(0);
}
.p-enkaku__awards.is-animated .p-enkaku__awards-bg {
  transform: translate(0, 0);
}
.p-enkaku__awards.is-animated .p-enkaku__awards-label {
  opacity: 1;
  transform: translateY(0);
}
.p-enkaku__awards.is-animated .p-enkaku__awards-list {
  opacity: 1;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(1)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(1)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 1.6s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(2)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(2)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 1.7s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(3)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(3)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 1.8s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(4)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(4)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 1.9s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(5)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(5)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 2s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(6)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(6)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 2.1s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(7)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(7)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 2.2s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(8)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(8)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 2.3s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(9)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(9)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 2.4s;
}
.p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(10)::before, .p-enkaku__awards.is-animated .p-enkaku__award-item:nth-child(10)::after {
  transform: scaleX(1);
  transition: transform 0.6s ease 2.5s;
}
.p-enkaku__timeline-nav-btn {
  transition: background-color 0.6s ease, color 0.6s ease;
}
.p-enkaku__timeline-item {
  transition: opacity 0.8s ease;
}
.p-enkaku__timeline-item .p-enkaku__timeline-year,
.p-enkaku__timeline-item .p-enkaku__timeline-title,
.p-enkaku__timeline-item .p-enkaku__timeline-text {
  transition: font-size 0.4s ease;
}
.p-enkaku__timeline-marker {
  transition: width 0.4s ease, background-color 0.4s ease;
}
.p-enkaku__history-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.p-enkaku__history-image.is-active {
  opacity: 1;
  transform: translateY(0);
}

.p-message__body {
  transition-delay: 2s;
}
@media (max-width: 768px) {
  .p-message__body {
    transition-delay: 0.3s;
  }
}
.p-message__sig-line {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-message__sig-line::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-message__sig-line.is-animated {
  transform: scaleX(1);
}
.p-message__sig-line.is-animated::before {
  transform: scaleX(1);
}
.p-message__sig-name, .p-message__sig-title {
  transition-delay: 1s;
}

.p-officers__sig, .p-officers__message-link, .p-officers__col-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease 1.2s, transform 1s ease 1.2s;
}
.p-officers__layout.is-animated .p-officers__sig,
.p-officers__layout.is-animated .p-officers__message-link,
.p-officers__layout.is-animated .p-officers__col-right {
  opacity: 1;
  transform: translateY(0);
}

.p-company__tab-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.p-company__tab-content.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .p-company__tab-content {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
}

.p-about__feature-hex-svg path {
  transition: stroke-dashoffset 1.4s linear;
}
.p-about__feature.-n01 .p-about__feature-hex-svg path {
  stroke-dasharray: 940;
  stroke-dashoffset: 940;
}
.p-about__feature.-n02 .p-about__feature-hex-svg path {
  stroke-dasharray: 1260;
  stroke-dashoffset: 1260;
}
.p-about__feature.-n03 .p-about__feature-hex-svg path {
  stroke-dasharray: 1190;
  stroke-dashoffset: 1190;
}
.p-about__feature.-n04 .p-about__feature-hex-svg path {
  stroke-dasharray: 1310;
  stroke-dashoffset: 1310;
}
.p-about__feature-heading, .p-about__feature-img {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.p-about__feature.-n02 .p-about__feature-hex::before, .p-about__feature.-n04 .p-about__feature-hex::before {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1s ease;
}
.p-about__feature-text {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.p-about__feature-line path {
  transition: stroke-dashoffset 1.2s linear;
}
.p-about__feature.-n01 .p-about__feature-line.-pc path {
  stroke-dasharray: 970;
  stroke-dashoffset: 970;
}
.p-about__feature.-n02 .p-about__feature-line.-pc path {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
}
.p-about__feature.-n03 .p-about__feature-line.-pc path {
  stroke-dasharray: 830;
  stroke-dashoffset: 830;
}
.p-about__feature.-n01 .p-about__feature-line.-sp path {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
}
.p-about__feature.-n02 .p-about__feature-line.-sp path {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
}
.p-about__feature.-n03 .p-about__feature-line.-sp path {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
}
.p-about__features.is-animated .p-about__feature.-n01 .p-about__feature-hex-svg path {
  stroke-dashoffset: 0;
  transition-delay: 0s;
}
.p-about__features.is-animated .p-about__feature.-n01 .p-about__feature-heading,
.p-about__features.is-animated .p-about__feature.-n01 .p-about__feature-img {
  opacity: 1;
  transition-delay: 0.9s;
}
.p-about__features.is-animated .p-about__feature.-n01 .p-about__feature-text {
  opacity: 1;
  transition-delay: 1.6s;
}
.p-about__features.is-animated .p-about__feature.-n01 .p-about__feature-line path {
  stroke-dashoffset: 0;
  transition-delay: 1.6s;
}
.p-about__features.is-animated .p-about__feature.-n02 .p-about__feature-hex-svg path {
  stroke-dashoffset: 0;
  transition-delay: 3s;
}
.p-about__features.is-animated .p-about__feature.-n02 .p-about__feature-heading,
.p-about__features.is-animated .p-about__feature.-n02 .p-about__feature-img {
  opacity: 1;
  transition-delay: 3.9s;
}
.p-about__features.is-animated .p-about__feature.-n02 .p-about__feature-text {
  opacity: 1;
  transition-delay: 4.6s;
}
.p-about__features.is-animated .p-about__feature.-n02 .p-about__feature-line path {
  stroke-dashoffset: 0;
  transition-delay: 4.6s;
}
.p-about__features.is-animated .p-about__feature.-n03 .p-about__feature-hex-svg path {
  stroke-dashoffset: 0;
  transition-delay: 6s;
}
.p-about__features.is-animated .p-about__feature.-n03 .p-about__feature-heading,
.p-about__features.is-animated .p-about__feature.-n03 .p-about__feature-img {
  opacity: 1;
  transition-delay: 6.9s;
}
.p-about__features.is-animated .p-about__feature.-n03 .p-about__feature-text {
  opacity: 1;
  transition-delay: 7.6s;
}
.p-about__features.is-animated .p-about__feature.-n03 .p-about__feature-line path {
  stroke-dashoffset: 0;
  transition-delay: 7.6s;
}
.p-about__features.is-animated .p-about__feature.-n04 .p-about__feature-hex-svg path {
  stroke-dashoffset: 0;
  transition-delay: 9s;
}
.p-about__features.is-animated .p-about__feature.-n04 .p-about__feature-heading,
.p-about__features.is-animated .p-about__feature.-n04 .p-about__feature-img {
  opacity: 1;
  transition-delay: 9.9s;
}
.p-about__features.is-animated .p-about__feature.-n04 .p-about__feature-text {
  opacity: 1;
  transition-delay: 10.6s;
}
.p-about__features.is-animated .p-about__feature.-n04 .p-about__feature-line path {
  stroke-dashoffset: 0;
  transition-delay: 10.6s;
}
.p-about__features.is-animated .p-about__feature.-n02 .p-about__feature-hex::before {
  opacity: 0.2;
  transform: translateY(0);
  transition-delay: 3.9s;
}
.p-about__features.is-animated .p-about__feature.-n04 .p-about__feature-hex::before {
  opacity: 0.35;
  transform: translateY(0);
  transition-delay: 9.9s;
}

.p-hamon__works::before, .p-hamon__works::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-hamon__works.is-animated::before, .p-hamon__works.is-animated::after {
  transform: scaleX(1);
}

@-webkit-keyframes fukushima-spot-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  70%, 100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

@keyframes fukushima-spot-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  70%, 100% {
    opacity: 0;
    transform: scale(2.6);
  }
}
.p-fukushima__spot::before {
  -webkit-animation: fukushima-spot-pulse 2.5s ease-out infinite;
          animation: fukushima-spot-pulse 2.5s ease-out infinite;
}
@media (max-width: 768px) {
  .p-fukushima__spot::after {
    height: 0;
    opacity: 0;
    transition: height 0.4s linear 0.5s, opacity 0.2s;
  }
}
.p-fukushima__spot-btn {
  transition: transform 0.3s ease;
}
.p-fukushima__spot-circle circle {
  opacity: 0;
  stroke-dasharray: 116;
  stroke-dashoffset: 116;
  transition: stroke-dashoffset 0.3s linear, opacity 0.2s;
}
.p-fukushima__spot-line path {
  opacity: 0;
  transition: stroke-dashoffset 0.4s linear 0.5s, opacity 0.2s;
}
.p-fukushima__spot-line.-n1 path {
  stroke-dasharray: 324;
  stroke-dashoffset: 324;
}
.p-fukushima__spot-line.-n2 path {
  stroke-dasharray: 479;
  stroke-dashoffset: 479;
}
.p-fukushima__spot-line.-n3 path {
  stroke-dasharray: 427;
  stroke-dashoffset: 427;
}
.p-fukushima__spot-line.-n4 path {
  stroke-dasharray: 503;
  stroke-dashoffset: 503;
}
.p-fukushima__spot.is-active::before {
  visibility: hidden;
}
.p-fukushima__spot.is-active::after {
  height: 45.8vw;
  opacity: 1;
}
.p-fukushima__spot.is-active .p-fukushima__spot-btn {
  transform: translate(-1px) scale(1.2);
}
@media (max-width: 768px) {
  .p-fukushima__spot.is-active .p-fukushima__spot-btn {
    transform: scale(1.1);
  }
}
.p-fukushima__spot.is-active .p-fukushima__spot-circle circle {
  opacity: 1;
  stroke-dashoffset: 0;
}
.p-fukushima__spot.is-active .p-fukushima__spot-line path {
  opacity: 1;
  stroke-dashoffset: 0;
}
.p-fukushima__facility-panel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  pointer-events: none;
}
.p-fukushima__facility-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
  pointer-events: auto;
}

/* p-hamon (hamon 製品詳細ページ専用) */
.p-hamon__fv {
  position: relative;
  overflow: hidden;
  padding-top: 154px;
}
.p-hamon__fv .c-breadcrumb {
  position: relative;
}
@media (max-width: 768px) {
  .p-hamon__fv {
    overflow: visible;
    padding-top: 80px;
  }
  .p-hamon__fv-inner {
    position: relative;
    margin-top: 24px;
    padding: 40px 24px;
  }
  .p-hamon__fv-inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 74.6%;
    height: 100%;
    background: linear-gradient(to bottom, #E5E6E7, #E2E3E5);
  }
}
.p-hamon__fv-img {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 69%;
  height: 100%;
  margin-left: auto;
  background: url("../images/hamon/hamon_hero-bg.jpg") center/cover no-repeat;
}
@media (max-width: 1024px) {
  .p-hamon__fv-img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .p-hamon__fv-img {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    background: none;
  }
}
.p-hamon__fv-img img {
  display: block;
  width: 68.5%;
  margin-right: 5.3%;
}
@media (max-width: 768px) {
  .p-hamon__fv-img img {
    width: 100%;
    margin: 0;
  }
}
.p-hamon__fv-text {
  position: relative;
  padding-top: min(11.5%, 198px);
  padding-bottom: min(12.2%, 211px);
}
.p-hamon__fv-text h1 {
  font-size: 0;
}
@media (max-width: 1024px) {
  .p-hamon__fv-text {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .p-hamon__fv-text {
    width: 100%;
    margin-top: 40px;
    padding: 0;
  }
}
.p-hamon__fv-logo {
  display: block;
  width: 30.8%;
}
@media (max-width: 768px) {
  .p-hamon__fv-logo {
    width: 160px;
  }
}
.p-hamon__fv-catch {
  width: 46.7%;
  max-width: 525px;
  margin-top: 38px;
  font-size: min(1.7vw, 2.4rem);
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__fv-catch {
    font-size: 1.8rem;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .p-hamon__fv-catch {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    font-size: 1.6rem;
    line-height: 2;
  }
}
.p-hamon__algorithm {
  margin-top: 112px;
}
@media (max-width: 1024px) {
  .p-hamon__algorithm {
    margin-top: 80px;
  }
}
.p-hamon__algorithm-heading {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__algorithm-heading {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__algorithm-heading {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-hamon__algorithm-body {
  margin-top: 38px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__algorithm-body {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__algorithm-body {
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
  }
  .p-hamon__algorithm-body br {
    display: none;
  }
}
.p-hamon__algorithm-img {
  display: block;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-hamon__algorithm-img {
    margin-top: 19px;
  }
}
.p-hamon__algorithm-img img {
  width: 100%;
}
.p-hamon__algorithm-lead {
  margin-top: 60px;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__algorithm-lead {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__algorithm-lead {
    margin-top: 24px;
    font-size: 1.4rem;
    line-height: 2;
  }
  .p-hamon__algorithm-lead br {
    display: none;
  }
}
.p-hamon__video {
  position: relative;
  z-index: 0;
  margin-top: 60px;
  padding-bottom: 150px;
}
.p-hamon__video video {
  width: 100%;
  border: 1px solid #f0f1f3;
}
.p-hamon__video::before {
  content: "";
  position: absolute;
  top: 40.3%;
  bottom: 0;
  left: calc(50% - 50vw);
  right: -12.6%;
  z-index: -1;
  background-color: #4a474c;
  border-top-right-radius: 100px;
}
@media (max-width: 1024px) {
  .p-hamon__video {
    padding-bottom: 100px;
  }
  .p-hamon__video::before {
    right: -40px;
    border-top-right-radius: 60px;
  }
}
@media (max-width: 768px) {
  .p-hamon__video {
    width: 90.7%;
    margin: 80px auto 0;
    padding-bottom: 40px;
  }
  .p-hamon__video::before {
    top: 41.1%;
    right: -21px;
    border-top-right-radius: 32px;
  }
}
.p-hamon__products {
  padding: 102px 0 132px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .p-hamon__products {
    padding: 80px 0 100px;
  }
}
@media (max-width: 768px) {
  .p-hamon__products {
    padding-block: 80px;
  }
}
.p-hamon__products-en {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #aeaeae;
}
.p-hamon__products-ja {
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: #aeaeae;
}
.p-hamon__card-list {
  display: flex;
  gap: 40px;
  margin-top: 66px;
}
@media (max-width: 1024px) {
  .p-hamon__card-list {
    gap: 20px;
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .p-hamon__card-list {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
}
.p-hamon__card {
  flex: 1;
  min-width: 0;
}
.p-hamon__card-img {
  display: block;
  width: 100%;
  border-radius: 11px;
}
.p-hamon__card-body {
  margin-top: 38px;
}
@media (max-width: 768px) {
  .p-hamon__card-body {
    margin-top: 16px;
  }
}
.p-hamon__card-logo {
  display: block;
  height: 19px;
  width: auto;
}
.p-hamon__card-name {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #4a474c;
}
.p-hamon__card-desc {
  margin-top: 22px;
  font-size: 1.2rem;
  line-height: 2.5;
  letter-spacing: 0.08em;
  color: #4a474c;
}
@media (max-width: 768px) {
  .p-hamon__card-desc {
    margin-top: 8px;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}
.p-hamon__cloud {
  padding-bottom: 144px;
  background-color: #d7d5d9;
}
@media (max-width: 1024px) {
  .p-hamon__cloud {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .p-hamon__cloud {
    padding-bottom: 40px;
    overflow: hidden;
  }
}
.p-hamon__cloud-ttl {
  width: 521px;
  mix-blend-mode: soft-light;
}
@media (max-width: 1024px) {
  .p-hamon__cloud-ttl {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .p-hamon__cloud-ttl {
    width: 292px;
  }
}
.p-hamon__cloud-heading {
  margin-top: 52px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #aeaeae;
}
@media (max-width: 1024px) {
  .p-hamon__cloud-heading {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .p-hamon__cloud-heading {
    margin-top: 27px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-hamon__cloud-img-wrap {
  position: relative;
  width: 100%;
  margin-top: 55px;
}
@media (max-width: 1024px) {
  .p-hamon__cloud-img-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .p-hamon__cloud-img-wrap {
    width: 100vw;
    margin-top: 27px;
    margin-left: calc(50% - 50vw);
  }
  .p-hamon__cloud-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 285px;
    background: url("../images/hamon/hamon_service_arrow.svg") center/auto no-repeat rgba(68, 68, 68, 0.2);
    pointer-events: none;
  }
}
.p-hamon__cloud-img {
  width: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .p-hamon__cloud-img {
    padding-bottom: 34px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #686868 #A9A9A9;
  }
  .p-hamon__cloud-img::-webkit-scrollbar {
    height: 4px;
  }
  .p-hamon__cloud-img::-webkit-scrollbar-track {
    background: #A9A9A9;
  }
  .p-hamon__cloud-img::-webkit-scrollbar-thumb {
    background: #686868;
  }
  .p-hamon__cloud-img > picture {
    display: inline-block;
    vertical-align: top;
  }
  .p-hamon__cloud-img > img,
.p-hamon__cloud-img > picture {
    margin-inline: 6.1%;
  }
}
.p-hamon__cloud-img img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-hamon__cloud-img img {
    width: auto;
    max-width: unset;
    height: 285px;
  }
}
.p-hamon__cloud-body {
  margin-top: 48px;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__cloud-body {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__cloud-body {
    margin-top: 34px;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-hamon__usecases {
  position: relative;
  padding-block: 130px;
}
@media (max-width: 1024px) {
  .p-hamon__usecases {
    padding-block: 90px;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecases {
    padding: 80px 0 40px;
  }
}
.p-hamon__usecases-heading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__usecases-heading {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecases-heading {
    font-size: 1.4rem;
  }
}
.p-hamon__usecases-logo {
  display: inline-block;
  height: 31px;
  width: auto;
  margin-right: 21px;
}
@media (max-width: 1024px) {
  .p-hamon__usecases-logo {
    height: 29px;
    margin-right: 4px;
  }
}
.p-hamon__usecases-lead {
  margin-top: 48px;
  font-size: 1.8rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__usecases-lead {
    margin-top: 32px;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecases-lead {
    margin-top: 24px;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-hamon__usecases-list {
  margin-top: 66px;
}
@media (max-width: 1024px) {
  .p-hamon__usecases-list {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecases-list {
    margin-top: 40px;
  }
}
.p-hamon__usecases-list li + li {
  margin-top: 58px;
}
@media (max-width: 1024px) {
  .p-hamon__usecases-list li + li {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecases-list li + li {
    margin-top: 40px;
  }
}
.p-hamon__usecase {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .p-hamon__usecase {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.p-hamon__usecase-img {
  display: block;
  width: 66.3%;
  border-radius: 11px;
}
@media (max-width: 1024px) {
  .p-hamon__usecase-img {
    width: 62%;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecase-img {
    width: 100%;
    border-radius: 8px;
  }
}
.p-hamon__usecase-card {
  position: absolute;
  right: 0;
  bottom: -27px;
  width: 55.6%;
  min-height: 233px;
  padding: 48px 55px 43px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 11px;
}
@media (max-width: 1024px) {
  .p-hamon__usecase-card {
    width: 44%;
    padding: 32px 32px;
    min-height: 180px;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecase-card {
    position: static;
    width: 100%;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}
.p-hamon__usecase-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__usecase-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-hamon__usecase-desc {
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: #4a474c;
}
@media (max-width: 1024px) {
  .p-hamon__usecase-desc {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__usecase-desc {
    margin-top: 8px;
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-hamon__works {
  position: relative;
  padding-top: 191px;
}
@media (max-width: 1024px) {
  .p-hamon__works {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .p-hamon__works {
    padding-top: 82px;
  }
  .p-hamon__works::before {
    width: 93.9%;
  }
  .p-hamon__works::after {
    width: 47.1%;
  }
}
.p-hamon__works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 82.1%;
  height: 1px;
  background-color: #4a474c;
}
.p-hamon__works::after {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 39%;
  height: 4px;
  background-color: #e60012;
}
.p-hamon__works-heading {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-hamon__works-heading {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-hamon__works-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  padding: 64px 0 73px;
}
.p-hamon__works-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(180, 180, 198, 0.5);
  transition: background-color 0.3s ease-in-out;
}
.p-hamon__works-link:hover::before {
  background-color: rgba(133, 133, 154, 0.5);
}
@media (max-width: 768px) {
  .p-hamon__works-link {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    padding-block: 56px;
  }
}
.p-hamon__works-link-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
}
.p-hamon__works-link-bg picture {
  flex: 1;
  width: 33.3%;
}
.p-hamon__works-link-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-hamon__works-ttl {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
  .p-hamon__works-ttl {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__works-ttl {
    font-size: 4.8rem;
  }
}
.p-hamon__works-btn {
  position: absolute;
  bottom: 22.6%;
  right: 35px;
  padding: 15px 93px 19px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #1f1e22;
  border-radius: 120px;
  color: #fff;
}
.p-hamon__works-btn .c-circle-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  background-color: #fff;
  transform: translateY(-50%);
}
.p-hamon__works-btn .c-circle-arrow::before {
  width: 13px;
  background-color: #1f1e22;
}
@media (max-width: 768px) {
  .p-hamon__works-btn .c-circle-arrow {
    right: 7px;
    width: 24px;
  }
}
@media (max-width: 1024px) {
  .p-hamon__works-btn {
    right: 20px;
    padding: 12px 70px 14px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-hamon__works-btn {
    position: relative;
    bottom: unset;
    right: unset;
    padding: 14px 103px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-hamon__back {
  padding: 99px 0 87px;
}
@media (max-width: 1024px) {
  .p-hamon__back {
    padding-block: 60px;
  }
}
@media (max-width: 768px) {
  .p-hamon__back {
    padding: 80px 0 40px;
  }
}

/* u-br */
@media (max-width: 1024px) {
  .u-br--pc {
    display: none;
  }
}
.u-br--sp {
  display: none;
}
@media (max-width: 768px) {
  .u-br--sp {
    display: block;
  }
}

/* ----- SWELL上書き ----- */
#breadcrumb {
  display: none;
}

.l-container {
  max-width: unset;
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=corporate.css.map */