@charset "UTF-8";



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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #f8f8f8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #f8f8f8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #f8f8f8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/


/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
address {
  font-style: normal;
}

/************************************************************************
* end base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

/************************************************************************
* c-tag — pill-style tag
************************************************************************/
.c-tag {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 6px 12px;
  padding: .375rem .75rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

/************************************************************************
* p-cta
************************************************************************/
.p-cta {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

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

.p-cta__bgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-cta__inner {
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 500px;
}

.p-cta__banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  margin-bottom: -45px;
  margin-bottom: -2.8125rem;
}

.p-cta__banner::after {
  border-top: 10px solid #7f0022;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-cta__bannerText {
  display: inline-block;
  border-radius: 100px;
  background-color: #7f0022;
  padding: 8px 50px;
  padding: .5rem 3.125rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
}

.p-cta__box {
  position: relative;
  background-image: repeating-linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 3px), repeating-linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 3px), repeating-linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 3px), repeating-linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 3px);
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 100% 1px, 100% 1px, 1px 100%, 1px 100%;
  padding: 64px 20px 40px 20px;
  padding: 4rem 1.25rem 2.5rem 1.25rem;
}

.p-cta__box::before {
  position: absolute;
  top: -1px;
  left: -1px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-cta__box::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-cta__message {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-cta__message::before {
  position: absolute;
  top: -1px;
  right: -1px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-cta__message::after {
  position: absolute;
  bottom: -1px;
  left: -1px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-cta__messageMain {
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .64px;
  line-height: 1.4;
  text-align: center;
}

.p-cta__messageSub {
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.6;
  text-align: center;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  position: relative;
  min-height: 770px;
  min-height: 48.125rem;
  overflow: hidden;
}

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

.p-fv__bgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__illust {
  position: absolute;
  top: 0;
  right: 12px;
  right: .75rem;
  z-index: 1;
  width: 94%;
  height: auto;
}

.p-fv__illustImg {
  width: 100%;
  height: auto;
}

.p-fv__content {
  position: relative;
  z-index: 2;
  padding: 85vw 20px 60px;
  padding: 85vw 1.25rem 3.75rem;
}

.p-fv__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  color: #fff;
}

.p-fv__labelLarge {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-fv__labelSmall {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-fv__labelBlock {
  margin-left: -.6em;
  width: 100%;
}

.p-fv__catchCopy {
  -webkit-transform: skewX(-4deg);
  transform: skewX(-4deg);
  margin-top: 16px;
  margin-top: 1rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.32;
}

.p-fv__catchCopyEm {
  display: inline-block;
  position: relative;
}

.p-fv__catchCopyPeriod {
  letter-spacing: -.65em;
}

.p-fv__catchCopyEm::after {
  position: absolute;
  bottom: 4px;
  bottom: .25rem;
  left: 0;
  -webkit-transform: skewX(-18deg);
  transform: skewX(-18deg);
  background-color: #fff;
  width: 100%;
  height: 4px;
  content: '';
}

.p-fv__desc {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
  color: #fff;
}

.p-fv__descText {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.6;
}

.p-fv__descNote {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.8;
}

/************************************************************************
* p-overview
************************************************************************/
.p-overview {
  position: relative;
  z-index: 5;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-overview__inner {
  max-width: 500px;
  max-width: 31.25rem;
}

.p-overview__list {
  gap: 8px 16px;
  gap: .5rem 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1100px;
  max-width: 68.75rem;
}

.p-overview__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 44px;
  padding-top: 2.75rem;
}

.p-overview__badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: #7f0022;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.p-overview__badge--small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: #7f0022;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.p-overview__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #060237;
  padding: 40px 5px 20px;
  padding: 2.5rem .3125rem 1.25rem;
  width: 100%;
}

.p-overview__text {
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.6;
  text-align: center;
}

/************************************************************************
* p-reason — なぜOSIEが担えるのか
************************************************************************/
.p-reason {
  position: relative;
  background-color: #060237;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-reason::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 32px solid #7f0022;
  border-top: 2rem solid #7f0022;
  border-right: 32px solid transparent;
  border-right: 2rem solid transparent;
  border-left: 32px solid transparent;
  border-left: 2rem solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-reason__heading {
  text-align: center;
}

.p-reason__headingEn {
  display: block;
  opacity: .4;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
}

.p-reason__headingJa {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.p-reason__headingDesc {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.6;
}

.p-reason__list {
  gap: 34px;
  gap: 2.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 54px;
  margin-top: 3.375rem;
}

.p-reason__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  padding: 155px 20px 40px 20px;
  padding: 9.6875rem 1.25rem 2.5rem 1.25rem;
  width: 100%;
  max-width: 333px;
  max-width: 20.8125rem;
}

.p-reason__itemNum {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -10px;
  top: -.625rem;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #7f0022;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: .8;
  text-align: center;
}

.p-reason__itemIcon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-reason__itemIcon--integration {
  top: 58px;
  top: 3.625rem;
  width: 66px;
  width: 4.125rem;
  height: 65px;
  height: 4.0625rem;
}

.p-reason__itemIcon--practice {
  top: 65px;
  top: 4.0625rem;
  width: 69px;
  width: 4.3125rem;
  height: 45px;
  height: 2.8125rem;
}

.p-reason__itemIcon--responsibility {
  top: 54px;
  top: 3.375rem;
  width: 58px;
  width: 3.625rem;
  height: 68px;
  height: 4.25rem;
}

.p-reason__itemIconImg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-reason__itemTitle {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
}

.p-reason__itemDesc {
  margin-top: 12px;
  margin-top: .75rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.6;
  text-align: center;
}

/************************************************************************
* p-role — OSIEが担う役割
************************************************************************/
.p-role {
  background-color: #7f0022;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-role__heading {
  text-align: center;
}

.p-role__headingEn {
  display: block;
  opacity: .4;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
}

.p-role__headingJa {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.p-role__list {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-role__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-role__item:first-child {
  margin-top: 0;
}

.p-role__item::before {
  position: absolute;
  top: 10px;
  top: .625rem;
  left: 12px;
  left: .75rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  background: -webkit-gradient(linear, right top, left top, from(rgba(71, 0, 19, 0)), color-stop(20%, #470013), color-stop(50%, #470013), color-stop(80%, #470013), to(rgba(71, 0, 19, 0)));
  background: linear-gradient(270deg, rgba(71, 0, 19, 0) 0%, #470013 20%, #470013 50%, #470013 80%, rgba(71, 0, 19, 0) 100%);
  width: 93%;
  height: 51.5vw;
  min-height: 210px;
  min-height: 13.125rem;
  content: '';
}

.p-role__item--reverse::before {
  right: 12px;
  right: .75rem;
  left: auto;
  -webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  background: -webkit-gradient(linear, right top, left top, from(rgba(71, 0, 19, 0)), color-stop(20%, #470013), color-stop(50%, #470013), color-stop(80%, #470013), to(rgba(71, 0, 19, 0)));
  background: linear-gradient(270deg, rgba(71, 0, 19, 0) 0%, #470013 20%, #470013 50%, #470013 80%, rgba(71, 0, 19, 0) 100%);
}

.p-role__itemImgWrap--left {
  -webkit-clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  width: 93%;
  overflow: hidden;
}

.p-role__itemImgWrap--right {
  -webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: auto;
  width: 93%;
  overflow: hidden;
}

.p-role__itemImg {
  width: 100%;
  height: 50.89vw;
  min-height: 200px;
  min-height: 12.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-role__itemContent--right {
  padding: 24px 20px 0;
  padding: 1.5rem 20px 0;
}

.p-role__itemContent--left {
  padding: 24px 20px 0;
  padding: 1.5rem 20px 0;
}

.p-role__itemNumber {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: .4;
  color: #fff;
}

.p-role__itemNum {
  font-family: 'Times New Roman', 'Georgia', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.p-role__itemEn {
  font-family: 'Times New Roman', 'Georgia', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.p-role__itemTitle {
  margin-top: 16px;
  margin-top: 1rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.p-role__itemDesc {
  margin-top: 16px;
  margin-top: 1rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.6;
}

.p-role__itemTags {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-top: 1.5rem;
}

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

@media screen and (min-width: 768px) {

  html {
    font-size: 1.4545454545vw;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1160px;
  }

  .l-container.l-container--narrow {
    max-width: 940px;
  }

  .l-container.l-container--wide {
    max-width: 1380px;
  }

  .c-tag {
    padding: 8px 16px;
    padding: .5rem 1rem;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: .04em;
  }

  .p-cta {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 82px;
    padding-bottom: 5.125rem;
  }

  .p-cta__inner {
    padding-right: 0;
    padding-left: 0;
    max-width: 900px;
    max-width: 56.25rem;
  }

  .p-cta__banner {
    margin-bottom: -33px;
    margin-bottom: -2.0625rem;
  }

  .p-cta__bannerText {
    padding: 8px 40px;
    padding: .5rem 2.5rem;
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: .04em;
    line-height: 1;
  }

  .p-cta__box {
    background-image: repeating-linear-gradient(to right, #fff 0, #fff 2px, transparent 2px, transparent 6px), repeating-linear-gradient(to right, #fff 0, #fff 2px, transparent 2px, transparent 6px), repeating-linear-gradient(to bottom, #fff 0, #fff 2px, transparent 2px, transparent 6px), repeating-linear-gradient(to bottom, #fff 0, #fff 2px, transparent 2px, transparent 6px);
    background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
    padding: 75px 40px;
    padding: 4.6875rem 2.5rem;
  }

  .p-cta__box::before {
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
  }

  .p-cta__box::after {
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
  }

  .p-cta__message {
    gap: 32px;
    gap: 2rem;
  }

  .p-cta__message::before {
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
  }

  .p-cta__message::after {
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
  }

  .p-cta__messageMain {
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: .04em;
    line-height: 1.6;
  }

  .p-cta__messageSub {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .04em;
    line-height: 1.6;
  }

  .p-fv {
    height: 650px;
    height: 40.625rem;
    min-height: auto;
    overflow: visible;
  }

  .p-fv__bgWrap {
    width: 85%;
  }

  .p-fv__bgImg {
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right top;
    object-position: right top;
  }

  .p-fv__illust {
    right: 0;
    width: 47vw;
    max-width: 805px;
    max-width: 50.3125rem;
    height: auto;
  }

  .p-fv__content {
    padding: 0;
    padding-top: clamp(50px, -80px + 17.4vw, 170px);
    padding-top: clamp(3.125rem, -80px + 17.4vw, 10.625rem);
    padding-left: 6.25vw;
    max-width: 46vw;
  }

  .p-fv__labelLarge {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-fv__labelSmall {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-fv__labelBlock {
    margin-left: 0;
    width: auto;
  }

  .p-fv__catchCopy {
    font-size: clamp(48px, 4.44vw, 64px);
    font-size: clamp(3rem, 4.44vw, 4rem);
    letter-spacing: .02em;
    line-height: 1.59375;
  }

  .p-fv__catchCopyEm::after {
    bottom: .234em;
    height: 5px;
  }

  .p-fv__desc {
    margin-top: 32px;
    margin-top: 2rem;
    max-width: 574px;
    max-width: 35.875rem;
  }

  .p-fv__descText {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: .02em;
    line-height: 200%;
  }

  .p-fv__descNote {
    line-height: 1.8;
  }

  .p-overview {
    margin-top: 142px;
    margin-top: 8.875rem;
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
  }

  .p-overview__inner {
    max-width: none;
  }

  .p-overview__list {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-overview__badge {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-overview__badge--small {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-overview__body {
    padding: 40px 12px 20px;
    padding: 2.5rem .75rem 1.25rem;
  }

  .p-overview__text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-reason {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }

  .p-reason::before {
    top: 0;
    border-top: 60px solid #7f0022;
    border-top: 3.75rem solid #7f0022;
    border-right: 60px solid transparent;
    border-right: 3.75rem solid transparent;
    border-left: 60px solid transparent;
    border-left: 3.75rem solid transparent;
  }

  .p-reason__headingEn {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: .04em;
  }

  .p-reason__headingJa {
    margin-top: 28px;
    margin-top: 1.75rem;
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: .04em;
  }

  .p-reason__headingDesc {
    margin-top: 60px;
    margin-top: 3.75rem;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .04em;
    line-height: 1.6;
  }

  .p-reason__list {
    gap: 30px;
    gap: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-reason__item {
    padding: 188px 20px 36px;
    padding: 11.75rem 1.25rem 2.25rem;
    max-width: 343px;
    max-width: 21.4375rem;
    min-height: 327px;
    min-height: 20.4375rem;
  }

  .p-reason__itemNum {
    left: -10px;
    left: -.625rem;
    -webkit-transform: none;
    transform: none;
    width: 44px;
    width: 2.75rem;
    height: 44px;
    height: 2.75rem;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .04em;
    line-height: .8;
  }

  .p-reason__itemIcon {
    top: 58px;
    top: 3.625rem;
  }

  .p-reason__itemIcon--integration {
    width: 96px;
    width: 6rem;
    height: 94px;
    height: 5.875rem;
  }

  .p-reason__itemIcon--practice {
    top: 72px;
    top: 4.5rem;
    width: 100px;
    width: 6.25rem;
    height: 66px;
    height: 4.125rem;
  }

  .p-reason__itemIcon--responsibility {
    width: 84px;
    width: 5.25rem;
    height: 98px;
    height: 6.125rem;
  }

  .p-reason__itemTitle {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-reason__itemDesc {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .04em;
    line-height: 1.6;
  }

  .p-role {
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }

  .p-role__headingEn {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: .04em;
  }

  .p-role__headingJa {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: .04em;
  }

  .p-role__list {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-role__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-role__item:first-child {
    margin-top: 0;
  }

  .p-role__item::before {
    width: 50%;
    height: 28.47vw;
    min-height: 410px;
    min-height: 25.625rem;
  }

  .p-role__item--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-role__item--reverse::before {
    top: 10px;
    top: .625rem;
    right: .22vw;
    width: 52.7777777778%;
  }

  .p-role__itemImgWrap--left {
    -webkit-clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    width: 50%;
  }

  .p-role__itemImgWrap--right {
    -webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: 0;
    width: 51.3888888889%;
  }

  .p-role__itemImg {
    height: 27.78vw;
    min-height: 400px;
    min-height: 25rem;
  }

  .p-role__itemContent--right {
    padding: 0;
    padding-left: 2.7777777778%;
    width: 50%;
  }

  .p-role__itemContent--left {
    padding: 0;
    padding-right: 2.7777777778%;
    padding-left: min(154px, 20vw - 134px);
    padding-left: min(9.625rem, 20vw - 8.375rem);
    width: 48.6111111111%;
  }

  .p-role__itemNum {
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: .04em;
  }

  .p-role__itemEn {
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: .04em;
  }

  .p-role__itemTitle {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 48px;
    font-size: 3rem;
    letter-spacing: .04em;
    line-height: 1.2;
  }

  .p-role__itemDesc {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .04em;
    line-height: 1.6;
  }

  .p-role__itemTags {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .p-fv {
    height: 770px;
    height: 48.125rem;
  }

  .p-fv__illust {
    width: 56vw;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1100px) {

  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1440px) {

  .p-fv__illust {
    right: 0;
    width: 805px;
    width: 50.3125rem;
  }

  .p-fv__content {
    padding-top: 170px;
    padding-top: 10.625rem;
    padding-left: 7vw;
    max-width: calc(35.75rem + 7vw);
  }

  .p-fv__catchCopy {
    font-size: 64px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}