@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&family=Outfit:wght@100..900&display=swap");
:root {
  --font-ja: "LINE Seed JP", sans-serif;
  --font-en: "Outfit", sans-serif;
  --black: #000;
  --white: #fff;
  --white-alpha: rgb(255 255 255 / .7);
  --gray-mid: #7b7b7b;
  --tan: #9f8771;
  --beige: #e0dcd0;
  --cream: #f7f5ef;
  --brown-gray: #777571;
  --scrollbar-width: calc(100vw - 100%);
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.is-loading {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.skip-link:focus {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body {
  font-family: var(--font-ja);
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
  background: var(--cream);
}

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

img, svg {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 828.01px) {
  img.img__sp, svg.img__sp {
    display: none;
  }
}
@media only screen and (max-width: 828px) {
  img.img__pc, svg.img__pc {
    display: none;
  }
}

.en {
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-style: normal;
}

.l-main {
  padding-top: 300px;
}
@media only screen and (max-width: 828px) {
  .l-main {
    padding-top: calc(300 / 828 * 100vw);
  }
}

.l-inner {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media only screen and (max-width: 828px) {
  .l-inner {
    max-width: inherit;
    padding-left: calc(50 / 828 * 100vw);
    padding-right: calc(50 / 828 * 100vw);
  }
}

@media (any-hover: hover) {
  .c-btn--white:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}

.icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 100vw;
  position: relative;
}
.icon-arrow > svg {
  width: 11px;
  height: 5px;
  position: relative;
  z-index: 1;
}
.icon-arrow:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media only screen and (max-width: 828px) {
  .icon-arrow {
    width: calc(56 / 828 * 100vw);
    height: calc(56 / 828 * 100vw);
  }
  .icon-arrow > svg {
    width: calc(28 / 828 * 100vw);
    height: calc(12 / 828 * 100vw);
  }
}

@media (any-hover: hover) {
  a .icon-arrow svg {
    transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
  a:hover .icon-arrow svg {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}
.l-header__logo, .l-header__menu-btn {
  pointer-events: auto;
}
.l-header__logo {
  display: block;
  width: 179px;
  line-height: 0;
}
.l-header__logo svg {
  fill: var(--black);
}
.l-header--in-index .l-header__logo {
  position: relative;
}
.l-header--in-index .l-header__logo svg {
  fill: var(--white);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
.l-header--in-index .l-header__logo:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: url("../img/common/logo.svg") 0 0/100% auto no-repeat;
}
.l-header--in-index:not(.is-scrolled) .l-header__logo svg {
  opacity: 1;
}
.l-header--in-index:not(.is-scrolled) .l-header__logo:after {
  opacity: 0;
}
.l-header__menu-btn {
  width: 80px;
  height: 80px;
  background: var(--tan);
  border: none;
  border-radius: 100vw;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 101;
  transition: gap 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-header__menu-btn span {
  width: 37px;
  height: 1px;
  background: var(--white);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (any-hover: hover) {
  .l-header__menu-btn:hover span:nth-child(1) {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  .l-header__menu-btn:hover span:nth-child(3) {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
.l-header__menu-btn[aria-expanded=true] {
  gap: 0;
}
.l-header__menu-btn[aria-expanded=true] span {
  margin: 0;
}
.l-header__menu-btn[aria-expanded=true] span:nth-child(1) {
  -webkit-transform: rotate(30deg) translateY(1px);
          transform: rotate(30deg) translateY(1px);
}
.l-header__menu-btn[aria-expanded=true] span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.l-header__menu-btn[aria-expanded=true] span:nth-child(3) {
  -webkit-transform: rotate(-30deg) translateY(-1px);
          transform: rotate(-30deg) translateY(-1px);
}
@media (any-hover: hover) {
  .l-header__menu-btn[aria-expanded=true]:hover span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(1px);
            transform: rotate(45deg) translateY(1px);
  }
  .l-header__menu-btn[aria-expanded=true]:hover span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-1px);
            transform: rotate(-45deg) translateY(-1px);
  }
}
@media only screen and (max-width: 828px) {
  .l-header {
    padding: calc(30 / 828 * 100vw) calc(50 / 828 * 100vw);
  }
  .l-header__logo {
    width: calc(300 / 828 * 100vw);
  }
  .l-header__menu-btn {
    width: calc(100 / 828 * 100vw);
    height: calc(100 / 828 * 100vw);
    gap: calc(10 / 828 * 100vw);
  }
  .l-header__menu-btn span {
    width: calc(48 / 828 * 100vw);
  }
}

.l-footer {
  position: relative;
  margin: -50px 0 0 0;
  padding: 180px 0 42px;
  overflow: hidden;
  font-family: var(--font-en);
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50px 50px 0 0;
}
.l-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}
.l-footer__logo {
  display: block;
  width: 178px;
  margin-bottom: 82px;
}
.l-footer__title-wrap {
  font-weight: 100;
  color: var(--black);
}
.l-footer__title {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 0.4em;
}
.l-footer__title--large {
  font-size: 54px;
}
.l-footer__right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 80px;
  margin-top: 110px;
}
.l-footer__sitemap {
  display: flex;
  gap: 60px;
  padding-top: 20px;
  justify-content: center;
}
@media only screen and (max-width: 828px) {
  .l-footer__sitemap {
    gap: 40px;
    padding-top: 0;
    justify-content: flex-start;
  }
}
.l-footer__sitemap-col {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.l-footer__sitemap-link {
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.l-footer__sitemap-link--external img {
  width: 14px;
  height: 14px;
}
@media (any-hover: hover) {
  .l-footer__sitemap-link:hover {
    text-decoration: underline;
  }
}
.l-footer__sitemap-category {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
}
.l-footer__sitemap-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-footer__sitemap-sub {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-footer__sitemap-sub-link {
  font-size: 18px;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s;
}
.l-footer__sitemap-sub-link::before {
  content: "";
  width: 0.5em;
  height: 1px;
  background: var(--tan);
}
@media (any-hover: hover) {
  .l-footer__sitemap-sub-link:hover {
    text-decoration: underline;
  }
}
.l-footer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 570px;
  padding-top: 20px;
  align-items: flex-start;
}
.l-footer__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-radius: 10px;
  padding: 30px;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 270px;
}
.l-footer__btn .icon-arrow:after {
  background: var(--white);
  border: none;
}
.l-footer__btn-text {
  font-size: 18px;
  color: var(--black);
}
.l-footer__privacy, .l-footer__terms {
  color: var(--gray-mid);
  text-decoration: underline;
  transition: opacity 0.3s;
  font-size: 14px;
}
@media (any-hover: hover) {
  .l-footer__privacy:hover, .l-footer__terms:hover {
    text-decoration: none;
  }
}
.l-footer__terms {
  margin-left: 1em;
}
.l-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 828px) {
  .l-footer__bottom {
    margin-top: 60px;
    flex-direction: column-reverse;
    gap: 15px;
    text-align: center;
  }
}
.l-footer__copyright {
  color: var(--black);
  font-size: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 828.01px) {
  .l-footer__right {
    flex-direction: column;
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 828.01px) {
  .l-footer__actions {
    grid-template-columns: 1fr;
    width: 270px;
    padding-top: 20px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 828px) {
  .l-footer {
    margin: calc(-50 / 828 * 100vw) 0 0 0;
    padding: calc(180 / 828 * 100vw) 0 calc(42 / 828 * 100vw);
  }
  .l-footer::before {
    border-radius: calc(50 / 828 * 100vw) calc(50 / 828 * 100vw) 0 0;
  }
  .l-footer__inner {
    padding: 0 calc(50 / 828 * 100vw);
    flex-direction: column;
    gap: calc(40 / 828 * 100vw);
  }
  .l-footer__logo {
    width: calc(300 / 828 * 100vw);
    margin-bottom: calc(82 / 828 * 100vw);
  }
  .l-footer__title {
    font-size: calc(54 / 828 * 100vw);
  }
  .l-footer__title--large {
    font-size: calc(72 / 828 * 100vw);
  }
  .l-footer__right {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: calc(80 / 828 * 100vw);
    margin-top: 0;
  }
  .l-footer__sitemap {
    gap: calc(60 / 828 * 100vw);
    padding-top: calc(20 / 828 * 100vw);
  }
  .l-footer__sitemap-col {
    gap: calc(40 / 828 * 100vw);
  }
  .l-footer__sitemap-link {
    font-size: calc(30 / 828 * 100vw);
    gap: calc(12 / 828 * 100vw);
  }
  .l-footer__sitemap-link--external img {
    width: calc(21 / 828 * 100vw);
    height: calc(21 / 828 * 100vw);
  }
  .l-footer__sitemap-category {
    font-size: calc(30 / 828 * 100vw);
    gap: calc(12 / 828 * 100vw);
  }
  .l-footer__sitemap-group {
    gap: calc(30 / 828 * 100vw);
  }
  .l-footer__sitemap-sub {
    gap: calc(30 / 828 * 100vw);
  }
  .l-footer__sitemap-sub-link {
    font-size: calc(26 / 828 * 100vw);
    gap: calc(20 / 828 * 100vw);
  }
  .l-footer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(20 / 828 * 100vw);
    width: 100%;
    padding-top: 0;
  }
  .l-footer__btn {
    flex: 1;
    border-radius: calc(15 / 828 * 100vw);
    padding: calc(50 / 828 * 100vw) calc(30 / 828 * 100vw);
    width: inherit;
  }
  .l-footer__btn-text {
    font-size: calc(30 / 828 * 100vw);
  }
  .l-footer__privacy, .l-footer__terms {
    font-size: calc(20 / 828 * 100vw);
  }
  .l-footer__bottom {
    padding: 0 calc(50 / 828 * 100vw);
  }
  .l-footer__copyright {
    font-size: calc(20 / 828 * 100vw);
    margin-top: 0;
  }
}

.l-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.9);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.35s ease;
}
.l-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.l-menu__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  max-width: 826px;
  background: url("../img/common/bg-menu.svg") 0 top/cover no-repeat;
  border-radius: 0 0 0 50px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-menu .l-menu__overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.l-menu.is-open .l-menu__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 200px 80px 60px 150px;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}
.l-menu__logo {
  display: block;
  width: 200px;
  line-height: 0;
  margin-bottom: 80px;
}
.l-menu__nav {
  display: flex;
  gap: 60px;
}
.l-menu__nav-col {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.l-menu__nav-link {
  font-weight: 500;
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  transition: opacity 0.3s;
}
.l-menu__nav-link--external img {
  width: 14px;
  height: 14px;
}
@media (any-hover: hover) {
  .l-menu__nav-link:hover {
    text-decoration: underline;
  }
}
.l-menu__nav-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-menu__nav-category {
  font-weight: 500;
  font-size: 20px;
  color: var(--tan);
  line-height: 1.4;
}
.l-menu__nav-sub {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
}
.l-menu__nav-sub-link {
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s;
}
.l-menu__nav-sub-link::before {
  content: "";
  width: 0.5em;
  height: 1px;
  background: var(--black);
}
@media (any-hover: hover) {
  .l-menu__nav-sub-link:hover {
    text-decoration: underline;
  }
}
.l-menu__footer {
  margin-top: 30px;
  padding-top: 40px;
}
.l-menu__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.l-menu__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
  border-radius: 10px;
  padding: 30px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.l-menu__btn .icon-arrow:after {
  background: var(--white);
  border: none;
}
.l-menu__btn-text {
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  line-height: 1;
}
.l-menu__privacy, .l-menu__terms {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-mid);
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-menu__privacy:hover, .l-menu__terms:hover {
    text-decoration: none;
  }
}
.l-menu__terms {
  margin-left: 1em;
}
@media only screen and (max-width: 828px) {
  .l-menu__panel {
    border-radius: 0 0 0 calc(50 / 828 * 100vw);
  }
  .l-menu__inner {
    padding: calc(320 / 828 * 100vw) calc(50 / 828 * 100vw) calc(80 / 828 * 100vw) calc(120 / 828 * 100vw);
  }
  .l-menu__logo {
    width: calc(200 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .l-menu__nav {
    gap: calc(80 / 828 * 100vw);
  }
  .l-menu__nav-col {
    gap: calc(40 / 828 * 100vw);
  }
  .l-menu__nav-link {
    font-size: calc(30 / 828 * 100vw);
    gap: calc(15 / 828 * 100vw);
  }
  .l-menu__nav-link--external img {
    width: calc(21 / 828 * 100vw);
    height: calc(21 / 828 * 100vw);
  }
  .l-menu__nav-group {
    gap: calc(30 / 828 * 100vw);
  }
  .l-menu__nav-category {
    font-size: calc(30 / 828 * 100vw);
  }
  .l-menu__nav-sub {
    gap: calc(30 / 828 * 100vw);
  }
  .l-menu__nav-sub-link {
    font-size: calc(30 / 828 * 100vw);
    gap: calc(10 / 828 * 100vw);
  }
  .l-menu__footer {
    margin-top: calc(30 / 828 * 100vw);
    padding-top: calc(40 / 828 * 100vw);
  }
  .l-menu__actions {
    flex-direction: column;
    gap: calc(30 / 828 * 100vw);
    margin-bottom: calc(30 / 828 * 100vw);
  }
  .l-menu__btn {
    gap: 0;
    border-radius: calc(10 / 828 * 100vw);
    padding: calc(50 / 828 * 100vw) calc(30 / 828 * 100vw);
  }
  .l-menu__btn-text {
    font-size: calc(30 / 828 * 100vw);
  }
  .l-menu__privacy, .l-menu__terms {
    font-size: calc(20 / 828 * 100vw);
  }
}

.js-accordion .js-accordion-trigger {
  cursor: pointer;
  position: relative;
}
.js-accordion .js-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;
  transition: grid-template-rows 0.35s ease-out, -ms-grid-rows 0.35s ease-out;
}
.js-accordion .js-accordion-inner {
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: opacity 0.35s, padding 0.35s;
}
.js-accordion.is-open .js-accordion-content {
  grid-template-rows: 1fr;
}
.js-accordion.is-open .js-accordion-inner {
  opacity: 1;
  padding: 28px 0;
}

.c-tabs__btn {
  --tab-line-color: rgba(0, 0, 0, 0.2);
  --tab-active-line-color: var(--black);
  -webkit-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.c-tabs__btn::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--tab-line-color);
  transition: background 0.2s;
}
.c-tabs__btn.is-active::after {
  background: var(--tab-active-line-color);
}
@media (any-hover: hover) {
  .c-tabs__btn:hover::after {
    background: var(--tab-active-line-color);
  }
}
.c-tabs__panel {
  display: none;
}
.c-tabs__panel.is-active {
  display: block;
}
.c-tabs__panel[hidden] {
  display: none !important;
}

.p-top-loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  z-index: 102;
  transition: height 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
.p-top-loading.is-hidden {
  height: 0;
  pointer-events: none;
}
.p-top-loading.is-shown .p-top-loading__text-en span,
.p-top-loading.is-shown .p-top-loading__text-year-col {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-top-loading__inner {
  position: absolute;
  width: 200vmax;
  height: 200vmax;
  top: calc(50% - 100vmax);
  left: calc(50% - 100vmax);
  --mask-logo-size: 0vmax;
  mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 213"><path d="M168.212 27.13C147.974 8.077 121.497-1.492 93.639.19 68.679 1.696 45.124 13.23 27.32 32.664 9.702 51.896 0 76.308 0 101.404v86.935c0 13.347 10.858 24.205 24.205 24.205H175.41c13.347 0 24.205-10.858 24.205-24.205V99.811c0-27.4-11.446-53.892-31.403-72.681m19.301 161.209c0 6.684-5.418 12.103-12.102 12.103H24.205c-6.684 0-12.103-5.419-12.103-12.103v-86.935c0-45.392 36.957-86.4 82.267-89.134 50.903-3.072 93.144 37.301 93.144 87.54z"/><path d="M57.508 91.277a4.45 4.45 0 0 0-3.231 3.232 4.493 4.493 0 0 0 5.461 5.46 4.45 4.45 0 0 0 3.232-3.231 4.494 4.494 0 0 0-5.462-5.46m82.369-.001a4.45 4.45 0 0 0-3.232 3.232 4.494 4.494 0 0 0 5.462 5.46 4.45 4.45 0 0 0 3.231-3.231 4.493 4.493 0 0 0-5.46-5.46"/><path d="M95.06 29.124c-36.367 2.298-65.877 31.808-68.175 68.175-2.786 44.1 33.57 80.455 77.67 77.668 36.367-2.298 65.877-31.808 68.174-68.176 2.787-44.099-33.57-80.454-77.669-77.667m-39.658 86.638c-5.174-1.147-9.349-5.322-10.496-10.496A14.107 14.107 0 0 1 61.845 88.33c5.174 1.147 9.35 5.322 10.496 10.496a14.108 14.108 0 0 1-16.938 16.937m58.48 35.544a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998v-16.152a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm0-82.369a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998V52.785a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm23.889 46.825c-5.174-1.147-9.35-5.322-10.496-10.496a14.107 14.107 0 0 1 16.937-16.938c5.174 1.146 9.35 5.321 10.497 10.495a14.107 14.107 0 0 1-16.938 16.94"/></svg>'), url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><rect width="1" height="1"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 213"><path d="M168.212 27.13C147.974 8.077 121.497-1.492 93.639.19 68.679 1.696 45.124 13.23 27.32 32.664 9.702 51.896 0 76.308 0 101.404v86.935c0 13.347 10.858 24.205 24.205 24.205H175.41c13.347 0 24.205-10.858 24.205-24.205V99.811c0-27.4-11.446-53.892-31.403-72.681m19.301 161.209c0 6.684-5.418 12.103-12.102 12.103H24.205c-6.684 0-12.103-5.419-12.103-12.103v-86.935c0-45.392 36.957-86.4 82.267-89.134 50.903-3.072 93.144 37.301 93.144 87.54z"/><path d="M57.508 91.277a4.45 4.45 0 0 0-3.231 3.232 4.493 4.493 0 0 0 5.461 5.46 4.45 4.45 0 0 0 3.232-3.231 4.494 4.494 0 0 0-5.462-5.46m82.369-.001a4.45 4.45 0 0 0-3.232 3.232 4.494 4.494 0 0 0 5.462 5.46 4.45 4.45 0 0 0 3.231-3.231 4.493 4.493 0 0 0-5.46-5.46"/><path d="M95.06 29.124c-36.367 2.298-65.877 31.808-68.175 68.175-2.786 44.1 33.57 80.455 77.67 77.668 36.367-2.298 65.877-31.808 68.174-68.176 2.787-44.099-33.57-80.454-77.669-77.667m-39.658 86.638c-5.174-1.147-9.349-5.322-10.496-10.496A14.107 14.107 0 0 1 61.845 88.33c5.174 1.147 9.35 5.322 10.496 10.496a14.108 14.108 0 0 1-16.938 16.937m58.48 35.544a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998v-16.152a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm0-82.369a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998V52.785a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm23.889 46.825c-5.174-1.147-9.35-5.322-10.496-10.496a14.107 14.107 0 0 1 16.937-16.938c5.174 1.146 9.35 5.321 10.497 10.495a14.107 14.107 0 0 1-16.938 16.94"/></svg>'), url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><rect width="1" height="1"/></svg>');
  mask-size: var(--mask-logo-size), 200% 200%;
  -webkit-mask-size: var(--mask-logo-size), 200% 200%;
  mask-position: center, center;
  -webkit-mask-position: center, center;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.p-top-loading__bg {
  position: absolute;
  inset: 0;
  background: var(--cream);
}
.p-top-loading__wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.p-top-loading__text-en {
  font-family: var(--font-en);
  font-size: 65px;
  font-weight: 100;
  color: var(--tan);
  letter-spacing: 0.05em;
  line-height: 1;
  overflow: hidden;
}
.p-top-loading__text-en span {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}
.p-top-loading__text-year {
  display: flex;
  justify-content: center;
  gap: 0.05em;
  font-family: var(--font-en);
  font-size: min(38vw, 370px);
  font-weight: 100;
  font-variant-numeric: tabular-nums;
  color: var(--tan);
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.p-top-loading__text-year-col {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}
.p-top-loading__text-year-col i {
  display: block;
  font-style: normal;
  text-align: center;
  position: relative;
}
.p-top-loading__text-year-col i::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 16px;
  background: var(--cream);
  z-index: 1;
  pointer-events: none;
}
.p-top-loading__text-year-col i.is-leaving {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 828px) {
  .p-top-loading__text-en {
    font-size: calc(32 / 828 * 100vw);
  }
  .p-top-loading__text-year {
    font-size: calc(185 / 828 * 100vw);
  }
  .p-top-loading__text-year-col i::after {
    height: calc(8 / 828 * 100vw);
  }
}

.p-top-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.p-top-hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.p-top-hero__media-slide {
  position: absolute;
  width: 200vmax;
  height: 200vmax;
  top: calc(50% - 100vmax);
  left: calc(50% - 100vmax);
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  --mask-logo-size: 0vmax;
  mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 213"><path d="M168.212 27.13C147.974 8.077 121.497-1.492 93.639.19 68.679 1.696 45.124 13.23 27.32 32.664 9.702 51.896 0 76.308 0 101.404v86.935c0 13.347 10.858 24.205 24.205 24.205H175.41c13.347 0 24.205-10.858 24.205-24.205V99.811c0-27.4-11.446-53.892-31.403-72.681m19.301 161.209c0 6.684-5.418 12.103-12.102 12.103H24.205c-6.684 0-12.103-5.419-12.103-12.103v-86.935c0-45.392 36.957-86.4 82.267-89.134 50.903-3.072 93.144 37.301 93.144 87.54z"/><path d="M57.508 91.277a4.45 4.45 0 0 0-3.231 3.232 4.493 4.493 0 0 0 5.461 5.46 4.45 4.45 0 0 0 3.232-3.231 4.494 4.494 0 0 0-5.462-5.46m82.369-.001a4.45 4.45 0 0 0-3.232 3.232 4.494 4.494 0 0 0 5.462 5.46 4.45 4.45 0 0 0 3.231-3.231 4.493 4.493 0 0 0-5.46-5.46"/><path d="M95.06 29.124c-36.367 2.298-65.877 31.808-68.175 68.175-2.786 44.1 33.57 80.455 77.67 77.668 36.367-2.298 65.877-31.808 68.174-68.176 2.787-44.099-33.57-80.454-77.669-77.667m-39.658 86.638c-5.174-1.147-9.349-5.322-10.496-10.496A14.107 14.107 0 0 1 61.845 88.33c5.174 1.147 9.35 5.322 10.496 10.496a14.108 14.108 0 0 1-16.938 16.937m58.48 35.544a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998v-16.152a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm0-82.369a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998V52.785a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm23.889 46.825c-5.174-1.147-9.35-5.322-10.496-10.496a14.107 14.107 0 0 1 16.937-16.938c5.174 1.146 9.35 5.321 10.497 10.495a14.107 14.107 0 0 1-16.938 16.94"/></svg>'), url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><rect width="1" height="1"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 213"><path d="M168.212 27.13C147.974 8.077 121.497-1.492 93.639.19 68.679 1.696 45.124 13.23 27.32 32.664 9.702 51.896 0 76.308 0 101.404v86.935c0 13.347 10.858 24.205 24.205 24.205H175.41c13.347 0 24.205-10.858 24.205-24.205V99.811c0-27.4-11.446-53.892-31.403-72.681m19.301 161.209c0 6.684-5.418 12.103-12.102 12.103H24.205c-6.684 0-12.103-5.419-12.103-12.103v-86.935c0-45.392 36.957-86.4 82.267-89.134 50.903-3.072 93.144 37.301 93.144 87.54z"/><path d="M57.508 91.277a4.45 4.45 0 0 0-3.231 3.232 4.493 4.493 0 0 0 5.461 5.46 4.45 4.45 0 0 0 3.232-3.231 4.494 4.494 0 0 0-5.462-5.46m82.369-.001a4.45 4.45 0 0 0-3.232 3.232 4.494 4.494 0 0 0 5.462 5.46 4.45 4.45 0 0 0 3.231-3.231 4.493 4.493 0 0 0-5.46-5.46"/><path d="M95.06 29.124c-36.367 2.298-65.877 31.808-68.175 68.175-2.786 44.1 33.57 80.455 77.67 77.668 36.367-2.298 65.877-31.808 68.174-68.176 2.787-44.099-33.57-80.454-77.669-77.667m-39.658 86.638c-5.174-1.147-9.349-5.322-10.496-10.496A14.107 14.107 0 0 1 61.845 88.33c5.174 1.147 9.35 5.322 10.496 10.496a14.108 14.108 0 0 1-16.938 16.937m58.48 35.544a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998v-16.152a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm0-82.369a6 6 0 0 1-5.998 5.998H91.731a6 6 0 0 1-5.998-5.998V52.785a6 6 0 0 1 5.998-5.998h16.153a6 6 0 0 1 5.998 5.998zm23.889 46.825c-5.174-1.147-9.35-5.322-10.496-10.496a14.107 14.107 0 0 1 16.937-16.938c5.174 1.146 9.35 5.321 10.497 10.495a14.107 14.107 0 0 1-16.938 16.94"/></svg>'), url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><rect width="1" height="1"/></svg>');
  mask-size: var(--mask-logo-size), 200% 200%;
  -webkit-mask-size: var(--mask-logo-size), 200% 200%;
  mask-position: center, center;
  -webkit-mask-position: center, center;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.p-top-hero__media-slide.is-active {
  visibility: visible;
  z-index: 1;
}
.p-top-hero__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  width: 100vw;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-top-hero__img-sp {
  display: none;
}
.p-top-hero__content {
  position: absolute;
  bottom: 30%;
  left: 6.25%;
  z-index: 3;
}
.p-top-hero__title {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: 54px;
  line-height: calc(77 / 54);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.p-top-hero__cta {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 3;
}
.p-top-hero__cta-btn {
  display: flex;
  text-decoration: none;
  color: var(--black);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
@media (any-hover: hover) {
  .p-top-hero__cta-btn:hover {
    background: rgb(255, 255, 255);
  }
}
.p-top-hero__cta-inner {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 35px;
}
.p-top-hero__cta-text {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 828px) {
  .p-top-hero {
    height: calc(1200 / 700 * 100dvw);
  }
  .p-top-hero__img {
    width: 100dvw;
    height: calc(1200 / 700 * 100dvw);
  }
  .p-top-hero__img-sp {
    display: inherit;
  }
  .p-top-hero__img-pc {
    display: none;
  }
  .p-top-hero__content {
    left: calc(82 / 828 * 100vw);
    bottom: calc(296 / 828 * 100vw);
  }
  .p-top-hero__title {
    font-size: calc(64 / 828 * 100vw);
  }
  .p-top-hero__cta {
    bottom: calc(50 / 828 * 100vw);
    left: calc(60 / 828 * 100vw);
    border-radius: calc(10 / 828 * 100vw);
  }
  .p-top-hero__cta-inner {
    width: calc(708 / 828 * 100vw);
    gap: calc(20 / 828 * 100vw);
    padding: calc(52 / 828 * 100vw);
  }
  .p-top-hero__cta-text {
    font-size: calc(28 / 828 * 100vw);
  }
}

.p-top-product {
  max-width: 1920px;
  margin: 0 auto;
  padding: 180px 0 0.1px;
}
.p-top-product__header {
  margin: 0;
  padding-left: 100px;
}
.p-top-product__label {
  font-size: 20px;
  line-height: 1;
  margin: 0 0 32px 10px;
}
.p-top-product__title {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(130px, 15vw, 154px);
  line-height: 70%;
  letter-spacing: 0.075em;
}
.p-top-product__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-top-product__item {
  position: relative;
  margin-bottom: 25px;
  height: clamp(700px, 55vw, 1000px);
}
.p-top-product__item-media {
  overflow: hidden;
  border-radius: 15px;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media only screen and (min-width: 828.01px) {
  .p-top-product__item-media {
    width: calc(100vw - 50px);
    left: min((50px - var(--scrollbar-width)) / 2, (1920px - 100svw + 50px) / 2);
  }
}
.p-top-product__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.p-top-product__item-info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 0 80px 80px;
}
.p-top-product__item-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-top-product__item-cat {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 10px;
}
.p-top-product__item-num {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 32px;
  line-height: calc(42 / 32);
  margin-bottom: 10px;
}
.p-top-product__item-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-top-product__item-name {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(24px, 2.2vw, 42px);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 40px;
}
.p-top-product__item--jp .p-top-product__item-name {
  font-size: clamp(22px, 2vw, 36px);
}
.p-top-product__item-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.p-top-product__item-desc span {
  display: block;
}
.p-top-product__item-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  width: 335px;
}
.p-top-product__item-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  width: 100%;
  padding: 30px 23px 30px 35px;
}
.p-top-product__item-btn--more {
  background: var(--white);
  border-radius: 10px;
}
.p-top-product__item-btn--inquiry {
  border-bottom: 1px solid #000;
}
.p-top-product__item-btn-text {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.p-top-product__item-btn--inquiry .p-top-product__item-btn-text {
  font-size: 16px;
}
@media only screen and (max-width: 828px) {
  .p-top-product {
    padding: calc(180 / 828 * 100vw) calc(50 / 828 * 100vw) 0.1px;
  }
  .p-top-product__header {
    padding-left: calc(25 / 828 * 100vw);
  }
  .p-top-product__label {
    font-size: calc(32 / 828 * 100vw);
    margin: 0 0 calc(32 / 828 * 100vw) calc(10 / 828 * 100vw);
  }
  .p-top-product__title {
    font-size: calc(120 / 828 * 100vw);
    letter-spacing: 0.05em;
  }
  .p-top-product__item {
    border-radius: inherit;
    margin-bottom: calc(50 / 828 * 100vw);
    height: inherit;
  }
  .p-top-product__item-media {
    height: calc(420 / 828 * 100vw);
    position: relative;
    border-radius: calc(15 / 828 * 100vw);
    overflow: hidden;
  }
  .p-top-product__item-img {
    -o-object-position: center center;
       object-position: center center;
  }
  .p-top-product__item-info {
    position: relative;
    width: 100%;
    padding: calc(48 / 828 * 100vw) calc(32 / 828 * 100vw) calc(64 / 828 * 100vw);
  }
  .p-top-product__item-cat {
    font-size: calc(26 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-top-product__item-num {
    font-size: calc(32 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-top-product__item-name {
    font-size: calc(64 / 828 * 100vw);
    margin-bottom: calc(40 / 828 * 100vw);
  }
  .p-top-product__item--jp .p-top-product__item-name {
    font-size: calc(56 / 828 * 100vw);
  }
  .p-top-product__item-desc {
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(48 / 28);
    margin-bottom: calc(48 / 828 * 100vw);
  }
  .p-top-product__item-actions {
    gap: calc(20 / 828 * 100vw);
    width: calc(670 / 828 * 100vw);
  }
  .p-top-product__item-btn {
    gap: calc(24 / 828 * 100vw);
    padding: calc(52 / 828 * 100vw);
  }
  .p-top-product__item-btn--more {
    border-radius: calc(10 / 828 * 100vw);
  }
  .p-top-product__item-btn-text {
    font-size: calc(32 / 828 * 100vw);
  }
  .p-top-product__item-btn--inquiry .p-top-product__item-btn-text {
    font-size: calc(28 / 828 * 100vw);
  }
}

.p-top-news {
  max-width: 1920px;
  margin: 0 auto;
  padding: 180px 100px;
}
.p-top-news__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.p-top-news__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-top-news__label {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
}
.p-top-news__title {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 90px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.p-top-news__more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 275px;
  text-decoration: none;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding: 30px 23px 30px 30px;
}
.p-top-news__more.p-top-news__more-bottom {
  display: none;
}
.p-top-news__more-text {
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.3s;
}
.p-top-news__body {
  width: clamp(220px, 840 / 1920 * 100vw, 840px);
  padding-top: 8px;
}
.p-top-news__filter {
  display: flex;
  gap: 0;
}
.p-top-news__filter-btn {
  font-size: 18px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  width: calc(100% / 3);
  padding: 0 0 25px;
  transition: all 0.3s ease;
  --tab-line-color: rgba(0 0 0 / .3);
  --tab-active-line-color: var(--black);
}
.p-top-news__filter-btn.is-active {
  color: var(--black);
}
@media (any-hover: hover) {
  .p-top-news__filter-btn:hover {
    color: var(--black);
  }
}
.p-top-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-top-news__list[hidden] {
  display: none;
}
.p-top-news__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.p-top-news__item-link {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 52px 0;
  text-decoration: none;
  color: var(--black);
}
.p-top-news__item-link .icon-arrow {
  margin-right: 20px;
}
@media (any-hover: hover) {
  .p-top-news__item-link:hover {
    background: var(--white);
  }
}
.p-top-news__item-date {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 62px;
  margin-left: 20px;
}
.p-top-news__item-date:before {
  content: "-";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: 0.25em 0;
}
.p-top-news__item-date:first-child:before {
  display: none;
}
.p-top-news__item-year {
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 6px;
  padding-bottom: 6px;
}
.p-top-news__item-day {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  color: var(--black);
}
.p-top-news__item-title {
  font-size: 14px;
  line-height: calc(32 / 14);
  flex: 1;
}
@media only screen and (max-width: 828px) {
  .p-top-news {
    padding: calc(180 / 828 * 100vw) calc(50 / 828 * 100vw);
  }
  .p-top-news__inner {
    display: block;
  }
  .p-top-news__label {
    font-size: calc(32 / 828 * 100vw);
    margin: 0 0 calc(32 / 828 * 100vw) calc(10 / 828 * 100vw);
  }
  .p-top-news__title {
    font-size: calc(120 / 828 * 100vw);
    letter-spacing: 0.05em;
    line-height: 70%;
    margin-bottom: calc(120 / 828 * 100vw);
  }
  .p-top-news__more {
    display: none;
    gap: calc(20 / 828 * 100vw);
    width: calc(670 / 828 * 100vw);
    padding: calc(52 / 828 * 100vw);
  }
  .p-top-news__more.p-top-news__more-bottom {
    display: flex;
    margin: calc(100 / 828 * 100vw) auto 0;
  }
  .p-top-news__more-text {
    font-size: calc(28 / 828 * 100vw);
  }
  .p-top-news__body {
    width: 100%;
    padding-top: 0;
  }
  .p-top-news__filter-btn {
    font-size: calc(28 / 828 * 100vw);
    padding: calc(50 / 828 * 100vw) 0;
  }
  .p-top-news__item-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(24 / 828 * 100vw);
    padding: calc(54 / 828 * 100vw) 0;
  }
  .p-top-news__item-link .icon-arrow {
    margin-right: calc(10 / 828 * 100vw);
  }
  .p-top-news__item-date {
    flex-shrink: 0;
    min-width: inherit;
    margin-right: calc(10 / 828 * 100vw);
    margin-left: calc(10 / 828 * 100vw);
  }
  .p-top-news__item-year {
    font-size: calc(28 / 828 * 100vw);
    margin-bottom: calc(12 / 828 * 100vw);
    padding-bottom: calc(12 / 828 * 100vw);
  }
  .p-top-news__item-day {
    font-size: calc(32 / 828 * 100vw);
  }
  .p-top-news__item-title {
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(42 / 28);
  }
}

.p-top-company {
  padding: 180px 0 0;
  border-radius: 50px;
  background: rgba(224, 220, 208, 0.34);
  overflow: hidden;
}
.p-top-company__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 180px;
  position: relative;
}
.p-top-company__info {
  padding: 0 0 0 100px;
  position: relative;
  z-index: 1;
}
.p-top-company__label {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
}
.p-top-company__title {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 90px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 100px;
}
.p-top-company__actions {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.p-top-company__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 275px;
  text-decoration: none;
  color: var(--black);
  padding: 30px 23px 30px 30px;
}
.p-top-company__btn--more {
  border-bottom: 1px solid var(--black);
}
.p-top-company__btn--recruit {
  background: var(--white);
  border-radius: 10px;
}
.p-top-company__btn--recruit > img {
  width: 12px;
  margin-right: 9px;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (any-hover: hover) {
  .p-top-company__btn--recruit:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.p-top-company__btn-text {
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.3s;
}
.p-top-company__media {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  margin: 0 -10px -62px 0;
  pointer-events: none;
}
.p-top-company__img {
  width: 657px;
}
@media only screen and (max-width: 828px) {
  .p-top-company {
    padding: calc(180 / 828 * 100vw) 0 0;
    border-radius: calc(50 / 828 * 100vw);
  }
  .p-top-company__inner {
    padding-bottom: calc(180 / 828 * 100vw);
  }
  .p-top-company__info {
    padding: 0 calc(50 / 828 * 100vw);
  }
  .p-top-company__label {
    font-size: calc(32 / 828 * 100vw);
    margin: 0 0 calc(32 / 828 * 100vw) calc(10 / 828 * 100vw);
  }
  .p-top-company__title {
    font-size: calc(120 / 828 * 100vw);
    letter-spacing: 0.05em;
    line-height: 70%;
    margin-bottom: calc(120 / 828 * 100vw);
  }
  .p-top-company__actions {
    gap: calc(38 / 828 * 100vw);
  }
  .p-top-company__btn {
    display: flex;
    gap: calc(20 / 828 * 100vw);
    width: calc(670 / 828 * 100vw);
    margin-right: auto;
    margin-left: auto;
    padding: calc(52 / 828 * 100vw);
  }
  .p-top-company__btn--recruit {
    border-radius: calc(10 / 828 * 100vw);
  }
  .p-top-company__btn--recruit > img {
    width: calc(36 / 828 * 100vw);
    margin-right: calc(12 / 828 * 100vw);
  }
  .p-top-company__btn-text {
    font-size: calc(28 / 828 * 100vw);
  }
  .p-top-company__media {
    margin: 0 calc(-10 / 828 * 100vw) calc(-62 / 828 * 100vw) 0;
  }
  .p-top-company__img {
    width: calc(520 / 828 * 100vw);
  }
}

.p-top-recruit {
  padding: 180px 0 80px;
  display: flex;
  justify-content: center;
}
.p-top-recruit__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: var(--tan);
  border-radius: 143px;
  width: 100%;
  max-width: 900px;
  padding: 94px 120px 90px 100px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-top-recruit__btn:hover .p-top-recruit__btn-circle {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.p-top-recruit__btn-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.p-top-recruit__btn-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-top-recruit__btn-label {
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}
.p-top-recruit__btn-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 58px;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-top-recruit__btn-circle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-top-recruit__btn-circle img {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 828px) {
  .p-top-recruit {
    padding: calc(180 / 828 * 100vw) 0 calc(80 / 828 * 100vw);
  }
  .p-top-recruit__btn {
    border-radius: 50vw;
    width: calc(800 / 828 * 100vw);
    padding: calc(94 / 828 * 100vw) calc(100 / 828 * 100vw) calc(90 / 828 * 100vw);
  }
  .p-top-recruit__btn-text {
    gap: calc(16 / 828 * 100vw);
  }
  .p-top-recruit__btn-label {
    font-size: calc(32 / 828 * 100vw);
  }
  .p-top-recruit__btn-en {
    font-size: calc(90 / 828 * 100vw);
    line-height: 70%;
  }
  .p-top-recruit__btn-circle {
    width: calc(80 / 828 * 100vw);
    height: calc(80 / 828 * 100vw);
  }
  .p-top-recruit__btn-circle img {
    width: 100%;
    height: 100%;
  }
}

.p-top-cta {
  max-width: 1920px;
  margin: 0 auto;
  padding: 180px 50px 230px;
}
.p-top-cta__lead {
  font-size: 24px;
  text-align: center;
  color: var(--black);
  margin-bottom: 60px;
}
.p-top-cta__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.p-top-cta__btn {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: opacity 0.3s;
}
.p-top-cta__btn-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(36px, 6vw, 92px) clamp(36px, 6vw, 100px);
  position: relative;
}
.p-top-cta__btn-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-top-cta__btn-label {
  font-size: 20px;
  color: var(--tan);
  line-height: 1;
  display: block;
}
.p-top-cta__btn-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(36px, 3vw, 58px);
  color: var(--tan);
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
}
.p-top-cta .icon-arrow {
  background: var(--tan);
  position: absolute;
  right: clamp(15px, 2vw, 30px);
  bottom: clamp(15px, 2vw, 30px);
}
.p-top-cta .icon-arrow svg {
  stroke: var(--white);
}
.p-top-cta .icon-arrow:after {
  border: none;
}
@media only screen and (max-width: 828px) {
  .p-top-cta {
    padding: calc(160 / 828 * 100vw) calc(50 / 828 * 100vw) calc(180 / 828 * 100vw);
  }
  .p-top-cta__lead {
    font-size: calc(38 / 828 * 100vw);
    line-height: calc(64 / 38);
    margin-bottom: calc(40 / 828 * 100vw);
  }
  .p-top-cta__actions {
    grid-template-columns: 1fr;
    gap: calc(40 / 828 * 100vw);
  }
  .p-top-cta__btn {
    border-radius: calc(20 / 828 * 100vw);
  }
  .p-top-cta__btn-inner {
    padding: calc(80 / 828 * 100vw) calc(56 / 828 * 100vw) calc(80 / 828 * 100vw) calc(80 / 828 * 100vw);
  }
  .p-top-cta__btn-text {
    gap: calc(16 / 828 * 100vw);
  }
  .p-top-cta__btn-label {
    font-size: calc(32 / 828 * 100vw);
    margin-bottom: calc(6 / 828 * 100vw);
  }
  .p-top-cta__btn-en {
    font-size: calc(72 / 828 * 100vw);
    letter-spacing: 0.05em;
    line-height: 70%;
  }
  .p-top-cta .icon-arrow {
    right: calc(40 / 828 * 100vw);
    bottom: calc(50% - 15px);
  }
}

.p-philosophy-hero {
  position: relative;
  z-index: 0;
  padding: 250px 0 240px;
  overflow: hidden;
}
.p-philosophy-hero__inner {
  position: relative;
  z-index: 2;
}
.p-philosophy-hero__page-title {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.1em;
}
.p-philosophy-hero__lead {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  margin: -13px 210px 70px 0;
}
.p-philosophy-hero__lead-v-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-philosophy-hero__text-content {
  font-size: 18px;
  font-weight: 400;
  line-height: calc(54 / 18);
  margin-bottom: 62px;
}
.p-philosophy-hero__text-content p {
  margin-bottom: 1.8em;
}
.p-philosophy-hero__text-content p:last-child {
  margin-bottom: 0;
}
.p-philosophy-hero__title {
  font-family: var(--font-en);
  font-size: 73px;
  font-weight: 200;
  line-height: calc(104 / 73);
  text-align: left;
}
.p-philosophy-hero__media {
  position: absolute;
  top: clamp(420px, 1920px - 100vw, 490px);
  right: calc(-50 / 1920 * 100vw);
  width: calc(943 / 1920 * 100vw);
  max-width: 943px;
  z-index: 1;
  pointer-events: none;
}
.p-philosophy-hero__img--1, .p-philosophy-hero__img--2 {
  position: absolute;
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-position: 100% 0%;
          mask-position: 100% 0%;
}
.p-philosophy-hero__img--1 {
  width: 100%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 60%, black 100%);
          mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 60%, black 100%);
}
.p-philosophy-hero__img--2 {
  width: 100%;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 60%, transparent 100%);
          mask-image: linear-gradient(to right, black 0%, black 40%, transparent 60%, transparent 100%);
}
@media only screen and (max-width: 828px) {
  .p-philosophy-hero {
    padding: calc(300 / 828 * 100vw) 0 calc(700 / 828 * 100vw);
  }
  .p-philosophy-hero__main {
    position: static;
    width: 100%;
    margin-bottom: calc(180 / 828 * 100vw);
  }
  .p-philosophy-hero__page-title {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-philosophy-hero__lead {
    gap: calc(20 / 828 * 100vw);
    margin: calc(-26 / 828 * 100vw) calc(50 / 828 * 100vw) calc(600 / 828 * 100vw) 0;
  }
  .p-philosophy-hero__lead-v-text {
    font-size: calc(54 / 828 * 100vw);
    min-height: 11em;
  }
  .p-philosophy-hero__text-content {
    font-size: calc(36 / 828 * 100vw);
    line-height: calc(72 / 36);
    margin-bottom: 0;
    -webkit-text-stroke: 3px var(--cream);
    text-stroke: 3px var(--cream);
    paint-order: stroke;
    text-shadow: 0px 0px 10px var(--cream);
    /*text-shadow: 4px 4px 4px var(--cream), -4px -4px 4px var(--cream),
    -4px 4px 4px var(--cream),  4px -4px 4px var(--cream),
    4px 0 4px var(--cream), -4px 0 4px var(--cream),
    0 4px 4px var(--cream),  0 -4px 4px var(--cream);*/
  }
  .p-philosophy-hero__title {
    font-size: calc(90 / 828 * 100vw);
    text-shadow: 1px 1px 0 var(--cream), -1px -1px 0 var(--cream), 1px -1px 0 var(--cream), -1px 1px 0 var(--cream), 0 0 1px var(--cream), 0 0 2px var(--cream), 0 0 3px var(--cream);
  }
  .p-philosophy-hero__media {
    top: calc(860 / 828 * 100vw);
    right: calc(-50 / 828 * 100vw);
    width: calc(828 / 828 * 100vw);
  }
}

.p-philosophy-message {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 0.1px 0 230px;
}
.p-philosophy-message {
  /* Profile Section */
}
.p-philosophy-message__profile {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 136px;
  margin-bottom: 130px;
}
.p-philosophy-message__profile:before {
  content: "";
  display: block;
  width: 85px;
  height: 106px;
  background: url("../../assets/img/philosophy/quote-l.svg") 0 0/100% auto no-repeat;
  position: absolute;
  top: -30px;
  left: 0;
}
.p-philosophy-message__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 42px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 126px;
}
.p-philosophy-message__text-wrap {
  max-width: 500px;
}
.p-philosophy-message__role {
  font-family: var(--font-en);
  font-size: 20px;
  margin-bottom: 15px;
}
.p-philosophy-message__name {
  font-size: 28px;
  margin-bottom: 30px;
}
.p-philosophy-message__job {
  font-size: 18px;
  margin-bottom: 40px;
}
.p-philosophy-message__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
}
.p-philosophy-message__img-wrap {
  max-width: 600px;
  margin-top: 64px;
  position: sticky;
  top: 120px;
  left: 0;
}
.p-philosophy-message__img {
  position: relative;
}
.p-philosophy-message__img:after {
  content: "";
  display: block;
  width: 85px;
  height: 106px;
  background: url("../../assets/img/philosophy/quote-r.svg") 0 0/100% auto no-repeat;
  position: absolute;
  bottom: 20px;
  right: 60px;
  z-index: 1;
}
.p-philosophy-message {
  /* Info Section (History, Award, Project) */
}
.p-philosophy-message__info-block {
  margin: 80px 0;
}
.p-philosophy-message__info-title {
  font-size: 20px;
  margin-bottom: 24px;
}
.p-philosophy-message__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0 60px;
  margin-bottom: 20px;
}
.p-philosophy-message__info-item:last-child {
  margin-bottom: 0;
}
.p-philosophy-message__info-date {
  width: 16em;
  flex-shrink: 0;
  font-size: 16px;
  line-height: calc(36 / 16);
  display: flex;
  align-items: center;
}
.p-philosophy-message__info-date--award {
  width: 6em;
}
.p-philosophy-message__info-date::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}
.p-philosophy-message__info-desc {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: calc(36 / 16);
}
.p-philosophy-message__info-desc span {
  font-size: 14px;
}
.p-philosophy-message__info-desc--project {
  flex: none;
  width: 100%;
  position: relative;
  padding-left: 25px;
}
.p-philosophy-message__info-desc--project::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(1em - 2px);
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50%;
}
.p-philosophy-message__info-divider {
  border: none;
  height: 1px;
  background: var(--beige);
  margin: 0;
}
@media only screen and (max-width: 828px) {
  .p-philosophy-message {
    padding-bottom: calc(230 / 828 * 100vw);
  }
  .p-philosophy-message {
    /* Profile Section */
  }
  .p-philosophy-message__profile {
    flex-direction: column;
    gap: 0;
    padding-top: calc(200 / 828 * 100vw);
    margin-bottom: calc(180 / 828 * 100vw);
  }
  .p-philosophy-message__profile:before {
    width: calc(85 / 828 * 100vw);
    height: calc(108 / 828 * 100vw);
    top: calc(-30 / 828 * 100vw);
  }
  .p-philosophy-message__title {
    min-height: 7em;
    font-size: calc(44 / 828 * 100vw);
    margin-bottom: calc(126 / 828 * 100vw);
  }
  .p-philosophy-message__text-wrap {
    max-width: inherit;
    width: 100%;
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-philosophy-message__role {
    font-size: calc(40 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-philosophy-message__name {
    font-size: calc(56 / 828 * 100vw);
    margin-bottom: calc(60 / 828 * 100vw);
  }
  .p-philosophy-message__job {
    font-size: calc(36 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-philosophy-message__text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(64 / 32);
  }
  .p-philosophy-message__img-wrap {
    position: relative;
    top: 0;
    max-width: inherit;
    width: 100%;
    margin-top: 0;
  }
  .p-philosophy-message__img:after {
    width: calc(85 / 828 * 100vw);
    height: calc(108 / 828 * 100vw);
    bottom: calc(10 / 828 * 100vw);
    right: calc(70 / 828 * 100vw);
  }
  .p-philosophy-message {
    /* Info Section (History, Award, Project) */
  }
  .p-philosophy-message__info-block {
    margin: calc(160 / 828 * 100vw) 0;
  }
  .p-philosophy-message__info-title {
    font-size: calc(40 / 828 * 100vw);
    margin-bottom: calc(50 / 828 * 100vw);
  }
  .p-philosophy-message__info-item {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
  .p-philosophy-message__info-item:last-child {
    margin-bottom: 0;
  }
  .p-philosophy-message__info-date {
    width: 100%;
    font-size: calc(32 / 828 * 100vw);
  }
  .p-philosophy-message__info-date--award {
    width: 100%;
  }
  .p-philosophy-message__info-date::before {
    width: calc(24 / 828 * 100vw);
    height: calc(24 / 828 * 100vw);
    margin-right: calc(15 / 828 * 100vw);
  }
  .p-philosophy-message__info-desc {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(54 / 32);
    padding-left: calc(39 / 828 * 100vw);
  }
  .p-philosophy-message__info-desc span {
    font-size: calc(28 / 828 * 100vw);
  }
  .p-philosophy-message__info-desc--project {
    padding-left: calc(39 / 828 * 100vw);
  }
  .p-philosophy-message__info-desc--project::before {
    top: calc(16 / 828 * 100vw);
    width: calc(24 / 828 * 100vw);
    height: calc(24 / 828 * 100vw);
  }
}

.p-localnav {
  position: fixed;
  right: 50px;
  top: 180px;
  z-index: 100;
}
.p-localnav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-localnav__link {
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  text-decoration: none;
  color: var(--black);
  opacity: 0.3;
  transition: opacity 0.2s ease;
  display: block;
}
.p-localnav__link:hover, .p-localnav__link.is-active {
  opacity: 1;
}
@media only screen and (max-width: 828px) {
  .p-localnav {
    display: flex;
    width: 100%;
    bottom: 0;
    top: auto;
    right: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-localnav.is-bottom {
    z-index: 0;
    opacity: 0;
  }
  .p-localnav__list {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 calc(50 / 828 * 100vw);
    gap: 0;
    background: var(--white);
  }
  .p-localnav__item {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .p-localnav__link {
    font-size: calc(28 / 828 * 100vw);
    line-height: 1;
    display: flex;
    align-items: stretch;
    padding: 1.5em 0;
    opacity: 1;
  }
  .p-localnav__link.is-active {
    font-weight: 700;
    color: var(--tan);
  }
}

.p-item-hero {
  position: relative;
}
.p-item-hero__text-content {
  position: relative;
  z-index: 2;
}
.p-item-hero__super-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-en);
  font-size: 18px;
  line-height: 1;
}
.p-item-hero__super-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50%;
}
.p-item-hero__title {
  margin-top: 18px;
  font-size: 68px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-item-hero__title.en {
  font-size: 90px;
  font-weight: 300;
}
.p-item-hero__catch-copy {
  margin: 40px 0 70px;
  font-size: 18px;
  line-height: 2;
}
.p-item-hero__visual {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1720px;
  z-index: 1;
  border-radius: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 828px) {
  .p-item-hero__super-title {
    gap: calc(15 / 828 * 100vw);
    font-size: calc(24 / 828 * 100vw);
  }
  .p-item-hero__super-title::before {
    width: calc(16 / 828 * 100vw);
    height: calc(16 / 828 * 100vw);
  }
  .p-item-hero__title {
    margin-top: calc(36 / 828 * 100vw);
    font-size: calc(68 / 828 * 100vw);
  }
  .p-item-hero__title.en {
    font-size: calc(90 / 828 * 100vw);
  }
  .p-item-hero__catch-copy {
    margin: calc(40 / 828 * 100vw) 0 calc(70 / 828 * 100vw);
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(48 / 28);
  }
  .p-item-hero__visual {
    width: calc(728 / 828 * 100vw);
    height: calc(500 / 828 * 100vw);
    border-radius: calc(25 / 828 * 100vw);
  }
  .p-item-hero__visual > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}

.p-item-about {
  padding-top: 100px;
}
.p-item-about__inner {
  display: flex;
  justify-content: space-between;
}
.p-item-about__sub-title {
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
  padding-top: 10px;
}
.p-item-about__content {
  max-width: 900px;
}
.p-item-about__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
}
@media only screen and (max-width: 828px) {
  .p-item-about {
    padding-top: calc(100 / 828 * 100vw);
  }
  .p-item-about__inner {
    display: block;
  }
  .p-item-about__sub-title {
    font-size: calc(26 / 828 * 100vw);
    padding-top: 0;
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-item-about__content {
    max-width: inherit;
  }
  .p-item-about__text {
    font-size: calc(32 / 828 * 100vw);
  }
}

.p-item-feature {
  padding-top: 180px;
}
.p-item-feature__inner > div:last-child {
  padding-bottom: 180px;
  border-bottom: 1px solid var(--beige);
}
.p-item-feature__header {
  border-bottom: 1px solid var(--beige);
  margin-bottom: 160px;
  padding-bottom: 80px;
}
.p-item-feature__lead {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 10px;
}
.p-item-feature__title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: calc(54 / 32);
  margin-bottom: 8px;
}
.p-item-feature__sub-title {
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
}
.p-item-feature__list {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-bottom: 180px;
}
.p-item-feature__item {
  display: grid;
  grid-template-columns: calc(480 / 1200 * 100%) 1fr;
  gap: calc(90 / 1200 * 100%);
  align-items: flex-start;
}
.p-item-feature__item--reverse {
  grid-template-columns: 1fr calc(480 / 1200 * 100%);
}
.p-item-feature__item-heading {
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: calc(48 / 26);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.p-item-feature__item-heading sub {
  font-size: 70%;
}
.p-item-feature__item-heading::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50%;
  margin-top: 16px;
}
.p-item-feature__item-text {
  font-size: 16px;
  line-height: calc(36 / 16);
}
.p-item-feature__item-text span {
  display: block;
  font-size: calc(14 / 16 * 100%);
}
.p-item-feature__item-media {
  max-width: 630px;
  position: relative;
}
.p-item-feature__item-media img {
  width: calc(100% - 30px);
  border-radius: 15px;
}
.p-item-feature__item-number {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(2.5em, 3.25em) rotate(90deg);
          transform: translate(2.5em, 3.25em) rotate(90deg);
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-item-feature__barrier-header {
  margin-bottom: 55px;
}
.p-item-feature__barrier-title {
  font-size: 26px;
  line-height: calc(36 / 26);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.p-item-feature__barrier-title::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50%;
  margin-top: 12px;
}
.p-item-feature__barrier-grid {
  display: grid;
  grid-template-columns: calc(570 / 1200 * 100%) calc(570 / 1200 * 100%);
  gap: calc(60 / 1200 * 100%);
}
.p-item-feature__barrier-item {
  background: var(--white);
  border-radius: 15px;
  padding: 32px 40px;
}
.p-item-feature__barrier-problem {
  font-size: 18px;
  line-height: calc(36 / 18);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--beige);
  margin-bottom: 24px;
}
.p-item-feature__barrier-solution-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-item-feature__barrier-solution-wrap::before {
  content: "";
  flex-shrink: 0;
  margin-top: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent var(--beige);
}
.p-item-feature__barrier-solution {
  font-size: 20px;
  line-height: calc(36 / 20);
}
@media only screen and (max-width: 828px) {
  .p-item-feature {
    padding-top: calc(180 / 828 * 100vw);
  }
  .p-item-feature__inner > div:last-child {
    padding-bottom: calc(180 / 828 * 100vw);
  }
  .p-item-feature__header {
    margin-bottom: calc(80 / 828 * 100vw);
    padding-bottom: calc(80 / 828 * 100vw);
  }
  .p-item-feature__lead {
    font-size: calc(36 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-item-feature__title {
    font-size: calc(54 / 828 * 100vw);
    letter-spacing: 0.05em;
    margin-bottom: calc(10 / 828 * 100vw);
  }
  .p-item-feature__sub-title {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-item-feature__list {
    gap: calc(150 / 828 * 100vw);
    margin-bottom: calc(180 / 828 * 100vw);
  }
  .p-item-feature__item {
    grid-template-columns: 1fr;
    gap: calc(40 / 828 * 100vw);
  }
  .p-item-feature__item .p-item-feature__item-media {
    grid-row: 1/2;
  }
  .p-item-feature__item .p-item-feature__item-body {
    grid-row: 2/3;
  }
  .p-item-feature__item-heading {
    font-size: calc(42 / 828 * 100vw);
    line-height: calc(64 / 42);
    margin-bottom: calc(32 / 828 * 100vw);
    gap: calc(24 / 828 * 100vw);
  }
  .p-item-feature__item-heading::before {
    width: calc(24 / 828 * 100vw);
    height: calc(24 / 828 * 100vw);
    margin-top: calc(20 / 828 * 100vw);
  }
  .p-item-feature__item-text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(64 / 32);
  }
  .p-item-feature__item-media {
    max-width: inherit;
  }
  .p-item-feature__item-media img {
    width: calc(100% - 1.5em);
    border-radius: calc(15 / 828 * 100vw);
  }
  .p-item-feature__item-number {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-item-feature__barrier-header {
    margin-bottom: calc(55 / 828 * 100vw);
  }
  .p-item-feature__barrier-title {
    font-size: calc(52 / 828 * 100vw);
    gap: calc(15 / 828 * 100vw);
  }
  .p-item-feature__barrier-title::before {
    width: calc(24 / 828 * 100vw);
    height: calc(24 / 828 * 100vw);
    margin-top: calc(24 / 828 * 100vw);
  }
  .p-item-feature__barrier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(32 / 828 * 100vw);
  }
  .p-item-feature__barrier-item {
    border-radius: calc(15 / 828 * 100vw);
    padding: calc(36 / 828 * 100vw) calc(48 / 828 * 100vw);
  }
  .p-item-feature__barrier-problem {
    font-size: calc(36 / 828 * 100vw);
    line-height: calc(62 / 36);
    letter-spacing: 0.05em;
    padding-bottom: calc(36 / 828 * 100vw);
    margin-bottom: calc(24 / 828 * 100vw);
  }
  .p-item-feature__barrier-solution-wrap {
    gap: calc(10 / 828 * 100vw);
  }
  .p-item-feature__barrier-solution-wrap::before {
    margin-top: calc(20 / 828 * 100vw);
    border-width: calc(16 / 828 * 100vw) 0 calc(16 / 828 * 100vw) calc(24 / 828 * 100vw);
  }
  .p-item-feature__barrier-solution {
    font-size: calc(32 / 828 * 100vw);
  }
}

.p-item-structure {
  padding-top: 180px;
}
.p-item-structure__inner > div:last-child {
  padding-bottom: 30px;
}
.p-item-structure__header {
  margin-bottom: 80px;
}
.p-item-structure__title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
}
.p-item-structure__sub-title {
  font-family: var(--font-en);
  font-size: 13px;
}
.p-item-structure__media {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 80px;
}
.p-item-structure__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: calc(120 / 1200 * 100%);
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 140px;
}
.p-item-structure__step {
  padding: 0;
  position: relative;
}
.p-item-structure__step:after {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--beige);
  margin-right: calc(-60 / 320 * 100%);
  position: absolute;
  top: 0;
  right: 0;
}
.p-item-structure__step:last-child:after {
  display: none;
}
.p-item-structure__step-number {
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
  margin-bottom: 14px;
}
.p-item-structure__step-title {
  font-size: 24px;
  line-height: 1.5;
  color: var(--tan);
  margin-bottom: 24px;
}
.p-item-structure__step-title:last-child {
  margin-bottom: 0;
}
.p-item-structure__step-text {
  font-size: 16px;
  line-height: calc(36 / 16);
}
.p-item-structure__movie > div {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
}
.p-item-structure__movie > div iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width: 828px) {
  .p-item-structure {
    padding-top: calc(180 / 828 * 100vw);
  }
  .p-item-structure__inner > div:last-child {
    padding-bottom: calc(30 / 828 * 100vw);
  }
  .p-item-structure__header {
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-item-structure__title {
    font-size: calc(54 / 828 * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-item-structure__sub-title {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-item-structure__media {
    border-radius: calc(15 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-item-structure__steps {
    grid-template-columns: 1fr;
    gap: calc(40 / 828 * 100vw);
    max-width: inherit;
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-item-structure__step {
    margin-bottom: calc(40 / 828 * 100vw);
    padding: 0;
    position: relative;
  }
  .p-item-structure__step:after {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: calc(40 / 828 * 100vw);
    margin-right: 0;
    position: relative;
  }
  .p-item-structure__step-number {
    font-size: calc(26 / 828 * 100vw);
    margin-bottom: calc(28 / 828 * 100vw);
  }
  .p-item-structure__step-title {
    font-size: calc(42 / 828 * 100vw);
    margin-bottom: calc(24 / 828 * 100vw);
  }
  .p-item-structure__step-text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(54 / 32);
  }
  .p-item-structure__movie > div {
    border-radius: calc(15 / 828 * 100vw);
  }
}

.p-item-casestudy {
  padding-top: 180px;
  margin-bottom: 180px;
}
.p-item-casestudy__bg {
  position: relative;
  background: rgba(224, 220, 208, 0.4);
  border-radius: 50px;
  padding: 0.1px 100px 100px;
}
.p-item-casestudy__quote-icon {
  width: 85px;
  margin-top: -30px;
  margin-bottom: 80px;
  pointer-events: none;
}
.p-item-casestudy__header {
  margin-bottom: 60px;
}
.p-item-casestudy__title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
}
.p-item-casestudy__sub-title {
  font-family: var(--font-en);
  font-size: 13px;
}
.p-item-casestudy__slider-wrap {
  position: relative;
}
.p-item-casestudy__slides {
  overflow: hidden;
}
.p-item-casestudy__slides .swiper-wrapper {
  display: flex;
  box-sizing: content-box;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.p-item-casestudy__slide {
  flex-shrink: 0;
  width: 100%;
}
.p-item-casestudy__prev, .p-item-casestudy__next {
  margin-top: calc(272 / 1000 * 100%);
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tan);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.p-item-casestudy__prev > svg, .p-item-casestudy__next > svg {
  width: 16px;
}
@media (any-hover: hover) {
  .p-item-casestudy__prev:hover, .p-item-casestudy__next:hover {
    background: var(--white);
    color: var(--tan);
  }
}
.p-item-casestudy__prev {
  left: -30px;
}
.p-item-casestudy__prev svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.p-item-casestudy__next {
  right: -30px;
}
.p-item-casestudy__media {
  margin-bottom: 48px;
  border-radius: 15px;
  overflow: hidden;
}
.p-item-casestudy__quote-text {
  font-size: 24px;
  line-height: 2;
  margin-bottom: 50px;
}
.p-item-casestudy__action {
  display: flex;
  justify-content: flex-end;
}
.p-item-casestudy__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--black);
  width: 275px;
  padding: 30px 23px 30px 35px;
  border-bottom: 1px solid var(--black);
}
.p-item-casestudy__link-text {
  font-size: 16px;
  line-height: 1;
}
@media only screen and (max-width: 828px) {
  .p-item-casestudy {
    padding-top: calc(180 / 828 * 100vw);
    margin-bottom: 0;
  }
  .p-item-casestudy__bg {
    border-radius: calc(25 / 828 * 100vw);
    padding: 0.1px calc(50 / 828 * 100vw) calc(100 / 828 * 100vw);
  }
  .p-item-casestudy__quote-icon {
    width: calc(85 / 828 * 100vw);
    margin-top: calc(-30 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-item-casestudy__header {
    margin-bottom: calc(60 / 828 * 100vw);
  }
  .p-item-casestudy__title {
    font-size: calc(54 / 828 * 100vw);
    letter-spacing: 0.05em;
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-item-casestudy__sub-title {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-item-casestudy__prev, .p-item-casestudy__next {
    margin-top: calc(160 / 828 * 100vw);
    width: calc(80 / 828 * 100vw);
    height: calc(80 / 828 * 100vw);
  }
  .p-item-casestudy__prev > svg, .p-item-casestudy__next > svg {
    width: 70%;
  }
  .p-item-casestudy__prev {
    left: calc(-40 / 828 * 100vw);
  }
  .p-item-casestudy__next {
    right: calc(-40 / 828 * 100vw);
  }
  .p-item-casestudy__media {
    margin-bottom: calc(48 / 828 * 100vw);
    border-radius: calc(15 / 828 * 100vw);
  }
  .p-item-casestudy__quote-text {
    font-size: calc(32 / 828 * 100vw);
    margin-bottom: calc(50 / 828 * 100vw);
  }
  .p-item-casestudy__company {
    font-size: calc(32 / 828 * 100vw);
    margin-bottom: calc(40 / 828 * 100vw);
  }
  .p-item-casestudy__action {
    display: flex;
    justify-content: flex-end;
  }
  .p-item-casestudy__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--black);
    width: calc(500 / 828 * 100vw);
    padding: calc(30 / 828 * 100vw) calc(23 / 828 * 100vw) calc(30 / 828 * 100vw) calc(35 / 828 * 100vw);
  }
  .p-item-casestudy__link-text {
    font-size: calc(32 / 828 * 100vw);
  }
}

.p-item-spec {
  margin-top: 180px;
  padding-top: 180px;
  padding-bottom: 180px;
  background: var(--white);
  border-radius: 50px;
}
.p-item-spec__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.p-item-spec__title {
  font-family: var(--font-ja);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  width: 6em;
}
.p-item-spec__title-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.p-item-spec__body {
  width: calc(930 / 1200 * 100%);
}
.p-item-spec__tabs {
  display: flex;
  margin-bottom: 40px;
}
.p-item-spec__tab {
  flex: 1;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 16px 10px;
  color: var(--gray-mid);
  transition: color 0.3s;
}
.p-item-spec__tab.is-active {
  color: var(--black);
}
@media (any-hover: hover) {
  .p-item-spec__tab:hover {
    color: var(--black);
  }
}
.p-item-spec__item {
  display: flex;
}
.p-item-spec__label {
  width: 270px;
  flex-shrink: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(26 / 16);
  padding: 32px 10px;
  border-bottom: 1px solid var(--beige);
}
.p-item-spec__text {
  flex: 1;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(26 / 16);
  padding: 32px 10px;
  border-bottom: 1px solid var(--tan);
}
.p-item-spec__text--image {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-item-spec__text img {
  width: inherit;
  max-width: 100%;
  margin-inline: auto;
}
.p-item-spec .p-item-spec__item:first-child .p-item-spec__label,
.p-item-spec .p-item-spec__item:first-child .p-item-spec__text {
  padding-top: 0;
}
.p-item-spec__list--table .p-item-spec__item {
  display: grid;
  grid-template-columns: 35% 22% 43%;
}
.p-item-spec__list--table .p-item-spec__item--head .p-item-spec__label:not(:first-child) {
  border-bottom-color: var(--tan);
}
.p-item-spec__list--table .p-item-spec__label {
  width: auto;
}
.p-item-spec__list--table .p-item-spec__item:first-child .p-item-spec__label,
.p-item-spec__list--table .p-item-spec__item:first-child .p-item-spec__text {
  padding-top: 32px;
}
.p-item-spec__notes {
  margin-top: 25px;
}
.p-item-spec__notes-contact {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(26 / 16);
  margin-bottom: 20px;
}
.p-item-spec__notes-text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: calc(26 / 14);
}
@media only screen and (max-width: 828px) {
  .p-item-spec {
    margin-top: calc(180 / 828 * 100vw);
    padding-top: calc(180 / 828 * 100vw);
    padding-bottom: calc(180 / 828 * 100vw);
    border-radius: calc(50 / 828 * 100vw);
  }
  .p-item-spec__inner {
    flex-direction: column;
  }
  .p-item-spec__title-area {
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-item-spec__title {
    font-size: calc(54 / 828 * 100vw);
    line-height: 1;
    margin-bottom: calc(20 / 828 * 100vw);
    width: 100%;
  }
  .p-item-spec__title-en {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-item-spec__body {
    width: 100%;
  }
  .p-item-spec__tabs {
    margin-bottom: calc(40 / 828 * 100vw);
  }
  .p-item-spec__tab {
    font-size: calc(30 / 828 * 100vw);
    letter-spacing: 0.05em;
    padding: calc(32 / 828 * 100vw) 0;
  }
  .p-item-spec__item {
    flex-direction: column;
    padding: calc(32 / 828 * 100vw) 0;
  }
  .p-item-spec__label {
    font-size: calc(32 / 828 * 100vw);
    padding: 0 0 8px;
    border-bottom: 1px solid var(--beige);
    border-bottom: none;
  }
  .p-item-spec__label:after {
    content: "：";
  }
  .p-item-spec__text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(26 / 16);
    padding: 0 1em calc(32 / 828 * 100vw);
  }
  .p-item-spec__text--image {
    gap: calc(32 / 828 * 100vw);
  }
  .p-item-spec .p-item-spec__item:first-child .p-item-spec__label,
  .p-item-spec .p-item-spec__item:first-child .p-item-spec__text {
    padding-top: 0;
  }
  .p-item-spec__list--table .p-item-spec__item {
    display: grid;
    grid-template-columns: 35% 22% 43%;
    padding: 0;
  }
  .p-item-spec__list--table .p-item-spec__label {
    width: auto;
    padding: calc(32 / 828 * 100vw) calc(10 / 828 * 100vw);
    border-bottom: 1px solid var(--beige);
  }
  .p-item-spec__list--table .p-item-spec__label:after {
    content: none;
  }
  .p-item-spec__list--table .p-item-spec__text {
    padding: calc(32 / 828 * 100vw) calc(10 / 828 * 100vw);
  }
  .p-item-spec__list--table .p-item-spec__item:first-child .p-item-spec__label,
  .p-item-spec__list--table .p-item-spec__item:first-child .p-item-spec__text {
    padding-top: calc(32 / 828 * 100vw);
  }
  .p-item-spec__notes {
    margin-top: calc(50 / 828 * 100vw);
  }
  .p-item-spec__notes-contact {
    font-size: calc(32 / 828 * 100vw);
    margin-bottom: calc(40 / 828 * 100vw);
  }
  .p-item-spec__notes-text {
    font-size: calc(28 / 828 * 100vw);
  }
}

.p-item-faq {
  padding-top: 180px;
  padding-bottom: 230px;
}
.p-item-faq__header {
  margin-bottom: 40px;
}
.p-item-faq__title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
}
.p-item-faq__sub-title {
  font-family: var(--font-en);
  font-size: 13px;
}
.p-item-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-item-faq__item {
  background: var(--white);
  border-radius: 13px;
}
.p-item-faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: var(--black);
  padding: 30px 35px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.p-item-faq__q-label {
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  width: 1em;
}
.p-item-faq__q-text {
  font-size: 16px;
  flex: 1;
}
.p-item-faq__toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-item-faq__toggle::before, .p-item-faq__toggle::after {
  content: "";
  display: block;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
}
.p-item-faq__toggle::before {
  width: 12px;
  height: 1.5px;
  transition: opacity 0.2s, -webkit-transform 0.3s ease-out;
  transition: opacity 0.2s, transform 0.3s ease-out;
  transition: opacity 0.2s, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.p-item-faq__toggle::after {
  width: 1.5px;
  height: 12px;
  transition: opacity 0.2s, -webkit-transform 0.3s ease-out;
  transition: opacity 0.2s, transform 0.3s ease-out;
  transition: opacity 0.2s, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.p-item-faq__item.is-open .p-item-faq__toggle {
  background: var(--tan);
}
.p-item-faq__item.is-open .p-item-faq__toggle::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-item-faq__item.is-open .p-item-faq__toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-item-faq__answer {
  margin: 0 35px;
}
.p-item-faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid var(--beige);
  transition: border-color 0.35s ease-out;
}
.p-item-faq__a-label {
  font-family: var(--font-en);
  font-size: 20px;
  line-height: calc(32 / 20);
  color: var(--tan);
  flex-shrink: 0;
  width: 1em;
}
.p-item-faq__a-text {
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 2;
  flex: 1;
}
.p-item-faq__a-text a {
  color: var(--tan);
  text-decoration: underline;
}
@media only screen and (max-width: 828px) {
  .p-item-faq {
    padding-top: calc(180 / 828 * 100vw);
    padding-bottom: calc(180 / 828 * 100vw);
  }
  .p-item-faq__header {
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-item-faq__title {
    font-size: calc(54 / 828 * 100vw);
    letter-spacing: 0.05em;
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-item-faq__sub-title {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-item-faq__list {
    gap: calc(20 / 828 * 100vw);
  }
  .p-item-faq__item {
    border-radius: calc(15 / 828 * 100vw);
  }
  .p-item-faq__question {
    gap: calc(20 / 828 * 100vw);
    padding: calc(70 / 828 * 100vw) calc(35 / 828 * 100vw);
  }
  .p-item-faq__q-label {
    font-size: calc(40 / 828 * 100vw);
  }
  .p-item-faq__q-text {
    font-size: calc(32 / 828 * 100vw);
  }
  .p-item-faq__toggle {
    width: calc(60 / 828 * 100vw);
    height: calc(60 / 828 * 100vw);
  }
  .p-item-faq__toggle::before {
    width: calc(24 / 828 * 100vw);
    height: calc(3 / 828 * 100vw);
  }
  .p-item-faq__toggle::after {
    width: calc(3 / 828 * 100vw);
    height: calc(24 / 828 * 100vw);
  }
  .p-item-faq__answer {
    margin: 0 calc(35 / 828 * 100vw);
  }
  .p-item-faq__answer-inner {
    gap: calc(20 / 828 * 100vw);
  }
  .p-item-faq__a-label {
    font-size: calc(40 / 828 * 100vw);
  }
  .p-item-faq__a-text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(54 / 32);
  }
}

.p-casestudy-hero {
  position: relative;
  overflow: hidden;
}
.p-casestudy-hero__title-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 140px;
}
.p-casestudy-hero__en-title {
  display: block;
  font-family: var(--font-en);
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--black);
}
.p-casestudy-hero__ja-title {
  font-size: 18px;
  line-height: 1;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-casestudy-hero__ja-title:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50vw;
}
@media only screen and (max-width: 828px) {
  .p-casestudy-hero__title-area {
    gap: calc(20 / 828 * 100vw);
    padding-bottom: calc(140 / 828 * 100vw);
  }
  .p-casestudy-hero__en-title {
    font-size: calc(90 / 828 * 100vw);
  }
  .p-casestudy-hero__ja-title {
    font-size: calc(24 / 828 * 100vw);
    gap: calc(15 / 828 * 100vw);
  }
  .p-casestudy-hero__ja-title:before {
    width: calc(16 / 828 * 100vw);
    height: calc(16 / 828 * 100vw);
  }
}

.p-casestudy-article__block {
  border-top: 1px solid var(--tan);
  margin-bottom: 140px;
  padding-top: 140px;
}
.p-casestudy-article__block:last-child {
  margin-bottom: 230px;
}
.p-casestudy-article__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.p-casestudy-article__title {
  font-size: 32px;
  line-height: calc(54 / 32);
}
.p-casestudy-article__icons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.p-casestudy-article__main-photo {
  border-radius: 50px;
  overflow: hidden;
  margin-top: 80px;
  margin-bottom: 120px;
}
.p-casestudy-article__movie {
  border-radius: 15px;
  overflow: hidden;
}
.p-casestudy-article__movie > div {
  padding-top: 56.25%;
  position: relative;
}
.p-casestudy-article__movie > div iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
.p-casestudy-article__text-block {
  margin-top: 110px;
}
.p-casestudy-article__text-label {
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.p-casestudy-article__text-label::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50%;
  flex-shrink: 0;
}
.p-casestudy-article__text-body {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
}
.p-casestudy-article__text-list {
  list-style: disc;
  padding-left: 24px;
}
.p-casestudy-article__text-list li {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
}
.p-casestudy-article__related {
  background: var(--white);
  border-radius: 20px;
  margin-top: 110px;
  padding: 60px;
}
.p-casestudy-article__related-title {
  font-size: 26px;
  border-bottom: 1px solid var(--tan);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.p-casestudy-article__related-list {
  list-style: disc;
  padding-left: 24px;
}
.p-casestudy-article__related-item {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
}
.p-casestudy-article__related-item--linked {
  margin-bottom: 30px;
}
.p-casestudy-article__related-item--linked:last-child {
  margin-bottom: 0;
}
.p-casestudy-article__related-link {
  display: block;
  color: var(--tan);
  text-decoration: underline;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
}
@media only screen and (max-width: 828px) {
  .p-casestudy-article__block {
    margin-bottom: calc(140 / 828 * 100vw);
    padding-top: calc(140 / 828 * 100vw);
  }
  .p-casestudy-article__block:last-child {
    margin-bottom: calc(230 / 828 * 100vw);
  }
  .p-casestudy-article__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(32 / 828 * 100vw);
    margin-bottom: 0;
  }
  .p-casestudy-article__title {
    grid-row: 1/2;
    font-size: calc(42 / 828 * 100vw);
  }
  .p-casestudy-article__icons {
    grid-row: 2/3;
    justify-content: flex-end;
    gap: calc(24 / 828 * 100vw);
  }
  .p-casestudy-article__icon {
    width: calc(80 / 828 * 100vw);
  }
  .p-casestudy-article__main-photo {
    border-radius: calc(15 / 828 * 100vw);
    margin-top: calc(80 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-casestudy-article__movie {
    border-radius: calc(15 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-casestudy-article__text-block {
    margin-top: calc(80 / 828 * 100vw);
  }
  .p-casestudy-article__text-label {
    font-size: calc(36 / 828 * 100vw);
    gap: calc(15 / 828 * 100vw);
    margin-bottom: calc(40 / 828 * 100vw);
  }
  .p-casestudy-article__text-label::before {
    width: calc(18 / 828 * 100vw);
    height: calc(18 / 828 * 100vw);
  }
  .p-casestudy-article__text-body {
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(56 / 28);
  }
  .p-casestudy-article__text-list li {
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(56 / 28);
  }
  .p-casestudy-article__related {
    margin-top: calc(80 / 828 * 100vw);
    padding: calc(60 / 828 * 100vw);
  }
  .p-casestudy-article__related-title {
    font-size: calc(36 / 828 * 100vw);
    padding-bottom: calc(24 / 828 * 100vw);
    margin-bottom: calc(24 / 828 * 100vw);
  }
  .p-casestudy-article__related-item {
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(56 / 28);
  }
  .p-casestudy-article__related-item--linked {
    margin-bottom: calc(40 / 828 * 100vw);
  }
  .p-casestudy-article__related-link {
    font-size: calc(24 / 828 * 100vw);
    line-height: calc(48 / 24);
    word-break: break-all;
  }
}

.p-casestudy-voice {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 80px;
  position: relative;
  margin-top: 60px;
}
.p-casestudy-voice__inner {
  position: relative;
  z-index: 1;
}
.p-casestudy-voice__label-wrap {
  margin-top: 24px;
  margin-bottom: 24px;
}
.p-casestudy-voice__label {
  font-size: 20px;
  line-height: 1;
  color: var(--tan);
  margin-bottom: 55px;
}
.p-casestudy-voice__title {
  font-size: 26px;
  line-height: calc(36 / 26);
  margin-bottom: 25px;
}
.p-casestudy-voice__comment {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
}
.p-casestudy-voice__person {
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  margin-top: 16px;
}
.p-casestudy-voice__icon {
  position: absolute;
  top: -20px;
  left: 80px;
  width: 40px;
}
.p-casestudy-voice__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 828px) {
  .p-casestudy-voice {
    border-radius: calc(15 / 828 * 100vw);
    padding: calc(80 / 828 * 100vw);
  }
  .p-casestudy-voice__label-wrap {
    margin-top: calc(24 / 828 * 100vw);
    margin-bottom: calc(24 / 828 * 100vw);
  }
  .p-casestudy-voice__label {
    font-size: calc(40 / 828 * 100vw);
    margin-bottom: calc(60 / 828 * 100vw);
  }
  .p-casestudy-voice__title {
    font-size: calc(52 / 828 * 100vw);
    margin-bottom: calc(60 / 828 * 100vw);
  }
  .p-casestudy-voice__comment {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(54 / 32);
  }
  .p-casestudy-voice__person {
    font-size: calc(40 / 828 * 100vw);
    margin-top: calc(60 / 828 * 100vw);
  }
  .p-casestudy-voice__icon {
    top: calc(-40 / 828 * 100vw);
    left: calc(80 / 828 * 100vw);
    width: calc(80 / 828 * 100vw);
  }
}

.p-company-hero__title-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 140px;
}
.p-company-hero__en-title {
  font-family: var(--font-en);
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--black);
}
.p-company-hero__ja-title {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-company-hero__ja-title:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50vw;
}
.p-company-hero__message {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: flex-start;
  padding-bottom: 180px;
  position: relative;
}
.p-company-hero__message-title-wrap {
  grid-column: 2/3;
  grid-row: 1/2;
  border-bottom: 1px solid var(--beige);
  margin-bottom: 100px;
  padding-bottom: 40px;
}
.p-company-hero__message-title {
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.p-company-hero__message-title-en {
  font-family: var(--font-en);
  font-size: 13px;
}
.p-company-hero__message-body {
  grid-column: 2/3;
  grid-row: 2/3;
}
.p-company-hero__message-person {
  font-size: 32px;
  margin-bottom: 50px;
}
.p-company-hero__message-person span {
  display: block;
  font-family: var(--font-en);
  font-size: 18px;
  margin-bottom: 10px;
}
.p-company-hero__message-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(36 / 16);
  margin-bottom: 2em;
}
.p-company-hero__message-text:last-child {
  margin-bottom: 0;
}
.p-company-hero__media {
  grid-column: 1/2;
  grid-row: 1/3;
  max-width: 560px;
  margin-right: calc(120 / 1200 * 100%);
  position: sticky;
  top: 120px;
}
.p-company-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 560/760;
  border-radius: 70px;
  position: relative;
  z-index: 1;
}
.p-company-hero__media:after {
  content: "";
  display: block;
  width: calc(600 / 560 * 100%);
  margin-top: calc(-40 / 560 * 100%);
  margin-left: calc(-20 / 560 * 100%);
  padding-top: calc(840 / 560 * 100%);
  background: url("../img/company/printing-message.svg") 0 0/100% auto no-repeat;
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media only screen and (max-width: 828px) {
  .p-company-hero__title-area {
    gap: calc(20 / 828 * 100vw);
    margin-bottom: calc(180 / 828 * 100vw);
  }
  .p-company-hero__en-title {
    font-size: calc(90 / 828 * 100vw);
  }
  .p-company-hero__ja-title {
    font-size: calc(24 / 828 * 100vw);
    gap: calc(15 / 828 * 100vw);
  }
  .p-company-hero__ja-title:before {
    width: calc(16 / 828 * 100vw);
    height: calc(16 / 828 * 100vw);
  }
  .p-company-hero__message {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--tan);
    padding-bottom: calc(180 / 828 * 100vw);
  }
  .p-company-hero__message-title-wrap {
    grid-column: 1/2;
    grid-row: 1/2;
    border-bottom: none;
    margin-bottom: calc(80 / 828 * 100vw);
    padding-bottom: 0;
  }
  .p-company-hero__message-title {
    font-size: calc(56 / 828 * 100vw);
    letter-spacing: 0.05em;
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-company-hero__message-title-en {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-company-hero__message-body {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .p-company-hero__message-person {
    font-size: calc(54 / 828 * 100vw);
    margin-bottom: calc(60 / 828 * 100vw);
  }
  .p-company-hero__message-person span {
    font-size: calc(36 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-company-hero__message-text {
    font-size: calc(32 / 828 * 100vw);
  }
  .p-company-hero__media {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-right: 0;
    margin-bottom: calc(80 / 828 * 100vw);
    position: relative;
    top: 0;
  }
  .p-company-hero__media img {
    border-radius: calc(70 / 828 * 100vw);
  }
}

.p-company-director__title-area {
  margin-bottom: 60px;
}
.p-company-director__title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.p-company-director__title-en {
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
}
.p-company-director__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  padding-bottom: 170px;
  border-bottom: 1px solid var(--tan);
}
.p-company-director__item {
  width: 350px;
}
.p-company-director__media {
  width: 100%;
  aspect-ratio: 350/280;
  margin-bottom: 50px;
  position: relative;
}
.p-company-director__media img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.p-company-director__media:after {
  content: "";
  display: block;
  width: calc(390 / 350 * 100%);
  margin-top: calc(-40 / 350 * 100%);
  margin-left: calc(-20 / 350 * 100%);
  padding-top: calc(362 / 350 * 100%);
  background: url("../img/company/printing.svg") 0 0/100% auto no-repeat;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-company-director__role {
  font-size: 16px;
  margin-bottom: 12px;
}
.p-company-director__name {
  font-size: 26px;
  margin-bottom: 40px;
}
.p-company-director__career-title {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.p-company-director__career-title:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50vw;
}
.p-company-director__career-text {
  font-size: 16px;
  line-height: calc(36 / 16);
}
@media only screen and (max-width: 828px) {
  .p-company-director {
    padding-top: calc(180 / 828 * 100vw);
  }
  .p-company-director__title-area {
    margin-bottom: calc(140 / 828 * 100vw);
  }
  .p-company-director__title {
    font-size: calc(56 / 828 * 100vw);
    line-height: 1;
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-company-director__title-en {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-company-director__list {
    flex-direction: column;
    gap: calc(140 / 828 * 100vw);
    padding-bottom: calc(180 / 828 * 100vw);
  }
  .p-company-director__item {
    width: 100%;
  }
  .p-company-director__media {
    width: 100%;
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-company-director__media img {
    border-radius: calc(30 / 828 * 100vw);
  }
  .p-company-director__role {
    font-size: calc(32 / 828 * 100vw);
    margin-bottom: calc(32 / 828 * 100vw);
  }
  .p-company-director__name {
    font-size: calc(54 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-company-director__career-title {
    font-size: calc(36 / 828 * 100vw);
    gap: calc(15 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-company-director__career-title:before {
    width: calc(24 / 828 * 100vw);
    height: calc(24 / 828 * 100vw);
  }
  .p-company-director__career-text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(64 / 32);
  }
}

.p-company-overview {
  padding-top: 160px;
  padding-bottom: 180px;
}
.p-company-overview__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.p-company-overview__title {
  font-size: 32px;
  margin-bottom: 10px;
  width: 5em;
}
.p-company-overview__title-en {
  font-family: var(--font-en);
  font-size: 13px;
}
.p-company-overview__list {
  width: calc(930 / 1200 * 100%);
}
.p-company-overview__item {
  display: flex;
}
.p-company-overview__label {
  width: 200px;
  font-size: 16px;
  line-height: 2;
  padding: 32px 10px;
  border-bottom: 1px solid var(--beige);
}
.p-company-overview__text {
  flex: 1;
  font-size: 16px;
  line-height: 2;
  padding: 32px 10px;
  border-bottom: 1px solid var(--tan);
}
.p-company-overview .p-company-overview__item:first-child .p-company-overview__label,
.p-company-overview .p-company-overview__item:first-child .p-company-overview__text {
  padding-top: 0;
}
.p-company-overview .p-company-overview__item:last-child .p-company-overview__label,
.p-company-overview .p-company-overview__item:last-child .p-company-overview__text {
  border-bottom: none;
  padding-bottom: 0;
}
@media only screen and (max-width: 828px) {
  .p-company-overview {
    padding-top: calc(180 / 828 * 100vw);
    padding-bottom: calc(180 / 828 * 100vw);
  }
  .p-company-overview__inner {
    flex-direction: column;
  }
  .p-company-overview__title-area {
    flex-direction: column;
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-company-overview__title {
    font-size: calc(56 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
    width: 100%;
  }
  .p-company-overview__title-en {
    font-size: calc(20 / 828 * 100vw);
  }
  .p-company-overview__list {
    width: 100%;
  }
  .p-company-overview__item {
    flex-direction: column;
  }
  .p-company-overview__label {
    width: 100%;
    font-size: calc(32 / 828 * 100vw);
    line-height: 2;
    padding: calc(32 / 828 * 100vw) calc(20 / 828 * 100vw) 0;
    border-bottom: none;
  }
  .p-company-overview__label:after {
    content: "：";
  }
  .p-company-overview__text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(54 / 32);
    padding: 0 calc(20 / 828 * 100vw) calc(32 / 828 * 100vw);
  }
}

.p-company-award {
  border-radius: 50px 50px 0 0;
  padding-top: 180px;
  padding-bottom: 230px;
  position: relative;
  background: var(--white);
}
.p-company-award__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.p-company-award__title {
  font-size: 32px;
  margin-bottom: 10px;
  min-width: 5em;
}
.p-company-award__title-en {
  font-family: var(--font-en);
  font-size: 13px;
}
.p-company-award__list {
  width: calc(930 / 1200 * 100%);
}
.p-company-award__item {
  border-bottom: 1px solid var(--beige);
  padding: 32px 0;
}
.p-company-award__text {
  font-size: 16px;
  line-height: 2;
}
.p-company-award .p-company-award__item:first-child {
  padding-top: 0;
}
.p-company-award .p-company-award__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media only screen and (max-width: 828px) {
  .p-company-award {
    border-radius: calc(50 / 828 * 100vw) calc(50 / 828 * 100vw) 0 0;
    padding-top: calc(180 / 828 * 100vw);
    padding-bottom: calc(230 / 828 * 100vw);
  }
  .p-company-award__inner {
    flex-direction: column;
  }
  .p-company-award__title-area {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .p-company-award__title {
    font-size: calc(56 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
    min-width: 100%;
  }
  .p-company-award__title-en {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-company-award__list {
    width: 100%;
  }
  .p-company-award__item {
    padding: calc(32 / 828 * 100vw) 0;
  }
  .p-company-award__text {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(54 / 32);
  }
}

.p-news-hero {
  position: relative;
  overflow: hidden;
}
.p-news-hero__title-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 140px;
}
.p-news-hero__en-title {
  display: block;
  font-family: var(--font-en);
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--black);
}
.p-news-hero__ja-title-wrap {
  align-items: center;
}
.p-news-hero__ja-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-news-hero__ja-title:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50vw;
}
@media only screen and (max-width: 828px) {
  .p-news-hero__title-area {
    gap: calc(20 / 828 * 100vw);
    margin-bottom: calc(140 / 828 * 100vw);
  }
  .p-news-hero__en-title {
    font-size: calc(90 / 828 * 100vw);
    letter-spacing: 0.05em;
  }
  .p-news-hero__ja-title {
    font-size: calc(24 / 828 * 100vw);
    gap: calc(15 / 828 * 100vw);
  }
  .p-news-hero__ja-title:before {
    width: calc(16 / 828 * 100vw);
    height: calc(16 / 828 * 100vw);
  }
}

.p-news-list {
  padding-bottom: 230px;
}
.p-news-list__filter {
  display: flex;
  justify-content: center;
  gap: 0;
}
.p-news-list__filter-btn {
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  padding: 0 25px 25px;
  width: calc(100% / 3);
  margin-bottom: -2px;
  --tab-line-color: rgba(0 0 0 / .2);
  --tab-active-line-color: var(--black);
  color: rgba(0, 0, 0, 0.5);
}
.p-news-list__filter-btn.is-active {
  color: var(--black);
}
@media (any-hover: hover) {
  .p-news-list__filter-btn:hover {
    color: var(--black);
  }
}
.p-news-list__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-news-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.p-news-list__item-link {
  display: flex;
  align-items: center;
  padding: 52px 0;
  text-decoration: none;
  color: var(--black);
}
.p-news-list__item-link .icon-arrow {
  margin-right: 20px;
}
@media (any-hover: hover) {
  .p-news-list__item-link:hover {
    background: var(--white);
  }
}
.p-news-list__item-date {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 62px;
  margin-left: 20px;
  margin-right: 38px;
}
.p-news-list__item-date:before {
  content: "-";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: 0.25em 0;
}
.p-news-list__item-date:first-child:before {
  display: none;
}
.p-news-list__item-year {
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 6px;
  padding-bottom: 6px;
}
.p-news-list__item-day {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  color: var(--black);
}
.p-news-list__item-title {
  flex: 1;
  font-size: 14px;
  line-height: calc(32 / 14);
  transition: opacity 0.3s;
  padding-right: 1em;
}
@media only screen and (max-width: 828px) {
  .p-news-list {
    padding-bottom: calc(230 / 828 * 100vw);
  }
  .p-news-list__filter {
    margin-bottom: 0;
  }
  .p-news-list__filter-btn {
    font-size: calc(28 / 828 * 100vw);
    padding: calc(50 / 828 * 100vw) 0;
  }
  .p-news-list__item-link {
    gap: calc(24 / 828 * 100vw);
    padding: calc(54 / 828 * 100vw) 0;
  }
  .p-news-list__item-link .icon-arrow {
    margin-right: calc(10 / 828 * 100vw);
  }
  .p-news-list__item-date {
    flex-shrink: 0;
    min-width: inherit;
    margin-left: calc(10 / 828 * 100vw);
    margin-right: calc(10 / 828 * 100vw);
  }
  .p-news-list__item-year {
    font-size: calc(28 / 828 * 100vw);
    margin-bottom: calc(12 / 828 * 100vw);
    padding-bottom: calc(12 / 828 * 100vw);
  }
  .p-news-list__item-day {
    font-size: calc(32 / 828 * 100vw);
  }
  .p-news-list__item-title {
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(42 / 28);
    padding-right: 0;
  }
}

.p-news-detail {
  margin-bottom: 230px;
}
.p-news-detail__breadcrumb {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 70px;
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1;
}
.p-news-detail__breadcrumb .circle {
  display: block;
}
.p-news-detail__breadcrumb .circle:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: var(--beige);
  border-radius: 50vw;
  margin-top: 4px;
}
.p-news-detail__breadcrumb a {
  display: block;
  text-decoration: none;
  color: var(--black);
  font-weight: 300;
}
@media (any-hover: hover) {
  .p-news-detail__breadcrumb a:hover {
    text-decoration: underline;
  }
}
.p-news-detail__breadcrumb .arrow {
  display: block;
}
.p-news-detail__breadcrumb .arrow:after {
  content: "";
  display: block;
  background: url("../../assets/img/news/icon-arrow.svg") 0 0/100% auto no-repeat;
  width: 9px;
  height: 16px;
  margin-top: 2px;
}
.p-news-detail__breadcrumb p {
  font-size: 16px;
  line-height: calc(20 / 16);
}
.p-news-detail__header {
  border-bottom: 1px solid var(--tan);
  margin-bottom: 90px;
  padding-bottom: 72px;
}
.p-news-detail__date {
  display: block;
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 12px;
}
.p-news-detail__title {
  font-size: 32px;
  line-height: 1.5;
}
.p-news-detail__body {
  font-size: 16px;
  line-height: 2.25;
  margin-bottom: 100px;
}
.p-news-detail__body h1 {
  font-size: 2em;
  line-height: 1.4;
  margin: 1em 0;
}
.p-news-detail__body h2 {
  font-size: 1.5em;
  line-height: 1.5;
  margin: 1em 0;
}
.p-news-detail__body h3, .p-news-detail__body h4, .p-news-detail__body h5, .p-news-detail__body h6 {
  font-size: 1.2em;
  line-height: 1.6;
  margin: 1em 0;
}
.p-news-detail__body ul {
  list-style: inherit;
  padding-left: 2em;
}
.p-news-detail__body ol {
  list-style: decimal;
  padding-left: 2em;
}
.p-news-detail__body a {
  color: var(--black);
  text-decoration: none;
}
.p-news-detail__body p a, .p-news-detail__body ul a, .p-news-detail__body ol a {
  text-decoration: underline;
}
.p-news-detail__body p a:hover, .p-news-detail__body ul a:hover, .p-news-detail__body ol a:hover {
  text-decoration: none;
}
.p-news-detail__body img {
  width: inherit;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-news-detail__body p, .p-news-detail__body ul, .p-news-detail__body ol, .p-news-detail__body div, .p-news-detail__body img {
  margin-bottom: 1em;
}
.p-news-detail__event-info {
  display: grid;
  grid-template-columns: 270px auto;
  align-items: flex-start;
  width: 100%;
}
.p-news-detail__section-title {
  display: flex;
  flex-direction: column;
}
.p-news-detail__section-title span:first-child {
  font-size: 32px;
  line-height: 1.5;
}
.p-news-detail__section-title span:last-child {
  font-family: var(--font-en);
  font-size: 13px;
}
.p-news-detail__event-item {
  display: flex;
  font-size: 16px;
  line-height: 2;
  margin-top: 8px;
}
.p-news-detail__event-item dt {
  width: 200px;
  border-bottom: 1px solid var(--beige);
  margin-bottom: 32px;
  padding: 0 10px 32px 10px;
}
.p-news-detail__event-item dd {
  flex: 1;
  border-bottom: 1px solid var(--tan);
  margin-bottom: 32px;
  padding: 0 10px 32px 10px;
}
.p-news-detail__event-item dd a {
  color: var(--tan);
  text-decoration: underline;
}
.p-news-detail__footer {
  margin-top: 50px;
}
.p-news-detail__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  width: 275px;
  padding: 30px 23px 30px 30px;
  border-bottom: 1px solid #000;
}
.p-news-detail__back-btn span {
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 828px) {
  .p-news-detail {
    margin-bottom: calc(230 / 828 * 100vw);
  }
  .p-news-detail__breadcrumb {
    gap: calc(20 / 828 * 100vw);
    margin-bottom: calc(100 / 828 * 100vw);
    font-size: calc(30 / 828 * 100vw);
  }
  .p-news-detail__breadcrumb .circle:before {
    width: calc(16 / 828 * 100vw);
    height: calc(16 / 828 * 100vw);
    margin-top: calc(8 / 828 * 100vw);
  }
  .p-news-detail__breadcrumb .arrow:after {
    width: calc(9 / 828 * 100vw);
    height: calc(16 / 828 * 100vw);
    margin-top: calc(6 / 828 * 100vw);
  }
  .p-news-detail__breadcrumb p {
    font-size: calc(28 / 828 * 100vw);
    line-height: calc(32 / 28);
  }
  .p-news-detail__header {
    margin-bottom: calc(90 / 828 * 100vw);
    padding-bottom: calc(72 / 828 * 100vw);
  }
  .p-news-detail__date {
    font-size: calc(32 / 828 * 100vw);
    margin-bottom: calc(20 / 828 * 100vw);
  }
  .p-news-detail__title {
    font-size: calc(64 / 828 * 100vw);
    letter-spacing: 0.05em;
  }
  .p-news-detail__body {
    font-size: calc(32 / 828 * 100vw);
    line-height: calc(64 / 32);
    margin-bottom: calc(140 / 828 * 100vw);
  }
  .p-news-detail__event-info {
    grid-template-columns: 1fr;
    gap: calc(80 / 828 * 100vw);
  }
  .p-news-detail__section-title {
    align-items: flex-start;
    gap: calc(20 / 828 * 100vw);
  }
  .p-news-detail__section-title span:first-child {
    font-size: calc(64 / 828 * 100vw);
  }
  .p-news-detail__section-title span:last-child {
    font-size: calc(26 / 828 * 100vw);
  }
  .p-news-detail__event-item {
    flex-direction: column;
    font-size: calc(32 / 828 * 100vw);
    line-height: 2;
    margin-top: 0;
  }
  .p-news-detail__event-item dt {
    margin-bottom: 0;
    padding: 0 calc(20 / 828 * 100vw);
    border-bottom: none;
  }
  .p-news-detail__event-item dt:after {
    content: "：";
  }
  .p-news-detail__event-item dd {
    margin-bottom: calc(32 / 828 * 100vw);
    padding: 0 calc(20 / 828 * 100vw) calc(32 / 828 * 100vw) calc(20 / 828 * 100vw);
  }
  .p-news-detail__footer {
    margin-top: calc(100 / 828 * 100vw);
  }
  .p-news-detail__back-btn {
    display: flex;
    margin-inline: auto;
    gap: calc(24 / 828 * 100vw);
    width: calc(550 / 828 * 100vw);
    padding: calc(30 / 828 * 100vw) calc(23 / 828 * 100vw) calc(30 / 828 * 100vw) calc(30 / 828 * 100vw);
  }
  .p-news-detail__back-btn span {
    font-size: calc(36 / 828 * 100vw);
  }
}
/*# sourceMappingURL=style.css.map */
