@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900?family=Oswald:wght@200..700&display=swap");
:root {
  --black: #000;
  --white: #fff;
  --blue: #324687;
  --gray1: #F5F5F5;
  --gray2: #CACACA;
  --easing: cubic-bezier(0.25, 0.78, 0.33, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
header,
footer,
main,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

body {
  color: var(--black);
  margin: 0;
  padding: 0;
  line-height: 1;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  word-break: break-all;
  overflow-wrap: break-word;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}
body.is-open {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin: 0;
}

strong {
  font-weight: bold;
}

hr {
  border: solid 1px #E6E6E6;
  margin: 0 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
  outline: 0;
  transition: all 0.3s ease;
}

figure {
  padding: 0;
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: "";
}

input,
textarea,
button {
  margin: 0;
  padding: 0;
  border-radius: 0;
  outline: 0;
  background: none;
}

button {
  border: 0;
  color: var(--black);
}

table {
  border-collapse: collapse;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: all 400ms var(--easing);
}
a img {
  backface-visibility: hidden;
  overflow: hidden;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.f-lower {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .f-lower {
    padding-top: 60px;
  }
}
.f-lower + footer .l-footer {
  padding-top: 80px;
}

.f-wrap {
  max-width: 1080px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .f-wrap {
    padding: 0 20px;
  }
}

body,
input,
select,
textarea,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.l-header {
  padding: 25px 30px 25px 40px;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: background-color 400ms var(--easing);
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 16px 5vw;
  }
}
.l-header.is-scroll {
  background-color: rgba(255, 255, 255, 0.8);
}
.is-open .l-header {
  background-color: var(--white);
}

.l-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  opacity: 0;
  visibility: hidden;
  transition: all 400ms var(--easing);
}
.is-scroll .l-header__logo {
  opacity: 1;
  visibility: visible;
}

.is-open .l-header__logo {
  opacity: 1;
  visibility: visible;
}

.l-header__logo img {
  width: 156px;
}
@media screen and (max-width: 767px) {
  .l-header__logo img {
    width: 151px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: 61px;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, #F9F9F9 0%, #FFFFFF 100%);
    height: calc(100vh - 61px);
    overflow-y: auto;
    z-index: 5;
    padding: 16px 0 40px;
    transition: all 400ms var(--easing);
    opacity: 0;
    visibility: hidden;
  }
  .l-header__nav::before {
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 0;
    background-position-y: 0;
    content: "";
    display: block;
    background-image: url(../img/common/bg_drawer_arrow.svg);
    position: fixed;
    bottom: 0;
    right: 0;
    width: 56.5vw;
    height: 99.4vw;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  .l-header__nav::before {
    width: 26vw;
    height: 45vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1120px) {
  .l-header__nav-list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    width: 78.6vw;
    margin: 0 auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
  }
}
.l-header__nav-list a {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.02em;
  transition: all 400ms var(--easing);
}
@media screen and (max-width: 1120px) {
  .l-header__nav-list a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-size: 1rem;
    color: var(--blue);
    padding: 24px 0;
    border-bottom: solid 1px #CACACA;
  }
  .l-header__nav-list a::after {
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 0;
    background-position-y: 0;
    content: "";
    background-image: url(../img/common/arrow_circle-blue.svg);
    width: 15px;
    height: 15px;
    display: block;
  }
}
@media (any-hover: hover) {
  .l-header__nav-list a:hover {
    opacity: 1;
    color: #FFFF64;
  }
}
.is-scroll .l-header__nav-list a {
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .is-scroll .l-header__nav-list a {
    color: var(--blue);
  }
}
@media (any-hover: hover) {
  .is-scroll .l-header__nav-list a:hover {
    color: #0073AA;
  }
}

.l-header__drawer {
  position: absolute;
  width: 60px;
  height: 100%;
  right: 0px;
  top: 0px;
  background: linear-gradient(270deg, rgba(0, 115, 170, 0.8) 0%, rgba(50, 70, 135, 0.8) 100%);
  z-index: 6;
}
.is-scroll .l-header__drawer {
  background: transparent;
}

.is-open .l-header__drawer {
  background: transparent;
}

.l-footer {
  padding-top: 233px;
  background-color: var(--blue);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 160px;
  }
}
.l-footer__content {
  padding: 0 13.2vw;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    padding: 0 5vw;
  }
}
.l-footer__pagetop {
  position: fixed;
  bottom: 30px;
  right: 2.2vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.l-footer__pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    bottom: 20px;
    right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop img {
    width: 64px;
  }
}

.l-footer-nav {
  position: absolute;
  top: -170px;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .l-footer-nav {
    top: -75px;
  }
}
.l-footer-nav__content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
}
.l-footer-nav__content li {
  width: 45.5vw;
  max-width: 620px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav__content li {
    width: 46.9vw;
  }
}
.l-footer-nav__content li + li {
  border-left: solid 2px var(--white);
}
.l-footer-nav__content a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 400ms var(--easing);
  position: relative;
}
@media (any-hover: hover) {
  .l-footer-nav__content a:hover::after {
    opacity: 1;
  }
  .l-footer-nav__content a:hover .l-footer-nav__item::before {
    opacity: 0;
  }
}
.l-footer-nav__content a::before, .l-footer-nav__content a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-footer-nav__content a::before {
  background: linear-gradient(360deg, #8DDAFF 0%, #0088C9 100%);
}
.l-footer-nav__content a::after {
  background: linear-gradient(0deg, rgba(0, 0, 119, 0.35), rgba(0, 0, 119, 0.35));
  opacity: 0;
  transition: opacity 400ms var(--easing);
}
.l-footer-nav__item {
  color: var(--white);
  text-align: center;
  padding: 46px min(7.4vw, 100px);
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1120px) {
  .l-footer-nav__item {
    padding: 46px min(3.2vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav__item {
    padding: 26px 4.2vw;
  }
}
.l-footer-nav__item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 119, 0.2), rgba(0, 0, 119, 0.2));
  transition: opacity 400ms var(--easing);
}
.l-footer-nav__item > * {
  position: relative;
  z-index: 1;
}
.l-footer-nav__en {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-footer-nav__en {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.l-footer-nav__label {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
@media screen and (max-width: 1120px) {
  .l-footer-nav__label {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav__label {
    font-size: min(5.4vw, 22px);
  }
}
.l-footer-nav__icon {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav__icon {
    margin-top: 6px;
  }
  .l-footer-nav__icon img {
    width: 50px;
  }
}
.l-footer-nav__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav__description {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
    text-align: left;
  }
}

.l-footer-main {
  max-width: 1000px;
  margin: 0 auto;
}
.l-footer-main__content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1120px) {
  .l-footer-main__content {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-main__content {
    gap: 34px;
  }
}
.l-footer-main__info {
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer-main__info {
    padding-top: 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-main__logo img {
    width: 208px;
  }
}
.l-footer-main__company {
  margin-top: 37px;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .l-footer-main__company {
    margin-top: 24px;
    opacity: 0.7;
  }
}
.l-footer-main__office {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-footer-main__office {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.l-footer-main__address {
  font-size: 12px;
  font-size: 0.75rem;
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .l-footer-main__address {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.l-footer-main__links {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4.4vw;
}
@media screen and (max-width: 767px) {
  .l-footer-main__links {
    flex-direction: column;
    gap: 20px;
  }
}
.l-footer-main__links-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4.4vw;
}
@media screen and (max-width: 767px) {
  .l-footer-main__links-row {
    gap: 3vw 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-main__links-row > * {
    flex-basis: 50%;
  }
}

.l-footer-links li + li {
  margin-top: 16px;
}
.l-footer-links li a {
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.l-footer-links li > a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}
.l-footer-links__child {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer-links__child {
    margin-top: 16px;
  }
}
.l-footer-links__child li + li {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer-links__child li + li {
    margin-top: 12px;
  }
}
.l-footer-links__child li a {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .l-footer-links--sub {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    row-gap: 20px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-links--sub li {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-links--sub li + li {
    margin-top: 0;
  }
}

.l-footer-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 102px auto 0;
  padding-bottom: 52px;
}
@media screen and (max-width: 1120px) {
  .l-footer-sub {
    margin: 52px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-sub {
    margin: 30px 0 0;
    padding-bottom: 78px;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }
}
.l-footer-sub__copyright {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  opacity: 0.6;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .l-footer-sub__copyright {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.l-footer-sub__links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-footer-sub__links li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-footer-sub__links li + li::before {
  content: "";
  width: 1px;
  height: 14px;
  display: block;
  background-color: var(--white);
  margin: 0 14px;
}
@media screen and (max-width: 767px) {
  .l-footer-sub__links li + li::before {
    margin: 0 10px;
  }
}
.l-footer-sub__links a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--white);
}

@media screen and (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
textarea {
  appearance: none;
}

input[type=number] {
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

select::-ms-expand {
  display: none;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

.c-drawer {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.c-drawer__line {
  display: inline-block;
  width: 26px;
  height: 3px;
  background-color: var(--white);
  position: relative;
  transition: background-color 400ms var(--easing);
}
.is-scroll .c-drawer__line {
  background-color: var(--blue);
}

.is-open .c-drawer__line {
  background-color: var(--blue);
}

.c-drawer__line::before, .c-drawer__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  right: 0;
  background-color: var(--white);
  transition: all 400ms var(--easing);
}
.is-scroll .c-drawer__line::before, .is-scroll .c-drawer__line::after {
  background-color: var(--blue);
}

.is-open .c-drawer__line::before, .is-open .c-drawer__line::after {
  background-color: var(--blue);
}

.c-drawer__line::before {
  top: -10px;
}
.c-drawer__line::after {
  top: 10px;
}
.c-drawer[aria-expanded=true] .c-drawer__line {
  background-color: transparent;
  width: 32px;
}
.c-drawer[aria-expanded=true] .c-drawer__line::before, .c-drawer[aria-expanded=true] .c-drawer__line::after {
  top: -2px;
}
.c-drawer[aria-expanded=true] .c-drawer__line::before {
  transform: rotate(45deg);
}
.c-drawer[aria-expanded=true] .c-drawer__line::after {
  transform: rotate(-45deg);
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  width: 280px;
  max-width: 100%;
  height: 58px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}
.c-button--gray {
  background-color: #666;
  border: 1px solid #666;
}
.c-button span {
  position: relative;
  z-index: 1;
}
.c-button::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/common/arrow_circle-white.svg);
  position: absolute;
  top: calc(50% + 1px);
  right: 16px;
  translate: 0 -50%;
  z-index: 1;
}
.c-button--reverse::before {
  right: auto;
  left: 16px;
  transform: scale(-1, 1);
}
.c-button::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: -5%;
  display: block;
  width: 105%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right bottom;
  transition: transform 400ms var(--easing);
  z-index: 0;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (any-hover: hover) {
  .c-button:hover {
    color: var(--blue);
  }
  .c-button:hover::before {
    background-image: url(../img/common/arrow_circle-blue.svg);
  }
  .c-button:hover::after {
    transform: scale(1, 1);
  }
}

.c-mv {
  position: relative;
  background: linear-gradient(90deg, rgb(0, 136, 201) 0%, rgb(141, 218, 255) 100%);
  padding: 12px 0;
}
.c-mv.u-sus {
  background: url(../img/sustainability/img_mv.jpg) 0 0/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .c-mv.u-sus {
    background: url(../img/sustainability/img_mv_sp.jpg) 0 0/cover no-repeat;
  }
}
.c-mv.u-biz {
  background: url(../img/business/img_mv.jpg) 0 0/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .c-mv.u-biz {
    background: url(../img/business/img_mv_sp.jpg) 0 0/cover no-repeat;
  }
}
.c-mv:has(.c-mv-content) {
  height: 300px;
}
@media screen and (max-width: 767px) {
  .c-mv:has(.c-mv-content) {
    height: 240px;
    padding: 10px 0;
  }
}
.c-mv:has(.c-mv-content)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 300px;
  background: url(../img/common/bg_mv.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .c-mv:has(.c-mv-content)::before {
    width: 300px;
    height: 240px;
    background: url(../img/common/bg_mv_sp.png) 0 0/100% auto no-repeat;
  }
}
.c-mv__bread {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .c-mv__bread {
    padding: 0 10px;
  }
}
.c-mv__bread ul {
  list-style: none;
  white-space: nowrap;
  word-break: keep-all;
  overflow-x: auto;
  line-height: 1em;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-mv__bread ul::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-mv__bread ul {
    display: block;
  }
}
.c-mv__bread ul li {
  display: inline;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--white);
  padding: 0 0 0 25px;
}
@media screen and (max-width: 767px) {
  .c-mv__bread ul li {
    display: inline-block;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.c-mv__bread ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 10px;
  display: block;
  width: 5px;
  height: 8px;
  background: url(../img/common/icn_bread.svg) 0 0/100% auto no-repeat;
}
.c-mv__bread ul li:first-child {
  padding: 0;
}
.c-mv__bread ul li:first-child::before {
  content: none;
}
.c-mv__bread ul li a {
  color: var(--white);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-mv__bread ul li a:hover {
    text-decoration: none;
  }
}
.c-mv-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-mv-content {
    top: calc(50% + 8px);
    padding: 0 20px;
  }
}
.c-mv-content__pre {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 500;
  margin: 0 0 5px;
}
@media screen and (max-width: 767px) {
  .c-mv-content__pre {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-mv-content__ttl {
  font-size: 46px;
  font-size: 2.875rem;
  color: var(--white);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-mv-content__ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mv-content__ttl.small {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-mv-content__txt {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .c-mv-content__txt {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}

.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .c-pager {
    margin: 30px 0 0;
  }
}
.c-pager .item {
  width: 40px;
  height: 40px;
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  border-radius: 2px;
}
.c-pager .item.current {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgb(50, 70, 135) 0%, rgb(0, 115, 170) 100%);
  color: var(--white);
  border-radius: 2px;
}
.c-pager .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--white);
  color: var(--blue);
  border-radius: 2px;
  transition: 0.3s;
}
.c-pager .item.dot {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 1em;
  text-align: center;
  padding: 0 0 0.3rem;
}
.c-pager .item.prev, .c-pager .item.next {
  position: relative;
  font-size: 0;
}
.c-pager .item.prev:has(a)::before, .c-pager .item.next:has(a)::before {
  content: none;
}
.c-pager .item.prev:has(a) a, .c-pager .item.next:has(a) a {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
}
.c-pager .item.prev:has(a) a::before, .c-pager .item.next:has(a) a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: url(../img/common/icn_pager.svg) 0 0/100% auto no-repeat;
  transform: translate(-50%, -50%);
}
.c-pager .item.prev::before, .c-pager .item.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: url(../img/common/icn_pager_blank.svg) 0 0/100% auto no-repeat;
  transform: translate(-50%, -50%) scale(-1, 1);
}
.c-pager .item.next {
  margin-left: 20px;
}
.c-pager .item.prev {
  margin-right: 20px;
}
.c-pager .item.prev:has(a) a::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.c-pager .item.prev::before {
  transform: translate(-50%, -50%);
}

.c-heading-main {
  position: relative;
  border-bottom: 2px solid var(--gray2);
  padding: 0 0 24px;
  margin: 0 0 48px;
}
@media screen and (max-width: 767px) {
  .c-heading-main {
    padding: 0 0 20px;
    margin: 0 0 40px;
  }
}
.c-heading-main::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background: var(--blue);
  width: 40px;
  height: 2px;
  z-index: 2;
}
.c-heading-main__en {
  display: block;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  color: var(--blue);
  margin: 0 0 5px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-heading-main__en {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 4px;
  }
}
.c-heading-main__ja {
  display: block;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1.4;
  letter-spacing: 0.02em;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .c-heading-main__ja {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.c-heading-sub {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  color: var(--blue);
  line-height: 1.4;
  border-left: 2px solid var(--blue);
  margin: 48px 0 24px;
  padding: 0 0 0 16px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-heading-sub {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 40px 0 20px;
  }
}

.c-nav {
  background: var(--gray1);
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .c-nav {
    padding: 20px;
  }
}
.c-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1080px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-nav-list {
    flex-wrap: wrap;
    gap: 10px 0;
    padding: 0;
  }
}
.c-nav-list__item {
  width: calc((100% - 48px) / 4);
  height: 64px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-nav-list__item {
    width: calc(50% - 5px);
    height: 56px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-nav-list__item a {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 4px;
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--blue);
}
@media screen and (max-width: 767px) {
  .c-nav-list__item a {
    padding: 12px;
  }
}
.c-nav-list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  background: url(../img/common/arrow_circle-blue.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-nav-list__item a::before {
    right: 12px;
  }
}
.c-nav-list__item a:hover {
  opacity: 0.7;
}
.c-nav-list__item.is-current {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 16px;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
}
.c-nav-sub {
  max-width: 1080px;
  padding: 0 40px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .c-nav-sub {
    padding: 0 20px;
    margin: 30px 0 0;
  }
}
.c-nav-sub-list {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-nav-sub-list {
    gap: 12px;
  }
}
.c-nav-sub-list__item {
  width: 180px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  border-bottom: 1px solid var(--gray2);
}
@media screen and (max-width: 767px) {
  .c-nav-sub-list__item {
    width: auto;
  }
  .column .c-nav-sub-list__item {
    width: calc(50% - 6px);
  }
}
.c-nav-sub-list__item a {
  position: relative;
  display: block;
  padding: 0 40px 10px 0;
}
@media screen and (max-width: 767px) {
  .c-nav-sub-list__item a {
    padding: 0 32px 10px 0;
  }
}
.c-nav-sub-list__item a::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 16px;
  width: 20px;
  height: 20px;
  background: url(../img/common/arrow_circle-blue.svg) 0 0/20px 20px no-repeat;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .c-nav-sub-list__item a::before {
    right: 4px;
  }
}
.c-nav-sub-list__item a:hover {
  opacity: 0.7;
}

.p-top-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-direction: column;
  text-align: center;
  color: var(--blue);
}
@media screen and (max-width: 767px) {
  .p-top-heading {
    gap: 2px;
  }
}
.p-top-heading__en {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-heading__en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-top-heading__ja {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  background: linear-gradient(270deg, #0073AA 0%, #324687 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .p-top-heading__ja {
    font-size: 32px;
    font-size: 2rem;
  }
}

.p-top-fv video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-fv video {
    aspect-ratio: 0.78125;
  }
}

.p-top-badge {
  pointer-events: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 156px;
  height: 156px;
  border-radius: 100%;
  text-align: center;
  background: var(--white);
  box-shadow: 0 0 8px rgba(202, 202, 202, 0.5);
  z-index: 100;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-badge {
    bottom: 1rem;
    right: 1rem;
    width: 7.875rem;
    height: 7.875rem;
  }
}
.p-top-badge.is-show {
  pointer-events: all;
  opacity: 1;
}
.p-top-badge__inner {
  position: relative;
  padding: 28px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-badge__inner {
    padding: 1.4rem 0 0;
  }
}
.p-top-badge__close {
  position: absolute;
  top: 10px;
  right: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-top-badge__close {
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
  }
}
.p-top-badge__txt {
  line-height: 1;
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 5px;
}
@media screen and (max-width: 767px) {
  .p-top-badge__txt {
    font-size: 0.75rem;
  }
}
.p-top-badge__date {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 2rem;
  padding: 5px 10px;
  margin: 2px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-badge__date {
    font-size: 0.688rem;
    padding: 3px 8px;
  }
}
.p-top-badge__num {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin: 2px 0;
}
@media screen and (max-width: 767px) {
  .p-top-badge__num {
    font-size: 2rem;
  }
}
.p-top-badge__tanni {
  text-align: center;
  font-size: 0.625rem;
}

.p-top-company {
  position: relative;
  background: linear-gradient(90deg, #B8E5FB 0%, #E9F2F7 100%);
}
.p-top-company__content {
  padding: 160px 13.2vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .p-top-company__content {
    padding: 160px 7.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__content {
    padding: 60px 5vw 80px;
  }
}
.p-top-company__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 1120px) {
  .p-top-company__description {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-top-company__links {
  margin-top: 60px;
}
.p-top-company__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}
@media screen and (max-width: 1120px) {
  .p-top-company__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__list {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.p-top-company__list li {
  flex-basis: 100%;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .p-top-company__list li {
    flex-basis: calc(50% - 15px);
    max-width: initial;
  }
}
@media (any-hover: hover) {
  .p-top-company__list a:hover .p-top-company__list-img img {
    transform: scale(1.1);
  }
}
.p-top-company__list-item {
  position: relative;
  overflow: hidden;
}
.p-top-company__list-item::before, .p-top-company__list-item::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.p-top-company__list-item::before {
  height: 100%;
  background: #CACACA;
  opacity: 0.2;
}
.p-top-company__list-item::after {
  height: 50%;
  background: linear-gradient(180deg, rgba(50, 70, 135, 0) 0%, #324687 100%);
  opacity: 0.6;
  transform: rotate(-180deg);
}
.p-top-company__list-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 400ms var(--easing);
}
.p-top-company__list-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  gap: 10px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
@media screen and (max-width: 1120px) {
  .p-top-company__list-label {
    font-size: 16px;
    font-size: 1rem;
    top: 12px;
    left: 12px;
    gap: 6px;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-company__list-label {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-top-company__list-label::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background-image: url(../img/common/arrow_circle-white.svg);
  position: relative;
  top: 1px;
}
@media screen and (max-width: 767px) {
  .p-top-company__list-label::after {
    top: 2px;
  }
}
.p-top-company__arrow {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-top-company__arrow {
    top: 64px;
  }
}
.p-top-company__arrow-img {
  display: block;
  height: 100%;
  transition: transform 800ms var(--easing);
  will-change: transform;
  backface-visibility: hidden;
}
.p-top-company__arrow-img img {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-company__arrow-img img {
    width: 54vw;
    height: auto;
  }
}

.p-top-bridge {
  position: relative;
  overflow: hidden;
}
.p-top-bridge::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0073AA;
  mix-blend-mode: plus-darker;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-bridge__bg {
  display: block;
  width: 100%;
  height: 30vw;
  max-height: 400px;
}
@media screen and (max-width: 767px) {
  .p-top-bridge__bg {
    height: 64vw;
  }
}
.p-top-bridge__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-bridge__text {
  font-size: 150px;
  font-size: 9.375rem;
  font-size: 8vw;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
  transition: transform 800ms var(--easing);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-bridge__text {
    font-size: 90px;
    font-size: 5.625rem;
    font-size: 12vw;
  }
}
.p-top-bridge__text span {
  display: block;
  opacity: 0;
  transform: translateY(20vw);
  transition: opacity 800ms var(--easing), transform 800ms var(--easing);
}
.p-top-bridge__text.is-show span {
  opacity: 1;
  transform: translateY(0);
}

.is-scrolling .js-bridge-text {
  transition: none !important;
}

.js-bridge-text {
  contain: paint;
}

.p-top-business {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-top-business {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.p-top-business__intro {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-top-business__intro {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-top-business__content {
  margin-top: 290px;
  background: linear-gradient(90deg, #8DDAFF 0%, #0088C9 100%);
  height: 478px;
  position: relative;
}
@media screen and (max-width: 1120px) {
  .p-top-business__content {
    height: 42vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__content {
    background: none;
    height: auto;
    margin-top: 60px;
    padding: 0 5vw;
  }
}
.p-top-business__main {
  position: absolute;
  top: -210px;
  left: 50%;
  translate: -50%;
  width: 100%;
  padding: 0 6.3vw;
}
@media screen and (max-width: 1120px) {
  .p-top-business__main {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__main {
    position: relative;
    top: auto;
    left: auto;
    translate: none;
    padding: 0;
  }
}
.p-top-business__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .p-top-business__list {
    flex-direction: column;
    gap: 10px;
  }
}
.p-top-business__list li {
  flex-basis: calc(25% - 2px);
  max-width: 295px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-business__list li {
    flex-basis: auto;
    max-width: initial;
  }
}
.p-top-business__list a {
  display: block;
  height: 100%;
  background-color: #EDEDED;
  backface-visibility: hidden;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-top-business__list a:hover .p-top-business__list-img img {
    transform: scale(1.1);
  }
}
.p-top-business__list-item {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-top-business__list-item::before, .p-top-business__list-item::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
  backface-visibility: hidden;
}
.p-top-business__list-item::before {
  background-color: #CACACA;
  opacity: 0.1;
  height: 100%;
}
.p-top-business__list-item::after {
  background: linear-gradient(180deg, rgba(50, 70, 135, 0) 0%, #324687 100%);
  opacity: 0.6;
  transform: rotate(-180deg);
  height: 50%;
}
.p-top-business__list-label {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--white);
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}
@media screen and (max-width: 1120px) {
  .p-top-business__list-label {
    font-size: 16px;
    font-size: 1rem;
    top: 16px;
    left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__list-label {
    font-size: 20px;
    font-size: 1.25rem;
    top: 20px;
    left: 20px;
  }
}
.p-top-business__list-label::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(../img/common/arrow_circle-white.svg);
  margin-left: 8px;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 1120px) {
  .p-top-business__list-label::after {
    width: 16px;
    height: 16px;
    margin-left: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__list-label::after {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
}
.p-top-business__list-label:has(br)::after {
  margin-left: 4px;
}
@media screen and (max-width: 1120px) {
  .p-top-business__list-label:has(br)::after {
    margin-left: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__list-label:has(br)::after {
    margin-left: 4px;
  }
}
.p-top-business__list-img {
  display: block;
}
.p-top-business__list-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 0.7722513089;
  transition: transform 400ms var(--easing);
}
@media screen and (max-width: 767px) {
  .p-top-business__list-img img {
    aspect-ratio: 1.5022421525;
  }
}
.p-top-business__list-detail {
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .p-top-business__list-detail {
    padding: 20px;
  }
}
.p-top-business__list-description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1120px) {
  .p-top-business__list-description {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-top-business__button {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-business__button {
    margin-top: 32px;
  }
}
.p-top-business__button a {
  margin: 0 auto;
}

.p-top-news {
  position: relative;
  padding: 76px 13.2vw 100px;
  background-color: #F7F7F7;
}
@media screen and (max-width: 1120px) {
  .p-top-news {
    padding: 76px 7.2vw 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 60px 5vw 80px;
  }
}
.p-top-news__inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .p-top-news__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    flex-direction: column;
    gap: 0;
  }
}
.p-top-news__label {
  flex-shrink: 0;
}
.p-top-news__label .p-top-heading {
  justify-content: flex-start;
  align-items: flex-start;
}
.p-top-news__content {
  flex-grow: 1;
}
.p-top-news__list a {
  display: block;
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid #CACACA;
}
@media (any-hover: hover) {
  .p-top-news__list a:hover {
    opacity: 0.7;
  }
}
.p-top-news__list a::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/common/arrow_circle-blue.svg);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.p-top-news__meta {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.p-top-news__date {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
}
@media screen and (max-width: 767px) {
  .p-top-news__date {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-top-news__category {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--white);
  padding: 2px 4px;
}
@media screen and (max-width: 767px) {
  .p-top-news__category {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-top-news__category.sustainability {
  background-color: #029300;
}
.p-top-news__category.event {
  background-color: #00A2B7;
}
.p-top-news__category.company {
  background-color: #0061A7;
}
.p-top-news__category.recruit {
  background-color: var(--blue);
}
.p-top-news__title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 4px;
  word-break: break-word;
  padding-right: 20px;
}
.p-top-news__button {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .p-top-news__button {
    margin-top: 32px;
  }
  .p-top-news__button a {
    margin: 0 auto;
  }
}
.p-top-news__arrow {
  position: absolute;
  left: 0;
  bottom: -280px;
}
@media screen and (max-width: 767px) {
  .p-top-news__arrow {
    left: auto;
    bottom: auto;
    top: -130px;
    right: 0;
  }
}

.p-top-sustainability {
  padding: 120px 13.2vw 290px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1120px) {
  .p-top-sustainability {
    padding: 120px 7.2vw 290px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sustainability {
    padding: 0 0 220px;
  }
}
.p-top-sustainability .p-top-heading {
  justify-content: flex-start;
  align-items: flex-start;
}
.p-top-sustainability__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-sustainability__inner {
    width: 100%;
    margin-top: 24px;
    padding: 0 5vw;
  }
}
.p-top-sustainability__content {
  width: min(39vw, 530px);
}
@media screen and (max-width: 1120px) {
  .p-top-sustainability__content {
    width: min(42vw, 530px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-sustainability__content {
    width: 100%;
  }
}
.p-top-sustainability__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-top-sustainability__description {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-top-sustainability__button {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .p-top-sustainability__button {
    margin-top: 32px;
  }
  .p-top-sustainability__button a {
    margin: 0 auto;
  }
}
.p-top-sustainability__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media screen and (max-width: 1120px) {
  .p-top-sustainability__img {
    right: -2vw;
    height: 106%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sustainability__img {
    position: relative;
    top: auto;
    right: auto;
    height: auto;
    width: 100%;
  }
}
.p-top-sustainability__img-content {
  display: block;
  height: 100%;
}
.p-top-sustainability__img img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-sustainability__img img {
    width: 100%;
    height: auto;
  }
}

.p-news {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 50px 0 80px;
  }
}
.p-news--detail {
  position: relative;
}
.p-news--detail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 564px;
  background: url(../img/common/bg_detail.png) 0 bottom/100% auto no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-news--detail::before {
    width: 108px;
    height: 200px;
  }
}
.p-news__list {
  border-top: 1px solid #CACACA;
}
.p-news__list a {
  display: block;
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid #CACACA;
}
@media (any-hover: hover) {
  .p-news__list a:hover {
    opacity: 0.7;
  }
}
.p-news__list a::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/common/arrow_circle-blue.svg);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.p-news-cat {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-news-cat {
    margin: 0 0 30px;
  }
}
.p-news-cat__item {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  overflow: hidden;
}
.p-news-cat__item.is-current {
  color: var(--white);
  background: linear-gradient(90deg, rgb(50, 70, 135) 0%, rgb(0, 115, 170) 100%);
  padding: 12px 20px;
}
.p-news-cat__item a {
  display: block;
  color: #9E9E9E;
  background: #F7F7F7;
  padding: 12px 20px;
}
@media (any-hover: hover) {
  .p-news-cat__item a:hover {
    opacity: 0.7;
  }
}
.p-news-head {
  padding: 0 0 40px;
  margin: 0 0 48px;
  border-bottom: 1px solid var(--gray2);
}
@media screen and (max-width: 767px) {
  .p-news-head {
    padding: 0 0 24px;
    margin: 0 0 32px;
  }
}
.p-news-head__data {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
  margin: 0 0 16px;
}
@media screen and (max-width: 767px) {
  .p-news-head__data {
    margin: 0 0 10px;
    gap: 0 14px;
  }
}
.p-news-head__date {
  color: var(--blue);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news-head__date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-news-head-list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}
@media screen and (max-width: 767px) {
  .p-news-head-list {
    margin-top: 8px;
  }
}
.p-news-head-list__item {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-news-head-list__item {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-news-head-list__item a {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 4px 6px;
}
.p-news-head-list__item.sustainability a {
  background-color: #029300;
}
.p-news-head-list__item.event a {
  background-color: #00A2B7;
}
.p-news-head-list__item.company a {
  background-color: #0061A7;
}
.p-news-head-list__item.recruit a {
  background-color: var(--blue);
}
.p-news-head__ttl {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-news-head__ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-news-detail__txt {
  overflow: hidden;
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-news-detail__txt {
    margin: 2.5rem 0 0;
  }
}
.p-news-detail__txt h1,
.p-news-detail__txt h2,
.p-news-detail__txt h3,
.p-news-detail__txt h4,
.p-news-detail__txt h5,
.p-news-detail__txt h6 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--blue);
  border-left: 2px solid var(--blue);
  word-break: normal;
  padding-left: 16px;
}
.p-news-detail__txt * + h1,
.p-news-detail__txt * + h2,
.p-news-detail__txt * + h3,
.p-news-detail__txt * + h4,
.p-news-detail__txt * + h5,
.p-news-detail__txt * + h6 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-news-detail__txt * + h1,
  .p-news-detail__txt * + h2,
  .p-news-detail__txt * + h3,
  .p-news-detail__txt * + h4,
  .p-news-detail__txt * + h5,
  .p-news-detail__txt * + h6 {
    margin-top: 72px;
  }
}
.p-news-detail__txt * + figure,
.p-news-detail__txt * + img,
.p-news-detail__txt * + .wp-block-image,
.p-news-detail__txt * + .wp-block-embed,
.p-news-detail__txt * + .wp-block-columns {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-news-detail__txt * + figure,
  .p-news-detail__txt * + img,
  .p-news-detail__txt * + .wp-block-image,
  .p-news-detail__txt * + .wp-block-embed,
  .p-news-detail__txt * + .wp-block-columns {
    margin-top: 24px;
  }
}
.p-news-detail__txt * + p,
.p-news-detail__txt * + ul,
.p-news-detail__txt * + ol,
.p-news-detail__txt * + blockquote {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-news-detail__txt img + img,
  .p-news-detail__txt figure + img,
  .p-news-detail__txt img + figure,
  .p-news-detail__txt figure + figure {
    margin-top: 15px;
  }
}
.p-news-detail__txt p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.2;
  word-break: normal;
}
.p-news-detail__txt strong {
  font-weight: bold;
}
.p-news-detail__txt em {
  font-style: italic;
}
.p-news-detail__txt blockquote {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  border: 1px solid rgba(var(--black), 0.2);
  border-radius: 0.5rem;
  padding: 2em;
}
.p-news-detail__txt a {
  position: relative;
  display: inline;
  color: var(--blue);
  background: linear-gradient(transparent calc(100% - 1px), var(--blue) 0%);
}
.p-news-detail__txt a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url(../img/common/icn_news_arrow.svg) 0 0/100% 100% no-repeat;
  margin-left: 12px;
}
.p-news-detail__txt a[href*=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 13px;
  background: url(../img/common/icn_news_pdf.svg) 0 0/100% 100% no-repeat;
  margin-left: 12px;
}
@media (any-hover: hover) {
  .p-news-detail__txt a:hover {
    background: none;
    opacity: 1;
  }
}
.p-news-detail__txt figure a::after {
  content: none;
}
@media (any-hover: hover) {
  .p-news-detail__txt figure a:hover {
    opacity: 0.7;
  }
}
.p-news-detail__txt .wp-block-embed {
  max-width: 400px;
}
.p-news-detail__txt .wp-block-embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 6/3.5;
}
.p-news-detail__txt .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.p-news-detail__txt .alignright {
  float: right;
  margin-left: 1.5em;
}
.p-news-detail__txt .alignleft {
  float: left;
  margin-right: 1.5em;
}
.p-news-detail__txt img,
.p-news-detail__txt img[class*=wp-image-],
.p-news-detail__txt img[class*=attachment-] {
  width: auto;
  height: auto;
  max-width: 100%;
}
.p-news-detail__txt figcaption {
  display: block !important;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
.p-news-detail__txt ul {
  list-style: none;
}
.p-news-detail__txt ul li {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  padding: 0 0 0 1em;
  word-break: normal;
}
.p-news-detail__txt ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-news-detail__txt ol {
  counter-reset: item;
  list-style-type: none;
}
.p-news-detail__txt ol li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  word-break: normal;
}
.p-news-detail__txt ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-news-detail__txt {
    padding: 0;
  }
  .p-news-detail__txt p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2;
  }
  .p-news-detail__txt h1,
  .p-news-detail__txt h2,
  .p-news-detail__txt h3,
  .p-news-detail__txt h4,
  .p-news-detail__txt h5,
  .p-news-detail__txt h6 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4;
  }
  .p-news-detail__txt ul li,
  .p-news-detail__txt ol li,
  .p-news-detail__txt blockquote {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.2;
  }
  .p-news-detail__txt blockquote {
    padding: 2em;
  }
  .p-news-detail__txt .size-full {
    width: 100%;
  }
  .p-news-detail__txt .aligncenter img {
    width: 100%;
    height: auto;
  }
  .p-news-detail__txt .alignright {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .p-news-detail__txt .alignright img {
    width: 100%;
    height: auto;
  }
  .p-news-detail__txt .alignleft {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  .p-news-detail__txt .alignleft img {
    width: 100%;
    height: auto;
  }
}
.p-news-detail__btn {
  margin: 50px 0 0;
}
.p-news-detail__btn a {
  margin: 0 auto;
}

.p-form {
  padding: 0 0 140px;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding: 0 0 80px;
  }
}
.p-form .f-wrap {
  max-width: 960px;
}
.p-form-step {
  background: var(--gray1);
  padding: 40px 0;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-form-step {
    padding: 20px 0;
  }
}
.p-form-step-list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-form-step-list {
    padding: 0 20px;
  }
}
.p-form-step-list__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 12px) / 3);
  height: 70px;
  background: var(--white);
  list-style: none;
  font-weight: 600;
  color: #9E9E9E;
}
@media screen and (max-width: 767px) {
  .p-form-step-list__item {
    height: 60px;
    text-align: center;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.2;
    padding-right: 5px;
  }
}
.p-form-step-list__item::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 25px;
  height: 38px;
  background: var(--gray1);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
@media screen and (max-width: 767px) {
  .p-form-step-list__item::before {
    top: -2px;
    right: -1px;
    width: 13px;
    height: 35px;
  }
}
.p-form-step-list__item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 25px;
  height: 38px;
  background: var(--gray1);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
@media screen and (max-width: 767px) {
  .p-form-step-list__item::after {
    bottom: -2px;
    right: -1px;
    width: 13px;
    height: 35px;
  }
}
.p-form-step-list__item.is-current {
  color: var(--white);
  background: linear-gradient(90deg, rgb(50, 70, 135) 0%, rgb(0, 115, 170) 100%);
}
.p-form-list {
  background: var(--gray1);
  padding: 24px;
}
.p-form-list__item {
  position: relative;
  font-size: 12px;
  line-height: 1.8;
  padding: 0 0 0 1em;
}
.p-form-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-form__block {
  margin: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-form__block {
    margin: 30px 0 0;
  }
}
.p-form--confirm {
  margin-top: 0;
}
.p-form--thanks {
  margin-top: 0;
  padding: 0 0 20rem;
}
@media screen and (max-width: 767px) {
  .p-form--thanks {
    padding: 0 0 10rem;
  }
}
.p-form__ttl {
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .p-form__ttl {
    font-size: 2.8rem;
  }
}
.p-form__ttl span {
  padding: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__ttl span {
    padding: 0 0.8rem;
  }
}
.p-form__txt {
  max-width: 92.8rem;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-form__txt {
    padding: 0;
  }
}
.p-form__txt span {
  color: #cc0000;
}
.p-form-define dt {
  display: flex;
  justify-content: start;
  align-items: center;
  font-weight: 600;
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.125rem;
  gap: 0 1rem;
  color: var(--blue);
  margin: 0 0 5px;
}
.is-confirm .p-form-define dt {
  line-height: 2;
  border-bottom: 1px solid var(--gray2);
  margin: 0 0 12px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt {
    width: 100%;
    gap: 0 6px;
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 10px;
    padding: 0;
  }
}
.p-form-define dt.is-pt {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt.is-pt {
    padding-top: 0;
  }
}
.p-form-define dt .required {
  color: var(--white);
  font-size: 11px;
  font-size: 0.6875rem;
  background: var(--blue);
  line-height: 1;
  padding: 2px 4px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt .required {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-form-define dt .any {
  color: var(--white);
  font-size: 11px;
  font-size: 0.6875rem;
  background: #9E9E9E;
  line-height: 1;
  padding: 2px 4px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt .any {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-form-define dd {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-form-define dd {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    padding-bottom: 24px;
  }
}
.p-form-define dd:last-child {
  padding-bottom: 0;
}
.p-form-define dd.column {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.is-confirm .p-form-define dd.column {
  justify-content: flex-start;
  gap: 0 56px;
}
@media screen and (max-width: 767px) {
  .is-confirm .p-form-define dd.column {
    display: flex;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form-define dd.column {
    display: block;
  }
}
.p-form-define dd.column .txt span {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .is-confirm .p-form-define dd.column .txt {
    width: 45%;
  }
}
.p-form-define dd.column .inner {
  display: flex;
  justify-content: start;
  align-items: start;
  width: calc(50% - 8px);
}
@media screen and (max-width: 767px) {
  .p-form-define dd.column .inner {
    width: 100%;
    margin-top: 4px;
  }
  .p-form-define dd.column .inner:first-child {
    margin-top: 0;
  }
}
.p-form-define dd.column .inner .ttl {
  width: 22px;
  font-weight: 600;
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.column .inner .ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-form-define dd.column .inner .content {
  width: calc(100% - 22px);
}
.p-form-define dd.column.kana .inner .ttl {
  width: 40px;
}
.p-form-define dd.select .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 46px;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.select .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.p-form-define dd.select .wpcf7-form-control-wrap::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  background: url(../img/common/icn_select.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-form-define dd.select .wpcf7-form-control-wrap select {
  appearance: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 1em;
  border: 0;
  color: #9E9E9E;
  background: var(--gray1);
}
.p-form-define dd.select .wpcf7-form-control-wrap select.has-value {
  color: var(--black);
}
.is-back .p-form-define dd.select select[name=contact_type] {
  color: var(--black);
}
.p-form-define dd.select.is-back-any-value select {
  color: var(--black);
}
.p-form-define dd input[type=text],
.p-form-define dd input[type=tel],
.p-form-define dd input[type=email] {
  width: 100%;
  height: 46px;
  background: var(--gray1);
  font-size: 16px;
  font-size: 1rem;
  padding: 0 1em;
  border: 0;
  outline: none;
}
.p-form-define dd textarea {
  width: 100%;
  height: 280px;
  background: var(--gray1);
  font-size: 16px;
  font-size: 1rem;
  padding: 1em;
  resize: vertical;
  font-family: inherit;
  border: 0;
  outline: none;
}
@media screen and (max-width: 767px) {
  .p-form-define dd textarea {
    height: 15rem;
    border-radius: 0.6rem;
    padding: 1rem;
  }
}
.p-form-define dd.radio .wpcf7-radio {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 0 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.radio .wpcf7-radio {
    flex-flow: column;
    gap: 1.5rem 0;
  }
}
.p-form-define dd.radio .wpcf7-list-item {
  position: relative;
  margin: 0;
}
.p-form-define dd.radio .wpcf7-list-item input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-form-define dd.radio .wpcf7-list-item input[type=radio]:checked + span::before {
  background: #000;
}
.p-form-define dd.radio .wpcf7-list-item-label {
  position: relative;
  font-size: 1.8rem;
  padding: 0 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.radio .wpcf7-list-item-label {
    font-size: 1.1rem;
  }
}
.p-form-define dd.radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.9em;
  height: 0.9em;
  border: 1px solid #000;
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-form-define dd.radio .wpcf7-list-item-label::before {
    top: calc(50% + 0.1rem);
  }
}
.p-form-define dd .is-row + .is-row {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form-define dd .is-row + .is-row {
    margin-top: 1rem;
  }
}
.p-form-define .error {
  color: #cc0000;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-form-define .error {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-form-define .check {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 3rem;
  padding: 1.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-form-define .check {
    gap: 0 1rem;
    padding: 1rem 0 0;
  }
}
.p-form-define .check .error {
  width: 100%;
}
.p-form-define .check .item {
  line-height: 1;
}
.p-form-define .check .item label {
  position: relative;
}
.p-form-define .check .item label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-form-define .check .item label input:checked + span::before {
  background: url(../img/home/icn_form_on.svg) 0 0/100% auto no-repeat;
}
.p-form-define .check .item label span {
  position: relative;
  padding: 0 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-form-define .check .item label span {
    padding: 0 0 0 1.8rem;
  }
}
.p-form-define .check .item label span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../img/home/icn_form_off.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-form-policy {
  height: 30.6rem;
  background: #fff;
  border-radius: 1.2rem;
  margin: 6rem 0 0;
  padding: 4.4rem 4.9rem;
}
@media screen and (max-width: 767px) {
  .p-form-policy {
    height: 15rem;
    border-radius: 0.6rem;
    padding: 1.5rem 2.2rem;
    margin-top: 3rem;
  }
}
.p-form-policy__inner {
  max-height: 21.8rem;
  overflow-y: scroll;
  scrollbar-width: auto;
  scrollbar-color: #e7e6e0 transparent;
}
@media screen and (max-width: 767px) {
  .p-form-policy__inner {
    max-height: 12rem;
    padding-right: 2.4rem;
  }
}
.p-form-policy__inner::-webkit-scrollbar {
  width: 1.3rem;
}
.p-form-policy__inner::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2rem;
}
.p-form-policy__inner::-webkit-scrollbar-track {
  background: transparent;
}
.p-form-policy__ttl {
  line-height: 2.4;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-form-policy__ttl {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-form-policy__ttl:first-child {
  margin-top: 0;
}
.p-form-policy__txt {
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .p-form-policy__txt {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-form-apply {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-form-apply {
    margin-top: 24px;
  }
}
.p-form-apply .wpcf7-list-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.p-form-apply .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-form-apply .wpcf7-list-item input[type=checkbox]:checked + span::before {
  background: url(../img/common/icn_check_on.svg) 0 0/100% auto no-repeat;
}
.p-form-apply .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 0 0 35px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form-apply .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px;
    font-size: 0.875rem;
    height: 18px;
    line-height: 18px;
    padding: 0 0 0 30px;
  }
}
.p-form-apply .wpcf7-list-item .wpcf7-list-item-label a {
  text-decoration: underline;
  color: var(--blue);
}
@media (any-hover: hover) {
  .p-form-apply .wpcf7-list-item .wpcf7-list-item-label a:hover {
    text-decoration: none;
  }
}
.p-form-apply .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../img/common/icn_check.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-form-apply .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 18px;
    height: 18px;
  }
}
.p-form-apply .wpcf7-list-item .apply {
  color: #cc0000;
}
.p-form-apply .wpcf7-list-item .error {
  width: 100%;
  text-align: center;
  color: #cc0000;
  margin-top: 0.5em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-form-apply .wpcf7-list-item .error {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-form .wpcf7-spinner {
  position: absolute;
  top: 100%;
  display: block;
}
.p-form-btn {
  position: relative;
  width: 280px;
  max-width: 100%;
  height: 58px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  transition: 0.3s;
  border-radius: 4px;
  overflow: hidden;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .p-form-btn {
    margin-top: 50px;
  }
}
.p-form-btn::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/common/arrow_circle-white.svg);
  position: absolute;
  top: calc(50% + 1px);
  right: 16px;
  translate: 0 -50%;
  z-index: 1;
}
.p-form-btn::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: -6%;
  display: block;
  width: 106%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right bottom;
  transition: transform 400ms var(--easing);
  z-index: 0;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}
.p-form-btn__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-form-btn__inner::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid var(--blue);
  z-index: 2;
}
.p-form-btn__inner:has(input[type=submit]:disabled)::before {
  content: none;
}
@media (any-hover: hover) {
  .p-form-btn:hover input[type=submit] {
    color: var(--blue);
  }
  .p-form-btn:hover::before {
    background-image: url(../img/common/arrow_circle-blue.svg);
  }
  .p-form-btn:hover::after {
    transform: scale(1, 1);
  }
}
.p-form-btn input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  z-index: 1;
  transition: 0.3s;
}
.p-form-btn input[type=submit]:disabled {
  pointer-events: none;
  background: #999999;
}
.p-form-btn:has(input[type=submit]:disabled) {
  border: 0;
}
@media (any-hover: hover) {
  .p-form-btn:has(input[type=submit]:disabled):hover input[type=submit] {
    color: var(--white);
  }
}
.p-form-back {
  position: relative;
  width: 210px;
  max-width: 100%;
  height: 48px;
  background-color: #666;
  border: 1px solid #666;
  transition: 0.3s;
  border-radius: 4px;
  overflow: hidden;
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .p-form-back {
    margin-top: 16px;
  }
}
.p-form-back::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/common/arrow_circle-white.svg);
  position: absolute;
  top: calc(50% + 1px);
  left: 16px;
  translate: 0 -50%;
  z-index: 1;
  transform: scale(-1, 1);
}
.p-form-back::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: -6%;
  display: block;
  width: 106%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right bottom;
  transition: transform 400ms var(--easing);
  z-index: 0;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}
.p-form-back__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-form-back__inner::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #666;
  z-index: 2;
}
.p-form-back__inner:has(input[type=submit]:disabled)::before {
  content: none;
}
@media (any-hover: hover) {
  .p-form-back:hover input[type=button] {
    color: #666;
  }
  .p-form-back:hover::before {
    background-image: url(../img/common/arrow_circle-blue.svg);
  }
  .p-form-back:hover::after {
    transform: scale(1, 1);
  }
}
.p-form-back input[type=button] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--white);
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  z-index: 1;
  transition: 0.3s;
  padding-left: 6px;
}
.p-form-back input[type=button]:disabled {
  pointer-events: none;
  background: #999999;
}
.p-form-thanks__ttl {
  font-size: 24px;
  font-size: 1.5rem;
  color: var(--blue);
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form-thanks__ttl {
    line-height: 1.4;
  }
}
.p-form-thanks__txt {
  text-align: center;
  line-height: 1.8;
  margin: 16px 0 0;
}
@media screen and (max-width: 767px) {
  .p-form-thanks__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-form-thanks__btn {
  margin: 50px 0 0;
}
.p-form-thanks__btn a {
  margin: 0 auto;
}

.p-privacy {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-top: 60px;
  }
}
.p-privacy + .p-privacy {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .p-privacy + .p-privacy {
    padding-bottom: 74px;
  }
}
.p-privacy__txt {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-privacy__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-privacy__txt a {
  color: var(--blue);
  text-decoration: underline;
}
.p-privacy__txt a:hover {
  text-decoration: none;
}
.p-privacy__txt a[href^="tel:"] {
  text-decoration: none;
  color: var(--black);
}
.p-privacy__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  margin: 24px 0 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-privacy__ttl {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-privacy__sub {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  font-weight: 700;
  margin: 24px 0 12px;
}
@media screen and (max-width: 767px) {
  .p-privacy__sub {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-privacy-dot {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-privacy-dot {
    padding: 0 0 0 24px;
  }
}
.p-privacy-dot__item {
  position: relative;
  line-height: 1.6;
  padding: 0 0 0 1em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-privacy-dot__item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-privacy-dot__item + .p-privacy-dot__item {
  margin-top: 5px;
}
.p-privacy-dot__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-privacy-dot__item a {
  color: var(--blue);
}
.p-privacy-dot + p {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-privacy-dot + p {
    margin-top: 20px;
  }
}
.p-privacy__date {
  line-height: 2.2;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-privacy__date {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 40px;
  }
}
.p-privacy__notes {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  padding: 0 0 0 1em;
  margin-top: 12px;
}
.p-privacy__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-privacy-browser {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-privacy-browser {
    flex-flow: column;
    gap: 10px;
  }
}
.p-privacy-browser__item {
  width: calc(50% - 6px);
  background: var(--gray1);
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-privacy-browser__item {
    width: 100%;
    padding: 20px;
  }
}
.p-privacy-browser__ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  padding: 0 0 6px;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .p-privacy-browser__ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-privacy-browser__txt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-privacy-browser__txt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-privacy-contact {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0 20px;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-contact {
    flex-flow: column;
    align-items: flex-start;
    gap: 5px 0;
    margin: 0;
  }
}
.p-privacy-contact__txt {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-privacy-contact__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-history {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-history {
    padding: 60px 0;
  }
}
.p-history + .p-history {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .p-history + .p-history {
    padding-bottom: 74px;
  }
}
.p-history-define {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
}
.p-history-define__ttl {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 84px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.6;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gray2);
  padding: 18px 0;
}
.p-history-define__ttl:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-history-define__ttl {
    padding: 16px 0;
  }
}
.p-history-define__ttl:not(:has(.year)) {
  display: block;
  text-align: right;
}
.p-history-define__txt {
  width: calc(100% - 84px);
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  padding: 18px 0 18px 20px;
}
.p-history-define__txt:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-history-define__txt {
    padding: 16px 0 16px 24px;
  }
}
.p-history__txt {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-history__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-history__txt a {
  color: var(--blue);
  text-decoration: underline;
}
.p-history__txt a:hover {
  text-decoration: none;
}
.p-history__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  margin: 24px 0 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-history__ttl {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-history__sub {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  font-weight: 700;
  margin: 24px 0 12px;
}
@media screen and (max-width: 767px) {
  .p-history__sub {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-history-dot {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-history-dot {
    padding: 0 0 0 24px;
  }
}
.p-history-dot__item {
  position: relative;
  line-height: 1.6;
  padding: 0 0 0 1em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-history-dot__item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-history-dot__item + .p-history-dot__item {
  margin-top: 5px;
}
.p-history-dot__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-history-dot + p {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-history-dot + p {
    margin-top: 20px;
  }
}
.p-history__date {
  line-height: 2.2;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-history__date {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 40px;
  }
}
.p-history__notes {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  padding: 0 0 0 1em;
  margin-top: 12px;
}
.p-history__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-history-browser {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-history-browser {
    flex-flow: column;
    gap: 10px;
  }
}
.p-history-browser__item {
  width: calc(50% - 6px);
  background: var(--gray1);
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-history-browser__item {
    width: 100%;
    padding: 20px;
  }
}
.p-history-browser__ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  padding: 0 0 6px;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .p-history-browser__ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-history-browser__txt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-history-browser__txt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.p-profile {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding: 60px 0;
  }
}
.p-profile-define {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-profile-define {
    flex-flow: column;
  }
}
.p-profile-define__ttl {
  width: 156px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.6;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gray2);
  padding: 18px 0 18px 16px;
}
@media screen and (max-width: 767px) {
  .p-profile-define__ttl {
    width: 100%;
    padding: 16px 10px 0;
    border-bottom: 0;
  }
  .p-profile-define__ttl:first-child {
    padding-top: 0;
  }
}
.p-profile-define__txt {
  width: calc(100% - 156px);
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  padding: 18px 0 18px 20px;
}
@media screen and (max-width: 767px) {
  .p-profile-define__txt {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 8px 10px 16px;
  }
}
.p-profile-define__txt a[href*=".pdf"] {
  line-height: 1.6;
  color: var(--blue);
  text-decoration: underline;
}
.p-profile-define__txt a[href*=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 20px;
  background: url(../img/common/icn_pdf.svg) 0 0/100% auto no-repeat;
  vertical-align: middle;
  margin-left: 10px;
}
.p-profile-define__txt a[href*=".pdf"]:hover {
  text-decoration: none;
}
.p-profile-define-dot__item {
  position: relative;
  padding: 0 0 0 1em;
}
.p-profile-define-dot__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-profile-member {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4px 0;
}
.p-profile-member__ttl {
  width: 160px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-profile-member__ttl {
    width: 140px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-profile-member__txt {
  width: calc(100% - 180px);
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-profile-member__txt {
    width: calc(100% - 160px);
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-office {
  background: var(--gray1);
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-office {
    padding: 80px 0;
  }
}
.p-office-list__item {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--white);
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-office-list__item {
    display: block;
    margin-top: 16px;
  }
}
.p-office-list__item:first-child {
  margin-top: 0;
}
.p-office-list__img {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .p-office-list__img {
    width: 100%;
  }
}
.p-office-list__img img {
  aspect-ratio: 320/221;
}
.p-office-list__img + .p-office-list__content {
  width: calc(100% - 320px);
}
@media screen and (max-width: 767px) {
  .p-office-list__img + .p-office-list__content {
    width: 100%;
  }
}
.p-office-list__content {
  width: 100%;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-office-list__content {
    padding: 20px 20px 30px;
  }
}
.p-office-list__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid var(--gray2);
  padding: 0 0 6px;
  margin: 0 0 16px;
}
@media screen and (max-width: 767px) {
  .p-office-list__ttl {
    font-size: 18px;
    font-size: 1.125rem;
    border-bottom: 0;
    padding: 0;
    margin-bottom: 2px;
  }
}
.p-office-list__address {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-office-list__address {
    font-size: 14px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray2);
    padding: 0 0 10px;
  }
}
.p-office-list__num {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-office-list__num {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-office-list__map {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: right;
  line-height: 1.4;
  margin: 8px 0 0;
}
@media screen and (max-width: 767px) {
  .p-office-list__map {
    margin-top: 16px;
  }
}
.p-office-list__map a {
  position: relative;
  display: inline-block;
  color: var(--blue);
  text-decoration: underline;
  padding-right: 24px;
}
.p-office-list__map a:hover {
  text-decoration: none;
}
.p-office-list__map a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: url(../img/common/arrow_circle-blue.svg) 0 0/100% auto no-repeat;
}

.p-document {
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .p-document {
    padding: 60px 0;
  }
}
.p-document-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .p-document-content {
    flex-flow: column;
  }
}
.p-document-content__item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: calc(50% - 12px);
  border-radius: 10px;
  background: var(--gray1);
  gap: 0 28px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .p-document-content__item {
    flex-flow: column;
    align-items: center;
    gap: 24px 0;
    width: 100%;
  }
}
.p-document-content__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 56%;
  max-width: 216px;
}
@media screen and (max-width: 767px) {
  .p-document-content__inner {
    width: 100%;
    max-width: inherit;
  }
}
.p-document-content__ttl {
  width: 100%;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
  margin: 0 0 16px;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .p-document-content__ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-document-content__img {
  width: 37%;
  max-width: 140px;
}
@media screen and (max-width: 767px) {
  .p-document-content__img {
    width: 105px;
    max-width: inherit;
  }
}
.p-document-content__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 140/200;
}
.p-document-content__btn {
  width: 100%;
  height: 48px;
}
@media screen and (max-width: 767px) {
  .p-document-content__btn {
    max-width: 216px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-document-content__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--blue);
  color: var(--white);
  border-radius: 4px;
}
.p-document-content__btn a span {
  position: relative;
  padding: 0 0 0 26px;
}
.p-document-content__btn a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 20px;
  background: url(../img/common/icn_pdf.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-document-content__btn a:hover {
  opacity: 0.7;
}

.p-philosophy {
  padding: 100px 0 0;
}
.p-philosophy:last-child {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy:last-child {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-philosophy {
    padding: 60px 0 0;
  }
}
.p-philosophy-list {
  counter-reset: number 0;
  list-style: none;
  padding: 0 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-philosophy-list {
    padding: 0 0 0 16px;
  }
}
.p-philosophy-list__item {
  position: relative;
  line-height: 1.8;
  padding: 0 0 0 40px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-philosophy-list__item {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 12px;
    padding: 0 0 0 30px;
  }
}
.p-philosophy-list__item:first-child {
  margin-top: 0;
}
.p-philosophy-list__item::before {
  position: absolute;
  top: 3px;
  left: 0;
  counter-increment: number 1;
  content: counter(number) ".";
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--blue);
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-philosophy-list__item::before {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-philosophy-inner {
  counter-reset: inner 0;
  list-style: none;
  margin-top: 12px;
}
.p-philosophy-inner__item {
  position: relative;
}
.p-philosophy-inner__item::before {
  counter-increment: inner 1;
  content: counter(inner) ")";
}
.alpha .p-philosophy-inner__item::before {
  content: counter(inner, upper-alpha) ")";
}
.p-philosophy__txt {
  line-height: 2.2;
  padding: 0 0 0 60px;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-philosophy__txt {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 0 0 16px;
    margin: 0 0 40px;
  }
}
.p-philosophy__txt a {
  color: var(--blue);
  text-decoration: underline;
}
.p-philosophy__txt a:hover {
  text-decoration: none;
}

.p-maker {
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .p-maker {
    padding: 60px 0;
  }
}
.p-maker__pre {
  text-align: right;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-maker__pre {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-maker__more {
  text-align: right;
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .p-maker__more {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-maker-list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media screen and (max-width: 767px) {
  .p-maker-list {
    flex-flow: column;
    gap: 8px 0;
  }
}
.p-maker-list__item {
  width: calc((100% - 48px) / 3);
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-maker-list__item {
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-maker__txt {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-maker__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-maker__txt a {
  color: var(--blue);
  text-decoration: underline;
}
.p-maker__txt a:hover {
  text-decoration: none;
}
.p-maker__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  margin: 24px 0 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-maker__ttl {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-maker__sub {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  font-weight: 700;
  margin: 24px 0 12px;
}
@media screen and (max-width: 767px) {
  .p-maker__sub {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-maker-dot {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-maker-dot {
    padding: 0 0 0 24px;
  }
}
.p-maker-dot__item {
  position: relative;
  line-height: 1.6;
  padding: 0 0 0 1em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-maker-dot__item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-maker-dot__item + .p-maker-dot__item {
  margin-top: 5px;
}
.p-maker-dot__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-maker-dot + p {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-maker-dot + p {
    margin-top: 20px;
  }
}
.p-maker__date {
  line-height: 2.2;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-maker__date {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 40px;
  }
}
.p-maker__notes {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  padding: 0 0 0 1em;
  margin-top: 12px;
}
.p-maker__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-maker-browser {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-maker-browser {
    flex-flow: column;
    gap: 10px;
  }
}
.p-maker-browser__item {
  width: calc(50% - 6px);
  background: var(--gray1);
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-maker-browser__item {
    width: 100%;
    padding: 20px;
  }
}
.p-maker-browser__ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  padding: 0 0 6px;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .p-maker-browser__ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-maker-browser__txt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-maker-browser__txt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.p-sus__txt {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-sus__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-sus__txt a {
  color: var(--blue);
  text-decoration: underline;
}
.p-sus__txt a:hover {
  text-decoration: none;
}
.p-sus-policy, .p-sus-eva, .p-sus-sructure {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .p-sus-policy, .p-sus-eva, .p-sus-sructure {
    padding: 60px 0 0;
  }
}
.p-sus-init {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .p-sus-init {
    padding: 60px 0 0;
  }
}
.p-sus-init-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 24px 0 0;
}
.p-sus-init-content__item {
  width: calc(50% - 5px);
  display: flex;
  justify-content: start;
  align-items: start;
  background: var(--gray1);
  padding: 24px;
  gap: 0 24px;
}
@media screen and (max-width: 767px) {
  .p-sus-init-content__item {
    width: 100%;
    gap: 0 20px;
    padding: 20px;
  }
}
.p-sus-init-content__img {
  width: 80px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-sus-init-content__img {
    width: 62px;
  }
}
.p-sus-init-content__ttl {
  display: flex;
  justify-content: start;
  align-items: start;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  letter-spacing: -0.02em;
  padding: 0 0 10px;
  margin: 0 0 16px;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-sus-init-content__ttl {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-sus-init-content__ttl span {
  flex-shrink: 0;
}
.p-sus-init-dot__item {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 0 0 1em;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-sus-init-dot__item {
    line-height: 1.6;
  }
}
.p-sus-init-dot__item:first-child {
  margin-top: 0;
}
.p-sus-init-dot__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-sus-report {
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .p-sus-report {
    padding: 60px 0;
  }
}
.p-sus-report-list__item {
  display: flex;
  justify-content: start;
  align-items: start;
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray2);
  gap: 0 10px;
  padding: 18px 0;
}
.p-sus-report-list__item:first-child {
  padding-top: 0;
}
.p-sus-report-list__item span {
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: var(--blue);
}
.p-sus-report-list__item a {
  line-height: 1.6;
}
.p-sus-report-list__item a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 20px;
  background: url(../img/common/icn_pdf.svg) 0 0/100% auto no-repeat;
  vertical-align: middle;
  margin-left: 10px;
}
.p-sus-report-list__item a:hover {
  opacity: 0.7;
}
.p-sus-report-list__item-title {
  word-break: keep-all;
  flex-shrink: inherit !important;
  font-family: "Noto Sans JP", sans-serif !important;
}

.p-business-nav {
  max-width: 1080px;
  padding: 60px 40px 120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-business-nav {
    padding: 30px 20px 40px;
  }
}
.p-business-nav-list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px 16px;
}
@media screen and (max-width: 767px) {
  .p-business-nav-list {
    justify-content: space-between;
    gap: 20px 0;
  }
}
.p-business-nav-list__item {
  width: calc((100% - 48px) / 4);
  background: var(--gray1);
}
@media screen and (max-width: 767px) {
  .p-business-nav-list__item {
    width: calc(50% - 5px);
  }
}
.p-business-nav-list__item a {
  display: block;
  position: relative;
}
.p-business-nav-list__item a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: url(../img/common/arrow_circle-blue.svg) 0 0/20px 20px no-repeat;
  transform: translateX(-50%) rotate(90deg);
}
.p-business-nav-list__item a:hover {
  opacity: 0.7;
}
.p-business-nav-list__img img {
  width: 100%;
  aspect-ratio: 238/129;
  object-fit: cover;
}
.p-business-nav-list__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  min-height: 55px;
  padding: 0 10px 7px;
}
@media screen and (max-width: 767px) {
  .p-business-nav-list__ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-business-head {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 260px;
  background: linear-gradient(90deg, rgb(184, 229, 251) 0%, rgb(233, 242, 247) 100%);
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-business-head {
    height: auto;
    min-height: 140px;
    margin: 0 0 30px;
    padding: 20px 0;
  }
}
.p-business-head__inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.p-business-head__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -118px;
  width: 305px;
  height: 260px;
  background: url(../img/business/bg_ttl.png) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-business-head__inner::before {
    left: 10px;
    width: 100%;
    height: 140px;
    background-size: auto 100%;
  }
}
.p-business-head__ttl {
  position: relative;
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-business-head__ttl {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.4;
  }
}
.p-business-head__txt {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--blue);
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .p-business-head__txt {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 10px 0 0;
  }
}
.p-business__txt {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-business__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-business__txt a {
  color: var(--blue);
  text-decoration: underline;
}
.p-business__txt a:hover {
  text-decoration: none;
}
.p-business__img {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-business__img {
    display: block;
    margin: 20px 0 0;
  }
}
.p-business__block {
  overflow: hidden;
  padding: 0 0 160px;
}
@media screen and (max-width: 767px) {
  .p-business__block {
    padding: 0 0 50px;
  }
}
.p-business__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  margin: 24px 0 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-business__ttl {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-business-list {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.p-business-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 60px);
  width: 506px;
  height: 2169px;
  background: url(../img/business/bg1.jpg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 1120px) {
  .p-business-list::after {
    left: auto;
    right: -30%;
  }
}
@media screen and (max-width: 767px) {
  .p-business-list::after {
    content: none;
  }
}
.p-business-list.u-02::after {
  position: absolute;
  top: -20px;
  left: calc(100% - 140px);
  width: 520px;
  height: 1042px;
  background: url(../img/business/bg2.jpg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 1120px) {
  .p-business-list.u-02::after {
    left: auto;
    right: -30%;
  }
}
.p-business-list__item {
  position: relative;
  background: rgba(247, 247, 247, 0.7);
  padding: 23px 24px;
  margin-top: 10px;
  border-radius: 10px;
  z-index: 2;
}
.p-business-list__item:first-child {
  margin-top: 0;
}
.p-business-list__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--blue);
  border-bottom: 1px solid var(--gray2);
  padding: 0 0 10px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-business-list__ttl {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-business-list__txt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-business-ex {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.p-business-ex::after {
  content: "";
  position: absolute;
  top: 70px;
  left: calc(100% - 100px);
  width: 654px;
  height: 473px;
  background: url(../img/business/bg3.jpg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 1120px) {
  .p-business-ex::after {
    left: auto;
    right: -30%;
  }
}
@media screen and (max-width: 1120px) {
  .p-business-ex::after {
    content: none;
  }
}
.p-business-ex__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
  background: rgba(247, 247, 247, 0.7);
  margin-top: 10px;
  border-radius: 10px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-business-ex__item {
    display: block;
    overflow: hidden;
  }
}
.p-business-ex__img {
  width: 335px;
}
@media screen and (max-width: 767px) {
  .p-business-ex__img {
    width: 100%;
    height: auto;
  }
}
.p-business-ex__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-business-ex__img img {
    aspect-ratio: 355/204;
  }
}
.p-business-ex__inner {
  width: calc(100% - 365px);
  padding: 20px 30px 20px 0;
}
@media screen and (max-width: 767px) {
  .p-business-ex__inner {
    width: 100%;
    padding: 20px 24px;
  }
}
.p-business-ex__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  padding: 0 0 10px;
  margin: 0 0 14px;
}
@media screen and (max-width: 767px) {
  .p-business-ex__ttl {
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
    padding: 0 0 8px;
    margin: 0 0 12px;
  }
}
.p-business-ex dl {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4px 0;
}
.p-business-ex dl dt {
  width: 5.5em;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-business-ex dl dd {
  width: calc(100% - 5.5em);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-business-wire {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
}
.p-business-wire::after {
  content: "";
  position: absolute;
  top: -30px;
  left: calc(100% - 130px);
  width: 482px;
  height: 439px;
  background: url(../img/business/bg4.jpg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 1120px) {
  .p-business-wire::after {
    left: auto;
    right: -30%;
  }
}
@media screen and (max-width: 767px) {
  .p-business-wire::after {
    content: none;
  }
}
.p-business-wire__item {
  position: relative;
  width: calc(50% - 5px);
  height: 86px;
  display: flex;
  justify-content: start;
  align-items: center;
  background: rgba(247, 247, 247, 0.7);
  margin-top: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  z-index: 1;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .p-business-wire__item {
    font-size: 16px;
    font-size: 1rem;
    width: 100%;
    height: auto;
    padding: 20px 24px;
  }
}

.p-message {
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 60px 0;
  }
}
.p-message-visual {
  position: relative;
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-message-visual {
    margin: 0 0 32px;
  }
}
.p-message-visual__img {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-message-visual__img {
    margin: 0 0 50px;
  }
}
.p-message-visual__inner {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-message-visual__inner {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
.p-message-visual__ttl {
  color: var(--white);
  font-size: 54px;
  font-size: 3.375rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-message-visual__ttl {
    color: var(--black);
    font-size: 34px;
    font-size: 2.125rem;
  }
}
.p-message-visual__name {
  font-size: 28px;
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1.8;
  font-weight: 600;
  border-left: 1px solid var(--white);
  padding: 0 0 0 24px;
  margin: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .p-message-visual__name {
    font-size: 18px;
    font-size: 1.125rem;
    color: var(--black);
    line-height: 1.4;
    border-left: 2px solid var(--blue);
    margin: 12px 0 0;
    padding: 0 0 0 20px;
  }
}
.p-message-visual__name span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-message-visual__name span {
    font-size: 14px;
    font-size: 0.875rem;
    color: var(--blue);
  }
}
.p-message__txt {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-message__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-message__txt a {
  color: var(--blue);
  text-decoration: underline;
}
.p-message__txt a:hover {
  text-decoration: none;
}
.p-message__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  margin: 24px 0 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-message__ttl {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-message__sub {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--blue);
  line-height: 1.8;
  font-weight: 700;
  margin: 24px 0 12px;
}
@media screen and (max-width: 767px) {
  .p-message__sub {
    font-size: 16px;
    font-size: 1rem;
    margin: 20px 0 10px;
  }
}
.p-message-dot {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-message-dot {
    padding: 0 0 0 24px;
  }
}
.p-message-dot__item {
  position: relative;
  line-height: 1.6;
  padding: 0 0 0 1em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-message-dot__item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-message-dot__item + .p-message-dot__item {
  margin-top: 5px;
}
.p-message-dot__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-message-dot + p {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-message-dot + p {
    margin-top: 20px;
  }
}
.p-message__date {
  line-height: 2.2;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-message__date {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 40px;
  }
}
.p-message__notes {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  padding: 0 0 0 1em;
  margin-top: 12px;
}
.p-message__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-message-browser {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-message-browser {
    flex-flow: column;
    gap: 10px;
  }
}
.p-message-browser__item {
  width: calc(50% - 6px);
  background: var(--gray1);
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-message-browser__item {
    width: 100%;
    padding: 20px;
  }
}
.p-message-browser__ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray2);
  padding: 0 0 6px;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .p-message-browser__ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-message-browser__txt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-message-browser__txt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.u-visuallyhidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.sp {
  display: none;
}

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