@charset "UTF-8";

/* --- Variables & Reset --- */
:root {
  --color-primary: #1B4C71;
  --color-primary-d: rgb(40 53 61);

  --color-accent: #8e8a34;
  --color-text-main: #333;
  --color-gray: #D3DADF;
  --color-white: #fff;
  --color-light-beige: #f9f7f0;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-serif: 'Shippori Mincho', serif;
  --scroll-item-width-pc: 300px;
  --scroll-item-width-sp: 150px;
}

html {
  overflow-x: hidden;
  background-color: var(--color-white);
  font-size: clamp(
    14px,
    calc(14px + 2 * (100vw - 1000px) / 620),
    16px
  );
}

body {
  line-height: 1.8;
  color: var(--color-text-main);
  font-family: var(--font-base);
  overflow-x: hidden;
  padding-top: 10.25rem;
}

h1,
h2,
h3 {
  /*font-weight: 500;*/
}

a {
  color: inherit;
  text-decoration: none;
}

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

input {
  appearance: auto;
  -webkit-appearance: auto;
}

.l-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner--l {
  width: 83.33%;
  /*max-width: 1600px;*/
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

.l-inner--m {
  width: 100%;
  /*max-width: 1344px;*/
  max-width: 1404px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

.c-link {
  text-decoration: underline;
}
.c-link:hover {
  text-decoration: none;
}
.c-link2 {
  text-decoration: none;
}
.c-link2:hover {
  text-decoration: underline;
}

.c-btn {
  display: inline-block;
  min-width: 320px;
  padding: 0.875em 2em;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.07em;
  transition: opacity 0.3s;
  position: relative;
  background: var(--color-primary);
}

.c-btn:after {
  content: '';
  display: inline-block;
  width: .66em;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: calc(50% - .33em);
  right: 1.5em;
  /*background: var(--color-primary) url(/assets/img/shared/icon_link_white.svg) no-repeat right 1.5em center/contain;*/
  background: url(/assets/img/shared/icon_link_white.svg) no-repeat center/contain;
  transition: transform .2s;
}

.p-recruit-entry .c-btn:after {
  top: 62%;
}

.c-btn:hover {
  opacity: .8;
}
.c-btn:hover:after {
  transform: rotate(45deg);
}

.footer__recruit-cta .c-btn {
  width: 415px;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  font-size: 1.375rem;
}

.c-btn--olive {
  background-color: var(--color-accent);
}

.c-btn__text {
  display: inline-block;
}

.c-btn--olive .c-btn__text {
  background: var(--color-white);
  color: var(--color-accent);
}

.c-section-title {
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 4.5rem;
  margin-bottom: 10px;
}

.c-section-title--white {
  color: var(--color-white);
}

.c-section-title--center {
  text-align: center;
}

.c-section-title--left {
  text-align: left;
}

.c-ddtable {
}
.c-ddtable__item {
  display: flex;
}
.c-ddtable__item:nth-child(n+2) {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  /*border-top: 1px solid #536E7E;*/
  border-top: 1px solid var(--color-gray);
}
.c-ddtable__title {
  width: 220px;
}
.c-ddtable__content {
  flex: 1;
}

.l-lrContent__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  width: 288px;
  width: 21.42%;
  min-width: 6em;
}

.c-section-lead {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.625rem;
  margin: 0.75em 0;
}

.c-section_headerHR .c-section-lead {
  margin: 0.65em 0;
}

@media (max-width: 768px) {
  .l-lrContent__title {
    margin: 0 0 1em;
    width: auto;
  }
}

/* --- Block: Header --- */
.header {
  position: relative;
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 1.125rem 0;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: left top;
  background-size: 564px;
}

.js-header__sticky {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right top;
  background-size: 564px;
  transition: transform 0.3s;
  visibility: hidden;
}

.js-header__sticky.is-sticky {
  transform: translateY(0);
  visibility: visible;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  margin: auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.5rem;
  transition: opacity .3s;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.75em;
  font-size: 1.125rem;

  height: 128px;/* 問い合わせが復活したら消す！！！！！  */
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.625rem;
}

@media (min-width: 769px) {
  .header__logo:hover {
    opacity: .8;
  }

}

/* --- Block: Hero --- */
.hero-story {
  position: relative;
}

.hero {
  position: relative;
  text-align: center;
  padding-top: 1.88rem;
}

.hero__content {
  position: relative;
  z-index: 20;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 44.48vw;
  height: 44.48vw;
  border-radius: 444.8vw;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: left top;
  background-size: 202.659001078px;
  transform: translateX(-50%) scale(2.783, 1);
}

.hero__catch-wrapper {
  position: relative;
  z-index: 20;
  display: inline-block;
}

.hero__catch {
  line-height: 1.5;
  color: var(--color-text-main);
  font-family: var(--font-serif);
  font-size: 5.125rem;
  letter-spacing: 0.2em;
  padding: 0 0 0.4em;
  white-space: nowrap;
  margin-right: -.85em;
}

.hero__bg-wrapper {
  position: relative;
  width: 100%;
  height: 140vh;
  overflow: hidden;
  margin-top: -171px;
}

.hero__video__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-text-main);
}

.hero__video__wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: .5;
  background: #00172180;
}

.hero__video {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.6;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__text-box {
  color: var(--color-white);
  text-align: left;
  margin-top: 250px;
}

.hero__text-title {
  font-family: var(--font-serif);
  line-height: 1.6;
  font-size: 3rem;
  margin-bottom: 0.42em;
  box-shadow: 0px 0px 4px 0px #1C75AA4D;
}
.hero__text-desc {
  box-shadow: 0px 0px 4px 0px #1C75AA4D;
}


/* --- Block: Story --- */
.story {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 50;
  width: 60%;
  max-width: 100%;
  min-width: 768px;
}

.story__card {
  overflow: hidden;
  border-radius: 10.9375vw 0 0 0;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right bottom;
  background-size: 564px;
}

.story__card__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  /*padding: 4.5% 7.15% 4.5% 10.73%;*/
  padding: 40px 7.15% 40px 10.73%;
}

.story__image {
  flex: 1;
  width: 44.344%;
  max-height: 363px;
  aspect-ratio: 396/363;
  mix-blend-mode: multiply;
  position: relative;
  overflow: hidden;
}
.story__image:before ,
.story__image:after {
  content: '';
  display: block;
  position: absolute;
  mix-blend-mode: ;
/*  top: 0;
  left: 0;
  right: 0;
  bottom: 0;*/
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.story__image:before {
  background: url(/assets/img/top/story_img01.png) no-repeat center/contain;
  animation-name: fadeImage1;
}
.story__image:after {
  background: url(/assets/img/top/story_img02.png) no-repeat center/contain;
  animation-name: fadeImage2;
}

/* 1枚目 */
@keyframes fadeImage1 {
  0%   { opacity: 1; }
  35%  { opacity: 1; }

  50%  { opacity: 0; }

  65%  { opacity: 0; }
  85%  { opacity: 0; }

  100% { opacity: 1; }
}

/* 2枚目 */
@keyframes fadeImage2 {
  0%   { opacity: 0; }
  35%  { opacity: 0; }

  50%  { opacity: 1; }

  65%  { opacity: 1; }
  85%  { opacity: 1; }

  100% { opacity: 0; }
}

/* --- Block: Recruit (上部) --- */
.recruit {
  padding: 170px 0 180px;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right top;
  background-size: 564px;
}

.recruit__wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.recruit__content {
  position: absolute;
  top: 0;
  left: 0;
}

.recruit__text-group {
  flex-grow: 1;
}

.recruit__btn-wrap ,
.story__btn-wrap {  
  margin-top: 48px;
}

.recruit__lead {
  font-size: 26px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.recruit__image-area {
  position: relative;
  width: 77.9375%;
  aspect-ratio: 1247/1482;
}

.recruit__main-img,
.recruit__sub-img1,
.recruit__sub-img2 {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.recruit__main-img {
  top: 0;
  right: 0;
  width: 71.8524458701%;
  aspect-ratio: 896/597;
}

.recruit__sub-img1 {
  left: 0;
  bottom: 10.9311740891%;
  width: 46.1908580593%;
  aspect-ratio: 1/1;
}

.recruit__sub-img2 {
  right: 0;
  bottom: 0;
  width: 38.4121892542%;
  aspect-ratio: 479/598;
}

/* --- Block: Scroll Products --- */
.scroll-products {
  /*overflow: hidden;*/
  /*background-color: var(--color-white);*/
}

.scroll-products__wrapper {
  /*display: flex;*/
}

.scroll-products__item {
  width: var(--scroll-item-width-pc);
  height: var(--scroll-item-width-pc);
  /*flex-shrink: 0;*/
  /*background-size: cover;*/
  /*background-position: center;*/
}

/* --- Block: Service --- */
.service {
  color: var(--color-white);
  background-color: var(--color-primary-d);
  text-align: center;
  padding: 100px 0;
}

.c-section_headerHR {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1600px;
  gap: 2em;
  text-align: left;
  margin: 0 auto 60px;
}

@media (max-width: 768px) {
  .c-section_headerHR {
    padding: 0;
  }
}

.service__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 223px);
  max-width: 1224px;
  gap: 104px;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: center;
}

.service__step {
  position: relative;
  text-align: left;
  z-index: 1;
}

.service__step-num {
  line-height: 1;
  color: #536E7E;
  font-family: var(--font-serif);
  font-size: 6.375rem;
}

.service__step-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 272px;
  overflow: hidden;
  background-color: #445;
  border-radius: 120px 0 0 0;
  margin-bottom: 15px;
}

.service__step-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service__step-title {
  font-size: 1.125rem;
}

/* --- Block: Products --- */
.products {
  background: var(--color-white);
  text-align: center;
  padding: 80px 0;
}

.products__title {
  text-align: left;
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1em;
}

.products__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 128px;
}

.products__item {
  display: flex;
  align-items: center;
  flex-basis: calc((100% - 128px) / 2);
  max-width: none;
  gap: 2.75em;
  text-align: left;
}

.products__item-text {
  flex-grow: 1;
}

.products__item h3 {
  font-family: var(--font-base);
  font-size: 1.2rem;
  margin: 0 0 .75em;
}

.products__item img {
  width: 224px;
  height: 224px;
  flex-shrink: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  -o-object-fit: contain;
  object-fit: contain;
}

.products__partner {
  display: flex;
  align-items: center;
  gap: 1.75em;
  text-align: left;
  border-top: 1px solid #ccc;
  margin-top: 3.5em;
  padding-top: 1.75em;
}

.products__partner-title {
  line-height: 1.2;
  flex-shrink: 0;
  margin-bottom: 0;
}

.products__partner img {
  max-width: 120px;
  height: auto;
}

/* --- Block: Footer --- */
.footer {
  background: url(/assets/img/shared/footer_bg.png) no-repeat bottom center/100%, url(/assets/img/shared/bg_texture.png) right bottom/564px;
  padding: 40px 0 640px;
}

.footer__recruit-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: content-box;
  padding-top: 144px;
  padding-bottom: 144px;
}

.footer__content {
  display: grid;
  grid-template-columns: auto 543px;
  grid-template-rows: auto auto;
  gap: 20px 0;
  margin: 104px 60px 0;
}

.footer__info {
  grid-area: 1/1;
  flex-shrink: 0;
  line-height: 1.6;

  p {
    margin-top: .8em;
  }
}

.footer__logo-img {
  display: block;
  height: 39px;
  line-height: 40px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.footerLinks {
  grid-area: 1/2/3/3;
  display: flex;
  flex-direction: column;
  width: 543px;
  line-height: 1.2;
  font-size: 1.125rem;
}

.footerLinks__item {
  cursor: pointer;
}

.footerLinks__item:nth-child(n+2) {
  border-top: 1px solid #d4d4d4;
}

.footerLinks__link {
  display: block;
  padding: 1.5em 1.25em;
  position: relative;
}
.footerLinks__link:after {
  content: '';
  display: inline-block;
  background: url(/assets/img/shared/icon_link_blue.svg) no-repeat center/contain;
  width: 1em;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transition: opacity .3s, transform .2s;
}
.footerLinks__link:hover {
  opacity: .8;
}
.footerLinks__link:hover:after {
  transform: rotate(45deg);
}

.footer__copyright-wrapper {
  grid-area: 2/1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  color: #666;
  padding: 0 0 0.5em;
  border-top: none;
}

.footer__privacy-policy {
}

.footer__copyright {
  font-size: 1rem;
}

.footer__copyright a {
  color: #666;
  text-decoration: underline;
}

/* ======================================================= */
/* --- Responsive Styles: Mobile (<= 768px) --- */
/* ======================================================= */
.u-ib {
  display: inline-block !important;
}

@media (min-width: 769px) {
  .service__step:nth-child(even) {
    margin-top: 40px;
  }

  .header__button {
    display: none;
  }

  .header__nav-link {
    position: relative;
    display: inline-block;
    padding: .25em 0;
  }
  .header__nav-link:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    margin: auto;
    background: currentColor;
    transition: width .3s;
  }
  .header__nav-link.is-current:after ,
  .header__nav-link:hover:after {
    width: 100%;
  }

  .header__nav-item__contact .header__nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 120px + 20 * (100vw - 1000px) / 920, 140px);
    aspect-ratio: 1/1;
    text-align: center;
    line-height: 1.2;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: #fff;
    transition: opacity .3s;
  }
  .header__nav-item__contact .header__nav-link:after {
    display: none;
  }
  .header__nav-item__contact .header__nav-link:hover {
    opacity: .8;
  }

  .service__list:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: #536E7E;
    transform: translate(calc(1224px - 100vw), -50%);
    transition: width 2s;
    transition-delay: .3s;
  }

  .service__list.is-show:after {
    width: 150vw;
  }

  .u-none_pc {
    display: none !important;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 3.73vw;
  }

  html.js-menu__open {
    height: 100%;
    overflow: hidden;
  }

  body {
    overflow-x: hidden;
    padding-top: 25.33vw;
  }

  .l-inner--l ,
  .l-inner--m {
    width: auto;
    margin-left: 8.53vw;
    margin-right: 8.53vw;
    padding-left: 0;
    padding-right: 0;
  }

  .c-section-title {
    font-size: 10.13vw;
  }

  .c-section-lead {
    font-size: 6.4vw;
  }

  .c-section_headerHR .c-section-lead {
    margin: 0;
  }

  .c-btn {
    text-align: left;
    font-size: 3.73vw;
    padding: 1.25em 2em;
    background-size: .9em;
    min-width: 68.27vw;
  }

  .footer__recruit-cta .c-btn {
    width: 100%;
    font-size: 4.8vw;
    padding-top: 1.1em;
    padding-bottom: 1.1em;
  }

  .header {
    max-width: none;
    padding: 0;
    background-image: url(/assets/img/shared/bg_texture.png);
    background-repeat: repeat;
    background-position: left top;
    background-size: 564px;
  }

  .header__inner {
    width: 100%;
    margin: 0;
    flex-direction: column;
    /*position: relative;*/
  }

  .header__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 6.4vw 5.33vw;
  }

  .header__logo {
    width: 41.6vw;
  }

  .header__button {
    position: relative;
    width: 39px;
    height: 39px;
    color: transparent;
  }

  .header__button:before,
  .header__button:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 39px;
    height: 1px;
    background: #928E52;
    transition: transform .3s;
  }

  .header__button:before {
    transform: translateY(-5px);
  }

  .header__button:after {
    transform: translateY(5px);
  }

  
  .js-menu__open .header__button:before {
    transform: rotate(45deg);
  }

  .js-menu__open .header__button:after {
    transform: rotate(-45deg);
  }

  .header__nav {
    display: none;
    width: 100%;
    height: calc(100dvh - 13.33vw);
    overflow-y: scroll;
    padding: 40px 8.53vw 0;
    background-image: url(/assets/img/shared/bg_texture.png);
    background-repeat: repeat;
    background-position: left top;
    background-size: 564px;

    position: absolute;
    top: 22.67vw;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .header__nav:after {
    content: "";
    display: block;
    width: 100vw;
    height: 110vw;
    margin: -52vw 0 0 -8.53vw;
    background: url(/assets/img/shared/header_sp_bg.jpg) no-repeat bottom center/100%, url(/assets/img/shared/bg_texture.png) center bottom/100%;
  }

/*  .js-menu__open .header__nav {
    display: block;
  }
*/
  .header__nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .header__nav-item {
    width: 100%;
  }

  .header__nav-item:nth-child(n+2) {
    border-top: 1px solid #d4d4d4;
  }

  .header__nav-link {
    display: block;
    padding: 1.5em 0;
    background: url(/assets/img/shared/icon_link_blue.svg) no-repeat right center/1em;
  }

  .header__nav-contact {
    width: 100%;
    margin-top: 10.67vw;
  }

  .header__nav-contact .c-section-title {
    font-size: 3.73vw;
  }

  .header__nav-contact .c-section-lead {
    font-size: 6.4vw;
    margin: .5em 0 .75em;
  }

  .header__nav-contact .c-btn {
    width: 100%;
  }

  .header__nav-privacy {
    margin-top: 10.67vw;
  }

  .hero {
    padding-top: 0;
  }

  .hero__catch {
    font-size: 8.53vw;
    letter-spacing: .15em;
    padding: 0 0 11.73vw;
  }

  .hero__content {
    max-width: none;
    padding: 0 20px;
  }

  .hero__content:after {
    transform-origin: center bottom;
    transform: translateX(-50%) scale(5, 4);
  }

  .hero__text-box {
    width: 100%;
    margin-top: 19.2vw;
  }

  .hero__text-title {
    font-size: 8.53vw;
  }

  .hero__bg-wrapper {
    height: 90vh;
    margin-top: -13.87vw;
  }

  .hero__bg-wrapper .l-inner--l {
    margin-left: 4vw;
    margin-right: 4vw;
  }

  .story__content {
    padding: 21.33vw 8vw 8vw;
  }

  .story {
    width: 100%;
    min-width: auto;
    position: static;
    margin-top: 0;
  }

  .story__card {
    flex-direction: column;
    border-radius: 32vw 0 0 0;
  }

  .story__card__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .story__image {
    width: 82.67vw;
    height: 64.53vw;
    aspect-ratio: 324 / 242;
    border-radius: 0;
    margin: auto;
  }

  /* --- Recruit (上部) - SP修正箇所 --- */
  .recruit {
    padding: 55px 0 73px;
  }
  .recruit__wrapper {
    flex-direction: column;
  }

  .recruit__content {
    position: static;
  }

  .recruit__image-area {
    width: 100%;
    aspect-ratio: 311/663;
    margin-top: 12.8vw;
  }

  .recruit__main-img {
    width: 100%;
    aspect-ratio: 311/207;
  }

  .recruit__sub-img1 {
    width: 65.07vw;
    bottom: 29%;
  }

  .recruit__sub-img2 {
    width: 50.4vw;
  }

  /* --- Service --- */
  .service {
    padding: 21.33vw 0 16vw;
  }

  .service__list {
    max-width: none;
  }

  .service__list {
    display: flex;
    flex-direction: column;
    max-width: none;
    gap: 20px;
    padding: 0 13.6vw;
  }

  .service__step {
    width: 59.73vw;
  }

  .service__step:nth-child(2n) {
    margin-left: auto;
  }

  .service__step-img {
    height: 72.53vw;
  }

  .products {
    padding: 17.07vw 0;
  }

  .products__items {
    display: block;
  }

  .products__item {
    flex-basis: 100%;
    flex-direction: column;
    margin-bottom: 17.07vw;
    gap: 6.4vw;
  }

  .products__item h3 {
    font-size: 4.8vw;
  }

  .products__partner {
    margin-top: 17.07vw;
    padding: 8vw 0;
  }

  .footer {
    background: url(/assets/img/shared/footer_bg_sp.png) no-repeat bottom center/100%, url(/assets/img/shared/bg_texture.png) center bottom/100%;
    padding: 18.67vw 0 144vw;
  }

  .footer__wrapper {
    max-width: none;
  }

  .footer__recruit-text {
    width: 100%;
  }

  .footer__recruit-cta {
    flex-direction: column;
    padding: 0 0 20vw;
  }

  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 8.53vw;
    padding: 20vw 0 0;
    gap: 9.6vw;
  }

  .footer__info {
    width: 100%;
  }

  .footer__logo-img {
    margin-bottom: 10.67vw;
  }

  .footerLinks {
    width: 100%;
  }

  .footer__copyright-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .u-none_sp {
    display: none !important;
  }
}

/* ======================================================= */
/* --- Recruit Page Styles --- */
/* ======================================================= */

/* Page Header */
.p-page-header {
  position: relative;
}
.p-page-header-main {
  font-family: var(--font-serif);
  background-color: var(--color-light-beige);
  width: 48.958%;
  padding: 80px 0 70px 93px;
  border-radius: 180px 0 0 0;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right bottom;
  background-size: 564px;
  position: absolute;
  right: 0;
  bottom: -1px;
}

.p-page-header__en {
  font-size: 4.5rem;
  /*color: var(--color-primary);*/
  margin-bottom: .4em;
  line-height: 1;
}

.p-page-header__jp {
  font-size: 2.25rem;
  color: var(--color-text-main);
  line-height: 1;
}

.p-page-header-img {
  object-fit: cover;
  width: 100%;
  height: 632px;
  height: 39.50rem;
}

/* Recruit Message */
.p-recruit-message {
  text-align: center;
  margin-bottom: 80px;
}

.p-recruit-message__text {
  line-height: 2;
  margin-top: 2em;
}

/* Requirements Table */
/* Requirements Section */
.p-recruit-requirements {
  padding: 175px 0;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right top;
  background-size: 564px;
}

.l-lrContent {
  display: flex;
  gap: 0 20px;
}

.l-lrContent__content {
  flex: 1;
}

/* 職種・雇用形態の見出し */
.p-recruit-info__title {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  line-height: 1.6;
  padding: 0 0 1.35em;
}

.p-recruit-info__title--main {
  font-family: var(--font-serif);
  font-weight: 600;
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid currentColor;
  letter-spacing: .1em;
}

.p-recruit-info__title--sub {
  font-size: 1rem;
}

.p-recruit-info__head {
  border-bottom: 1px dashed currentColor;
  position: relative;
}

.p-recruit-info__head::before {
  content: '';
  width: 4px;
  height: 4px;
  background: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%) rotate(45deg);
}

.p-recruit-info__head::after {
  content: '';
  width: 4px;
  height: 4px;
  background: currentColor;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%) rotate(45deg);
}

/* テーブルスタイル（微調整） */
.p-requirementsList {
  margin-top: 2rem;
}
.p-requirementsList__item:nth-child(n+2) {
  border-top-color: var(--color-gray);
}

.p-requirementsList__title {
  width: 190px;
  font-weight: bold;
}



/* 応募ボタンエリア */
.p-recruit-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  padding: 30px;
  gap: 30px;
  text-align: center;
  border-radius: 8px;
  margin-top: 4rem;

  .c-btn {
    min-width: 400px;
    font-size: 1.5rem;
  }

  .c-btn__text {
    font-size: .875rem;
    padding: 0 1em;
    line-height: 1.4;
    margin: .25em 0 .5em;
    strong {
      font-size: 1.5em;
    }
  }
}


/* SP対応 */
@media (max-width: 768px) {
  .p-recruit-requirements {
    padding: 10.67vw 0 10.67vw;
  }

  .l-lrContent {
    flex-direction: column;
  }

  .p-recruit-info__title {
    font-size: 4.27vw;
    gap: 0.5em;
  }

  .c-ddtable__item.p-requirementsList__item {
    gap: 1.25em;
  }

  .p-requirementsList__title {
    width: 100%;
  }

  .p-recruit-entry {
    padding: 5.33vw;
    gap: 5.33vw;

    .c-btn {
      width: 100%;
      min-width: auto;
      padding: .75em 1.75em;
      text-align: center;
      background-position: right 1em center;
    }
    .c-btn__text {
      font-size: 3.73vw;
    }
  }
}

.u-text-small {
  font-size: 0.85em;
  color: #666;
}

/* ======================================================= */
/* --- Work Place Section (Old Access Section Removed) --- */
/* ======================================================= */
.p-recruit-workplace {
  margin-bottom: 100px;
}

.p-recruit-workplace__content {
  max-width: 900px;
  margin: 40px auto 0;
}

/* Map Area */
.p-recruit-workplace__map {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px; /* 角丸を追加してデザイン性を向上 */
  background-color: #eee;
}

.p-recruit-workplace__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Address Info */
.p-recruit-workplace__info {
  flex: 1;
  background-color: var(--color-white);
  color: var(--color-text-main);
  border-bottom: 1px dashed #ccc;
  padding: 2rem;
  border-radius: 8px;
}

.p-recruit-workplace__name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.p-recruit-workplace__address {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5em;
}

.p-recruit-workplace__note {
  font-size: 0.9rem;
  color: #666;
}

/* ======================================================= */
/* --- Work Place Section (Service style inheritance) --- */
/* ======================================================= */
.p-recruit-workplace {
  /* serviceクラスを継承することで、背景色、文字色、paddingが適用される */
  padding: 100px 0;
  background-color: var(--color-primary-d);
  color: var(--color-white);
  margin-bottom: 0; /* セクションの下マージンは不要 */
}

/* 勤務地アイテム */
.p-recruit-workplace__list {
  display: flex;
  gap: 50px;
}
.p-recruit-workplace__item {
  display: flex;
  align-items: center;
  width: calc((100% - 50px) / 2);
}

.p-recruit-workplace__location-title {
  font-size: 1.375rem;
  font-weight: 500;
  font-family: var(--font-base);
  padding: 0 0 1.36em;
  margin: 0 auto;
}

.p-recruit-workplace__detail {
  margin: 2rem auto 0;
}

.p-recruit-workplace__detail__title {
  display: inline-block;
  padding: 0 .5em;
  border: 1px solid currentColor;
  font-weight: 400;
  margin: 0 0 .75em;
}

.p-recruit-workplace__detail__content {
}

/* Google Map */
.p-recruit-workplace__map {
  position: relative;
  width: 100%;
  aspect-ratio: 178 / 352;
  overflow: hidden;
  margin-top: 30px;
}

.p-recruit-workplace__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-recruit-workplace__flow {
  display: flex;
  justify-content: center;
  width: 190px;
  margin-left: 50px;
  padding-bottom: 1.5em;
  position: relative;
}
.p-recruit-workplace__flow::before {
  content: '';
  display: block;
  width: calc(100% - .5em);
  border-bottom: 1px dashed; currentColor;
  position: absolute;
  left: 0;
  bottom: 0;

}
.p-recruit-workplace__flow::after {
  content: '';
  display: block;
  border-width: .4em 0 .4em .7em;
  border-color: transparent transparent transparent currentColor;
  border-style: solid;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}

@media (max-width: 768px) {
  .p-recruit-workplace {
    padding: 15vw 0;
  }

  .p-recruit-workplace__list {
    flex-direction: column;
    gap: 0;
  }

  .p-recruit-workplace__item {
    width: 100%;
    flex-direction: column;
    align-items: normal;
  }

  .p-recruit-workplace__info {
    padding: 1.75rem;
  }

  .p-recruit-workplace__map {
    padding-bottom: 75%; /* SPでは4:3比率で見やすく */
  }
  
  
  .p-recruit-workplace__location-title {
    font-size: 1.25rem;
  }

  .p-recruit-workplace__detail {
    margin: 1.5rem auto 0;
  }

  .p-recruit-workplace__detail__title {
  }

  .p-recruit-workplace__detail__content {
    width: 100%;
  }

  .p-recruit-workplace__flow {
    margin: 5.33vw 0 5.33vw 50%;
    width: auto;
  }

  .p-recruit-workplace__flow:before {
    width: 1px;
    left: inherit;
    top: 0;
    left: .5px;
    bottom: .8em;
    border-right: 1px dashed;
  }

  .p-recruit-workplace__flow:after {
    left: 1px;
    right: inherit;
    border-width: .7em .4em 0 .4em;
    border-color: currentColor transparent transparent transparent;
    transform: translateX(-50%);
  }
}

/* Gallery */
.p-recruit-gallery {
  padding: 80px 0 0;
  color: var(--color-white);
}

.p-recruit-gallery__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-recruit-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.p-recruit-gallery__item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.p-recruit-gallery__caption {
  margin-top: 1em;
}

/* SP対応 */
@media (max-width: 768px) {

  .p-recruit-gallery {
    padding: 16vw 0 0;
  }
  
  .p-recruit-gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .p-recruit-gallery__item img {
    height: auto;
  }
}

/* FAQ Accordion */
.p-recruit-faq {
  padding: 112px 0 176px;
}

.p-faq-list {
  margin-top: 40px;
} 

.p-faq-item {
  background-color: var(--color-primary-d);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  transition: opacity .2s;
}

.p-faq-item:nth-child(n+2) {
  margin-top: 22px;
}

.p-faq-item:hover {
  opacity: .85;
}

.p-faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.5em 40px 1.5em 40px;
  background: transparent;
  border: none;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.p-faq-item__question:before {
  content: 'Q';
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: var(--font-serif);
  line-height: 1;
  margin-right: .7em;
}

/* FAQ Icon (+ / -) */
.p-faq-item__icon {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.p-faq-item__icon::before,
.p-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  transition: transform 0.3s;
}

.p-faq-item__icon::before {
  width: 100%;
  height: 2px;
}

.p-faq-item__icon::after {
  width: 2px;
  height: 100%;
}

/* Open State Icon */
.p-faq-item__question.is-open .p-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq-item__answer {
  color: var(--color-primary-d);
  background-color: var(--color-white);
  margin: 0 40px 40px;
  display: none; /* Hidden by default */
  background-color: #f5f5f5;
  border-radius: 8px;
}

.p-faq-item__answer-inner {
  display: flex;
  align-items: center;
  padding: 1.875rem 2.5rem;
  line-height: 1.8;

  p {
    flex: 1;
  }
}

.p-faq-item__answer-inner:before {
  content: 'A';
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: var(--font-serif);
  line-height: 1;
  margin-right: 1em;
}

@media (max-width: 768px) {
  .p-recruit-faq {
    padding: 16vw 0;
  }

  .p-faq-list {
    margin-top: 5.33vw;
  }

  .p-faq-item__question {
    padding: 1.5em 10.13vw 1.5em 5.33vw;
  }

  .p-faq-item__question:before ,
  .p-faq-item__answer-inner:before {
    font-size: 2rem;
    margin-right: .5em;
  }

  .p-faq-item__icon {
    width: 4.27vw;
    height: 4.27vw;
    right: 1.25em;
  }

  .p-faq-item__answer {
    margin: 0 5.33vw 5.33vw;
  }

  .p-faq-item__answer-inner {
    padding: 1.25em;
  }
}

.u-mt-large {
  margin-top: 80px;
}

/* --- Mobile (Recruit) --- */
@media (max-width: 768px) {
  .p-page-header {
  }

  .p-page-header-main {
    width: 82.93vw;
    border-radius: 26.67vw 0 0 0;
    padding: 12.8vw 0 10.67vw 10.67vw;
  }

  .p-page-header-img {
    height: 98.4vw;
  }
  
  .p-page-header__en {
    font-size: 10.13vw;
  }

  .p-page-header__jp {
    font-size: 4.27vw;
  }
  

  .p-recruit-access__map {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for SP */
  }

}

/* history  */
.p-history {
  padding: 176px 0;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right top;
  background-size: 564px;
}

.p-historyList {
  margin-top: 2rem;
  padding: 78px 0 90px;
  position: relative;
  z-index: 0;

  &:before ,
  &:after {
    content: '';
    background: var(--color-gray);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
  }
  &:before {
    top: 0;
  }
  &:after {
    bottom: 0;
  }
}
.p-historyList__line {
  border-left: 3px dashed var(--color-gray);
  position: absolute;
  top: 1.1rem;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: -1;
}

.p-historyList__item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

.p-historyList__item:nth-child(2n) {
  align-items: flex-end;
}

.p-historyList__item:nth-child(n+2) {
  margin-top: 165px;

}

.p-historyList__textBox {
  background: var(--color-white);
  width: 608px;
  padding: 48px;
  border-radius: 10px;

  p {
    margin-top: 24px;
  }
}

.p-historyList__title {
  font-size: 112px;
  font-family: var(--font-serif);
  line-height: 1;
  color: var(--color-primary);
  padding: .75em 0 .25em;
  letter-spacing: .09em;
}

.p-historyList__lead {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-primary);
}

.p-historyList__note {
  font-size: 12px;
}

.p-historyList__imgBox {
  overflow: hidden;
  position: absolute;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  width: 846px;
  width: calc(846 / 1344 * 100%);
  min-width: calc(846px * .65);
  aspect-ratio: 846 / 520;
}

.p-historyList__item:nth-child(2n+1) .p-historyList__imgBox {
  border-radius: 8px 240px 8px 8px;
  right: 0;
}

.p-historyList__item:nth-child(2n) .p-historyList__imgBox {
  border-radius: 240px 8px 8px 8px;
  left: 0;
}

.p-historyList__img {
  width: 100%;
}

.p-historyList__bg {
  position: absolute;
  z-index: -2;
  &.bg1 {
    top: -120px;
    right: -249px;
    width: 477px;
  }
  &.bg2 {
    top: -95px;
    left: -130px;
    width: 601px;
  }
  &.bg3 {
    top: -27px;
    right: -115px;
    width: 459px;
  }
}

.p-development {
  background: var(--color-primary-d);
  color: var(--color-white);
  padding: 172px 0;
}

.p-message {
  display: flex;
  justify-content: flex-end;
  background: url(/assets/img/about/message_bg.jpg) no-repeat center / cover;
  padding-top: 165px;
}

.p-message__box {
  padding: 104px;
  border-radius: 180px 0 0 0;
  background: var(--color-white);
  width: 59.32%;
  min-width: 800px;

  .c-section-title {
    margin-bottom: 3.625rem;
  }
}

.p-message__text--main {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.p-message__text--president {
  text-align: right;
  margin-top: 1.5rem;

  img {
    margin-left: 1em;
    vertical-align: text-top;
  }

}

/* ======================================================= */
/* --- Story Page (SP tuning) --- */
/* ======================================================= */

@media (max-width: 768px) {
  /* History */
  .p-history{
    padding: 17.07vw 0;
  }

  .p-historyList{
    margin-top: 8vw;
    padding: 10.67vw 0 20vw;
  }

  .p-historyList:before,
  .p-historyList:after{
    width: 2.67vw;
    height: 2.67vw;
  }

  .p-historyList__item{
    align-items: stretch;
  }

  .p-historyList__item:nth-child(2n){
    align-items: stretch;
  }

  .p-historyList__item:nth-child(n+2){
    margin-top: 18vw;
  }

  .p-historyList__title{
    font-size: 12.27vw;
    padding: .75em 0 .25em;
    margin: 0 -4.25vw;
    order: 1;
  }
  .p-historyList__item:nth-child(2n) .p-historyList__title {
    text-align: right;
  }

  .p-historyList__imgBox{
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100vw;
    aspect-ratio: 311 / 191;
    overflow: hidden;
    margin: 0 -8.53vw;
    min-width: auto;
    z-index: 0;
  }

  .p-historyList__item:nth-child(2n+1) .p-historyList__imgBox{
    border-radius: 0 26.67vw 8px 0;
  }

  .p-historyList__item:nth-child(2n) .p-historyList__imgBox{
    border-radius: 26.67vw 0 0  8px;
  }

  .p-historyList__textBox{
    order: 3;
    width: auto;
    padding: 8.53vw;
    margin: 0 -8.53vw;
    border-radius: 0;
  }

  .p-historyList__lead{
    font-size: 4.8vw;
    line-height: 1.7;
  }

  .p-historyList__textBox p{
    margin-top: 4.8vw;
  }

  .p-historyList__note{
    font-size: 3.2vw;
  }

  .p-historyList__bg{
    /*max-width: 180px;*/
    &.bg1 {
      top: -16vw;
      right: -21vw;
      width: 57vw;
    }
    &.bg2 {
      top: 5vw;
      left: -20vw;
      width: 60vw;
    }
    &.bg3 {
      top: -1vw;
      right: -21vw;
      width: 58vw;
    }
  }

  /* Development (沿革) */
  .p-development{
    padding: 17.07vw 0;
  }

  .c-ddtable__item{
    flex-direction: column;
    gap: 1em;
  }

  .c-ddtable__item:nth-child(n+2){
    margin-top: 8.53vw;
    padding-top: 8.53vw;
  }

  .c-ddtable__title{
    width: auto;
    font-size: 4.27vw;
    font-weight: 700;
  }

  /* Message */
  .p-message{
    display: block;
    padding: 101.33vw 0 0;
    background: url(/assets/img/about/message_bg_sp.png) no-repeat center top / 100%;
  }

  .p-message__box{
    width: 100%;
    min-width: 0;
    padding: 21.33vw 8.53vw;
    border-radius: 26.67vw 0 0 0;
  }

  .p-message__box .c-section-title{
    margin-bottom: 6.4vw;
  }

  .p-message__text--president img{
    width: 27.47vw;
    vertical-align: top;
  }
}

/* === COMPANY / CONTACT (generated) === */
.p-company-outline {
  padding: 11rem 0;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right top;
  background-size: 564px;
}

.p-company-table .c-ddtable__title {
  font-family: var(--font-serif);
  width: 12em;
  flex: 0 0 12em;
}

.p-company-access {
  background: var(--color-primary-d);
  color: var(--color-white);
  padding: 10rem 0 11rem;
}
.p-company-access__map {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
}
.p-company-access__map iframe {
  display: block;
  width: 100%;
  height: 507px;
}

.p-contact__wrapper {
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right top;
  background-size: 564px;
}

.p-contact {
  padding: 11rem 0 6rem;
}

.p-contact-form {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 3.75rem;
}

.p-formHead {
  margin: 0 0 2rem;
}

.p-formTable {

  .c-ddtable__item:nth-child(n+2) {
    border-top-color: var(--color-gray);
  }
  /*display: flex;*/
  /*padding: 1.5rem 0;*/
  /*border-top: 1px solid rgba(0,0,0,.08);*/
}
/*.p-formRow:first-child {
  border-top: none;
  padding-top: 0;
}
.p-formRow:last-child {
}*/
.p-formLabel {
  font-weight: 500;
  margin-right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.p-formReq {
  display: inline-block;
  margin-left: .5rem;
  font-size: .75rem;
  line-height: 1;
  padding: .35rem .5rem;
  border-radius: 4px;
  background: #BD5D58;
  color: var(--color-white);
}
.p-input, .p-textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.9);
}
.p-textarea {
  resize: vertical;
}
.p-radioGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.p-radio {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}

.p-formFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: .875rem;
}
.p-formNote {
  margin-top: .75rem;
}
.p-check {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}
.p-formActions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.page-confirm .p-formActions {
  margin-top: 3rem;
}
.p-formSubmit {
  min-width: 320px;
}

.p-contact-tel {
}
.p-contact-tel__contents {
  padding: 3.5rem 0 11rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.p-contact-tel__title {
  font-family: var(--font-serif);
  font-size: 2rem;
}
.p-contact-tel__tel {
  font-family: var(--font-serif);
  font-size: 3.625rem;
  line-height: 1;
}
.p-contact-tel__note {
  margin-top: .8rem;
  font-size: .875rem;
  color: rgba(0,0,0,.6);
}

@media (max-width: 768px) {
  .p-company-outline,
  .p-company-access,
  .p-contact {
    padding: 3.5rem 0;
  }
  .p-company-table .c-ddtable__item {
    flex-direction: row;
  }
  .p-company-table .c-ddtable__item:nth-child(n+2) {
    border-top-color: var(--color-gray);
  }
  .p-company-table .c-ddtable__title {
    width: 7em;
    flex: 0 0 7em;
  }
  .p-company-access__map iframe {
    height: 320px;
  }
  .p-contact-form {
    padding: 1.4rem;
  }
  .p-formRow {
    flex-direction: column;
    gap: 1.25rem;
  }
  .p-formLabel {
    margin-right: 0;
    width: auto;
  }
  .p-radioGroup {
    gap: .75rem 1rem;
  }
  .p-formSubmit {
    width: 100%;
    min-width: 0;
  }
  .p-contact-tel__tel {
    font-size: 3rem;
    img {
      width: .72em;
    }
  }
  .p-contact-tel__contents {
    flex-direction: column;
    align-items: center;
    padding: 10.67vw 0 21.33vw;
  }
  .p-contact-tel__note {
    margin-top: 1em;
    text-align: center;
  }

}


.p-privacy {
  padding: 176px 0;
  background-image: url(/assets/img/shared/bg_texture.png);
  background-repeat: repeat;
  background-position: right top;
  background-size: 564px;
}

.p-privacy__content > * {
  margin: .5em 0;
  &:first-child {
    margin-top: 0;
  }
  &:last-child {
    margin-bottom: 0;
  }
}

.p-privacy__heading {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-primary);
  margin: 1em 0 .5em;
  line-height: 1.4;
}

.p-privacy__list {
}
.p-privacy__list li {
  padding: 0 0 0 1em;
  text-indent: -1em;
  &:nth-child(n+2) {
    margin-top: .25em;
  }
  &:before {
    content: '';
    display: inline-block;
    width: 1em;
    aspect-ratio: 1 / 1;
    background: var(--color-primary);
    border-radius: 1em;
    clip-path: circle(17% at 50% 50%);
    vertical-align: middle;
  }
}

@media (max-width: 768px) {
  .p-privacy {
    padding: 17.07vw 0;
  }
  .p-privacy__heading {
    font-size: 5.33vw;
    /*margin: .75em 0 .3em;*/
  }

}

.js-fade-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition:
    opacity 1.2s ease,
    filter 1.2s ease,
    transform 1.2s ease;
  transition-delay: 0.3s;
  will-change: opacity, filter, transform;
}

.js-fade-blur.is-show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.js-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.js-fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s; /* 開始を遅らせたい場合 */
}


.inview-base {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.inview-base.is-show {
  opacity: 1;
  transform: translateY(0);
}

.inview--blur {
  filter: blur(10px);
  transition-property: opacity, transform, filter;
}

.inview--blur.is-show {
  filter: blur(0);
}

.inview--up {
  /* 差分なしでも可（意味付け用） */
}

.inview-base.is-show {
  transition-delay: var(--delay, 0s);
}

/* =========================================
   Video Loader (logo outline -> fill reveal)
========================================= */
.videoLoader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .25s ease, visibility .25s ease;
}

.videoLoader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.videoLoader__logo{
  position: relative;
  width: 92px;              /* 好みで */
  padding: 6px;
  box-sizing: border-box;
  aspect-ratio: 67 / 44;
  transform: translateZ(0);
  animation: loaderPop 1.8s ease-in-out infinite;
}

.videoLoader__svg{
  position: absolute;
  inset: 6px;           /* paddingと同じ値に */
  width: calc(100% - 12px);
  height: calc(100% - 12px);
}

/* 1) outline draw */
.videoLoader__svg--stroke path{
  fill: transparent !important;
  stroke: rgba(0, 23, 33, 0.5);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;

  /*stroke-dasharray: 1;*/
  /*stroke-dashoffset: 1;*/

  animation: logoDraw 2s ease-in-out infinite;
}

/* 2) fill reveal (wipe) */
.videoLoader__svg--fill{
  /* 下からせり上がる塗り */
  clip-path: inset(100% 0 0 0);
  animation: fillReveal 1.8s ease-in-out infinite;
}

.videoLoader__svg--fill path{
  fill: #001721;
}

/* --- animations --- */
@keyframes logoDraw{
  0%   { stroke-dashoffset: 1; opacity: 0; }
  8%   { opacity: 1; }
  45%  { stroke-dashoffset: 0; opacity: 1; }
  78%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: .9; }
}

@keyframes fillReveal{
  0%   { clip-path: inset(100% 0 0 0); opacity: 0; }
  35%  { clip-path: inset(100% 0 0 0); opacity: 0; } /* 線の後に */
  65%  { clip-path: inset(0 0 0 0); opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes loaderPop{
  0%   { transform: scale(0.98); }
  55%  { transform: scale(1.04); }
  100% { transform: scale(0.98); }
}

/* motion配慮 */
@media (prefers-reduced-motion: reduce){
  .videoLoader__logo,
  .videoLoader__svg--stroke path,
  .videoLoader__svg--fill{
    animation: none !important;
  }
}