@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

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

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 6.4rem;
  }
}

body {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
  -webkit-animation: fadeIn 2s ease 0s 0.7 normal;
          animation: fadeIn 2s ease 0s 0.7 normal;
}
@media screen and (max-width: 1140px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.l-main {
  display: block;
  background-color: transparent;
}

#wrapper .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-main__section {
  margin-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .l-main__section {
    margin-bottom: 10rem;
  }
}

.l-main__content {
  margin-top: 16.8rem;
  margin-bottom: 30rem;
}
@media screen and (max-width: 767px) {
  .l-main__content {
    margin-top: 8rem;
    margin-bottom: 11rem;
  }
}

.l-main__body {
  margin-top: 20.8rem;
}
@media screen and (max-width: 767px) {
  .l-main__body {
    margin-top: 8rem;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: absolute;
  z-index: 99;
}

.l-header__inner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 2.8rem 1.6rem;
  }
}

.l-header__logo {
  width: 31rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 18rem;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo a:hover {
  opacity: 0.75;
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  background-color: #F3F3F3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16.6rem 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 9.6rem 0 2rem;
  }
}

.l-footer__title {
  display: block;
  max-width: 48rem;
  margin-bottom: 1.6rem;
}

.l-footer__logo {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    max-width: 26rem;
    margin-bottom: 1.2rem;
  }
}
.l-footer__logo:hover {
  opacity: 0.75;
}

.l-footer__company {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    display: block;
    margin-bottom: 4.8rem;
  }
}

.l-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    display: block;
    padding-right: 0;
    margin-bottom: 4rem;
  }
}

.l-footer__sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-wrap {
    gap: 0 2rem;
    margin-bottom: 1.6rem;
  }
}

.l-footer__sns {
  max-width: 2.6rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    max-width: 2.2rem;
  }
}

.l-footer__text {
  font-weight: 500;
}

.l-footer__entry {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__entry {
    margin-top: 1.6rem;
  }
}
.l-footer__entry.c-btn::before {
  background-color: #F3F3F3;
}

.l-footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6.4rem 1fr 6.4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 6.4rem;
}
@media screen and (max-width: 900px) {
  .l-footer__nav {
    gap: 3.2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    gap: 2rem 1.6rem;
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-footer__nav-link {
  font-size: 1.7rem;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.4rem;
  }
}
.l-footer__nav-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.l-footer__nav-child {
  margin-top: 0.4rem;
}

.l-footer__nav-child-item:not(:last-child) {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child-item:not(:last-child) {
    margin-bottom: 0.3rem;
  }
}
.l-footer__nav-child-item a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding-left: 1.5em;
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 900px) {
  .l-footer__nav-child-item a {
    font-size: 1.3rem;
    line-height: 1.85;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child-item a {
    font-size: 1.2rem;
    padding-left: 1.3em;
  }
}
.l-footer__nav-child-item a::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  background-color: #333;
  width: 12px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child-item a::before {
    top: 11px;
    width: 10px;
  }
}
.l-footer__nav-child-item a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.l-footer__copyright {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-family: "Inter", sans-serif;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  l-side-nav
------------------------------------------------------------------------------*/
.l-side-nav {
  position: absolute;
  top: 168px;
  right: 32px;
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .l-side-nav {
    display: none;
  }
}

.l-side-nav--home {
  top: 150px;
}

.l-side-nav__item:not(:last-child) {
  margin-bottom: 3.2rem;
}

.l-side-nav__link {
  color: #555;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-family: "Inter", sans-serif;
  display: block;
  text-align: right;
}

.l-side-nav__link--icon {
  width: 2.2rem;
  margin-left: auto;
}

/*------------------------------------------------------------------------------
  l-common-contact
------------------------------------------------------------------------------*/
.l-common-contact {
  background-image: url(../img/common-contact-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 19.2rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .l-common-contact {
    background-image: url(../img/common-contact-bg_sp.jpg);
    padding: 8rem 0 7rem;
  }
}
.l-common-contact .c-inner {
  position: relative;
}

.l-common-contact__bg-text {
  position: absolute;
  top: -30.4rem;
  left: 0;
  color: rgba(195, 195, 195, 0.8);
  font-size: 10.4rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 1140px) {
  .l-common-contact__bg-text {
    top: -28rem;
    font-size: 8rem;
    left: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__bg-text {
    top: -9.6rem;
    left: -0.4rem;
    font-size: 5rem;
    letter-spacing: 0.22em;
    color: rgba(195, 195, 195, 0.18);
  }
}

.l-common-contact__contents {
  color: #fff;
  margin-left: 18.6rem;
}
@media screen and (max-width: 1140px) {
  .l-common-contact__contents {
    margin-left: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__contents {
    margin-left: 2rem;
    position: relative;
    z-index: 2;
  }
}

.l-common-contact__title {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
@media screen and (max-width: 900px) {
  .l-common-contact__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__title {
    font-size: 2.8rem;
    letter-spacing: 0.14em;
    margin-bottom: 2.8rem;
  }
}

.l-common-contact__lead {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 900px) {
  .l-common-contact__lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__lead {
    font-size: 1.5rem;
  }
}

.l-common-contact__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 900px) {
  .l-common-contact__text {
    font-size: 1.4rem;
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__text {
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__text {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}

.l-common-contact__btn.c-btn::before {
  background-color: #3F424B;
}

/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 114rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2rem;
}

.c-inner--lg {
  max-width: 124rem;
}

.c-inner--lower {
  padding-right: 7rem;
}
@media screen and (max-width: 1140px) {
  .c-inner--lower {
    padding-right: 2rem;
  }
}

/*------------------------------------------------------------------------------
  c-burger-menu
------------------------------------------------------------------------------*/
.c-burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  width: 40rem;
  width: 0;
  height: 100vh;
  border-left: 1px solid #D5D5D5;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -2;
}
.c-burger-menu.open {
  visibility: visible;
  display: block;
  opacity: 1;
  width: 40rem;
  background-color: #222222;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .c-burger-menu.open {
    width: calc(100% - 4rem);
    border-left: 1px solid #dbdbdb;
  }
}

.c-burger-menu__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 0 1.6rem 5rem 4rem;
  margin: 0 auto;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__inner {
    padding: 0 1.6rem 2rem 3.2rem;
  }
}
.c-burger-menu__inner::-webkit-scrollbar {
  display: none;
}

.c-burger-menu__navList {
  margin-top: 14.6rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__navList {
    margin-top: 9.6rem;
    margin-bottom: 4rem;
  }
}

.c-burger-menu__nav-item:not(:last-child) {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__nav-item:not(:last-child) {
    margin-bottom: 4.8rem;
  }
}

.c-burger-menu__nav-link {
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}

.c-burger-menu__nav-en {
  font-size: 2.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  font-family: "Inter", sans-serif;
  line-height: 1;
  display: block;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__nav-en {
    font-size: 2rem;
    letter-spacing: 0.25em;
  }
}

.c-burger-menu__nav-ja {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__nav-ja {
    font-size: 1.1rem;
  }
}

.c-burger-menu__sns {
  width: 2.6rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__sns {
    width: 2.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-family: "Inter", sans-serif;
  width: 100%;
  background-color: #222222;
  max-width: 23rem;
  height: 5rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #222222;
  border-radius: 1px;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.4rem;
    max-width: 21rem;
    height: 4.8rem;
  }
}
.c-btn {
  -webkit-transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-btn:hover {
  opacity: 1;
  color: #222222;
}
.c-btn:hover::before {
  width: 100%;
}

.c-btn--white {
  color: #222222;
  background-color: #fff;
  border: 1px solid #fff;
}
.c-btn--white::before {
  background-color: #222222;
}
.c-btn--white:hover {
  color: #fff;
}

.c-btn--ja {
  font-family: "Noto Sans JP", sans-serif;
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}

.c-title__en {
  color: #828282;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  padding-top: 0.2rem;
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 900px) {
  .c-title__en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 1.2rem;
  }
}
.c-title__en::after {
  content: "";
  display: block;
  width: 1px;
  height: 3.2rem;
  background-color: #828282;
  margin: 0.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-title__en::after {
    height: 2.8rem;
  }
}

.c-title__ja {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 900px) {
  .c-title__ja {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 2.6rem;
  }
}

.c-title--md .c-title__en {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-title--md .c-title__en {
    font-size: 1.1rem;
  }
}
.c-title--md .c-title__en::after {
  height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-title--md .c-title__en::after {
    height: 2rem;
  }
}
.c-title--md .c-title__ja {
  font-size: 3.2rem;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 900px) {
  .c-title--md .c-title__ja {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--md .c-title__ja {
    font-size: 2.4rem;
  }
}

.c-title--sm .c-title__en {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-title--sm .c-title__en {
    font-size: 1.1rem;
  }
}
.c-title--sm .c-title__en::after {
  height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-title--sm .c-title__en::after {
    height: 2rem;
  }
}
.c-title--sm .c-title__ja {
  font-size: 3.2rem;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 900px) {
  .c-title--sm .c-title__ja {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--sm .c-title__ja {
    font-size: 1.8rem;
  }
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 9999;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-burger-btn {
    right: 2rem;
  }
}
.c-burger-btn:focus-visible {
  outline: none;
}
.c-burger-btn:focus:not(:focus-visible) {
  outline: none;
}
.c-burger-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #005fcc;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.c-burger-btn:focus-visible::before {
  opacity: 1;
}
.c-burger-btn {
  /* ハンバーガーメニューが開いたとき */
}
.c-burger-btn.cross::before {
  top: -2rem;
  bottom: -2.5rem;
}
@media screen and (max-width: 1023px) {
  .c-burger-btn.cross {
    right: 1rem;
  }
}
.c-burger-btn.cross .c-burger-btn__bar--top {
  width: 5.6rem;
  -webkit-transition-delay: 40ms;
          transition-delay: 40ms;
  -webkit-transform: translateY(12px) rotate(135deg);
          transform: translateY(12px) rotate(135deg);
}
@media screen and (max-width: 767px) {
  .c-burger-btn.cross .c-burger-btn__bar--top {
    width: 4.4rem;
    -webkit-transform: translateY(6px) rotate(135deg);
            transform: translateY(6px) rotate(135deg);
  }
}
.c-burger-btn.cross .c-burger-btn__bar--bottom {
  width: 5.6rem;
  -webkit-transition-delay: 20ms;
          transition-delay: 20ms;
  -webkit-transform: translateY(-2px) rotate(-135deg);
          transform: translateY(-2px) rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    width: 4.4rem;
    -webkit-transform: translateY(-6px) rotate(-135deg);
            transform: translateY(-6px) rotate(-135deg);
  }
}

.c-burger-btn__bar {
  display: block;
  height: 2px;
  background-color: #333;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar {
    height: 1px;
  }
}

.c-burger-btn__bar--top {
  width: 8rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar--top {
    width: 5.6rem;
    margin-bottom: 10px;
  }
}

.c-burger-btn__bar--bottom {
  width: 5rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar--bottom {
    width: 3.4rem;
  }
}

/*------------------------------------------------------------------------------
  c-recruit-banner
------------------------------------------------------------------------------*/
.c-recruit-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-decoration: none;
  background-image: url(../img/partnership-banner-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12rem 4rem 9.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 1px;
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .c-recruit-banner {
    display: block;
    padding: 8rem 3.2rem 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit-banner {
    background-image: url(../img/partnership-banner-bg_sp.jpg);
    padding: 6rem 2.4rem 5.6rem;
  }
}

.c-recruit-banner__title {
  margin-right: 8rem;
}
@media screen and (max-width: 1280px) {
  .c-recruit-banner__title {
    margin-right: 6rem;
  }
}
@media screen and (max-width: 900px) {
  .c-recruit-banner__title {
    margin: 0 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit-banner__title {
    margin-bottom: 1.6rem;
  }
}

.c-recruit-banner__title-ja {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.07em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 1280px) {
  .c-recruit-banner__title-ja {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit-banner__title-ja {
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
  }
}

.c-recruit-banner__title-en {
  color: #4F4F4F;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.14em;
  font-style: italic;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 900px) {
  .c-recruit-banner__title-en {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit-banner__title-en {
    font-size: 1.2rem;
  }
}

.c-recruit-banner__lead {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1280px) {
  .c-recruit-banner__lead {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit-banner__lead {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

.c-recruit-banner__text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-recruit-banner__text {
    font-size: 1.2rem;
  }
}

.p-recruit-banner__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  max-width: 18rem;
  width: 1000%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 4.3rem;
  text-align: center;
  background-color: #222;
  border-radius: 4px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0.4rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit-banner__btn {
    font-size: 1.3rem;
    max-width: 14rem;
    height: 4rem;
  }
}
.p-recruit-banner__btn::after {
  content: "";
  position: absolute;
  top: 51%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8rem;
  height: 1.1rem;
  background-image: url(../img/icon-triangle-right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-banner__btn::after {
    width: 0.6rem;
    height: 0.8rem;
    right: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-work-card
------------------------------------------------------------------------------*/
.c-work-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.8rem 2%;
}
@media screen and (max-width: 767px) {
  .c-work-card-wrap {
    gap: 4rem 4%;
  }
}
.c-work-card-wrap .c-work-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32%;
          flex: 0 1 32%;
}
@media screen and (max-width: 767px) {
  .c-work-card-wrap .c-work-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
@media screen and (max-width: 767px) {
  .c-work-card-wrap.u-mb-9 {
    margin-bottom: 4rem !important;
  }
}

.c-work-card {
  width: 100%;
}

.c-work-card__link {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-work-card__link:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.c-work-card__img {
  margin-bottom: 2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-work-card__img {
    margin-bottom: 1.4rem;
  }
}
.c-work-card__img img {
  width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-work-card__link:hover .c-work-card__img img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.c-work-card__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-work-card__category-wrap {
    margin-bottom: 1rem;
  }
}

.c-work-card__title {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .c-work-card__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-work-card__title {
    font-size: 1.4rem;
  }
}
.c-work-card__link:hover .c-work-card__title {
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
c-lead
------------------------------------------------------------------------------*/
.c-lead {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  .c-lead {
    font-size: 1.8rem;
    letter-spacing: 0.07em;
    line-height: 1.7;
  }
}

/*------------------------------------------------------------------------------
  c-label
------------------------------------------------------------------------------*/
.c-label {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.04em;
  background-color: #222222;
  text-align: center;
  display: inline-block;
  border-radius: 32px;
  padding: 0.6rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-label {
    font-size: 1.2rem;
    padding: 0.6rem 1.4rem;
  }
}

/*------------------------------------------------------------------------------
  c-page-title
------------------------------------------------------------------------------*/
.c-page-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    margin-left: -0.2rem;
  }
}

.c-page-title__en {
  color: #828282;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  padding-top: 0.3rem;
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 900px) {
  .c-page-title__en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-title__en {
    font-size: 1rem;
    margin-left: 0.6rem;
  }
}
.c-page-title__en::after {
  content: "";
  display: block;
  width: 1px;
  height: 3.2rem;
  background-color: #828282;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-page-title__en::after {
    height: 2rem;
  }
}

.c-page-title__ja {
  color: #3E3E3E;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 1140px) {
  .c-page-title__ja {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 900px) {
  .c-page-title__ja {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-title__ja {
    font-size: 2rem;
  }
}

.c-page-title__ja--about {
  letter-spacing: 0.18em;
}

/*------------------------------------------------------------------------------
  c-fade-up - 汎用アニメーションクラス
------------------------------------------------------------------------------*/
.c-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.c-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .c-breadcrumb.u-mt-2 {
    margin-top: 0.8rem !important;
  }
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 3.2rem;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 12px;
  height: 1px;
  background-color: #4F4F4F;
  right: -24px;
}
@media screen and (max-width: 900px) {
  .c-breadcrumb__item:not(:last-child)::after {
    top: 13px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    width: 10px;
    right: -21px;
  }
}

.c-breadcrumb__link {
  color: #4F4F4F;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.02em;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link {
    font-size: 1.1rem;
  }
}
.c-breadcrumb__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.c-breadcrumb__link.--current {
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .page-numbers li {
  margin: 0 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers li {
    margin: 0 0.3rem;
  }
}
.c-pagination .page-numbers span,
.c-pagination .page-numbers a {
  font-size: 1.6rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #222222;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43px;
  height: 43px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 1px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers span,
  .c-pagination .page-numbers a {
    font-size: 1.4rem;
    width: 34px;
    height: 34px;
  }
}
.c-pagination .page-numbers span.current,
.c-pagination .page-numbers a.current {
  pointer-events: none;
}
.c-pagination .page-numbers span.current, .c-pagination .page-numbers span:hover,
.c-pagination .page-numbers a.current,
.c-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #222222;
  opacity: 1;
}
.c-pagination .page-numbers .dots {
  font-weight: normal;
  pointer-events: none;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 1.25rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .dots {
    width: 26px;
  }
}
.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .prev,
  .c-pagination .page-numbers .next {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------------------------
  c-filter
------------------------------------------------------------------------------*/
.c-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-filter {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-filter.u-mb-8 {
    margin-bottom: 4rem !important;
  }
}

.c-filter__item {
  color: #222222;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #222222;
  border-radius: 1px;
  padding: 0.5rem 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-filter__item {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    padding: 0.4rem 1.2rem;
  }
}
.c-filter__item.is-active, .c-filter__item:hover {
  color: #fff;
  background-color: #222222;
  opacity: 1;
}

/*------------------------------------------------------------------------------
  c-split-layout
------------------------------------------------------------------------------*/
.c-split-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-split-layout {
    gap: 0 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.c-split-layout__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100rem;
  min-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-split-layout__side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* ▼ Safariの縦書き幅計算バグ対策を追加 */
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  min-width: 3.9rem;
}

/*------------------------------------------------------------------------------
  c-split-layout--message
------------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
  .c-split-layout--message {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem auto;
    grid-template-columns: 1fr auto;
    gap: 0 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .c-split-layout--message .c-split-layout__main {
    display: contents;
  }
  .c-split-layout--message .c-split-layout__side {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    margin: 0;
    -ms-grid-row-align: start;
        align-self: start;
  }
  .c-split-layout--message {
    /* 画像エリア */
  }
  .c-split-layout--message .p-message__img-wrap {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    /* 1列目 */
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    /* 1行目 */
    width: 100%;
    margin-top: 0.2rem;
  }
  .c-split-layout--message {
    /* テキストエリア */
  }
  .c-split-layout--message .p-message__texts {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    /* 左右全幅 */
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    /* 2行目 */
  }
}

/*------------------------------------------------------------------------------
  c-split-layout--workflow
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .c-split-layout--workflow {
    display: -ms-grid;
    display: grid;
    /* タイトル幅(自動) と コンテンツ幅(残り) */
    -ms-grid-columns: auto 2rem 1fr;
    grid-template-columns: auto 1fr;
    /* コンテンツ間の余白 */
    gap: 0 2rem;
  }
}
.c-split-layout--workflow {
  /* ▼ 中間のラッパーを「無視」させる魔法のプロパティ */
  /* これにより、中の h3 や ul が直接グリッドの影響を受けられるようになります */
}
@media screen and (max-width: 767px) {
  .c-split-layout--workflow .c-split-layout__main {
    display: contents;
  }
}
.c-split-layout--workflow {
  /* タイトルエリア（左側） */
}
@media screen and (max-width: 767px) {
  .c-split-layout--workflow .c-split-layout__side {
    -ms-grid-row: 1;
    grid-row: 1;
    /* 1行目 */
    -ms-grid-column: 1;
    grid-column: 1;
    /* 1列目 */
    margin: 0;
    /* 余白はgrid-gapで管理するためリセット */
  }
}

.c-split-layout__main--workflow {
  max-width: 104.4rem;
}

/*------------------------------------------------------------------------------
  c-split-layout--total-support
------------------------------------------------------------------------------*/
.c-split-layout__main--total-support {
  max-width: 97.2rem;
}

/*------------------------------------------------------------------------------
  c-info-list
------------------------------------------------------------------------------*/
.c-info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-info-list__item {
    display: block;
  }
}
.c-info-list__item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22rem;
          flex: 0 0 22rem;
  font-weight: bold;
  border-bottom: 1px solid #222222;
  padding: 4rem 2rem 4rem 1.6rem;
}
@media screen and (max-width: 900px) {
  .c-info-list__item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12rem;
            flex: 0 0 12rem;
  }
}
@media screen and (max-width: 767px) {
  .c-info-list__item dt {
    font-size: 1.45rem;
    padding: 2.8rem 0.8rem 0;
    border-bottom: none;
  }
}
.c-info-list__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #bdbdbd;
  padding: 4rem 1.6rem 4rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-info-list__item dd {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    padding: 1rem 0.8rem 2.8rem;
  }
}
.c-info-list__item dd a {
  color: #2A439B;
  text-decoration: underline;
}
.c-info-list__item dd p:not(:last-of-type) {
  margin-bottom: 2em;
}
.c-info-list__item:first-child dt {
  border-top: 1px solid #222222;
}
@media screen and (max-width: 767px) {
  .c-info-list__item:first-child dt {
    border-color: #bdbdbd;
  }
}
.c-info-list__item:first-child dd {
  border-top: 1px solid #bdbdbd;
}
@media screen and (max-width: 767px) {
  .c-info-list__item:first-child dd {
    border-top: none;
  }
}

.c-info-list--overview dd {
  font-weight: normal;
}

/*------------------------------------------------------------------------------
  c-tab
------------------------------------------------------------------------------*/
.c-tab__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 3.2rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-tab__nav {
    gap: 1.2rem;
    margin-bottom: 2.4rem;
  }
}

.c-tab__nav-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  color: #222222;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1px;
  min-width: 20rem;
  padding: 1.2rem 1.6rem;
  position: relative;
  -webkit-transition: all 0.22s ease;
  transition: all 0.22s ease;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .c-tab__nav-item {
    font-size: 1.4rem;
    min-width: 16rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .c-tab__nav-item {
    font-size: 1.3rem;
    min-width: 0;
    width: 100%;
    padding: 1rem 4rem 1rem 1.2rem;
    padding: 1rem;
  }
}
.c-tab__nav-item.is-active {
  color: #fff;
  background-color: #222222;
}
.c-tab__nav-item.is-active span::before, .c-tab__nav-item.is-active span::after {
  background-color: #fff;
}
.c-tab__nav-item.is-active span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.c-tab__nav-item:hover {
  color: #fff;
  background-color: #222222;
}
.c-tab__nav-item:hover span::before, .c-tab__nav-item:hover span::after {
  background-color: #fff;
}
.c-tab__nav-item:focus {
  outline: 1px solid #005fcc;
}
.c-tab__nav-item span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .c-tab__nav-item span {
    right: 12px;
    width: 10px;
    height: 10px;
  }
}
.c-tab__nav-item span::before, .c-tab__nav-item span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #222222;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}
.c-tab__nav-item span::before {
  width: 11px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .c-tab__nav-item span::before {
    width: 10px;
  }
}
.c-tab__nav-item span::after {
  height: 11px;
  width: 1px;
}
@media screen and (max-width: 767px) {
  .c-tab__nav-item span::after {
    height: 10px;
  }
}

.c-tab__contents {
  display: none;
}
.c-tab__contents.is-active {
  display: block;
}

/*------------------------------------------------------------------------------
  c-prose
------------------------------------------------------------------------------*/
.c-prose h2 {
  color: #222222;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  border-left: 4px solid #222222;
}
.c-prose h2[style*="text-align: center"], .c-prose h2.has-text-align-center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-prose h2[style*="text-align: right"], .c-prose h2.has-text-align-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .c-prose h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-prose h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    border-width: 3px;
    padding-left: 1.2rem;
  }
}
.c-prose h3 {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #D5D5D5;
}
@media screen and (max-width: 767px) {
  .c-prose h3 {
    font-size: 1.7rem;
  }
}
.c-prose h4 {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-prose h4 {
    font-size: 1.6rem;
  }
}
.c-prose h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-prose h5 {
    font-size: 1.5rem;
  }
}
.c-prose h2,
.c-prose h3,
.c-prose h4,
.c-prose h5,
.c-prose a,
.c-prose p,
.c-prose ul:not(.p-work__slider *),
.c-prose ol,
.c-prose dl:not(.p-work__info),
.c-prose .wp-block-table,
.c-prose .wp-block-image,
.c-prose .wp-block-media-text,
.c-prose .wp-block-gallery {
  line-height: 1.7;
  margin: 1.5em 0;
}
.c-prose ul:not(.p-work__slider *) {
  list-style-type: disc;
  list-style-position: inside;
}
.c-prose ul:not(.p-work__slider *) li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-prose ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.2em;
}
.c-prose ol li {
  text-indent: 0;
  padding-left: 0.3em;
}
.c-prose a:not([class]) {
  color: #09099C;
  text-decoration: underline;
}
.c-prose .wp-block-table table {
  width: 100%;
  table-layout: auto;
}
.c-prose .wp-block-table td,
.c-prose .wp-block-table th {
  min-width: 7rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-prose .wp-block-table td,
  .c-prose .wp-block-table th {
    min-width: 3rem;
    white-space: normal;
  }
}
.c-prose table td:first-child,
.c-prose table th:first-child {
  min-width: 8rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-prose table td:first-child,
  .c-prose table th:first-child {
    min-width: 5rem;
    white-space: normal;
  }
}
.c-prose .wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose .wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose .wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose .wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose figure.wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose figure.wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose figure.wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose figure.wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose img.aligncenter {
  margin-inline: auto;
  display: block;
}
.c-prose img.alignright {
  margin-inline: auto 0;
  display: block;
}
.c-prose img.alignleft {
  margin-inline: 0 auto;
  display: block;
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  width: 100%;
  position: relative;
  overflow-y: hidden;
  margin-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-bottom: 8.8rem;
  }
}

.p-mv__first {
  height: 100vh;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10.4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__first {
    margin-bottom: 0;
  }
}

.p-mv__copy {
  position: absolute;
  top: 50%;
  left: calc(50% + 2.2rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    top: calc(80px + 50vh - 241px);
    left: auto;
    right: 0rem;
    -webkit-transform: translate(0);
            transform: translate(0);
    background-color: #fff;
    width: 7.4rem;
    padding-top: 2.6rem;
    padding-right: 1.8rem;
  }
}

.p-mv__copy-en {
  color: #828282;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.22em;
  padding-top: 0.5rem;
}
@media screen and (max-width: 900px) {
  .p-mv__copy-en {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__copy-en {
    font-size: 1.1rem;
    padding-top: 0.3rem;
  }
}

.p-mv__copy-ja {
  color: #3E3E3E;
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0.35em;
}
@media screen and (max-width: 900px) {
  .p-mv__copy-ja {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__copy-ja {
    font-size: 2.8rem;
    line-height: 1.25;
    letter-spacing: 0.32em;
  }
}
.p-mv__copy-ja span {
  font-size: 3.7rem;
}
@media screen and (max-width: 900px) {
  .p-mv__copy-ja span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__copy-ja span {
    font-size: 2.4rem;
  }
}

.p-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.p-mv__slider .swiper,
.p-mv__slider .swiper-slide {
  height: 100%;
}
.p-mv__slider .swiper img,
.p-mv__slider .swiper-slide img {
  height: 100%;
}

.p-mv__slider--upper-left {
  position: absolute;
  width: 39.1%;
  height: calc(100% - 9.5rem - 6.4rem);
  bottom: 6.4rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__slider--upper-left {
    top: 78px;
    bottom: auto;
    width: calc(100% - 12rem);
    width: 100%;
    height: 50vh;
  }
}

.p-mv__slider--upper-right {
  position: absolute;
  width: 37.3%;
  height: 29.5vw;
  bottom: 1.6rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__slider--upper-right {
    top: calc(78px + 50vh + 7vh);
    bottom: auto;
    width: 75%;
    height: 21vh;
  }
}

.p-mv__slider--lower-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-mv__slider--lower-wrap {
    margin-top: calc(78px - 16vh);
  }
}

.p-mv__slider--lower-left {
  width: 38.75%;
  height: 21.67vw;
  margin-left: 8.333vw;
}
@media screen and (max-width: 767px) {
  .p-mv__slider--lower-left {
    width: 45%;
    height: 23vw;
    margin-left: 0;
  }
}

.p-mv__slider--lower-right {
  width: 43.8%;
  height: 42.85vw;
  margin-top: 3.2rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__slider--lower-right {
    width: 42%;
    height: 48vw;
    margin-top: 1.6rem;
  }
}

.p-mv__scroll {
  position: absolute;
  top: calc(100vh - 4rem);
  left: 3.2rem;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .p-mv__scroll {
    left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__scroll {
    top: calc(78px + 50vh + 7vh);
  }
}

.p-mv__scroll-text {
  color: #828282;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.2em;
  padding-left: 0.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll-text {
    font-size: 1.3rem;
  }
}

/* 縦線（軌道）の設定 */
.p-mv__scroll-bar {
  position: relative;
  width: 1px;
  height: 52vw;
  background-color: #828282;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll-bar {
    height: 21vh;
    height: calc(21vh - 61px);
  }
}
.p-mv__scroll-bar {
  /* ●の設定 */
}
.p-mv__scroll-bar::after {
  content: "";
  position: absolute;
  top: 51.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #828282;
  -webkit-animation: scroll-dot 4.5s linear infinite;
          animation: scroll-dot 4.5s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll-bar::after {
    width: 6px;
    height: 6px;
  }
}

/* アニメーション定義 */
@-webkit-keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 0.8;
  }
  5% {
    opacity: 1;
  }
  90% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 0.8;
  }
  5% {
    opacity: 1;
  }
  90% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.p-mv__slider .swiper-slide {
  overflow: hidden;
}
.p-mv__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 7s linear;
  transition: -webkit-transform 7s linear;
  transition: transform 7s linear;
  transition: transform 7s linear, -webkit-transform 7s linear;
}
.p-mv__slider .swiper-slide-active img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.p-mv__slider .swiper-slide-duplicate-active img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

/*------------------------------------------------------------------------------
  p-picup
------------------------------------------------------------------------------*/
.p-picup {
  margin-bottom: 22rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-picup {
    margin-bottom: 10rem;
  }
}
.p-picup:hover {
  opacity: 0.75;
}

/*------------------------------------------------------------------------------
  p-home-about
------------------------------------------------------------------------------*/
.p-home-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8rem;
  width: calc(126rem + (100% - 126rem) / 2);
  padding-right: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .p-home-about__inner {
    width: 100%;
    gap: 0 4.8rem;
  }
}
@media screen and (max-width: 900px) {
  .p-home-about__inner {
    gap: 0 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-about__inner {
    gap: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-home-about__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 36.84%;
          flex: 0 1 36.84%;
}
@media screen and (max-width: 767px) {
  .p-home-about__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 77%;
            flex: 0 1 77%;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
}

.p-home-about__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 56rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-home-about__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2rem;
    margin-top: 2rem;
  }
}

.p-home-about__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-home-about__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 22%;
            flex: 0 1 22%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: auto;
  }
}

.p-home-about__lead {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 1280px) {
  .p-home-about__lead {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 900px) {
  .p-home-about__lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-about__lead {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
  }
}
.p-home-about__lead span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  .p-home-about__lead span {
    display: inline;
  }
}

.p-home-about__texts {
  line-height: 2.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-home-about__texts {
    line-height: 1.6;
    letter-spacing: 0.07em;
    margin-bottom: 2.4rem;
  }
}
.p-home-about__texts p:not(:last-child) {
  margin-bottom: 1.25em;
}

/*------------------------------------------------------------------------------
  p-home-work
------------------------------------------------------------------------------*/
.p-home-work {
  margin-bottom: 30rem;
}
@media screen and (max-width: 767px) {
  .p-home-work {
    margin-bottom: 20rem;
  }
}

.p-home-work__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  width: calc(126rem + (100% - 126rem) / 2);
  padding-top: 20rem;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .p-home-work__inner {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .p-home-work__inner {
    gap: 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-work__inner {
    gap: 0 2.8rem;
    padding-top: 10.4rem;
  }
}
.p-home-work__inner::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 2.7rem);
  height: 46rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .p-home-work__inner::before {
    height: 29.6rem;
  }
}

.p-home-work__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 4.8rem;
}

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

.p-home-work__slider {
  position: relative;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-home-work__slider {
    margin-bottom: 3.2rem;
  }
}
.p-home-work__slider .swiper-button-prev,
.p-home-work__slider .swiper-button-next {
  width: 56px;
  height: 56px;
  opacity: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-home-work__slider .swiper-button-prev,
  .p-home-work__slider .swiper-button-next {
    top: 45%;
    width: 36px;
    height: 36px;
  }
}
.p-home-work__slider .swiper-button-prev::after,
.p-home-work__slider .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-home-work__slider .swiper-button-prev {
  left: 0;
}
.p-home-work__slider .swiper-button-prev::after {
  background-image: url("../img/slide-btn-prev.jpg");
}
.p-home-work__slider .swiper-button-next {
  right: 0;
}
.p-home-work__slider .swiper-button-next::after {
  background-image: url("../img/slide-btn-next.jpg");
}
.p-home-work__slider .swiper-button-prev:focus-visible,
.p-home-work__slider .swiper-button-next:focus-visible {
  outline: 2.5px solid #005fcc;
  outline-offset: 1px;
  z-index: 10;
}
.p-home-work__slider .swiper-button-prev.swiper-button-disabled,
.p-home-work__slider .swiper-button-next.swiper-button-disabled {
  opacity: 0.7;
  cursor: default !important;
}

/*------------------------------------------------------------------------------
  p-home-service
------------------------------------------------------------------------------*/
.p-home-service {
  background-color: #F3F3F3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 14.8rem;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .p-home-service {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-service {
    padding-top: 10rem;
  }
}

.p-home-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-home-service__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-home-service__bg-text {
  position: absolute;
  top: -24.8rem;
  left: -9rem;
  font-size: 8.1rem;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Inter", sans-serif;
  z-index: 2;
  opacity: 0.9;
}
@media screen and (max-width: 1140px) {
  .p-home-service__bg-text {
    top: -14rem;
    left: 0;
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 900px) {
  .p-home-service__bg-text {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-service__bg-text {
    top: -13.5rem;
    left: 1.6rem;
    font-size: clamp(3.2rem, 10.3vw, 5rem);
    line-height: 1.1;
    -webkit-writing-mode: lr-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: lr-tb;
  }
}

.p-home-service__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-home-service__title-wrap {
    margin-left: auto;
    background-color: #F3F3F3;
    padding-left: 3rem;
    padding-top: 3.2rem;
    position: relative;
    z-index: 1;
  }
}

.p-home-service__sub-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  border-right: 2px solid #333;
  padding-right: 1rem;
  margin-top: 5rem;
  margin-right: 4rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 900px) {
  .p-home-service__sub-title {
    margin-right: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-service__sub-title {
    font-size: 1.7rem;
    border-width: 1px;
    margin-top: 2rem;
  }
}

.p-home-service__contents {
  padding-bottom: 43rem;
  margin-top: 6rem;
  margin-right: 6.4rem;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .p-home-service__contents {
    margin-right: 4rem;
  }
}
@media screen and (max-width: 900px) {
  .p-home-service__contents {
    padding-left: 3.2rem;
    margin-right: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-service__contents {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0;
    padding-bottom: 10rem;
    margin-top: 3rem;
    margin-right: 0;
  }
}

.p-home-service__text-wrap {
  background-color: #F3F3F3;
  max-width: 73.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 10rem;
  padding-left: 6.4rem;
}
@media screen and (max-width: 1140px) {
  .p-home-service__text-wrap {
    padding-left: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-service__text-wrap {
    max-width: 100%;
    padding-left: 0;
    padding-bottom: 0rem;
  }
}

.p-home-service__texts {
  line-height: 2.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 3.2rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-home-service__texts {
    letter-spacing: 0.07em;
    line-height: 1.7;
    margin: 2.4rem 0 2rem;
  }
}
.p-home-service__texts p:not(:last-child) {
  margin-bottom: 1.25em;
}

.p-home-service__bg {
  position: absolute;
  bottom: 0rem;
  right: 1px;
  height: 58.5rem;
  width: calc(114rem + (100vw - 114rem - 22.5rem) / 2);
  max-width: 130rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-home-service__bg {
    top: -43.2rem;
    right: auto;
    bottom: auto;
    left: -2rem;
    width: 100%;
    height: 40rem;
  }
}

/*------------------------------------------------------------------------------
  p-page-links
------------------------------------------------------------------------------*/
.p-page-links__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-page-links__inner {
    display: block;
  }
}

.p-page-links__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.25%;
          flex: 0 1 47.25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-links__item:not(:last-child) {
    margin-bottom: 4rem;
  }
}

.p-page-links__item-title {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem 0 2.8rem 1.6rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-links__item-title {
    padding: 0.6rem 0 2rem 1.4rem;
  }
}

.p-page-links__item-body {
  width: calc(100% - 2.7rem);
}
@media screen and (max-width: 767px) {
  .p-page-links__item-body {
    width: calc(100% - 2.3rem);
  }
}

.p-page-links__item-img {
  width: 100%;
  margin-bottom: 1.6rem;
}
.p-page-links__item-img img {
  aspect-ratio: 540/370;
}
@media screen and (max-width: 767px) {
  .p-page-links__item-img img {
    aspect-ratio: 4/3;
  }
}

.p-page-links__item-text {
  line-height: 2.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-page-links__item-text {
    line-height: 2;
    margin-bottom: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-home-gallery
------------------------------------------------------------------------------*/
.p-home-gallery {
  margin-bottom: 30.6rem;
}
@media screen and (max-width: 767px) {
  .p-home-gallery {
    margin-bottom: 11em;
  }
}

.p-home-gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  margin-left: 12rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-home-gallery__inner {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .p-home-gallery__inner {
    margin-left: 0;
    gap: 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-gallery__inner {
    gap: 0 2.8rem;
  }
}

.p-home-gallery__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

/* スライダー全体のラッパー */
.p-home-gallery__sliders {
  width: 100%;
  overflow: hidden;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-home-gallery__sliders {
    margin-bottom: 4rem;
  }
}

/* 下段のスライダーに余白を開ける */
.p-home-gallery__bottom-slider {
  margin-top: 8px;
  /* 上段との間の余白。デザインに合わせて調整してください */
}

/* Swiper設定：なめらかに動かすための必須設定 */
.js-gallerySlider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* スライド（画像）の設定 */
.js-gallerySlider .swiper-slide {
  width: auto;
  height: 260px;
  margin-right: 8px;
  /* 画像間の余白 */
}
@media screen and (max-width: 767px) {
  .js-gallerySlider .swiper-slide {
    height: 16rem;
  }
}

/* 画像自体の設定 */
.js-gallerySlider .swiper-slide img {
  width: auto;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*------------------------------------------------------------------------------
  p-message
------------------------------------------------------------------------------*/
.p-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-message {
    display: block;
  }
}

.p-message__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41%;
          flex: 0 1 41%;
}

.p-message__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .p-message__caption {
    margin-top: 1.6rem;
  }
}

.p-message__ceo {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-top: 0.4rem;
  margin-right: 2rem;
}
@media screen and (max-width: 640px) {
  .p-message__ceo {
    font-size: 1.2rem;
    padding-top: 0.3rem;
    margin-right: 1.6rem;
  }
}

.p-message__name {
  width: 100%;
  max-width: 12.8rem;
}
@media screen and (max-width: 640px) {
  .p-message__name {
    max-width: 11rem;
  }
}

.p-message__texts {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51.5%;
          flex: 0 1 51.5%;
  font-weight: normal;
  line-height: 2.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-message__texts {
    letter-spacing: 0.07em;
    line-height: 2;
    margin-top: 0;
  }
  .p-message__texts br {
    display: none;
  }
}
@media screen and (max-width: 900px) and (max-width: 640px) {
  .p-message__texts br {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .p-message__texts {
    margin-top: 2.4rem;
  }
}
.p-message__texts p:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (max-width: 900px) {
  .p-message__texts p:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 640px) {
  .p-message__texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}

/*------------------------------------------------------------------------------
  p-access
------------------------------------------------------------------------------*/
.p-access__map {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    margin-bottom: 1.2rem;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 530px;
  vertical-align: bottom;
}
@media screen and (max-width: 900px) {
  .p-access__map iframe {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .p-access__map iframe {
    height: 75vw;
  }
}

.p-access__text {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-access__text {
    font-size: 1.3rem;
  }
}

.p-access__map-link {
  margin-left: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding-right: 2rem;
  position: relative;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-access__map-link {
    margin-left: 1.2rem;
  }
}
.p-access__map-link:hover {
  opacity: 0.8;
}
.p-access__map-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-access__map-link:hover::before {
  opacity: 1;
}
.p-access__map-link::after {
  content: "";
  position: absolute;
  top: 51.5%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url(../img/icon-xternal-link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

/*------------------------------------------------------------------------------
  business
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  p-scenes
------------------------------------------------------------------------------*/
.p-scenes-wrap {
  max-width: 105.4rem;
}

.p-scenes {
  display: block;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  margin-bottom: -3.2rem;
}
@media screen and (max-width: 767px) {
  .p-scenes {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    margin-bottom: -1.6rem;
  }
}

.p-scenes__item {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-scenes__item {
    margin-bottom: 1.6rem;
  }
}

.p-scenes__img {
  position: relative;
}
.p-scenes__img img {
  border-radius: 2px;
}

.p-scenes__img-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(9.77%, rgba(34, 34, 34, 0)), color-stop(132.76%, #222));
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 9.77%, #222 132.76%);
  padding: 5rem 1.2rem 1.2rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-scenes__img-text {
    font-size: 1.2rem;
    padding: 3rem 1.2rem 0.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-contact
------------------------------------------------------------------------------*/
.p-contact__text {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    letter-spacing: 0.05em;
    line-height: 1.7;
  }
}

/*------------------------------------------------------------------------------
  p-contact-form
------------------------------------------------------------------------------*/
.p-contact-form {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-top: 4rem;
  }
}

.p-contact-form__list {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__list {
    margin-bottom: 2.8rem;
  }
}

.p-contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item {
    display: block;
  }
}
.p-contact-form__item:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}

.p-contact-form__item-heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25rem;
          flex: 0 1 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-contact-form__item-heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 24rem;
            flex: 0 1 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-heading {
    padding-right: 0;
    margin: 0 0 1rem;
  }
}

.p-contact-form__required {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  background-color: #222222;
  text-align: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: inline-block;
  border-radius: 1px;
  padding: 0.6rem 1.2rem;
  margin-top: 0.4rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__required {
    margin-top: 0;
    margin-right: 1.4rem;
  }
}
.p-contact-form__required.--any {
  background-color: #aaa;
}

.p-contact-form__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-title {
    font-size: 1.4rem;
  }
}

.p-contact-form__input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-contact-form__input-wrap input[type=text],
.p-contact-form__input-wrap input[type=email],
.p-contact-form__input-wrap input[type=tel],
.p-contact-form__input-wrap select,
.p-contact-form__input-wrap textarea {
  color: #333;
  font-size: 1.6rem !important;
  width: 100%;
  padding: 14px 12px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid #E6E6E6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text],
  .p-contact-form__input-wrap input[type=email],
  .p-contact-form__input-wrap input[type=tel],
  .p-contact-form__input-wrap select,
  .p-contact-form__input-wrap textarea {
    padding: 12px;
  }
}
.p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::placeholder,
.p-contact-form__input-wrap input[type=email]::placeholder,
.p-contact-form__input-wrap input[type=tel]::placeholder,
.p-contact-form__input-wrap select::placeholder,
.p-contact-form__input-wrap textarea::placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::placeholder,
  .p-contact-form__input-wrap input[type=email]::placeholder,
  .p-contact-form__input-wrap input[type=tel]::placeholder,
  .p-contact-form__input-wrap select::placeholder,
  .p-contact-form__input-wrap textarea::placeholder {
    font-size: 1.4rem;
  }
}
.p-contact-form__input-wrap textarea {
  resize: none;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap textarea {
    min-height: 20rem;
  }
}
.p-contact-form__input-wrap input[type=radio],
.p-contact-form__input-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #E6E6E6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: -4.5px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin-right: 1rem;
}
.p-contact-form__input-wrap input[type=radio]:checked,
.p-contact-form__input-wrap input[type=checkbox]:checked {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  outline: none !important;
  outline-offset: none;
  border-radius: 50%;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    gap: 1rem 1.6rem;
  }
}
.p-contact-form__radio-wrap label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

.p-contact-form__agree {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: 1.4rem;
    margin-bottom: 4.8rem;
  }
}
.p-contact-form__agree input {
  margin-right: 1.4rem;
}
.p-contact-form__agree a {
  text-decoration: underline;
}

.p-contact-form__btn {
  height: 5rem;
  width: 100%;
  max-width: 23rem;
  margin: 0 auto;
  display: block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn {
    height: 4.6rem;
  }
  .p-contact-form__btn:hover {
    opacity: 1;
    color: #fff;
    background-color: #222222;
  }
}
.p-contact-form__btn input[type=submit] {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  width: 100%;
  height: 100%;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
}
.p-contact-form__btn input[type=submit]:hover {
  color: #222222;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit]:hover {
    color: #fff;
    background-color: #222222;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit] {
    font-size: 1.6rem;
  }
}
.p-contact-form__btn:has(:disabled) {
  opacity: 0.4;
  background: #999;
  border: none;
}
.p-contact-form__btn:has(:disabled):hover::before {
  content: none;
}
.p-contact-form__btn:has(:disabled):hover input[type=submit] {
  color: #fff;
}

.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}

.p-contact-form__radio-wrap .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap .wpcf7-radio {
    gap: 1.2rem 1.6rem;
  }
}
.p-contact-form__radio-wrap .wpcf7-radio label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

/*------------------------------------------------------------------------------
  privacy-policy
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  p-sub-mv
------------------------------------------------------------------------------*/
.p-sub-mv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-sub-mv__img-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 5rem;
  margin-left: 6.4rem;
}
@media screen and (max-width: 1140px) {
  .p-sub-mv__img-wrap {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-sub-mv__img-wrap {
    padding-right: 0;
    margin-left: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mv__img-wrap {
    margin-left: 2rem;
  }
}

.p-sub-mv__img {
  width: 100%;
  height: 50rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 1350px) {
  .p-sub-mv__img {
    width: calc(100% - 7rem);
  }
}
@media screen and (max-width: 1023px) {
  .p-sub-mv__img {
    width: 100%;
    height: 42rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mv__img {
    height: 45vw;
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 520px) {
  .p-sub-mv__img {
    height: 19rem;
  }
}

/*------------------------------------------------------------------------------
  p-lower-layout
------------------------------------------------------------------------------*/
.p-lower-layout {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-lower-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-lower-layout__side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 3.6rem;
}
@media screen and (max-width: 1023px) {
  .p-lower-layout__side {
    position: static;
    margin-right: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-lower-layout__side {
    margin-right: 2rem;
  }
}

.p-lower-layout__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-lower-layout__main {
    max-width: 100%;
  }
}

.p-lower-layout__breadcrumb {
  border-top: 1px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-lower-layout__breadcrumb {
    margin-top: 0.46em;
  }
}

.p-lower-layout__body {
  margin-top: 11.2rem;
}
@media screen and (max-width: 767px) {
  .p-lower-layout__body {
    width: 100%;
    margin-top: 4rem;
  }
}

/*------------------------------------------------------------------------------
  p-work
------------------------------------------------------------------------------*/
.p-work__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-work__header {
    margin-bottom: 1.6rem;
  }
}

.p-work__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.3rem;
}

.p-work__category {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-work__category {
    font-size: 1.3rem;
  }
}

.p-work__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-work__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-work__title {
    font-size: 1.8rem;
  }
}

.p-work__slider {
  position: relative;
  overflow: hidden;
}
.p-work__slider .swiper-wrapper {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.p-work__slider .swiper {
  width: 100%;
  height: auto;
}
.p-work__slider .swiper-slide {
  width: 100%;
  height: auto;
}
.p-work__slider .swiper-button-prev,
.p-work__slider .swiper-button-next {
  width: 56px;
  height: 56px;
  background-color: transparent;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-work__slider .swiper-button-prev,
  .p-work__slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
.p-work__slider .swiper-button-prev::after,
.p-work__slider .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-work__slider .swiper-button-prev {
  left: 0;
}
.p-work__slider .swiper-button-prev::after {
  background-image: url("../img/slide-btn-prev.jpg");
}
.p-work__slider .swiper-button-next {
  right: 0;
}
.p-work__slider .swiper-button-next::after {
  background-image: url("../img/slide-btn-next.jpg");
}
.p-work__slider .swiper-button-prev:focus-visible,
.p-work__slider .swiper-button-next:focus-visible {
  outline: 2.5px solid #005fcc;
  outline-offset: 1px;
}
.p-work__slider .swiper-button-prev:hover,
.p-work__slider .swiper-button-next:hover {
  opacity: 0.8;
}
.p-work__slider .swiper-pagination {
  position: static;
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 12px;
  width: 100%;
}
.p-work__slider .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  height: 2px;
  background-color: #222222;
  opacity: 0.4;
  border-radius: 0;
  margin: 0 !important;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* アクティブ時 */
}
.p-work__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #222222;
}

.p-work__info {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-work__info {
    margin-top: 3.2rem;
  }
}

.p-work__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.6rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-work__info-item {
    padding: 2.4rem 1.6rem;
  }
}
.p-work__info-item:nth-child(odd) {
  background-color: #F3F3F3;
}
.p-work__info-item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14.4rem;
          flex: 0 0 14.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-work__info-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6rem;
            flex: 0 0 6rem;
  }
}
.p-work__info-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-work__info-item dd {
    padding-left: 1.6rem;
  }
}

.p-work__content {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-work__content {
    margin-bottom: 3.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-service
------------------------------------------------------------------------------*/
.p-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6.4rem;
  width: calc(132rem + (100% - 132rem) / 2);
  padding-right: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1441px) {
  .p-service__inner {
    width: 100%;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 136rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
  .p-service__inner {
    width: 100%;
    gap: 0 4rem;
  }
}
@media screen and (max-width: 900px) {
  .p-service__inner {
    gap: 0 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    gap: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-service__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35.2%;
          flex: 0 1 35.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
}
@media screen and (max-width: 1140px) {
  .p-service__img-wrap {
    gap: 0 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% - 7rem);
            flex: 0 1 calc(100% - 7rem);
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    gap: 0.8rem;
    margin-right: auto;
  }
}

.p-service__img:nth-child(2) {
  margin-top: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-service__img:nth-child(2) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__img:nth-child(2) {
    margin-top: 0.6rem;
  }
}

.p-service__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 65.9rem;
  margin-top: 7.2rem;
}
@media screen and (max-width: 1023px) {
  .p-service__text-wrap {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2rem;
    margin-top: 3.6rem;
  }
}

.p-service__lead {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 4rem;
}
@media screen and (max-width: 1140px) {
  .p-service__lead {
    font-size: 2.2rem;
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-service__lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__lead {
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
  }
}
.p-service__lead span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-service__lead span {
    display: inline;
  }
}

.p-service__texts {
  line-height: 2.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-service__texts {
    line-height: 1.6;
    letter-spacing: 0.07em;
  }
}
.p-service__texts p:not(:last-child) {
  margin-bottom: 1.25em;
}
@media screen and (max-width: 767px) {
  .p-service__texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.p-service__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-service__title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

/*------------------------------------------------------------------------------
  p-workflow
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .p-workflow {
    display: contents;
  }
}

.p-workflow__lead {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 13.2rem;
}
@media screen and (max-width: 1023px) {
  .p-workflow__lead {
    font-size: 1.7rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__lead {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 3.2rem;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
    padding-left: 0.6rem;
    min-height: 12rem;
  }
}

.p-workflow__step-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.2rem;
  max-width: 103.2rem;
  margin-bottom: 9.6rem;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .p-workflow__step-wrap {
    max-width: 90rem;
    gap: 0 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-workflow__step-wrap {
    max-width: 66rem;
    gap: 0 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__step-wrap {
    max-width: 100%;
    -ms-grid-row: 2;
    grid-row: 2;
    grid-column: 1/-1;
    overflow-x: scroll;
    margin-bottom: 2.4rem;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
}

/* 各ステップブロック（STEP 01〜08） */
.p-workflow__step {
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 8rem;
  min-height: 36rem;
  padding: 3.2rem 0.8rem 2.4rem;
}
@media screen and (max-width: 1140px) {
  .p-workflow__step {
    min-width: 7rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-workflow__step {
    min-width: 5.6rem;
    min-height: 27rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__step {
    min-width: 5.2rem;
    min-height: 24rem;
  }
}
.p-workflow__step {
  /* ▼ リストの数だけループして色を適用する処理 */
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(2) {
  background-color: #FAFAFA;
}
.p-workflow__step {
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(3) {
  background-color: #F7F7F7;
}
.p-workflow__step {
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(4) {
  background-color: #F2F2F2;
}
.p-workflow__step {
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(5) {
  background-color: #EDEDED;
}
.p-workflow__step {
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(6) {
  background-color: #E8E8E8;
}
.p-workflow__step {
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(7) {
  background-color: #E3E3E3;
}
.p-workflow__step {
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(8) {
  background-color: #DEDEDE;
}
.p-workflow__step {
  /* $i は 1からスタートするが、
     HTMLの1番目は矢印(arrow)なので、STEP01は「2番目の子」になる。
     そのため +1 して、nth-child(2) からスタート。
  */
}
.p-workflow__step:nth-child(9) {
  background-color: #D9D9D9;
}

.p-workflow__step-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4F4F4F;
  font-family: "Inter", sans-serif;
  text-align: center;
  padding-bottom: 2.4rem;
  border-bottom: 1px dashed #4F4F4F;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-workflow__step-head {
    padding-bottom: 2rem;
    margin-bottom: 3.2rem;
  }
}

.p-workflow__step-head-text {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 1023px) {
  .p-workflow__step-head-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__step-head-text {
    font-size: 0.9rem;
  }
}

.p-workflow__step-number {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .p-workflow__step-number {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__step-number {
    font-size: 1.8rem;
  }
}

.p-workflow__step-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .p-workflow__step-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-workflow__step-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__step-title {
    font-size: 1.4rem;
  }
}

/* 矢印の線本体 */
.p-workflow__arrow {
  position: absolute;
  top: 56%;
  left: 0;
  width: calc(100% - 11.2rem);
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#F2F2F2), to(#D9D9D9));
  background: linear-gradient(to right, #F2F2F2 0%, #D9D9D9 100%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-workflow__arrow {
    width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__arrow {
    width: 52rem;
  }
}
.p-workflow__arrow {
  /* 矢印の先端（三角形） */
}
.p-workflow__arrow::after {
  content: "";
  position: absolute;
  /* 線の右端と矢印の結合部分を微調整 */
  right: 2px;
  top: 50%;
  /* 矢印のサイズ */
  width: 10px;
  height: 10px;
  /* 上と右に線を引く */
  border-top: 2px solid #D9D9D9;
  border-right: 2px solid #D9D9D9;
  /* 45度回転させて「＞」の形にする */
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* オープンブロック */
.p-workflow__step--open {
  background-color: #333;
  min-width: 8.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 1140px) {
  .p-workflow__step--open {
    min-width: 7.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-workflow__step--open {
    min-width: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__step--open {
    min-width: 5.6rem;
    margin-left: 2.4rem;
  }
}

.p-workflow__step-title--open {
  color: #fff;
  font-size: 2.6rem;
}
@media screen and (max-width: 1140px) {
  .p-workflow__step-title--open {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-workflow__step-title--open {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__step-title--open {
    font-size: 1.7rem;
  }
}

.p-workflow__detail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-workflow__detail-wrap {
    -ms-grid-row: 3;
    grid-row: 3;
    grid-column: 1/-1;
    gap: 2.4rem 0;
    margin-top: 2rem;
  }
}

.p-workflow__detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-workflow__detail {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.p-workflow__detail-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #222222;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0.4rem;
  margin-right: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .p-workflow__detail-head {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__detail-head {
    margin-right: 2rem;
  }
}

.p-workflow__detail-head-text {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-workflow__detail-head-text {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
}

.p-workflow__detail-number {
  font-size: 2.8rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-workflow__detail-number {
    font-size: 2.2rem;
  }
}

.p-workflow__detail-texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #828282;
  padding: 0.6rem 0 2rem 3.2rem;
}
@media screen and (max-width: 1023px) {
  .p-workflow__detail-texts {
    padding: 0.4rem 0 1.6rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__detail-texts {
    padding: 0.4rem 0 0.8rem 2rem;
  }
}

.p-workflow__detail-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .p-workflow__detail-title {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__detail-title {
    font-size: 1.6rem;
  }
}

.p-workflow__detail-text {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-workflow__detail-text {
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__detail-text {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-total-support
------------------------------------------------------------------------------*/
.p-total-support {
  background-color: #F3F3F3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 18.4rem;
  padding-bottom: 0.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-total-support {
    padding-top: 10rem;
    padding-bottom: 0.4rem;
  }
}
.p-total-support::before {
  content: "";
  position: absolute;
  bottom: -30rem;
  left: 0;
  width: 100%;
  height: 31rem;
  background-color: #F3F3F3;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-total-support::before {
    bottom: -11rem;
    height: 11rem;
  }
}

.p-total-support__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 7.2rem;
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-total-support__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 2rem;
    margin-top: 1.2rem;
  }
}

.p-total-support__sub-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 9.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem 0;
}
@media screen and (max-width: 1023px) {
  .p-total-support__sub-title {
    font-size: 2rem;
    gap: 1.6rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-total-support__sub-title {
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    width: auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    gap: 1.2rem 0;
    margin-bottom: 1.6rem;
    order: -1;
  }
}
.p-total-support__sub-title span {
  border-right: 2px solid #333;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: inline-block;
  padding: 0 1rem 0.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-total-support__sub-title span {
    border-right: none;
    border-bottom: 1px solid #333;
    padding: 0 0 0.5rem;
  }
}

.p-total-support__img-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-total-support__img-wrap {
    display: contents;
  }
}

.p-total-support__img {
  width: 100%;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .p-total-support__img {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-total-support__img {
    margin-bottom: 1.6rem;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
}

.p-service-total__text {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1023px) {
  .p-service-total__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-total__text {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: justify;
  }
}

.p-total-support__step-list {
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-total-support__step-list {
    margin-top: 2.8rem;
  }
}

.p-total-support__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D0D0D0;
  padding: 6.4rem 4rem 6.4rem 9rem;
  position: relative;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-total-support__step {
    display: block;
    padding: 2.8rem 2rem 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.p-total-support__step {
  /* 左下の三角形 */
}
.p-total-support__step::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 130px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-bottom: 1px solid #D0D0D0;
  border-left: 1px solid #D0D0D0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-total-support__step::before {
    bottom: -9px;
    width: 16px;
    height: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}
.p-total-support__step:last-child {
  margin-bottom: 0;
}
.p-total-support__step:last-child::before {
  display: none;
}

.p-total-support__step-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10.4rem;
  margin-right: 8rem;
}
@media screen and (max-width: 767px) {
  .p-total-support__step-icon {
    width: 5.6rem;
    margin: 0 auto 1.2rem;
  }
}

.p-total-support__step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-total-support__step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-total-support__step-title {
    text-align: center;
    display: block;
    margin-bottom: 1.2rem;
  }
}

.p-total-support__step-title-ja {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-total-support__step-title-ja {
    font-size: 2rem;
    margin: 0 0 0.4rem;
  }
}

.p-total-support__step-title-en {
  color: #4F4F4F;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-total-support__step-title-en {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.p-total-support__step-text {
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-total-support__step-text {
    line-height: 1.7;
    letter-spacing: 0.07em;
    text-align: justify;
  }
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #222222;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left;
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mt-8 {
  margin-top: 64px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-mb-8 {
  margin-bottom: 64px !important;
}

.u-mb-9 {
  margin-bottom: 72px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */