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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #231815;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

address {
  font-style: normal;
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 0 20px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: transparent;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.4s ease, border-color 0.4s ease;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header.is-scrolled {
  background-color: #ffffff;
}

.l-header__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 20px;
  }
}

.l-header__logo {
  display: block;
  height: 18px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    height: 15px;
  }
}
.l-header__logo img {
  height: 100%;
  width: auto;
}

@media screen and (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: #FFEFD8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .l-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav-item {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-header__nav-item:nth-child(1) {
    -webkit-transition-delay: 0.16s;
            transition-delay: 0.16s;
  }
  .l-header__nav-item:nth-child(2) {
    -webkit-transition-delay: 0.22s;
            transition-delay: 0.22s;
  }
  .l-header__nav-item:nth-child(3) {
    -webkit-transition-delay: 0.28s;
            transition-delay: 0.28s;
  }
  .l-header__nav-item:nth-child(4) {
    -webkit-transition-delay: 0.34s;
            transition-delay: 0.34s;
  }
  .l-header__nav-item:nth-child(5) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .l-header__nav-item:nth-child(6) {
    -webkit-transition-delay: 0.46s;
            transition-delay: 0.46s;
  }
  .l-header__nav.is-open .l-header__nav-item {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-header__nav-item a {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #231815;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.l-header__nav-item a:hover {
  opacity: 0.6;
}
.l-header__nav-item a[aria-current=page] {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item a {
    font-size: 20px;
    letter-spacing: 0.08em;
  }
}

.l-header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  gap: 0;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: #231815;
  position: absolute;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__hamburger span:nth-child(1) {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.l-header__hamburger span:nth-child(2) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header__hamburger span:nth-child(3) {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.l-header__hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(0) rotate(30deg);
          transform: translateY(0) rotate(30deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-30deg);
          transform: translateY(0) rotate(-30deg);
}

.l-footer {
  padding: 60px 0;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0;
  }
}

.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6svw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
}

.l-footer__brand {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__brand {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__logo {
  display: block;
  margin-bottom: 24px;
}
.l-footer__logo img {
  height: 15px;
  width: auto;
}

.l-footer__certs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.l-footer__cert-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.l-footer__cert-img {
  height: 110px;
  width: auto;
}

.l-footer__cert-num {
  font-size: 10px;
  color: #666666;
}

.l-footer__addresses {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5svw;
}
@media screen and (max-width: 767px) {
  .l-footer__addresses {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
  }
}

.l-footer__address-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 13px;
  line-height: 1.8;
  color: #231815;
}

.l-footer__address-title {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-weight: 600;
  color: #004F99;
  margin-bottom: 4px;
}

.l-footer__copyright {
  display: none;
}

.c-heading-en {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-heading-en {
    font-size: 26px;
  }
}
.c-heading-en--white {
  color: #ffffff;
}

.c-btn-more {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  font-size: 13px;
  color: #004F99;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-btn-more::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='15' fill='%23004F99'/%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M13.4492 19.0001C13.3346 19.0001 13.2199 18.9556 13.1322 18.8689C12.9569 18.6955 12.9569 18.4131 13.1322 18.2397L16.916 14.4978L13.1322 10.7582C12.9546 10.5848 12.9546 10.3047 13.1322 10.1312C13.3076 9.9556 13.5909 9.9556 13.7662 10.1312L17.8669 14.1866C18.0423 14.36 18.0423 14.6424 17.8669 14.8158L13.7662 18.8711C13.6785 18.9578 13.5639 19.0023 13.4492 19.0023V19.0001Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='5' height='9' fill='white' transform='translate(13 10)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-btn-more:hover {
  opacity: 0.6;
}
.c-btn-more--white {
  color: #ffffff;
}
.c-btn-more--white::after {
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='15' fill='white'/%3E%3Cg clip-path='url(%23clip1)'%3E%3Cpath d='M13.4492 19.0001C13.3346 19.0001 13.2199 18.9556 13.1322 18.8689C12.9569 18.6955 12.9569 18.4131 13.1322 18.2397L16.916 14.4978L13.1322 10.7582C12.9546 10.5848 12.9546 10.3047 13.1322 10.1312C13.3076 9.9556 13.5909 9.9556 13.7662 10.1312L17.8669 14.1866C18.0423 14.36 18.0423 14.6424 17.8669 14.8158L13.7662 18.8711C13.6785 18.9578 13.5639 19.0023 13.4492 19.0023V19.0001Z' fill='%23004097'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip1'%3E%3Crect width='5' height='9' fill='white' transform='translate(13 10)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.c-title-en {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-weight: 500;
  line-height: 1.1;
  color: #004F99;
  margin-bottom: 24px;
}

.c-title-ja {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .c-title-ja {
    font-size: 24px;
  }
}

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

@media screen and (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.p-page-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
  margin-bottom: 80px;
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-page-hero {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-top: 40px;
  }
}

.p-page-hero__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-page-hero__heading::after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #231815;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-page-hero__heading::after {
    height: 60px;
    margin-top: 16px;
  }
}

.p-page-hero__title {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-page-hero__title {
    font-size: 24px;
  }
}

.p-section-heading {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 24px;
  font-weight: 600;
  color: #004F99;
  line-height: 1.3;
  margin-bottom: 20px;
}
.p-section-heading--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-section-heading {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.p-page-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-page-intro__inner {
    padding: 0 20px;
  }
}
.p-page-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-page-intro__inner {
    max-width: 540px;
  }
}

.p-page-intro__body p {
  font-size: 16px;
  line-height: 2;
  color: #231815;
  margin-bottom: 1.4em;
}
.p-page-intro__body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-page-intro__body p {
    font-size: 13px;
  }
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
  transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition: opacity 0.65s ease, transform 0.65s ease, -webkit-transform 0.65s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-hero {
  background: url(../img/index/hero-drink.webp) top center/contain no-repeat;
  height: 190vh;
}
@media (max-aspect-ratio: 0.9097866576) {
  .p-hero {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-hero {
    background: url(../img/index/hero-drink_sp.webp) top center/contain no-repeat;
  }
}

.p-hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.p-hero__catchcopy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  height: min(40vh, 280px);
  opacity: 0;
  -webkit-animation: heroCopyFadeIn 0.9s ease 0.4s forwards;
          animation: heroCopyFadeIn 0.9s ease 0.4s forwards;
}
.p-hero__catchcopy img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-hero__catchcopy {
    height: min(24vh, 180px);
  }
}

@-webkit-keyframes heroCopyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroCopyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes heroIllustFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes heroIllustFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-hero__illust {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  width: 27%;
  max-width: 450px;
  will-change: opacity, transform;
}
@media (max-height: 840px) {
  .p-hero__illust {
    max-width: 300px;
  }
}
.p-hero__illust img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-hero__illust {
    width: 36%;
  }
}

.p-hero__illust--amusement-park {
  top: calc(70px + 3vh);
  left: 0;
  -webkit-animation: heroIllustFadeIn 0.9s ease 0.8s forwards;
          animation: heroIllustFadeIn 0.9s ease 0.8s forwards;
}
@media screen and (max-width: 767px) {
  .p-hero__illust--amusement-park {
    top: calc(60px + 15vh);
  }
}

.p-hero__illust--fast-food {
  bottom: 18%;
  right: 0;
  -webkit-animation: heroIllustFadeIn 0.9s ease 1.2s forwards;
          animation: heroIllustFadeIn 0.9s ease 1.2s forwards;
}
@media screen and (max-width: 767px) {
  .p-hero__illust--fast-food {
    bottom: 24%;
  }
}

.p-hero__illust--food-court {
  top: calc(70px + 3vh);
  right: 0;
  -webkit-animation: heroIllustFadeIn 0.9s ease 1.6s forwards;
          animation: heroIllustFadeIn 0.9s ease 1.6s forwards;
}
@media screen and (max-width: 767px) {
  .p-hero__illust--food-court {
    top: calc(60px + 15vh);
  }
}

.p-hero__illust--cinema {
  bottom: 18%;
  left: 0;
  -webkit-animation: heroIllustFadeIn 0.9s ease 2s forwards;
          animation: heroIllustFadeIn 0.9s ease 2s forwards;
}
@media screen and (max-width: 767px) {
  .p-hero__illust--cinema {
    bottom: 24%;
  }
}

.p-hero__heading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2em;
  padding: 60px 40px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  will-change: opacity;
}
.p-hero__heading.is-visible {
  opacity: 1;
}
.p-hero__heading .c-heading-en {
  font-size: 30px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-hero__heading .c-heading-en {
    font-size: 18px;
  }
}
.p-hero__heading .p-hero__text {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-hero__heading .p-hero__text {
    font-size: 13px;
  }
}

.p-hero__scroll-label {
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-hero__scroll-label::before {
  content: "scroll";
  position: absolute;
  bottom: 60px;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #231815;
}

.p-hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  margin-top: -60px;
  position: relative;
  overflow: hidden;
}
.p-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #231815;
  -webkit-animation: scrollLine 1.6s ease-in-out infinite;
          animation: scrollLine 1.6s ease-in-out infinite;
}

@-webkit-keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.p-business__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .p-business__heading {
    padding: 40px 20px;
  }
}
.p-business__heading .c-title-ja {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-business__heading .c-title-ja {
    margin-bottom: 12px;
  }
}

.p-business__title-en {
  font-size: 52px;
}
@media screen and (max-width: 767px) {
  .p-business__title-en {
    font-size: 32px;
  }
}

.p-business__image {
  width: 100%;
  display: block;
}

.p-solutions {
  background-color: #004097;
  padding: 60px 0;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-solutions {
    padding: 40px 0;
  }
}

.p-solutions__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-solutions__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-solutions__inner .c-heading-en {
    font-size: 30px;
  }
}

.p-solutions__subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-solutions__subtitle {
    font-size: 13px;
    margin-bottom: 36px;
    text-align: left;
  }
}

.p-solutions__diagram {
  max-width: 800px;
  margin: 0 auto 40px;
}
.p-solutions__diagram img {
  width: 100%;
  height: auto;
}

.p-solutions__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-news {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 40px 0;
  }
}

.p-news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    padding: 0 20px;
  }
}

.p-news__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 16px;
  padding: 20px 0;
  border-bottom: 1px solid #CCCCCC;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-news__item:first-child {
  padding-top: 0;
}

.p-news__item-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 13px;
  color: #666666;
}

.p-news__item-tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news__item-tag::after {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 9em;
  padding: 1px 12px;
  font-size: 11px;
  color: #ffffff;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
}
.p-news__item-tag--event::after {
  content: "イベント情報";
  background-color: #FFA400;
}
.p-news__item-tag--notice::after {
  content: "お知らせ";
  background-color: #005EFF;
}
.p-news__item-tag--recruit::after {
  content: "採用情報";
  background-color: #3A8A4C;
}
.p-news__item-tag--press::after {
  content: "プレスリリース";
  background-color: #7040A0;
}
.p-news__item-tag--important::after {
  content: "重要";
  background-color: #CC2200;
  letter-spacing: 1em;
  text-indent: 1em;
}

.p-news__item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-news__item-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.p-news__item-title {
  font-size: 16px;
  color: #004097;
  margin-bottom: 6px;
  line-height: 1.5;
}

.p-news__item-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
}
.p-news__item-text a {
  text-decoration: underline;
  color: #2400B3;
}

.p-news__item-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 220px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-news__item-image {
    width: 100%;
  }
}
.p-news__item-image img {
  width: 100%;
  height: auto;
}

.p-makers {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-makers {
    padding: 40px 0;
  }
}

.p-makers__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-makers__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    padding: 0 20px;
  }
}

.p-makers__slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-makers__slider {
    width: 100%;
  }
}

.p-makers__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-makers__arrow[disabled], .p-makers__arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.p-makers__arrow:hover:not([disabled]):not(.is-disabled) {
  opacity: 0.6;
}

.p-makers__prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.p-makers__viewport {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}
.p-makers__viewport:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.p-makers__track {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-makers__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-makers__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.p-recruit {
  background-color: #D9D9D9;
}

.p-recruit__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-recruit__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-recruit__image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__image {
    min-height: 360px;
  }
}
.p-recruit__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  z-index: 0;
}

.p-recruit__image-heading {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.p-recruit__content {
  padding: 60px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__content {
    padding: 40px 20px;
  }
}

.p-recruit__title-en {
  font-size: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit__title-en {
    font-size: 44px;
  }
}

.p-recruit__text {
  max-width: 360px;
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.p-page-intro--company .p-page-intro__image {
  margin-top: -120px;
}
@media screen and (max-width: 767px) {
  .p-page-intro--company .p-page-intro__image {
    margin-top: -60px;
  }
}

.p-page-intro__heading {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 24px;
  font-weight: 600;
  color: #004F99;
}

.p-page-intro__sign {
  margin-inline: auto 0;
  min-width: 200px;
  width: 240px;
  max-width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-page-intro__sign img {
  width: auto;
}

.p-company-features {
  background-color: #fff;
  background-image: url("../img/company/bg-splash.jpg");
  background-size: contain;
  background-position: center 66%;
  background-repeat: no-repeat;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-company-features {
    padding: 60px 0;
  }
}

.p-company-features__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-company-features__inner {
    padding: 0 20px;
  }
}
.p-company-features__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-company-features__inner {
    gap: 36px;
  }
}

.p-company-features__lead {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 26px;
  font-weight: 600;
  color: #004097;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company-features__lead {
    font-size: 19px;
  }
}

.p-company-features__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-company-features__block--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-company-features__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p-company-features__block--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-company-features__block-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-company-features__block-heading {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 34px;
  font-weight: 500;
  color: #004097;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-company-features__block-heading {
    font-size: 26px;
  }
}

.p-company-features__block--quality {
  margin-top: 120px;
}
.p-company-features__block--quality .p-company-features__block-heading {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-company-features__block--quality .p-company-features__block-heading {
    font-size: 17px;
  }
}

.p-company-features__block-body {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-company-features__block-body {
    font-size: 13px;
  }
}

.p-company-features__block-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
}
.p-company-features__block-image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-company-features__certs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-company-features__cert-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.p-company-features__cert-item img {
  height: 200px;
  width: auto;
}

.p-company-features__cert-num {
  font-size: 10px;
  text-align: center;
  color: #666666;
}

.p-company-profile {
  padding: 60px 0;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    padding: 40px 0;
  }
}

.p-company-profile__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-company-profile__inner {
    padding: 0 20px;
  }
}
.p-company-profile__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-company-profile__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-company-profile__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.p-company-profile__figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .p-company-profile__figure {
    width: 100%;
  }
}
.p-company-profile__figure img {
  width: 100%;
  height: auto;
  display: block;
}
.p-company-profile__figure figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: #666666;
  text-align: left;
}

.p-company-profile__table {
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.8;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company-profile__table {
    font-size: 13px;
  }
}
.p-company-profile__table th,
.p-company-profile__table td {
  padding: 14px 20px;
  border-bottom: 1px solid #CCCCCC;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company-profile__table th,
  .p-company-profile__table td {
    padding: 12px 0;
  }
}
.p-company-profile__table th {
  font-weight: 600;
  white-space: nowrap;
  width: 9em;
}
@media screen and (max-width: 767px) {
  .p-company-profile__table th {
    width: 7em;
    padding-right: 12px;
  }
}
.p-company-profile__table td {
  color: #231815;
}
.p-company-profile__table tr:first-child th,
.p-company-profile__table tr:first-child td {
  padding-top: 0;
}
.p-company-profile__table td ul {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
}

.p-company-access {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-company-access {
    padding: 40px 0;
  }
}

.p-company-access__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-company-access__inner {
    padding: 0 20px;
  }
}
.p-company-access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-company-access__maps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .p-company-access__maps {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-company-access__maps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-company-access__map-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-company-access__map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 12px;
}
.p-company-access__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-company-access__map-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.p-company-access__map-address {
  font-size: 14px;
  line-height: 1.8;
  color: #231815;
  font-style: normal;
}

.p-page-intro__image {
  position: relative;
  z-index: -1;
  width: 100%;
}
.p-page-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-business-cases {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-business-cases {
    padding: 40px 0;
  }
}

.p-business-cases__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-business-cases__inner {
    padding: 0 20px;
  }
}
.p-business-cases__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-business-cases__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.p-business-cases__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin: 0;
}
.p-business-cases__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-business-cases__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .p-business-cases__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-business-cases__item-img {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
}
.p-business-cases__item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-business-cases__item-caption {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  font-size: 20px;
  color: #666666;
  line-height: 1.8;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .p-business-cases__item-caption {
    font-size: 16px;
    text-align: left;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.p-business-cases__item:nth-child(odd) .p-business-cases__item-caption {
  text-align: right;
}

.p-business-product {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-business-product {
    padding: 40px 0;
  }
}

.p-business-product__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-business-product__inner {
    padding: 0 20px;
  }
}
.p-business-product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-business-product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
  }
}

.p-business-product__text {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  min-width: 0;
}
.p-business-product__text p {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  margin-bottom: 1.4em;
}
.p-business-product__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-business-product__text p {
    font-size: 13px;
  }
}

.p-business-product__image {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  min-width: 0;
}
.p-business-product__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-page-intro--recruit .p-page-intro__inner {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-page-intro--recruit .p-page-intro__inner {
    max-width: 680px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-intro--recruit .p-page-intro__inner {
    text-align: left;
  }
}

.p-recruit-jobs {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs {
    padding: 40px 0;
  }
}

.p-recruit-jobs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__inner {
    padding: 0 20px;
  }
}
.p-recruit-jobs__inner {
  max-width: 800px;
}

.p-recruit-jobs__lead {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 20px;
  font-weight: 600;
  color: #004F99;
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__lead {
    margin-bottom: 20px;
    text-align: left;
  }
}

.p-recruit-jobs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.p-recruit-jobs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90px;
  padding: 24px 32px;
  border: 1px solid #CCCCCC;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-recruit-jobs__item:hover {
  background-color: #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 120px;
    padding: 20px 16px;
    gap: 16px;
  }
}

.p-recruit-jobs__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.p-recruit-jobs__title-wrap::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='15' fill='%23004F99'/%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M13.4492 19.0001C13.3346 19.0001 13.2199 18.9556 13.1322 18.8689C12.9569 18.6955 12.9569 18.4131 13.1322 18.2397L16.916 14.4978L13.1322 10.7582C12.9546 10.5848 12.9546 10.3047 13.1322 10.1312C13.3076 9.9556 13.5909 9.9556 13.7662 10.1312L17.8669 14.1866C18.0423 14.36 18.0423 14.6424 17.8669 14.8158L13.7662 18.8711C13.6785 18.9578 13.5639 19.0023 13.4492 19.0023V19.0001Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='5' height='9' fill='white' transform='translate(13 10)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-recruit-jobs__title {
  font-size: 16px;
  font-weight: 600;
  color: #004F99;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__title {
    font-size: 13px;
  }
}

.p-recruit-jobs__logo {
  display: block;
  height: 36px;
  width: auto;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__logo {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.p-contact-form {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 40px 0 60px;
  }
}

.p-contact-form__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__inner {
    padding: 0 20px;
  }
}
.p-contact-form__inner {
  max-width: 800px;
}

.p-contact-form__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #231815;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__lead {
    font-size: 13px;
    margin-bottom: 28px;
  }
}

.p-contact-form__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.p-contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-contact-form__row--top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}

.p-contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-contact-form__label {
    width: 100%;
    font-size: 13px;
  }
}

.p-contact-form__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-contact-form__badge--required {
  background-color: #c0392b;
  color: #fff;
}

.p-contact-form__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-form__field {
    width: 100%;
  }
}
.p-contact-form__field input[type=text],
.p-contact-form__field input[type=email],
.p-contact-form__field input[type=tel] {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-size: 16px;
  color: #231815;
  background-color: #eee;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.p-contact-form__field input[type=text]::-webkit-input-placeholder, .p-contact-form__field input[type=email]::-webkit-input-placeholder, .p-contact-form__field input[type=tel]::-webkit-input-placeholder {
  color: #bbb;
}
.p-contact-form__field input[type=text]::-moz-placeholder, .p-contact-form__field input[type=email]::-moz-placeholder, .p-contact-form__field input[type=tel]::-moz-placeholder {
  color: #bbb;
}
.p-contact-form__field input[type=text]:-ms-input-placeholder, .p-contact-form__field input[type=email]:-ms-input-placeholder, .p-contact-form__field input[type=tel]:-ms-input-placeholder {
  color: #bbb;
}
.p-contact-form__field input[type=text]::-ms-input-placeholder, .p-contact-form__field input[type=email]::-ms-input-placeholder, .p-contact-form__field input[type=tel]::-ms-input-placeholder {
  color: #bbb;
}
.p-contact-form__field input[type=text]::placeholder,
.p-contact-form__field input[type=email]::placeholder,
.p-contact-form__field input[type=tel]::placeholder {
  color: #bbb;
}
.p-contact-form__field input[type=text]:focus,
.p-contact-form__field input[type=email]:focus,
.p-contact-form__field input[type=tel]:focus {
  border-color: #004F99;
}
@media screen and (max-width: 767px) {
  .p-contact-form__field input[type=text],
  .p-contact-form__field input[type=email],
  .p-contact-form__field input[type=tel] {
    font-size: 13px;
  }
}
.p-contact-form__field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-size: 16px;
  color: #231815;
  background-color: #eee;
  resize: vertical;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  line-height: 1.8;
}
.p-contact-form__field textarea:focus {
  border-color: #004F99;
}
@media screen and (max-width: 767px) {
  .p-contact-form__field textarea {
    font-size: 13px;
  }
}

.p-contact-form__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 24px;
  padding: 4px 0;
}

.p-contact-form__radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #231815;
  cursor: pointer;
}
.p-contact-form__radio-label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #CCCCCC;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  position: relative;
  background-color: #eee;
}
.p-contact-form__radio-label input[type=radio]:checked {
  border-color: #004F99;
}
.p-contact-form__radio-label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #004F99;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-label {
    font-size: 13px;
  }
}

.p-contact-form__privacy {
  border: 1px solid #CCCCCC;
  margin-bottom: 20px;
  max-height: 220px;
  overflow-y: auto;
}

.p-contact-form__privacy-body {
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #231815;
}
.p-contact-form__privacy-body p {
  margin-bottom: 1em;
}
.p-contact-form__privacy-body p:last-child {
  margin-bottom: 0;
}

.p-contact-form__privacy-heading {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #004F99;
  margin-bottom: 4px;
}

.p-contact-form__agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: #231815;
  cursor: pointer;
  margin-bottom: 32px;
}
.p-contact-form__agree input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #CCCCCC;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
  position: relative;
}
.p-contact-form__agree input[type=checkbox]:checked {
  background-color: #004F99;
  border-color: #004F99;
}
.p-contact-form__agree input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: 13px;
  }
}

.p-contact-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
}

.p-contact-form__btn {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 360px;
  height: 56px;
  background-color: #004097;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-contact-form__btn:hover {
  opacity: 0.8;
}
.p-contact-form__btn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn {
    font-size: 15px;
    height: 52px;
  }
}
.p-contact-form__btn[type=button] {
  background-color: #666666;
}
.p-contact-form__btn[type=submit] {
  background-color: #004097;
}