<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
:root {
  --breakpoint-xs: 560px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1366px;
  --inner-slim: 980px;
  --inner-1040: 1040px;
  --inner-1080: 1080px;
  --inner-base: 1120px;
  --inner-1140: 1140px;
  --inner-1240: 1240px;
  --inner-wide: 1300px;
  --tw-gradient-from-position: 0%;
  --tw-gradient-to-position: 100%;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --view-width: 100vw;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-latin: "Roboto Condensed", sans-serif;
  --font-family-mix: "Roboto Condensed", "Noto Sans JP", sans-serif;
  --font-size-base: 14px;
  --line-height-base: 2;
  --color-text-base: #020000;
  --color-primary: #c03;
  --color-mint: #e4f7f6;
  --color-meadow: #7dd693;
  --color-sky: #5ba0f1;
  --color-teal: #00b6aa;
  --color-turq: #6cbcc0;
  --color-mintblue: #03b6aa;
  --color-magenta: #ff4a9d;
  --color-lime: #76c143;
  --color-seafoam: #aaeddd;
  --color-forest: #49605e;
  --color-lavender: #775783;
  --color-ocean: #2b6a9b;
  --color-clearwater: #3ea6ee;
  --color-aquablue: #36b4e6;
  --color-leaf: #25b96c;
  --color-dustyrose: #ea8591;
  --color-peach: #fcede4;
  --color-terracotta: #E19576;
  --color-coral: #ff926e;
  --color-rose: #f44682;
  --color-cherry: #c03;
  --color-gray-50: #f8f8f8;
  --color-gray-100: #edf0f0;
  --color-gray-150: #ebebeb;
  --color-gray-200: #e6e6e6;
  --color-gray-300: #c0c9c8;
  --color-gray-400: #bfbfbf;
  --color-gray-500: #849593;
  --color-gray-700: #1f2937;
  --color-role-sc: #1aa2c9;
  --color-role-am: #d83a51;
  --color-role-pm: #d06520;
  --color-role-sm: #198599;
  --color-role-as: #e8ba02;
  --color-role-ts: #027bae;
  --color-role-ds: #2683b7;
  --color-role-smc: #2a5779;
  --rgb-primary: 204 0 51;
  --rgb-mint: 228 247 246;
  --rgb-meadow: 125 214 147;
  --rgb-sky: 91 160 241;
  --rgb-teal: 0 182 170;
  --rgb-turq: 108 188 192;
  --rgb-mintblue: 3 182 170;
  --rgb-magenta: 255 74 157;
  --rgb-lime: 118 193 67;
  --rgb-seafoam: 170 237 221;
  --rgb-forest: 73 96 94;
  --rgb-lavender: 119 87 131;
  --rgb-ocean: 43 106 155;
  --rgb-clearwater: 62 166 238;
  --rgb-aquablue: 54 180 230;
  --rgb-leaf: 37 185 108;
  --rgb-dustyrose: 234 133 145;
  --rgb-peach: 252 237 228;
  --rgb-terracotta: 225 149 118;
  --rgb-coral: 255 146 110;
  --rgb-rose: 244 70 130;
  --rgb-cherry: 204 0 51;
  --rgb-gray-50: 248 248 248;
  --rgb-gray-100: 237 240 240;
  --rgb-gray-150: 235 235 235;
  --rgb-gray-200: 230 230 230;
  --rgb-gray-400: 191 191 191;
  --rgb-gray-300: 192 201 200;
  --rgb-gray-500: 132 149 147;
  --rgb-gray-700: 31 41 55;
  --rgb-role-sc: 26 162 201;
  --rgb-role-am: 216 58 81;
  --rgb-role-pm: 208 101 32;
  --rgb-role-sm: 25 133 153;
  --rgb-role-as: 232 186 2;
  --rgb-role-ts: 2 123 174;
  --rgb-role-ds: 38 131 183;
  --rgb-role-smc: 42 87 121;
  --gradation-t1: #ff926e 0%, #f44682 50%, #c03 100%;
  --gutter: 15px;
  --header-height: 58px;
}
@media (width &gt;= 768px) {
  :root {
    --header-height: 88px;
  }
}
@media (width &lt; 768px) {
  :root:has(.p-home) {
    --gutter: 10px;
  }
}

/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the &lt;body&gt; text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:where(button) {
  padding: 0;
  margin: 0;
  border: none;
}

body {
  font: var(--font-size-base)/var(--line-height-base) var(--font-family-base);
  color: var(--color-text-base);
}
body.is-fixed {
  overflow: hidden;
}

:where(*) {
  border-style: solid;
  border-width: 0;
  letter-spacing: 0.05em;
  outline-color: var(--color-primary);
}

input,
select,
option,
textarea,
button {
  box-sizing: border-box;
  font: var(--font-size-base)/var(--line-height-base) var(--font-family-base);
  color: var(--color-text-base);
}

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

svg {
  width: 100%;
}

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

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

:focus:not(:focus-visible) {
  outline: none;
}

i:has(&gt; svg) {
  line-height: 0;
}

a:not([class])[href^="tel:"] {
  color: inherit;
}

*:has(&gt; wbr) {
  word-break: keep-all;
}

sup {
  font-size: 0.5em;
  vertical-align: super;
}

.l-footer {
  position: relative;
  z-index: 50;
  padding-top: 34px;
  padding-bottom: 42px;
  background-color: #fff;
}
@media (width &gt;= 768px) {
  .l-footer {
    padding-top: 62px;
    padding-bottom: 26px;
  }
}

.l-header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
}
.l-header__logo {
  flex: 0 0 200px;
  width: 200px;
}
.l-header__nav {
  display: none;
}
@media (width &gt;= 768px) {
  .l-header {
    padding: 0 12px;
  }
  .l-header__logo {
    flex: 0 0 240px;
    width: 240px;
  }
  .l-header__nav {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    margin-left: auto;
  }
  .l-header__bnrL {
    flex: 0 0 154px;
    width: 154px;
  }
  .l-header__menu {
    display: none;
  }
  .l-header__entry {
    flex: 0 0 123px;
    width: 123px;
    margin-left: 20px;
  }
  .l-header__toggle {
    flex: 0 0 42px;
    width: 42px;
    margin-left: 10px;
  }
}
@media (width &gt;= 1200px) {
  .l-header__logo {
    flex: 0 0 288px;
    width: 288px;
  }
  .l-header__menu {
    display: block;
    flex: 0 1 auto;
    margin-left: 10px;
  }
}
@media (width &gt;= 1366px) {
  .l-header {
    padding: 0 28px 0 12px;
  }
  .l-header__menu {
    margin-left: 20px;
  }
  .l-header__entry {
    margin-left: 20px;
  }
  .l-header__toggle {
    margin-left: 19px;
  }
}
@media (width &lt; 768px) {
  .l-header {
    justify-content: space-between;
    padding: 0 15px 0 0;
  }
}

.l-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 80;
  padding: 40px 0;
  background-image: linear-gradient(135deg, var(--gradation-t1));
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  transition-property: visibility, opacity;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav::-webkit-scrollbar {
  display: none;
}
@media (width &gt;= 768px) {
  .l-nav {
    padding: 100px 0;
  }
  .l-nav__in {
    column-count: 2;
    column-gap: 30px;
    margin-top: -50px;
  }
  .l-nav__blk {
    padding-top: 50px;
    break-inside: avoid;
  }
}
@media (width &gt;= 1024px) {
  .l-nav__in {
    column-count: 3;
    column-gap: 50px;
  }
}
@media (width &lt; 768px) {
  .l-nav__in {
    display: grid;
    grid-template-columns: 100%;
    gap: 36px 0;
  }
}

.l-wrapper {
  width: 100%;
  padding-top: var(--header-height);
  overflow: hidden;
}

.c-mosaic-bg {
  background: var(--color-gray-50) url("../images/about/tpics/bg-mobile-body.png") repeat-y center top/969px auto;
}
@media (width &gt;= 768px) {
  .c-mosaic-bg {
    background-image: url("../images/about/tpics/bg-body.png");
    background-size: 2224px auto;
  }
  .c-mosaic-bg.-type01 {
    background-position: center top -630px;
  }
}

.c-prjct-blk__image {
  margin-top: 36px;
}
.c-prjct-blk__image img {
  border-radius: 4px;
}
.c-prjct-blk__tip {
  padding-bottom: 16px;
}
.c-prjct-blk__ttl {
  padding-bottom: 34px;
}
.c-prjct-blk__txt p {
  letter-spacing: 0.03em;
  line-height: 2;
}
@media (width &gt;= 768px) {
  .c-prjct-blk {
    display: grid;
    gap: 0 60px;
  }
  .c-prjct-blk.-imgR, .c-prjct-blk {
    grid-template: "cont image" auto/5fr 5.6fr;
  }
  .c-prjct-blk.-imgL {
    grid-template: "image cont" auto/5.6fr 5fr;
  }
  .c-prjct-blk__cont {
    grid-area: cont;
  }
  .c-prjct-blk__image {
    grid-area: image;
    margin-top: 0;
  }
  .c-prjct-blk__image img {
    border-radius: 8px;
  }
  .c-prjct-blk__image:has(figure:nth-child(2)) figure {
    width: 92.8571428571%;
  }
  .c-prjct-blk__image:has(figure:nth-child(2)) figure:nth-child(even) {
    margin-left: auto;
  }
  .c-prjct-blk__image:has(figure:nth-child(2)) figure:nth-child(n+2) {
    margin-top: 40px;
  }
  .c-prjct-blk__tip {
    padding-top: 2px;
    padding-bottom: 27px;
  }
  .c-prjct-blk__ttl {
    padding-bottom: 49px;
  }
  .c-prjct-blk__txt p {
    letter-spacing: 0.05em;
    line-height: 2.2857142857;
  }
}
@media (width &lt; 768px) {
  .c-prjct-blk__image:has(figure:nth-child(2)) figure:nth-child(odd) {
    margin-right: 25px;
  }
  .c-prjct-blk__image:has(figure:nth-child(2)) figure:nth-child(even) {
    margin-left: 25px;
  }
  .c-prjct-blk__image:has(figure:nth-child(2)) figure:nth-child(n+2) {
    margin-top: 15px;
  }
}

.c-pbnr-blk__ttl {
  padding-bottom: 22px;
  font-family: var(--font-family-latin);
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
}
.c-pbnr-blk__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px;
}
@media (width &gt;= 640px) {
  .c-pbnr-blk__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .c-pbnr-blk__item {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
  }
}
@media (width &gt;= 768px) {
  .c-pbnr-blk__ttl {
    padding-bottom: 26px;
    font-size: 36px;
  }
  .c-pbnr-blk__list {
    gap: 40px;
  }
  .c-pbnr-blk__item {
    flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
  }
}
@media (width &gt;= 1024px) {
  .c-pbnr-blk__list {
    gap: 40px 80px;
  }
  .c-pbnr-blk__item {
    flex: 0 0 calc(50% - 40px);
    width: calc(50% - 40px);
  }
}

.c-ct-blk__image {
  margin-top: 36px;
}
.c-ct-blk__image img {
  border-radius: 4px;
}
.c-ct-blk__tip {
  padding-bottom: 16px;
}
.c-ct-blk__ttl {
  padding-bottom: 34px;
}
.c-ct-blk__copy {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6666666667;
}
.c-ct-blk__talk {
  display: grid;
  grid-template-columns: 100%;
  padding-top: 24px;
}
.c-ct-blk__talk dl {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 60px 1fr;
  gap: 0 15px;
}
.c-ct-blk__talk dt {
  display: grid;
  background-color: var(--color-primary);
  font-size: 12px;
  font-weight: bold;
  font-weight: 500;
  color: #fff;
  place-content: center;
}
.c-ct-blk__talk dd {
  letter-spacing: 0.03em;
  line-height: 2;
}
@media (width &gt;= 768px) {
  .c-ct-blk {
    display: grid;
    gap: 0 60px;
  }
  .c-ct-blk.-imgR, .c-ct-blk {
    grid-template: "cont image" auto/5.6fr 5fr;
  }
  .c-ct-blk.-imgL {
    grid-template: "image cont" auto/5fr 5.6fr;
  }
  .c-ct-blk.-imgFull {
    grid-template: "cont" auto "image" auto/100%;
    gap: 115px 0;
  }
  .c-ct-blk__cont {
    grid-area: cont;
  }
  .c-ct-blk__cont:is(.-imgFull *) {
    max-width: 800px;
    margin-inline: auto;
  }
  .c-ct-blk__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    grid-area: image;
    gap: 40px;
    margin-top: 0;
  }
  .c-ct-blk__image img {
    border-radius: 8px;
  }
  .c-ct-blk__tip {
    padding-top: 2px;
    padding-bottom: 27px;
  }
  .c-ct-blk__ttl {
    padding-bottom: 49px;
  }
  .c-ct-blk__copy {
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 1.6666666667;
  }
  .c-ct-blk__talk {
    gap: 22px 0;
    padding-top: 34px;
  }
  .c-ct-blk__talk dl {
    grid-template-columns: 82px 1fr;
    gap: 0 30px;
  }
  .c-ct-blk__talk dt {
    margin-top: 4px;
    font-size: 14px;
  }
  .c-ct-blk__talk dd {
    letter-spacing: 0.05em;
    line-height: 2.2857142857;
  }
}
@media (width &lt; 768px) {
  .c-ct-blk__image:has(figure:nth-child(2)) figure:nth-child(odd) {
    margin-right: 25px;
  }
  .c-ct-blk__image:has(figure:nth-child(2)) figure:nth-child(even) {
    margin-left: 25px;
  }
  .c-ct-blk__image:has(figure:nth-child(2)) figure:nth-child(n+2) {
    margin-top: 15px;
  }
}

.c-imghdr-blk {
  padding: 0 var(--gutter);
}
.c-imghdr-blk__img img {
  border-radius: 4px 0 0 4px;
}
@media (width &gt;= 768px) {
  .c-imghdr-blk {
    display: grid;
    grid-template-columns: 46fr 66fr max(0px, (var(--view-width) - var(--inner-base)) * 0.5);
    padding: 0;
    margin-left: max(var(--gutter), (var(--view-width) - var(--inner-base)) * 0.5);
  }
  .c-imghdr-blk__img {
    position: relative;
    z-index: 0;
    grid-column: 2/span 2;
    grid-row: 1/1;
  }
  .c-imghdr-blk__img img {
    border-radius: 8px 0 0 8px;
  }
  .c-imghdr-blk__cont {
    position: relative;
    z-index: 1;
    grid-column: 1/span 2;
    grid-row: 1/1;
  }
}
@media (width &lt; 768px) {
  .c-imghdr-blk__img {
    margin-right: calc(-1 * var(--gutter));
  }
}

.c-staff-blk {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.c-staff-blk__img {
  flex: 0 0 80px;
  width: 80px;
}
.c-staff-blk__cont {
  flex: 0 1 auto;
}
.c-staff-blk__name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.c-staff-blk__txt {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media (width &gt;= 768px) {
  .c-staff-blk {
    gap: 0 30px;
  }
  .c-staff-blk__img {
    flex: 0 0 160px;
    width: 160px;
  }
  .c-staff-blk__cont {
    padding-top: 5px;
  }
  .c-staff-blk__name {
    padding-bottom: 8px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  .c-staff-blk__txt {
    letter-spacing: 0.02em;
  }
  .c-imgbranch-blk {
    display: grid;
    grid-template-columns: 50fr 46fr;
    gap: 0 40px;
  }
  .c-imgstr-blk {
    display: grid;
    gap: 0 60px;
  }
  .c-imgstr-blk__img {
    grid-area: img;
  }
  .c-imgstr-blk__cont {
    grid-area: cont;
  }
  .c-imgstr-blk, .c-imgstr-blk.-imgL {
    grid-template: "img cont" auto/52fr 54fr;
  }
  .c-imgstr-blk.-imgR {
    grid-template: "cont img" auto/54fr 52fr;
  }
}
@media (width &lt; 768px) {
  .c-imgstr-blk__cont {
    padding-top: 32px;
  }
}

.c-pagehdr-blk {
  position: relative;
}
.c-pagehdr-blk__cont {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  min-height: 200px;
}
.c-pagehdr-blk__img {
  position: absolute;
  inset: 0;
}
@media (width &gt;= 768px) {
  .c-pagehdr-blk__cont {
    min-height: 520px;
  }
}

.c-firsthdr-blk {
  display: flex;
  position: relative;
  align-items: center;
  height: 220px;
  overflow: hidden;
}
.c-firsthdr-blk::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 97px;
  background-color: var(--color-primary);
  opacity: 0.8;
}
.c-firsthdr-blk::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: calc(100% - 97px);
  opacity: 0.8;
}
.c-firsthdr-blk.-alignL {
  padding-left: max(var(--gutter), var(--view-width) * 0.5 - 720px);
  margin-right: max(var(--gutter), var(--view-width) * 0.5 - 525px);
  border-radius: 0 4px 4px 0;
}
.c-firsthdr-blk.-alignL::before {
  left: 0;
}
.c-firsthdr-blk.-alignL::after {
  left: 97px;
  background-image: linear-gradient(to right, var(--color-primary), rgb(var(--rgb-primary) / 0%));
}
.c-firsthdr-blk.-alignR {
  justify-content: flex-end;
  padding-right: max(var(--gutter), var(--view-width) * 0.5 - 720px);
  margin-left: max(var(--gutter), var(--view-width) * 0.5 - 525px);
  border-radius: 4px 0 0 4px;
}
.c-firsthdr-blk.-alignR::before {
  right: 0;
}
.c-firsthdr-blk.-alignR::after {
  right: 97px;
  background-image: linear-gradient(to left, var(--color-primary), rgb(var(--rgb-primary) / 0%));
}
.c-firsthdr-blk__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-firsthdr-blk__cont {
  display: grid;
  position: relative;
  z-index: 3;
  grid-template-columns: 100%;
  gap: 9px 0;
}
@media (width &gt;= 768px) {
  .c-firsthdr-blk {
    height: 440px;
  }
  .c-firsthdr-blk::before {
    width: max(30px, var(--view-width) * 0.5 - 606px);
  }
  .c-firsthdr-blk::after {
    width: calc(100% - max(30px, var(--view-width) * 0.5 - 606px));
    max-width: 688px;
  }
  .c-firsthdr-blk.-alignL {
    border-radius: 0 8px 8px 0;
  }
  .c-firsthdr-blk.-alignL::before {
    left: 0;
  }
  .c-firsthdr-blk.-alignL::after {
    left: max(30px, var(--view-width) * 0.5 - 606px);
  }
  .c-firsthdr-blk.-alignR {
    border-radius: 8px 0 0 8px;
  }
  .c-firsthdr-blk.-alignR::before {
    right: 0;
  }
  .c-firsthdr-blk.-alignR::after {
    right: max(30px, var(--view-width) * 0.5 - 606px);
  }
  .c-firsthdr-blk__cont {
    gap: 18px 0;
  }
}

.c-topics-blk {
  padding: 0 30px 40px;
  background-color: #fff;
  box-shadow: 0 13px 36px rgb(var(--rgb-primary) / 10%);
}
.c-topics-blk__img {
  display: flex;
}
.c-topics-blk__img:is(.-alignL *) {
  margin-left: calc(-1 * (30px + var(--gutter)));
}
.c-topics-blk__img:is(.-alignL *) img {
  border-radius: 0 4px 4px 0;
}
.c-topics-blk__img:is(.-alignR *) {
  margin-right: -30px;
}
.c-topics-blk__img:is(.-alignR *) img {
  border-radius: 4px 0 0 4px;
}
.c-topics-blk__cont {
  padding-top: 48px;
}
.c-topics-blk__fusion {
  padding-top: 31px;
  padding-bottom: 38px;
}
@media (width &gt;= 768px) {
  .c-topics-blk {
    padding: 80px 80px 77px;
  }
  .c-topics-blk__img {
    margin-top: -167px;
  }
  .c-topics-blk__img:is(.-alignL *) {
    margin-left: calc(-1 * max(80px + var(--gutter), var(--view-width) * 0.5 - 460px));
  }
  .c-topics-blk__img:is(.-alignL *) img {
    border-radius: 0 8px 8px 0;
  }
  .c-topics-blk__img:is(.-alignR *) {
    justify-content: flex-end;
    margin-right: calc(-1 * max(80px + var(--gutter), var(--view-width) * 0.5 - 460px));
  }
  .c-topics-blk__img:is(.-alignR *) img {
    border-radius: 8px 0 0 8px;
  }
  .c-topics-blk__cont {
    padding-top: 92px;
  }
  .c-topics-blk__fusion {
    padding-top: 62px;
    padding-bottom: 64px;
  }
}
@media (width &gt;= 1024px) {
  .c-topics-blk__img {
    align-self: flex-start;
    grid-area: img;
  }
  .c-topics-blk__img:is(.-alignL *) {
    justify-content: flex-end;
  }
  .c-topics-blk__img:is(.-alignR *) {
    justify-content: flex-start;
  }
  .c-topics-blk__cont {
    grid-area: cont;
    padding-top: 0;
  }
  .c-topics-blk__hdr {
    display: grid;
  }
  .c-topics-blk__hdr:is(.-alignL *) {
    grid-template-areas: "img cont";
    grid-template-columns: 38fr 54fr;
  }
  .c-topics-blk__hdr:is(.-alignR *) {
    grid-template-areas: "cont img";
    grid-template-columns: 54fr 38fr;
  }
}
@media (width &gt;= 1280px) {
  .c-topics-blk.-alignL {
    translate: -80px 0;
  }
  .c-topics-blk.-alignR {
    translate: 80px 0;
  }
  .c-topics-blk__img:is(.-alignL *) {
    margin-left: calc(-1 * max(80px, var(--view-width) * 0.5 - 540px));
  }
  .c-topics-blk__img:is(.-alignR *) {
    margin-right: calc(-1 * max(80px, var(--view-width) * 0.5 - 540px));
  }
}
@media (width &lt; 768px) {
  .c-topics-blk {
    margin-right: calc(-1 * var(--gutter));
  }
  .c-topics-blk__img {
    translate: 0 -80px;
    margin-bottom: -80px;
  }
  .c-topics-blk__img:is(.-alignL *) {
    margin-right: calc(10px + var(--gutter));
  }
  .c-topics-blk__img:is(.-alignR *) {
    margin-left: 10px;
  }
}

.c-faq-blk {
  padding: 0 15px;
  background-color: #fff;
  border-radius: 4px;
}
.c-faq-blk__cont {
  padding-top: 15px;
  padding-bottom: 18px;
  border-top: 1px solid var(--color-gray-300);
}
@media (width &gt;= 768px) {
  .c-faq-blk {
    padding: 0 40px 0 38px;
    border-radius: 8px;
  }
  .c-faq-blk__cont {
    padding-top: 20px;
    padding-bottom: 34px;
  }
}
@media (width &lt; 768px) {
  .c-faq-blk__cont {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.c-acdn-blk {
  height: 0;
  overflow: hidden;
}

.c-intern-blk {
  padding: 0 30px 40px;
  background-color: #fff;
  box-shadow: 0 13px 36px rgb(var(--rgb-primary) / 10%);
}
.c-intern-blk__img {
  display: flex;
}
.c-intern-blk__img:is(.-alignL *) {
  margin-left: calc(-1 * (30px + var(--gutter)));
}
.c-intern-blk__img:is(.-alignL *) img {
  border-radius: 0 4px 4px 0;
}
.c-intern-blk__img:is(.-alignR *) {
  margin-right: -30px;
}
.c-intern-blk__img:is(.-alignR *) img {
  border-radius: 4px 0 0 4px;
}
.c-intern-blk__cont {
  padding-top: 43px;
}
.c-intern-blk__copy {
  font-size: 18px;
  font-weight: bold;
}
.c-intern-blk__copy span {
  padding: 0.2em 0.6em;
  letter-spacing: 0.02em;
}
.c-intern-blk__outline {
  padding-top: 39px;
}
.c-intern-blk__outline :where(p) {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 2;
}
.c-intern-blk__req {
  padding-top: 35px;
}
.c-intern-blk__req th {
  font-weight: bold;
}
@media (width &gt;= 768px) {
  .c-intern-blk {
    --blk-gutter: 40px;
    padding: 80px var(--blk-gutter);
  }
  .c-intern-blk__img {
    margin-top: -167px;
  }
  .c-intern-blk__img:is(.-alignL *) {
    margin-left: calc(-1 * max(var(--blk-gutter) + var(--gutter), var(--view-width) * 0.5 - 460px));
  }
  .c-intern-blk__img:is(.-alignL *) img {
    border-radius: 0 8px 8px 0;
  }
  .c-intern-blk__img:is(.-alignR *) {
    justify-content: flex-end;
    margin-right: calc(-1 * max(var(--blk-gutter) + var(--gutter), var(--view-width) * 0.5 - 460px));
  }
  .c-intern-blk__img:is(.-alignR *) img {
    border-radius: 8px 0 0 8px;
  }
  .c-intern-blk__cont {
    padding-top: 92px;
  }
  .c-intern-blk__copy {
    font-size: 32px;
    line-height: 2.1;
  }
  .c-intern-blk__copy span {
    padding: 0.27em 0.6em;
  }
  .c-intern-blk__outline {
    padding-top: 56px;
  }
  .c-intern-blk__outline :where(p) {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2.25;
  }
  .c-intern-blk__req {
    padding-top: 51px;
  }
  .c-intern-blk__req table {
    width: 100%;
  }
  .c-intern-blk__req th {
    width: 200px;
  }
  .c-intern-blk__req td {
    width: auto;
  }
  .c-intern-blk__req th,
  .c-intern-blk__req td {
    padding: 25px 0 26px;
    border-top: 1px solid var(--color-gray-300);
    border-bottom: 1px solid var(--color-gray-300);
    font-size: 14px;
    line-height: 2;
    vertical-align: middle;
  }
}
@media (width &gt;= 1024px) {
  .c-intern-blk {
    --blk-gutter: 80px;
  }
  .c-intern-blk__img {
    align-self: flex-start;
    grid-area: img;
  }
  .c-intern-blk__img:is(.-alignL *) {
    justify-content: flex-end;
  }
  .c-intern-blk__img:is(.-alignR *) {
    justify-content: flex-start;
  }
  .c-intern-blk__cont {
    grid-area: cont;
    padding-top: 0;
  }
  .c-intern-blk__hdr {
    display: grid;
  }
  .c-intern-blk__hdr:is(.-alignL *) {
    grid-template-areas: "img cont";
    grid-template-columns: 38fr 54fr;
  }
  .c-intern-blk__hdr:is(.-alignR *) {
    grid-template-areas: "cont img";
    grid-template-columns: 54fr 38fr;
  }
}
@media (width &gt;= 1280px) {
  .c-intern-blk.-alignL {
    translate: -80px 0;
  }
  .c-intern-blk.-alignR {
    translate: 80px 0;
  }
  .c-intern-blk__img:is(.-alignL *) {
    margin-left: calc(-1 * max(80px, var(--view-width) * 0.5 - 540px));
  }
  .c-intern-blk__img:is(.-alignR *) {
    margin-right: calc(-1 * max(80px, var(--view-width) * 0.5 - 540px));
  }
  .c-intern-blk__copy:is(.-alignL *) {
    margin-left: -70%;
  }
  .c-intern-blk__copy:is(.-alignR *) {
    margin-right: -70%;
  }
}
@media (width &lt; 768px) {
  .c-intern-blk.-alignL {
    margin-right: calc(-1 * var(--gutter));
  }
  .c-intern-blk.-alignR {
    margin-left: calc(-1 * var(--gutter));
  }
  .c-intern-blk__img {
    translate: 0 -80px;
    margin-bottom: -80px;
  }
  .c-intern-blk__img:is(.-alignL *) {
    margin-right: calc(10px + var(--gutter));
  }
  .c-intern-blk__img:is(.-alignR *) {
    margin-left: 22px;
    margin-right: calc(-3 * var(--gutter));
  }
  .c-intern-blk__copy {
    margin-inline: -15px;
  }
  .c-intern-blk__copy:is(.-alignL *) {
    margin-inline: -25px -15px;
  }
  .c-intern-blk__copy:is(.-alignR *) {
    margin-inline: -15px -25px;
  }
  .c-intern-blk__req table,
  .c-intern-blk__req thead,
  .c-intern-blk__req tbody,
  .c-intern-blk__req tr,
  .c-intern-blk__req th,
  .c-intern-blk__req td {
    display: block;
  }
  .c-intern-blk__req table {
    border-bottom: 1px solid var(--color-gray-300);
  }
  .c-intern-blk__req tr {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid var(--color-gray-300);
  }
  .c-intern-blk__req th {
    padding-bottom: 6px;
  }
  .c-intern-blk__req td {
    letter-spacing: 0.03em;
  }
}

.c-mess-blk__hdr {
  position: relative;
  z-index: 1;
}
.c-mess-blk__img {
  margin-top: 29px;
}
.c-mess-blk__img:is(.-alignL *) {
  margin-left: calc(-1 * var(--gutter));
}
.c-mess-blk__img:is(.-alignL *) img {
  border-radius: 0 4px 4px 0;
}
.c-mess-blk__img:is(.-alignR *) {
  margin-right: calc(-1 * var(--gutter));
}
.c-mess-blk__img:is(.-alignR *) img {
  border-radius: 4px 0 0 4px;
}
.c-mess-blk__txts {
  position: relative;
  z-index: 0;
  padding: 61px 30px 26px;
  margin-top: -35px;
  background-color: #fff;
  box-shadow: 0 13px 36px rgb(var(--rgb-primary) / 10%);
}
@media (width &gt;= 768px) {
  .c-mess-blk__img {
    margin-top: 0;
  }
  .c-mess-blk__img:is(.-alignL *) img {
    border-radius: 0 8px 8px 0;
  }
  .c-mess-blk__img:is(.-alignR *) img {
    border-radius: 8px 0 0 8px;
  }
  .c-mess-blk__txts {
    max-width: 1080px;
    padding: 80px 40px;
    margin-top: -45px;
  }
  .c-mess-blk__txts:is(.-alignR *) {
    margin-left: auto;
  }
}
@media (width &gt;= 1024px) {
  .c-mess-blk__img {
    grid-area: img;
  }
  .c-mess-blk__img:is(.-alignL *) {
    text-align: right;
  }
  .c-mess-blk__cont {
    grid-area: cont;
  }
  .c-mess-blk__hdr {
    display: grid;
    align-items: center;
  }
  .c-mess-blk__hdr:is(.-alignL *) {
    grid-template-areas: "img cont";
    grid-template-columns: 1fr 520px;
  }
  .c-mess-blk__hdr:is(.-alignR *) {
    grid-template-areas: "cont img";
    grid-template-columns: 522px 1fr;
  }
  .c-mess-blk__txts {
    padding: 80px;
    margin-top: -25px;
  }
}
@media (width &gt;= 1280px) {
  .c-mess-blk__txts {
    margin-top: -45px;
  }
  .c-mess-blk__img:is(.-alignL *) {
    margin-left: calc(-1 * max(180px, var(--view-width) * 0.5 - 620px));
  }
  .c-mess-blk__img:is(.-alignR *) {
    margin-right: calc(-1 * max(180px, var(--view-width) * 0.5 - 620px));
  }
}
@media (width &lt; 1024px) {
  .c-mess-blk__img:is(.-alignL *) {
    margin-right: 40px;
  }
  .c-mess-blk__img:is(.-alignR *) {
    margin-left: 40px;
  }
  .c-mess-blk__txts:is(.-alignL *) {
    margin-right: calc(-1 * var(--gutter));
  }
  .c-mess-blk__txts:is(.-alignR *) {
    margin-left: calc(-1 * var(--gutter));
  }
}

.c-inthdr-blk {
  max-width: calc(1120px + var(--gutter) * 2);
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.c-inthdr-blk__hdr {
  padding-top: 68px;
}
@media (width &gt;= 1024px) {
  .c-inthdr-blk {
    display: flex;
    position: relative;
    flex-direction: column;
    min-height: 540px;
  }
  .c-inthdr-blk__hdr, .c-inthdr-blk__ftr {
    position: relative;
    z-index: 1;
  }
  .c-inthdr-blk__hdr {
    padding-top: 48px;
  }
  .c-inthdr-blk__ftr {
    padding-top: 32px;
  }
  .c-inthdr-blk__img {
    position: absolute;
    inset: 0 calc(-1 * min(max(0px, var(--view-width) * 0.5 - 575px), 225px)) 0 calc(50% - 100px);
  }
}
@media (width &lt; 1024px) {
  .c-inthdr-blk__img {
    padding-top: 32px;
    margin-right: calc(-1 * var(--gutter));
  }
  .c-inthdr-blk__ftr {
    padding-top: 25px;
  }
}

.c-int01-blk__img img {
  border-radius: 4px;
}
@media (width &gt;= 768px) {
  .c-int01-blk {
    display: grid;
    gap: 0 60px;
  }
  .c-int01-blk.-alignR {
    grid-template-areas: "cont img";
    grid-template-columns: 50% 1fr;
  }
  .c-int01-blk.-alignL {
    grid-template-areas: "img cont";
    grid-template-columns: 1fr 50%;
  }
  .c-int01-blk__cont {
    grid-area: cont;
  }
  .c-int01-blk__img {
    grid-area: img;
  }
  .c-int01-blk__img:is(.-alignR *) img {
    border-radius: 8px 0 0 8px;
  }
  .c-int01-blk__img:is(.-alignL *) img {
    border-radius: 0 8px 8px 0;
  }
}
@media (width &lt; 768px) {
  .c-int01-blk__img {
    padding-top: 36px;
  }
}

.c-step-blk__head {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 10px;
}
.c-step-blk__term {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.c-step-blk__roles {
  display: flex;
  gap: 5px;
}
.c-step-blk__roles span {
  display: grid;
  flex: 0 0 37px;
  width: 37px;
  height: 24px;
  font-family: var(--font-family-latin);
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  place-content: center;
}
@media (width &gt;= 768px) {
  .c-step-blk {
    display: grid;
    grid-template-columns: 300px 1fr;
  }
  .c-step-blk__head {
    gap: 0 9px;
    margin-bottom: 0;
  }
  .c-step-blk__term {
    font-size: 18px;
  }
  .c-step-blk__roles {
    gap: 10px;
  }
  .c-step-blk__roles span {
    flex: 0 0 40px;
    width: 40px;
    height: 26px;
    font-size: 16px;
  }
}

.c-careerhdr-blk__num {
  font-family: var(--font-family-latin);
  font-size: 37.5px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-inline: auto;
  line-height: 1;
}
.c-careerhdr-blk__ttl {
  padding-top: 12px;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.75;
}
@media (width &gt;= 768px) {
  .c-careerhdr-blk__num {
    font-size: 60px;
  }
  .c-careerhdr-blk__ttl {
    padding-top: 11px;
    padding-bottom: 33px;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}

.c-careerchart-blk {
  margin-top: 17px;
}
@media (width &gt;= 768px) {
  .c-careerchart-blk {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 0 50px;
    margin-top: 38px;
  }
  .c-careerchart-blk__main {
    padding-top: 35px;
  }
}
@media (width &lt; 768px) {
  .c-careerchart-blk__main {
    padding: 0 17px;
  }
  .c-careerchart-blk__chart {
    padding-top: 53px;
  }
}

.c-careerpath-blk__year {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--color-primary);
  border-radius: 100vmax;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-primary);
  padding-inline: 12px;
}
.c-careerpath-blk__cont {
  padding: 18px 0 36px 20px;
  margin-left: 9px;
  border-left: 1px solid var(--color-primary);
}
.c-careerpath-blk__ttl {
  display: inline;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  line-height: 1.75;
}
.c-careerpath-blk__hdr {
  padding-bottom: 8px;
}
.c-careerpath-blk__roles {
  display: inline;
}
.c-careerpath-blk__roles .c-role-box {
  display: inline-flex;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.c-careerpath-blk__roles .c-role-box:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
@media (width &gt;= 768px) {
  .c-careerpath-blk__year {
    padding-inline: 19px;
  }
  .c-careerpath-blk__cont {
    padding: 20px 0 35px 24px;
    margin-left: 15px;
  }
  .c-careerpath-blk__ttl {
    font-size: 18px;
    letter-spacing: 0;
  }
  .c-careerpath-blk__hdr {
    padding-bottom: 10px;
  }
  .c-careerpath-blk__roles {
    -webkit-padding-start: 8px;
            padding-inline-start: 8px;
  }
  .c-careerpath-blk__roles .c-role-box {
    -webkit-margin-end: 5px;
            margin-inline-end: 5px;
  }
}

.c-careerstep-blk {
  position: relative;
  margin-top: 46px;
  background-color: var(--color-peach);
  border-radius: 5px;
}
.c-careerstep-blk__ttl {
  display: flex;
  position: absolute;
  top: 0;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 100vmax;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  translate: 0 -50%;
}
@media (width &gt;= 768px) {
  .c-careerstep-blk {
    padding: 35px 50px;
    margin-top: 58px;
    border-radius: 10px;
  }
  .c-careerstep-blk__ttl {
    left: 30px;
    width: 295px;
    height: 40px;
    font-size: 16px;
    translate: 0 -45%;
  }
}
@media (width &lt; 768px) {
  .c-careerstep-blk {
    padding: 32px 20px 27px;
  }
  .c-careerstep-blk__ttl {
    left: 0;
    right: 0;
    padding-block: 1px;
  }
}

@media (width &gt;= 768px) {
  .c-qa01-blk {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 0 40px;
  }
}
@media (width &lt; 768px) {
  .c-qa01-blk__fg {
    margin-top: 25px;
  }
}

.c-sche-blk {
  padding: 30px;
  background-color: #fff;
}
@media (width &gt;= 768px) {
  .c-sche-blk {
    padding: 50px 40px 40px;
  }
}

.c-prjct-blklist {
  display: grid;
}
@media (width &gt;= 768px) {
  .c-prjct-blklist {
    grid-template-columns: 1fr 1fr;
  }
  .c-prjct-blklist__item:is(.c-prjct-blklist *:nth-child(odd)) {
    padding-right: 60px;
  }
  .c-prjct-blklist__item:is(.c-prjct-blklist *:nth-child(even)) {
    position: relative;
    padding-left: 60px;
  }
  .c-prjct-blklist__item:is(.c-prjct-blklist *:nth-child(even))::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--color-gray-300);
  }
}
@media (width &lt; 768px) {
  .c-prjct-blklist {
    gap: 25px 0;
  }
  .c-prjct-blklist__item + .c-prjct-blklist__item {
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-300);
  }
}

.c-branch-blklist {
  display: grid;
}
@media (width &gt;= 768px) {
  .c-branch-blklist {
    grid-template-columns: 1fr 1fr;
  }
  .c-branch-blklist__item:is(.c-branch-blklist *:nth-child(odd)) {
    padding-right: 40px;
  }
  .c-branch-blklist__item:is(.c-branch-blklist *:nth-child(even)) {
    position: relative;
    padding-left: 40px;
  }
  .c-branch-blklist__item:is(.c-branch-blklist *:nth-child(even))::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--color-gray-300);
  }
}
@media (width &lt; 768px) {
  .c-branch-blklist {
    gap: 25px 0;
  }
  .c-branch-blklist__item + .c-branch-blklist__item {
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-300);
  }
}

@media (width &gt;= 768px) {
  .c-scheoff-blklist {
    display: flex;
  }
  .c-scheoff-blklist__item {
    flex: 0 0 50%;
    width: 50%;
  }
  .c-scheoff-blklist .c-scheoff-blklist__item:nth-child(1) {
    padding-right: 50px;
  }
  .c-scheoff-blklist .c-scheoff-blklist__item:nth-child(2) {
    padding-left: 60px;
    border-left: 1px solid var(--color-gray-300);
  }
}
@media (width &lt; 768px) {
  .c-scheoff-blklist__item + .c-scheoff-blklist__item {
    padding-top: 30px;
    margin-top: 31px;
    border-top: 1px solid var(--color-gray-300);
  }
}

.c-step-blklist__item {
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid var(--color-gray-300);
  border-bottom: 1px solid var(--color-gray-300);
}
.c-step-blklist__item + .c-step-blklist__item {
  border-top: none;
}
@media (width &gt;= 768px) {
  .c-step-blklist__item {
    padding-top: 24px;
    padding-bottom: 23px;
  }
}

.c-prjct-bnr {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  aspect-ratio: 520/325;
  border-radius: 4px;
  overflow: hidden;
}
.c-prjct-bnr::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(135deg, var(--gradation-t1));
  background-size: 100% 100%;
  opacity: 0.81;
  transition-duration: 1s;
  transition-property: background-size, opacity;
}
@media (any-hover: hover) {
  .c-prjct-bnr:hover::before {
    background-size: 150% 150%;
    opacity: 0.5;
  }
}
.c-prjct-bnr__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-prjct-bnr__txt {
  display: flex;
  position: absolute;
  inset: 0;
  z-index: 3;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.375;
}
@media (width &gt;= 768px) {
  .c-prjct-bnr {
    border-radius: 8px;
  }
  .c-prjct-bnr__txt {
    font-size: 28px;
  }
}

.c-intvw-bnr {
  display: block;
  padding: 15px;
  background-color: var(--color-gray-100);
  border-radius: 0 7px;
}
@media (any-hover: hover) {
  .c-intvw-bnr {
    transition: 0.3s opacity ease-in-out;
  }
  .c-intvw-bnr:hover {
    opacity: 0.7;
  }
}
.c-intvw-bnr__img {
  padding-top: 10px;
}
.c-intvw-bnr__img img {
  border-radius: 5px;
}
.c-intvw-bnr__subject {
  display: flex;
  align-items: baseline;
  padding-top: 8px;
}
.c-intvw-bnr__subject b {
  padding-right: 0.5em;
  font-size: 16px;
  font-weight: bold;
}
.c-intvw-bnr__subject span {
  font-size: 12px;
  font-weight: bold;
}
.c-intvw-bnr__name {
  font-weight: 500;
}
@media (width &gt;= 768px) {
  .c-intvw-bnr {
    padding: 30px;
    border-radius: 0 13px;
  }
  .c-intvw-bnr__img {
    padding-top: 20px;
  }
  .c-intvw-bnr__img img {
    border-radius: 10px;
  }
  .c-intvw-bnr__subject {
    padding-top: 16px;
  }
}

.c-intbtm-bnr {
  display: block;
}
@media (any-hover: hover) {
  .c-intbtm-bnr {
    transition: 0.3s opacity ease-in-out;
  }
  .c-intbtm-bnr:hover {
    opacity: 0.7;
  }
}
.c-intbtm-bnr__img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.c-intbtm-bnr__sub {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.45;
}
.c-intbtm-bnr__name {
  font-weight: 500;
}
@media (width &gt;= 768px) {
  .c-intbtm-bnr__img {
    border-radius: 10px;
  }
  .c-intbtm-bnr__sub {
    padding: 5px 8px;
    font-size: 12px;
  }
  .c-intbtm-bnr__name {
    padding-top: 4px;
  }
}

.c-grade-box {
  display: flex;
  align-items: center;
  gap: 0 20px;
  height: 37px;
  padding: 0 20px;
  border-radius: 2.5px;
}
.c-grade-box__grade {
  font-family: var(--font-family-latin);
  font-size: 25px;
  font-weight: 600;
  color: var(--color-gray-500);
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-grade-box__txt {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
@media (width &gt;= 768px) {
  .c-grade-box {
    gap: 0 28px;
    height: 60px;
    padding: 0 30px;
    border-radius: 5px;
  }
  .c-grade-box__grade {
    font-size: 40px;
  }
  .c-grade-box__txt {
    font-size: 16px;
  }
}

.c-role-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 24px;
  font-family: var(--font-family-latin);
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
}
@media (width &gt;= 768px) {
  .c-role-box {
    width: 40px;
    height: 26px;
    font-size: 16px;
  }
}

.c-faq-box {
  padding: 20px;
  border-radius: 0 7.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media (width &gt;= 768px) {
  .c-faq-box {
    padding: 34px 40px;
    border-radius: 0 13px;
    letter-spacing: 0.05em;
    line-height: 2.2857142857;
  }
}

.c-schehdr-box {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  gap: 0 10px;
}
.c-schehdr-box__cont {
  display: flex;
  flex-direction: column;
}
.c-schehdr-box__role {
  order: 2;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
}
.c-schehdr-box__name {
  order: 1;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media (width &gt;= 768px) {
  .c-schehdr-box {
    grid-template-columns: 160px 1fr;
    gap: 0 40px;
  }
  .c-schehdr-box__cont {
    padding-top: 4px;
  }
  .c-schehdr-box__role {
    order: 1;
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .c-schehdr-box__name {
    order: 2;
    font-size: 24px;
    letter-spacing: 0.02em;
  }
}
@media (width &lt; 768px) {
  .c-schehdr-box__cont {
    gap: 5px 0;
  }
}

.c-schedule-box {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  grid-template-rows: 50px repeat(14, 60px);
  gap: 2px;
  width: 100%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.c-schedule-box__header, .c-schedule-box__time {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ddd;
  font-weight: bold;
}
.c-schedule-box__cell {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  border: 1px solid #ccc;
}
.c-schedule-box__cell.-highlight {
  background: #ffe4b5;
}
.c-schedule-box__cell.-work {
  background: #d0e8d0;
}
.c-schedule-box__cell.-holiday {
  background: #cce0ff;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px;
}
@media (any-hover: hover) {
  .c-btn {
    transition: 0.3s opacity ease-in-out;
  }
  .c-btn:hover {
    opacity: 0.7;
  }
}

.c-menu-btn {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}
.c-menu-btn i {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentcolor;
  transition-duration: 0.3s;
  transition-property: translate, rotate, scale;
}
.c-menu-btn i:nth-child(1) {
  translate: 0 -6px;
}
.c-menu-btn i:nth-child(3) {
  translate: 0 6px;
}
.c-menu-btn.is-close i:nth-child(1) {
  translate: 0 0;
  rotate: 45deg;
}
.c-menu-btn.is-close i:nth-child(2) {
  scale: 0 0;
}
.c-menu-btn.is-close i:nth-child(3) {
  translate: 0 0;
  rotate: -45deg;
}
@media (width &gt;= 768px) {
  .c-menu-btn {
    width: 42px;
    height: 42px;
  }
  .c-menu-btn i:nth-child(1) {
    translate: 0 -10px;
  }
  .c-menu-btn i:nth-child(3) {
    translate: 0 10px;
  }
}

.c-tag-btn {
  display: grid;
  align-items: center;
  grid-template: "en en" auto "ja arrow" auto/1fr 9px;
  padding: 8px var(--gutter) 3px 10px;
  background: linear-gradient(to right ,var(--gradation-t1));
  border-radius: 5px 0 0 5px;
  color: #fff;
}
@media (any-hover: hover) {
  .c-tag-btn {
    transition: 0.3s opacity ease-in-out;
  }
  .c-tag-btn:hover {
    opacity: 0.7;
  }
}
.c-tag-btn__en {
  grid-area: en;
  font-family: var(--font-family-latin);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 0.6;
}
.c-tag-btn__ja {
  grid-area: ja;
  font-size: 7px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-tag-btn__arrow {
  grid-area: arrow;
  line-height: 1;
  translate: -7px 0;
}
.c-tag-btn__arrow svg {
  width: 100%;
  height: auto;
}
@media (width &gt;= 768px) {
  .c-tag-btn {
    grid-template-columns: 1fr 12px;
    gap: 5px 0;
    padding: 12px 10px 8px 12px;
    border-radius: 10px 0 0 10px;
  }
  .c-tag-btn__en {
    font-size: 18px;
  }
  .c-tag-btn__ja {
    font-size: 8px;
  }
  .c-tag-btn__arrow {
    translate: -10px 0;
  }
}
@media (width &lt; 768px) {
  .c-tag-btn {
    gap: 3px 0;
  }
  .c-tag-btn__arrow {
    align-self: flex-end;
    padding-top: 2px;
  }
}

.c-branch-anc-btn {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .c-branch-anc-btn {
    transition: 0.3s opacity ease-in-out;
  }
  .c-branch-anc-btn:hover {
    opacity: 0.7;
  }
}
.c-branch-anc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to right, var(--gradation-t1));
  opacity: 0.8;
}
.c-branch-anc-btn__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-branch-anc-btn__cont {
  position: relative;
  z-index: 2;
  color: #fff;
}
.c-branch-anc-btn__en {
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-branch-anc-btn__ja {
  padding-top: 10px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (width &gt;= 768px) {
  .c-branch-anc-btn {
    height: 138px;
    border-radius: 8px;
  }
  .c-branch-anc-btn__en {
    font-size: 14px;
  }
  .c-branch-anc-btn__ja {
    padding-top: 14px;
    font-size: 24px;
  }
}
@media (width &lt; 768px) {
  .c-branch-anc-btn__en {
    translate: 0 -3px;
  }
}

.c-tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background-color: var(--color-primary);
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.1538461538;
}
.c-tab-btn.is-active {
  background-color: #fff;
  color: var(--color-primary);
}
@media (width &gt;= 768px) {
  .c-tab-btn {
    min-height: 72px;
    padding: 12px;
    font-size: 18px;
    letter-spacing: 0.02em;
  }
}

.c-faq-btn {
  display: flex;
  gap: 0 9px;
  width: 100%;
}
.c-faq-btn:is(.c-faq-blk__btn *) {
  padding: 10px 0;
}
.c-faq-btn__q {
  flex: 0 0 auto;
  font-family: var(--font-family-latin);
  font-size: 27px;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1;
}
.c-faq-btn__txt {
  flex: 1 1 auto;
  align-self: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition-duration: 0.3s;
  transition-property: color;
}
.c-faq-btn__icon {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex: 0 0 16px;
  align-self: center;
  width: 16px;
  height: 16px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
.c-faq-btn__icon::before, .c-faq-btn__icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  background-color: #fff;
}
.c-faq-btn__icon::after {
  rotate: 90deg;
  transition-duration: 0.3s;
  transition-property: scale;
}
.c-faq-btn.is-open .c-faq-btn__txt {
  color: var(--color-primary);
}
.c-faq-btn.is-open .c-faq-btn__icon {
  background-color: var(--color-gray-300);
}
.c-faq-btn.is-open .c-faq-btn__icon::after {
  scale: 0 1;
}
@media (width &gt;= 768px) {
  .c-faq-btn {
    gap: 0 19px;
  }
  .c-faq-btn:is(.c-faq-blk__btn *) {
    padding: 24px 0;
  }
  .c-faq-btn__q {
    font-size: 32px;
  }
  .c-faq-btn__txt {
    font-size: 16px;
  }
  .c-faq-btn__icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }
  .c-faq-btn__icon::before, .c-faq-btn__icon::after {
    width: 17px;
  }
}

.c-radius-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
}

.c-mdclose-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 132px;
  height: 40px;
  padding: 0 23px;
  background-color: var(--color-gray-300);
  border-radius: 100vmax;
}
.c-mdclose-btn i {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  rotate: 45deg;
}
.c-mdclose-btn i::before, .c-mdclose-btn i::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.c-mdclose-btn i::before {
  rotate: 90deg;
}
.c-mdclose-btn span {
  font-family: var(--font-family-latin);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.c-careerpath-btn {
  display: flex;
  position: relative;
  align-items: center;
  gap: 0 15px;
  padding: 13px 20px;
  background-color: #fff;
  border-radius: 0 7.5px;
}
.c-careerpath-btn__num {
  position: absolute;
  top: 0;
  left: 13px;
  font-family: var(--font-family-latin);
  font-size: 37.5px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  translate: 0 -0.49em;
}
.c-careerpath-btn__img {
  flex: 0 0 96px;
  width: 96px;
  text-align: center;
}
.c-careerpath-btn__txt {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0;
  line-height: 1.75;
}
@media (width &gt;= 768px) {
  .c-careerpath-btn {
    gap: 0 30px;
    padding: 29px 30px;
    border-radius: 0 13px;
  }
  .c-careerpath-btn__num {
    left: 20px;
    font-size: 60px;
  }
  .c-careerpath-btn__img {
    flex: 0 0 145px;
    width: 145px;
  }
  .c-careerpath-btn__txt {
    font-size: 20px;
    line-height: 1.6;
  }
}

.c-scheanc-btn {
  display: grid;
  grid-template-areas: "icon cont arrow";
  grid-template-columns: 80px 1fr 16px;
  gap: 0 14px;
  padding: 15px 13px 15px 15px;
  background-color: #fff;
  border: 1px solid var(--color-gray-300);
  border-radius: 0 7.5px;
}
.c-scheanc-btn__icon {
  grid-area: icon;
}
.c-scheanc-btn__cont {
  grid-area: cont;
}
.c-scheanc-btn__arrow {
  grid-area: arrow;
  color: var(--color-primary);
  text-align: center;
  line-height: 1;
  transition-duration: 0.3s;
  transition-property: translate;
}
.c-scheanc-btn__arrow svg {
  width: 16px;
}
.c-scheanc-btn__name {
  padding-top: 2px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.c-scheanc-btn__role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
}
@media (any-hover: hover) {
  .c-scheanc-btn:hover .c-scheanc-btn__arrow {
    translate: 0 50%;
  }
}
@media (width &gt;= 768px) {
  .c-scheanc-btn {
    grid-template-areas: "icon cont" "arrow arrow";
    grid-template-columns: 88px 1fr;
    gap: 17px 39px;
    padding: 30px 20px 21px;
    border-radius: 0 13px;
  }
  .c-scheanc-btn__name {
    padding-top: 0;
    font-size: 18px;
  }
  .c-scheanc-btn__role {
    padding-top: 9px;
    letter-spacing: 0.02em;
  }
}
@media (width &lt; 768px) {
  .c-scheanc-btn__arrow {
    align-self: center;
  }
}

.c-member-card {
  display: flex;
  align-items: center;
  gap: 0 15px;
  padding: 13px 15px;
  border: 1px solid var(--color-gray-400);
  border-radius: 0 7.5px;
}
.c-member-card__thumb {
  flex: 0 0 80px;
  width: 80px;
}
.c-member-card__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 4px;
  margin-bottom: 8px;
  background-color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
}
.c-member-card__name {
  padding: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.375;
}
.c-member-card__subject {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
}
@media (width &gt;= 768px) {
  .c-member-card {
    gap: 0 19px;
    padding: 31px 19px 28px;
    border-radius: 0 13px;
  }
  .c-member-card__thumb {
    flex: 0 0 88px;
    width: 88px;
  }
  .c-member-card__tag {
    padding: 7px 8px;
    margin-bottom: 16px;
  }
  .c-member-card__name {
    padding: 0 0 16px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  .c-member-card__subject {
    letter-spacing: 0.02em;
    line-height: 1.6666666667;
  }
}

.c-ctmember-card {
  border: 1px solid var(--color-gray-300);
  border-radius: 0 7.5px;
}
.c-ctmember-card__hdr {
  display: flex;
  gap: 0 15px;
}
.c-ctmember-card__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 4px;
  margin-bottom: 8px;
  background-color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
}
.c-ctmember-card__name {
  padding: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.375;
}
.c-ctmember-card__subject {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
}
.c-ctmember-card__txt {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--color-gray-300);
}
.c-ctmember-card__txt p {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media (width &gt;= 768px) {
  .c-ctmember-card {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 0;
    padding-bottom: 23px;
    border-radius: 0 13px;
  }
  .c-ctmember-card__hdr {
    gap: 0 19px;
    padding: 31px 19px 26px;
  }
  .c-ctmember-card__thumb {
    flex: 0 0 88px;
    width: 88px;
  }
  .c-ctmember-card__thumb:is(.grid:has(.c-ctmember-card__tag) *) {
    padding-top: 26px;
  }
  .c-ctmember-card__tag {
    padding: 7px 8px;
    margin-bottom: 16px;
  }
  .c-ctmember-card__name {
    padding: 0 0 16px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  .c-ctmember-card__name:is(.grid:has(.c-ctmember-card__tag) .c-ctmember-card:not(:has(.c-ctmember-card__tag)) *) {
    padding-top: 32px;
  }
  .c-ctmember-card__subject {
    letter-spacing: 0.02em;
    line-height: 1.6666666667;
  }
  .c-ctmember-card__txt {
    padding-top: 13px;
    margin: 0 19px;
  }
  .c-ctmember-card__txt p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.2857142857;
  }
}
@media (width &lt; 768px) {
  .c-ctmember-card {
    padding: 15px;
  }
  .c-ctmember-card__hdr {
    gap: 0 15px;
  }
  .c-ctmember-card__thumb {
    flex: 0 0 80px;
    width: 80px;
  }
}

.c-job-card {
  padding-top: 16px;
  margin-left: 10px;
  background-color: #fff;
  border-radius: 5px;
}
.c-job-card__name {
  display: grid;
  translate: -10px 0;
  grid-template-columns: 66px 1fr;
  padding-right: 5px;
}
.c-job-card__en {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  font-family: var(--font-family-latin);
  font-size: 32.5px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
}
.c-job-card__ja {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 15px 0 20px;
  background-color: var(--color-gray-100);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
}
.c-job-card__txt {
  padding: 21px 20px 0;
}
.c-job-card__txt[role=button]::after {
  content: "\f127";
  font-family: akar-icons !important;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .c-job-card__txt[role=button]:hover {
    text-decoration: underline;
  }
}
.c-job-card__ftr {
  padding-top: 10px;
  margin-top: 18px;
  border-top: 1px solid var(--color-gray-300);
  margin-inline: 30px;
}
@media (width &gt;= 768px) {
  .c-job-card {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    margin-left: 16px;
    border-radius: 10px;
  }
  .c-job-card__name {
    translate: -16px 0;
    grid-template-columns: 80px 1fr;
    padding-right: 0;
  }
  .c-job-card__en {
    min-height: 60px;
    font-size: 36px;
  }
  .c-job-card__ja {
    min-height: 60px;
    padding: 5px 20px 5px 16px;
    line-height: 1.5;
  }
  .c-job-card__txt {
    padding: 26px 29px 22px;
  }
  .c-job-card__ftr {
    padding: 26px 0;
    margin-top: auto;
    margin-inline: 29px;
  }
}
@media (width &lt; 768px) {
  .c-job-card {
    padding-bottom: 25px;
  }
  .c-job-card__txt {
    letter-spacing: 0.03em;
  }
}

.c-jobmodal-card {
  padding: 15px;
  background-color: var(--color-mint);
  border-radius: 0 7px;
}
.c-jobmodal-card__icon {
  width: 60px;
  margin-inline: auto;
}
.c-jobmodal-card__ttl {
  padding: 8px 0 6px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
}
@media (width &gt;= 768px) {
  .c-jobmodal-card {
    padding: 30px 30px 25px;
    border-radius: 0 13px;
  }
  .c-jobmodal-card__icon {
    width: 90px;
  }
  .c-jobmodal-card__ttl {
    padding: 15px 0 12px;
    font-size: 18px;
  }
}

.c-wl-card {
  padding: 30px 30px 26px;
  background-color: #fff;
  border-radius: 0 7px;
}
.c-wl-card__icons {
  display: flex;
  justify-content: center;
  gap: 0 8px;
}
.c-wl-card__icons figure {
  flex: 0 0 90px;
  width: 90px;
}
.c-wl-card__ttl {
  padding: 12px 0 6px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
}
@media (width &gt;= 768px) {
  .c-wl-card {
    padding: 30px 30px 27px;
    border-radius: 0 13px;
  }
  .c-wl-card__icons {
    gap: 0 20px;
  }
  .c-wl-card__icons figure {
    flex: 0 0 120px;
    width: 120px;
  }
  .c-wl-card__ttl {
    padding: 15px 0 12px;
    font-size: 18px;
  }
}

.c-prjct-fg {
  margin-left: var(--gutter);
  border-radius: 4px 0 0 4px;
}
@media (width &gt;= 768px) {
  .c-prjct-fg {
    margin-left: max(var(--gutter), var(--view-width) * 0.5 - var(--inner-base) * 0.5);
  }
  .c-prjct-fg img {
    border-radius: 8px 0 0 8px;
  }
}

.c-inthdr-fg {
  position: relative;
}
.c-inthdr-fg img {
  position: relative;
  z-index: 0;
}
.c-inthdr-fg figcaption {
  position: absolute;
  bottom: 7px;
  right: 11px;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--gradation-t1));
  font-family: var(--font-family-latin);
  font-size: 27.5px;
  font-weight: bold;
  color: transparent;
  letter-spacing: 0;
  line-height: 1;
}
@media (width &gt;= 768px) {
  .c-inthdr-fg figcaption {
    bottom: 21px;
    right: 26px;
    font-size: 68px;
  }
}

.c-branchhdr-fg {
  position: relative;
}
.c-branchhdr-fg img,
.c-branchhdr-fg picture {
  position: relative;
  z-index: 0;
}

:where(.c-branchhdr-fg figcaption) {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}

.c-topics-fg {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-topics-fg :where(figcaption) {
  position: absolute;
  bottom: 6px;
  right: 10px;
  font-family: var(--font-family-latin);
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 0.9565217391;
}
@media (width &gt;= 768px) {
  .c-topics-fg figcaption {
    bottom: 19px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
  }
}

.c-sche-grid {
  display: grid;
  grid-template-columns: 6fr repeat(7, 14fr);
  min-width: 966px;
}
.c-sche-grid__time {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-gray-100);
  border-bottom: 1px solid #fff;
  font-family: var(--font-family-latin);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-sche-grid__time:not(.-hdr) {
  min-height: 55px;
}
.c-sche-grid__week {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  background-color: var(--color-gray-300);
  border-left: 1px solid #fff;
  border-bottom: 1px solid var(--color-gray-150);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.c-sche-grid__cell {
  min-height: 55px;
  padding: 9px;
  border-left: 1px solid var(--color-gray-150);
  border-bottom: 1px dashed var(--color-gray-150);
}
.c-sche-grid__holiday, .c-sche-grid__work, .c-sche-grid__lunch, .c-sche-grid__after {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 2.5px;
  text-align: center;
}
.c-sche-grid__holiday {
  background-color: #d8eefc;
  font-weight: 500;
  color: #276093;
}
.c-sche-grid__work, .c-sche-grid__lunch, .c-sche-grid__after {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2727272727;
}
.c-sche-grid__work {
  background-color: var(--color-peach);
}
.c-sche-grid__work[role=button] {
  position: relative;
}
.c-sche-grid__work[role=button]::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background: url("../images/workstyle/btn-plus.png") no-repeat center center/cover;
  translate: 50% -50%;
}
.c-sche-grid__lunch {
  background-color: #feda9b;
}
.c-sche-grid__after {
  background-color: var(--color-primary);
  color: #fff;
}
@media (width &gt;= 768px) {
  .c-sche-grid {
    width: 100%;
  }
  .c-sche-grid__time {
    font-size: 16px;
  }
  .c-sche-grid__time:not(.-hdr) {
    min-height: 60px;
  }
  .c-sche-grid__week {
    height: 50px;
    font-size: 16px;
  }
  .c-sche-grid__cell {
    min-height: 60px;
    padding: 10px;
  }
  .c-sche-grid__holiday {
    border-radius: 5px;
    font-size: 16px;
  }
  .c-sche-grid__work, .c-sche-grid__lunch {
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.5;
  }
  .c-sche-grid__work[role=button]::before {
    width: 26px;
    height: 26px;
    translate: 10px -10px;
  }
}

.c-h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.375;
}
@media (width &gt;= 768px) {
  .c-h2 {
    font-size: 44px;
    letter-spacing: 0.05em;
    line-height: 1.4545454545;
  }
}

.c-h3 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media (width &gt;= 768px) {
  .c-h3 {
    font-size: 24px;
    line-height: 1.6666666667;
  }
}

.c-nav-h2 {
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
  border-bottom: 2px solid currentcolor;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
@media (width &gt;= 768px) {
  .c-nav-h2 {
    padding-bottom: 0.2em;
    margin-bottom: 0.5em;
    font-size: 24px;
  }
}

.c-nav-h3 {
  padding: 0.75em 0 0.5em;
  margin-top: 0.75em;
  border-top: 1px dotted currentcolor;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media (width &gt;= 768px) {
  .c-nav-h3 {
    font-size: 22px;
  }
}

.c-grad-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--gradation-t1));
  color: transparent;
}

.c-en-h1 {
  font-family: var(--font-family-latin);
  font-size: 39px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.375;
}
@media (width &gt;= 768px) {
  .c-en-h1 {
    font-size: 68px;
  }
}

.c-en-h2 {
  font-family: var(--font-family-latin);
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}
@media (width &gt;= 768px) {
  .c-en-h2 {
    font-size: 74px;
  }
}

.c-en-h3 {
  font-family: var(--font-family-latin);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.375;
}
@media (width &gt;= 768px) {
  .c-en-h3 {
    font-size: 26px;
  }
}

.c-en-h4 {
  font-family: var(--font-family-latin);
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.375;
}
@media (width &gt;= 768px) {
  .c-en-h4 {
    font-size: 36px;
  }
}

.c-ja-h1 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.375;
}
@media (width &gt;= 768px) {
  .c-ja-h1 {
    font-size: 18px;
  }
}

.c-post-h1 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
}
@media (width &gt;= 768px) {
  .c-post-h1 {
    font-size: 40px;
    line-height: 1.6;
  }
}

.c-post-h2 {
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.5652173913;
}
@media (width &gt;= 768px) {
  .c-post-h2 {
    font-size: 32px;
    letter-spacing: 0;
    line-height: 1.75;
  }
}

.c-tip-ttl {
  display: flex;
  align-items: center;
  gap: 0 6px;
  font-family: var(--font-family-latin);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-tip-ttl::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: currentcolor;
  border-radius: 50%;
}
@media (width &gt;= 768px) {
  .c-tip-ttl {
    gap: 0 12px;
  }
}

.c-hash-ttl {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media (width &gt;= 768px) {
  .c-hash-ttl {
    font-size: 16px;
    letter-spacing: 0.02em;
  }
}

.c-balloon-ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 18px;
  background-color: currentcolor;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.375;
}
.c-balloon-ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: 10px;
  height: 8.5px;
  background-color: currentcolor;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  translate: -50% 68%;
}
@media (width &gt;= 768px) {
  .c-balloon-ttl {
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 20px;
  }
  .c-balloon-ttl::before {
    width: 13px;
    height: 11px;
  }
}

.c-train-ttl {
  padding: 2px 15px;
  background-color: var(--color-gray-100);
  font-size: 16px;
  font-weight: bold;
  border-left-width: 10px;
  line-height: 1.25;
}
@media (width &gt;= 768px) {
  .c-train-ttl {
    padding: 18px 15px 18px 20px;
    line-height: 1.5;
  }
}
@media (width &lt; 768px) {
  .c-train-ttl {
    display: flex;
    align-items: center;
    min-height: 50px;
  }
}

.c-num-ttl {
  display: flex;
}
.c-num-ttl__num {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 50px;
  width: 50px;
  font-family: var(--font-family-latin);
  font-size: 32.5px;
  letter-spacing: 0;
  line-height: 1;
}
.c-num-ttl__txt {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 5px 10px 5px 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
}
@media (width &gt;= 768px) {
  .c-num-ttl__num {
    flex: 0 0 60px;
    width: 60px;
    font-size: 36px;
  }
  .c-num-ttl__txt {
    min-height: 60px;
    padding: 5px 10px 5px 20px;
    line-height: 1.5714285714;
  }
}

.c-qa-ttl {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.c-qa-ttl__num {
  flex: 0 0 auto;
  font-family: var(--font-family-latin);
  font-size: 40px;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0;
  line-height: 1;
}
.c-qa-ttl__txt {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6666666667;
}
@media (width &gt;= 768px) {
  .c-qa-ttl {
    gap: 0 8px;
  }
  .c-qa-ttl__num {
    font-size: 56px;
  }
  .c-qa-ttl__txt {
    padding-bottom: 5px;
    font-size: 24px;
    line-height: 1.6666666667;
  }
}

.c-prjct-hgrp {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 158px;
}
.c-prjct-hgrp::before {
  content: "";
  position: absolute;
  top: 42px;
  left: calc(50% - 30px);
  z-index: 0;
  width: 370px;
  aspect-ratio: 1/1;
  background: url("../images/shared/bg-earth.svg") no-repeat center center/cover;
  opacity: 0.25;
}
.c-prjct-hgrp__in {
  position: relative;
  z-index: 1;
}
@media (width &gt;= 768px) {
  .c-prjct-hgrp {
    min-height: 300px;
    padding-top: 10px;
    padding-bottom: 14px;
  }
  .c-prjct-hgrp::before {
    top: 24px;
    left: calc(50% - 153px);
    width: 1140px;
  }
  .c-prjct-hgrp__ja {
    padding-top: 6px;
  }
}

.c-branch-hgrp {
  display: flex;
  position: relative;
  align-items: center;
}
.c-branch-hgrp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(to right, var(--color-primary), rgb(var(--rgb-primary) / 0%));
}
.c-branch-hgrp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to left, var(--gradation-t1));
  opacity: 0.8;
}
.c-branch-hgrp__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-branch-hgrp__in {
  position: relative;
  z-index: 3;
}

.c-num-hgrp {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.c-num-hgrp :where(* &gt; p) {
  font-family: var(--font-family-latin);
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}
.c-num-hgrp :where(* &gt; h2, * &gt; h3, * &gt; h4, * &gt; h5, * &gt; h6) {
  font-size: 16px;
  font-weight: bold;
}
@media (width &gt;= 768px) {
  .c-num-hgrp {
    gap: 0 20px;
  }
  .c-num-hgrp :where(* &gt; h2, * &gt; h3, * &gt; h4, * &gt; h5, * &gt; h6) {
    font-size: 18px;
  }
}
@media (width &lt; 768px) {
  .c-num-hgrp :where(* &gt; h2, * &gt; h3, * &gt; h4, * &gt; h5, * &gt; h6) {
    line-height: 1.6875;
  }
}

.c-ofi-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.c-interview-img {
  position: relative;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
}
.c-interview-img &gt; img {
  position: relative;
  z-index: 0;
}
.c-interview-img__cont {
  position: absolute;
  bottom: 9px;
  right: 11px;
  z-index: 1;
}
.c-interview-img__suben {
  font-family: var(--font-family-latin);
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: right;
  letter-spacing: 0;
  line-height: 1;
}
.c-interview-img__subja {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-align: right;
  letter-spacing: 0.02em;
}
.c-interview-img__name {
  padding-top: 3px;
  font-family: var(--font-family-latin);
  font-size: 27.5px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}
@media (width &gt;= 768px) {
  .c-interview-img {
    border-radius: 8px 0 0 8px;
  }
  .c-interview-img__suben {
    padding-right: 2px;
    font-size: 48px;
  }
  .c-interview-img__subja {
    font-size: 20px;
  }
  .c-interview-img__name {
    padding-top: 17px;
    font-size: 68px;
  }
  .c-interview-img__cont {
    bottom: 20px;
    right: 25px;
  }
}

.c-btmradius-img {
  border-radius: 0 0 5px 5px;
}
@media (width &gt;= 768px) {
  .c-btmradius-img {
    border-radius: 0 0 10px 10px;
  }
}

.c-wide-inner, .c-1240-inner, .c-1140-inner, .c-inner, .c-1080-inner, .c-1040-inner, .c-slim-inner {
  margin-inline: auto;
  --section-gutter: var(--gutter);
}

.c-slim-inner {
  width: min(100% - var(--section-gutter) * 2, var(--inner-slim));
}

.c-1040-inner {
  width: min(100% - var(--section-gutter) * 2, var(--inner-1040));
}

.c-1080-inner {
  width: min(100% - var(--section-gutter) * 2, var(--inner-1080));
}

.c-inner {
  width: min(100% - var(--section-gutter) * 2, var(--inner-base));
}

.c-1140-inner {
  width: min(100% - var(--section-gutter) * 2, var(--inner-1140));
}

.c-1240-inner {
  width: min(100% - var(--section-gutter) * 2, var(--inner-1240));
}

.c-wide-inner {
  width: min(100% - var(--section-gutter) * 2, var(--inner-wide));
}

.--nogutter:is(*.c-slim-inner, *.c-1040-inner, *.c-1080-inner, *.c-inner, *.c-1140-inner, *.c-1240-inner, *.c-wide-inner) {
  --section-gutter: 0px;
}
@media (width &gt;= 768px) {
  .--nogutter-pc:is(*.c-slim-inner, *.c-1040-inner, *.c-1080-inner, *.c-inner, *.c-1140-inner, *.c-1240-inner, *.c-wide-inner) {
    --section-gutter: 0px;
  }
}
@media (width &lt; 768px) {
  .--nogutter-mobile:is(*.c-slim-inner, *.c-1040-inner, *.c-1080-inner, *.c-inner, *.c-1140-inner, *.c-1240-inner, *.c-wide-inner) {
    --section-gutter: 0px;
  }
}

.c-earth-item {
  position: absolute;
  z-index: 0;
  width: 381px;
  aspect-ratio: 1/1;
  background: url("../images/shared/bg-earth.svg") no-repeat center center/cover;
  opacity: 0.25;
  pointer-events: none;
}
.c-earth-item.-type01 {
  top: 39px;
  left: calc(50% - 18px);
}
@media (width &gt;= 768px) {
  .c-earth-item {
    width: 1140px;
  }
  .c-earth-item.-type01 {
    top: 110px;
    left: calc(50% - 154px);
  }
}

.c-mosaic-item {
  position: absolute;
  z-index: 0;
  width: 592px;
  height: 563.5px;
  pointer-events: none;
}
.c-mosaic-item.-left {
  left: calc(50% - 110px);
}
.c-mosaic-item.-right {
  right: calc(50% - 373px);
}
@media (width &gt;= 768px) {
  .c-mosaic-item {
    width: 1184px;
    height: 1127px;
  }
  .c-mosaic-item.-left {
    left: calc(50% - 143px);
  }
  .c-mosaic-item.-right {
    right: calc(50% - 66px);
  }
}

.c-txt-link {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-txt-link:hover {
    text-decoration: none;
  }
}

.c-arrowup-link::after {
  content: "";
  display: inline-block;
  width: 0.86em;
  aspect-ratio: 1/1;
  background: url("../images/shared/icon-ex-link.svg") no-repeat center center/0.86em 0.86em;
  vertical-align: middle;
  -webkit-margin-start: 0.5em;
          margin-inline-start: 0.5em;
}
@media (any-hover: hover) {
  .c-arrowup-link {
    transition: 0.3s opacity ease-in-out;
  }
  .c-arrowup-link:hover {
    opacity: 0.7;
  }
}

.c-anchor-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-gray-500);
}
.c-anchor-link__subtxt {
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  gap: 0 0.8em;
  font-family: var(--font-family-mix);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terracotta);
}
.c-anchor-link__subtxt::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: currentcolor;
  border-radius: 50%;
}
.c-anchor-link__arrow {
  flex: 0 0 20px;
  width: 20px;
  color: var(--color-primary);
  transition-duration: 0.3s;
  transition-property: translate;
}
.c-anchor-link__txt {
  flex: 0 1 auto;
  font-size: 15px;
  font-weight: 500;
}
.c-anchor-link:has(.c-anchor-link__subtxt) {
  flex-wrap: wrap;
}
.c-anchor-link:has(.c-anchor-link__subtxt) .c-anchor-link__txt {
  max-width: calc(100% - 32px);
}
@media (any-hover: hover) {
  .c-anchor-link:hover .c-anchor-link__arrow {
    translate: 0 30%;
  }
}
@media (width &gt;= 768px) {
  .c-anchor-link {
    padding-bottom: 14px;
    padding-right: 4px;
  }
  .c-anchor-link__txt {
    font-size: 16px;
  }
}
@media (width &lt; 768px) {
  .c-anchor-link__subtxt {
    line-height: 1.4;
  }
}

.c-hdr-linklist {
  display: flex;
  gap: 0 10px;
}
.c-hdr-linklist li {
  height: var(--header-height);
  line-height: 1;
}
.c-hdr-linklist span {
  display: flex;
  position: relative;
  align-items: center;
  height: var(--header-height);
}
.c-hdr-linklist span.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-image: linear-gradient(to right, var(--gradation-t1));
}
@media (width &gt;= 1366px) {
  .c-hdr-linklist {
    gap: 0 20px;
  }
}

.c-nav-linklist {
  display: grid;
  grid-template-columns: 100%;
  gap: 8px 0;
}
.c-nav-linklist li {
  line-height: 1.75;
}
@media (any-hover: hover) {
  .c-nav-linklist a:hover {
    text-decoration: underline;
  }
}

.c-outdeint-list &gt; li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-disc-list &gt; li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-disc-list &gt; li::before {
  content: "・";
  color: var(--color-primary);
}

.c-disc02-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 6px 0;
}
.c-disc02-list &gt; li {
  position: relative;
  padding-left: 1.1em;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7142857143;
}
.c-disc02-list &gt; li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}
@media (width &gt;= 768px) {
  .c-disc02-list {
    gap: 8px 0;
  }
  .c-disc02-list &gt; li {
    padding-left: 1.5em;
    letter-spacing: 0.05em;
  }
}

.c-schedule-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px 0;
}
.c-schedule-list &gt; div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0 11px;
}
.c-schedule-list dt {
  font-family: var(--font-family-latin);
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0;
  line-height: 1;
}
.c-schedule-list dd {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5714285714;
}
@media (width &gt;= 768px) {
  .c-schedule-list {
    gap: 30px 0;
  }
  .c-schedule-list &gt; div {
    grid-template-columns: 60px 1fr;
    gap: 0 15px;
  }
  .c-schedule-list dt {
    font-size: 24px;
  }
  .c-schedule-list dd {
    letter-spacing: 0.05em;
    line-height: 1.7142857143;
  }
}
@media (width &lt; 768px) {
  .c-schedule-list dd {
    margin-top: -2px;
  }
}

.c-qarank-list &gt; div + div {
  padding-top: 13px;
  margin-top: 7px;
  border-top: 1px solid var(--color-primary);
}
.c-qarank-list dt {
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-qarank-list dd {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6470588235;
}
@media (width &gt;= 768px) {
  .c-qarank-list dt {
    padding-bottom: 6px;
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .c-qarank-list dd {
    font-size: 20px;
    letter-spacing: 0.02em;
  }
  .c-qarank-list &gt; div + div {
    padding-top: 23px;
    margin-top: 18px;
  }
}

.c-marker {
  display: inline;
  background-color: var(--color-coral);
}

.c-megamenu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  background-image: linear-gradient(to right, var(--gradation-t1));
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-megamenu::-webkit-scrollbar {
  display: none;
}
.c-megamenu__in {
  padding: 30px 0;
}

.c-job-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.c-job-modal__wrapper {
  display: flex;
  position: relative;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding: 30px var(--gutter);
  overflow: auto;
}
.c-job-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  height: 100lvh;
  background-color: rgb(var(--rgb-forest)/70%);
}
.c-job-modal__container {
  position: relative;
  z-index: 9999;
  flex: 1 1 100%;
  max-width: var(--inner-base);
  padding: 15px 15px 30px;
  background-color: #fff;
  border-radius: 5px;
  margin-inline: auto;
}
.c-job-modal__heading {
  display: grid;
  grid-template-columns: 60px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  translate: -25px 0;
}
.c-job-modal__en {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  font-family: var(--font-family-latin);
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
}
.c-job-modal__ja {
  display: flex;
  align-items: center;
  padding: 0 15px;
  background-color: var(--color-gray-100);
  font-weight: bold;
}
.c-job-modal__inner {
  max-width: 960px;
  padding: 30px 0 20px;
  margin-inline: auto;
}
.c-job-modal__hgrp {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px 0;
  padding-bottom: 20px;
}
.c-job-modal__jobttl {
  padding: 44px 0 22px;
}
.c-job-modal__intgrid {
  padding-top: 40px;
}
.c-job-modal__close {
  margin-top: 20px;
}
@media (width &gt;= 768px) {
  .c-job-modal__wrapper {
    padding: 60px var(--gutter);
  }
  .c-job-modal__container {
    padding: 40px;
    border-radius: 10px;
  }
  .c-job-modal__heading {
    grid-template-columns: 88px 1fr;
    translate: -60px 0;
  }
  .c-job-modal__en {
    min-height: 88px;
    font-size: 48px;
  }
  .c-job-modal__ja {
    padding: 0 30px;
    font-size: 32px;
    letter-spacing: 0.03em;
  }
  .c-job-modal__inner {
    padding: 60px 0 40px;
  }
  .c-job-modal__hgrp {
    gap: 25px 0;
    padding-bottom: 30px;
  }
  .c-job-modal__jobttl {
    padding: 78px 0 42px;
  }
  .c-job-modal__intgrid {
    padding-top: 80px;
  }
  .c-job-modal__close {
    margin-top: 40px;
  }
}

.c-sche-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.c-sche-modal .simplebar-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-sche-modal .simplebar-content-wrapper:is(.simplebar-scrollable-y *) {
  align-items: flex-start;
}
.c-sche-modal__wrapper {
  display: flex;
  position: relative;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding: 70px var(--gutter) 30px;
  overflow: auto;
}
.c-sche-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  height: 100lvh;
  background-color: rgb(var(--rgb-forest)/70%);
}
.c-sche-modal__container {
  position: relative;
  z-index: 9999;
  flex: 1 1 100%;
  max-width: var(--inner-base);
  padding: 30px;
  background-color: #fff;
  border-radius: 5px;
  margin-inline: auto;
}
.c-sche-modal__ttl {
  margin-bottom: 0.75em;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.c-sche-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
}
@media (width &gt;= 768px) {
  .c-sche-modal__ttl {
    font-size: 18px;
  }
  .c-sche-modal__wrapper {
    padding: 60px var(--gutter);
  }
  .c-sche-modal__container {
    padding: 60px;
    border-radius: 10px;
  }
  .c-sche-modal__close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

.c-simplebar {
  padding-right: 28px;
}
.c-simplebar .simplebar-track {
  background: rgb(219, 237, 245);
  border-radius: 7px;
}
.c-simplebar .simplebar-track.simplebar-vertical {
  width: 14px;
}
.c-simplebar .simplebar-scrollbar::before {
  inset: 0;
  width: 14px;
  background: linear-gradient(to bottom, var(--gradation-t1));
  border-radius: 7px;
  opacity: 1;
}
.c-simplebar .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.c-simplebar02 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-simplebar02::-webkit-scrollbar {
  display: none;
}
.c-simplebar02.simplebar-scrollable-x {
  padding-bottom: 24px;
}
.c-simplebar02 .simplebar-track.simplebar-horizontal {
  left: auto;
  right: 0;
  width: 46.5%;
  height: 4px;
  background-color: var(--color-gray-150);
  opacity: 1;
}
.c-simplebar02 .simplebar-track.simplebar-vertical {
  display: none;
}
.c-simplebar02 .simplebar-scrollbar::before {
  inset: 0;
  height: 4px;
  background-image: linear-gradient(to right, var(--gradation-t1));
  border-radius: 0;
  opacity: 1;
}
.c-simplebar02 .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.c-req-table {
  width: 100%;
}
.c-req-table th {
  font-size: 16px;
  font-weight: bold;
}
.c-req-table td small {
  font-size: 12px;
}
@media (width &gt;= 768px) {
  .c-req-table th,
  .c-req-table td {
    padding: 35px 0 36px;
    border-bottom: 1px solid var(--color-gray-300);
    vertical-align: top;
  }
  .c-req-table th {
    width: 202px;
    font-size: 18px;
  }
}
@media (width &lt; 768px) {
  .c-req-table {
    display: block;
  }
  .c-req-table tbody,
  .c-req-table tr,
  .c-req-table th,
  .c-req-table td {
    display: block;
  }
  .c-req-table th {
    padding-bottom: 12px;
  }
  .c-req-table td {
    letter-spacing: 0.03em;
  }
  .c-req-table tr + tr {
    padding-top: 24px;
    margin-top: 25px;
    border-top: 1px solid var(--color-gray-300);
  }
}

.c-intern-table {
  width: 100%;
}
.c-intern-table th,
.c-intern-table td {
  width: 27.3333333333%;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
}
.c-intern-table th:nth-child(1),
.c-intern-table td:nth-child(1) {
  width: 18%;
}
.c-intern-table thead th {
  padding: 8px 0;
  background-color: var(--color-primary);
  font-weight: bold;
  color: #fff;
}
.c-intern-table thead th:nth-child(n+2) {
  border-left: 1px solid #fff;
}
.c-intern-table tbody tr:nth-child(even) th,
.c-intern-table tbody tr:nth-child(even) td {
  background-color: var(--color-gray-100);
}
.c-intern-table tbody tr:last-child th,
.c-intern-table tbody tr:last-child td {
  border-bottom: 1px solid var(--color-gray-300);
}
.c-intern-table tbody th,
.c-intern-table tbody td {
  padding: 9px 4px;
  border-left: 1px solid var(--color-gray-300);
  border-right: 1px solid var(--color-gray-300);
}
@media (width &gt;= 768px) {
  .c-intern-table th,
  .c-intern-table td {
    font-size: 16px;
  }
  .c-intern-table thead th {
    padding: 9px 8px;
  }
  .c-intern-table tbody th,
  .c-intern-table tbody td {
    padding: 24px 8px;
  }
}
@media (width &lt; 768px) {
  .c-intern-table th,
  .c-intern-table td {
    letter-spacing: 0.03em;
    line-height: 1.6666666667;
  }
}

.c-weeksche-table {
  width: 100%;
}
.c-weeksche-table__week, .c-weeksche-table__cell {
  width: 13.4615%;
}
.c-weeksche-table__time {
  width: 5.769%;
  background-color: var(--color-gray-100);
  border-bottom: 1px solid #fff;
  font-family: var(--font-family-latin);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.c-weeksche-table__week {
  background-color: var(--color-gray-300);
  border-left: 1px solid #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}
.c-weeksche-table__cell {
  padding: 8px;
}
.c-weeksche-table__holiday {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #d8eefc;
  border-radius: 2.5px;
  color: #276093;
}
@media (width &gt;= 768px) {
  .c-weeksche-table__time {
    font-size: 16px;
  }
  .c-weeksche-table__week {
    padding: 9px 0;
    font-size: 16px;
  }
  .c-weeksche-table__holiday {
    border-radius: 5px;
  }
  .c-weeksche-table__cell {
    padding: 10px;
  }
}

.c-txt {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media (width &gt;= 768px) {
  .c-txt {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2.25;
  }
}

.c-txt02 {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media (width &gt;= 768px) {
  .c-txt02 {
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.c-txt03 {
  letter-spacing: 0.03em;
  line-height: 2;
}
.c-txt03.--mt {
  margin-top: 2em;
}
@media (width &gt;= 768px) {
  .c-txt03 {
    letter-spacing: 0.05em;
    line-height: 2.2857142857;
  }
  .c-txt03.--mt {
    margin-top: 2.2857142857em;
  }
}

.c-copy-txt {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
}
@media (width &gt;= 768px) {
  .c-copy-txt {
    font-size: 16px;
    line-height: 2;
  }
}

.c-xlcopy-txt {
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.3333333333;
}
@media (width &gt;= 768px) {
  .c-xlcopy-txt {
    font-size: 46px;
    line-height: 1.5652173913;
  }
}

.c-post-txt {
  letter-spacing: 0.03em;
  line-height: 2;
}
@media (width &gt;= 768px) {
  .c-post-txt {
    letter-spacing: 0.05em;
    line-height: 2.2857142857;
  }
}

.c-note-txt {
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
}
@media (width &gt;= 768px) {
  .c-note-txt {
    letter-spacing: 0.05em;
    line-height: 1.8333333333;
  }
}

.c-subject-txt {
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media (width &gt;= 768px) {
  .c-subject-txt {
    font-size: 18px;
  }
}

.c-2xl-txt {
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media (width &gt;= 768px) {
  .c-2xl-txt {
    font-size: 24px;
  }
}

.c-outndent-txt {
  padding-left: 1em;
  text-indent: -1em;
}

.p-first-prologue {
  padding-top: 60px;
}
.p-first-prologue__copy {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 57/32;
  padding: 0 30px;
  background-image: linear-gradient(135deg, var(--gradation-t1));
  color: #fff;
}
.p-first-prologue__copy p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
.p-first-prologue__img img {
  box-shadow: 0 13px 16px rgba(126, 160, 163, 0.27);
}
@media (width &gt;= 768px) {
  .p-first-prologue {
    display: grid;
    position: relative;
    grid-template-columns: 50% 50px 1fr;
    grid-template-rows: 79fr 265fr 55fr;
    padding-top: 123px;
  }
  .p-first-prologue__txt {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .p-first-prologue__img {
    position: relative;
    z-index: 1;
    grid-column: 2/span 2;
    grid-row: 1/span 2;
  }
  .p-first-prologue__copy {
    position: relative;
    z-index: 0;
    grid-column: 1/span 2;
    grid-row: 2/span 2;
    padding: 0 55px 0 30px;
  }
  .p-first-prologue__copy p {
    font-size: 16px;
    line-height: 2;
  }
}
@media (width &lt; 768px) {
  .p-first-prologue {
    position: relative;
    z-index: 3;
  }
  .p-first-prologue__img {
    width: 75.36%;
    margin-top: 22px;
    margin-left: auto;
  }
  .p-first-prologue__copy {
    width: 82.6%;
    padding-top: 2%;
    margin-top: -7.5%;
  }
}

.p-first-ict {
  position: relative;
  z-index: 2;
  padding-top: 78px;
  padding-bottom: 117px;
  background: url("../images/about/first/bg-mobile-ict.jpg") no-repeat center center/cover;
}
.p-first-ict__txt01, .p-first-ict__txt03 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}
.p-first-ict__txt02 {
  padding: 33px 0 26px;
  font-family: var(--font-family-latin);
  font-size: 75px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
}
@media (width &gt;= 768px) {
  .p-first-ict {
    height: 646px;
    padding-top: 84px;
    margin-top: 78px;
    background-image: url("../images/about/first/bg-ict.jpg");
  }
  .p-first-ict__txt01, .p-first-ict__txt03 {
    font-size: 16px;
  }
  .p-first-ict__txt01 {
    line-height: 2;
  }
  .p-first-ict__txt03 {
    line-height: 40px;
  }
  .p-first-ict__txt02 {
    padding: 58px 0 43px;
    font-size: 105px;
  }
}
@media (width &lt; 768px) {
  .p-first-ict {
    margin-top: -20px;
  }
  .p-first-ict__txt01 {
    padding-inline: 31px;
  }
  .p-first-ict__txt03 {
    padding-inline: var(--gutter);
  }
}

.p-first-diver {
  position: relative;
  z-index: 3;
  padding: 169px 37.5px 91px;
  background: url("../images/about/first/bg-mobile-diversity.jpg") no-repeat center center/cover;
}
.p-first-diver__container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-inline: auto;
  padding: 26px 20px 27px;
}
.p-first-diver__img01 {
  position: absolute;
  top: -27px;
  left: calc(50% + 7px);
  z-index: 0;
  width: 165px;
}
.p-first-diver__img02 {
  position: absolute;
  top: 63px;
  right: calc(50% + 55px);
  z-index: 1;
  width: 132.5px;
}
.p-first-diver__img03 {
  position: absolute;
  bottom: -40px;
  right: calc(50% + 12px);
  z-index: 0;
  width: 160.5px;
}
.p-first-diver__txt01 {
  padding: 13px 0 11px;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4666666667;
}
@media (width &gt;= 768px) {
  .p-first-diver {
    padding-top: 155px;
    padding-bottom: 153px;
    background-image: url("../images/about/first/bg-diversity.jpg");
  }
  .p-first-diver__img01 {
    top: -69px;
    left: calc(50% + 390px);
    width: 330px;
  }
  .p-first-diver__img02 {
    top: 270px;
    right: calc(50% + 495px);
    width: 265px;
  }
  .p-first-diver__img03 {
    bottom: -87px;
    right: calc(50% + 340px);
    width: 321px;
  }
  .p-first-diver__txt01 {
    padding: 22px 0 24px;
    font-size: 40px;
    line-height: 1.6;
  }
  .p-first-diver__container {
    padding-top: 55px;
    padding-bottom: 56px;
  }
}

.p-first-sler {
  position: relative;
  z-index: 2;
  padding-top: 69px;
  padding-bottom: 57px;
  background: url("../images/about/first/bg-mobile-sler.jpg") no-repeat center center/cover;
}
.p-first-sler__txt01 {
  padding-top: 27px;
  padding-bottom: 9px;
  font-size: 40px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
}
@media (width &gt;= 768px) {
  .p-first-sler {
    height: 428px;
    padding-top: 48px;
    padding-bottom: 0;
    background-image: url("../images/about/first/bg-sler.jpg");
  }
  .p-first-sler__txt01 {
    padding-top: 51px;
    padding-bottom: 9px;
    font-size: 64px;
    line-height: 1.3125;
  }
}

.p-first-circle {
  margin-top: 27px;
}
.p-first-circle p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 253px;
  aspect-ratio: 1/1;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-inline: auto;
}
.p-first-circle::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: var(--color-primary);
  margin-inline: auto;
}
@media (width &gt;= 768px) {
  .p-first-circle {
    margin-top: 55px;
  }
  .p-first-circle p {
    width: 380px;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  .p-first-circle::after {
    height: 100px;
  }
}

.p-first-rtitle {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 0 7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  padding: 0 20px;
  margin-bottom: -20px;
  background: linear-gradient(to right, var(--gradation-t1));
  border-radius: 100vmax;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.03em;
  margin-inline: auto;
}
.p-first-rtitle::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
}
@media (width &gt;= 768px) {
  .p-first-rtitle {
    gap: 0 14px;
    height: 48px;
    padding: 0 30px;
    margin-bottom: -30px;
    font-size: 18px;
    letter-spacing: 0.02em;
  }
}

.p-home {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: calc(100vh - var(--header-height));
}
.p-home::before {
  content: "";
  position: absolute;
  top: 138px;
  left: calc(50% - 162px);
  z-index: 0;
  width: 570px;
  aspect-ratio: 1/1;
  background: url("../images/shared/bg-earth.svg") no-repeat center center/cover;
  opacity: 1;
}
.p-home &gt; * {
  position: relative;
  z-index: 2;
}
@media (width &gt;= 768px) {
  .p-home::before {
    top: 26px;
    left: calc(50% - 155px);
    width: 1140px;
  }
}

.p-home-catch {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  padding: 18px 0 0 var(--gutter);
}
.p-home-catch__copy p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-background-clip: text;
  background-image: linear-gradient(245deg ,#c03 10%, #ff4082 47.78%, #ff976c 90%);
  font-size: 50px;
  font-weight: 600;
  color: transparent;
  letter-spacing: 0;
  line-height: 1.27;
}
.p-home-catch__en p {
  font-family: var(--font-family-latin);
  font-size: 27px;
  font-weight: bold;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}
.p-home-catch__btns {
  display: grid;
  align-self: flex-end;
  grid-template-columns: 100%;
  gap: 4px 0;
  margin-left: auto;
}
@media (width &gt;= 768px) {
  .p-home-catch {
    padding: 38px 0 0 33px;
  }
  .p-home-catch__copy {
    padding-bottom: 11px;
  }
  .p-home-catch__copy p {
    font-size: 80px;
    line-height: 1.275;
  }
  .p-home-catch__en {
    padding-top: 11px;
    margin-left: -6px;
  }
  .p-home-catch__en p {
    font-size: 55px;
    letter-spacing: 0.01em;
    line-height: 1.1636363636;
  }
  .p-home-catch__btns {
    justify-content: flex-end;
  }
}
@media (width &gt;= 1280px) {
  .p-home-catch {
    flex-wrap: nowrap;
    flex: 0 0 auto;
    padding: 38px 0 0 65px;
  }
  .p-home-catch__copy {
    padding-bottom: 31px;
  }
}
@media (width &lt; 768px) {
  .p-home-catch {
    gap: 26px 0;
  }
  .p-home-catch__copy {
    flex: 0 0 100%;
    width: 100%;
  }
}

.p-home-sliders .swiper-wrapper {
  transition-timing-function: linear;
}
@media (any-hover: hover) {
  .p-home-sliders .swiper-slide a {
    transition: 0.3s opacity ease-in-out;
  }
  .p-home-sliders .swiper-slide a:hover {
    opacity: 0.7;
  }
}
@media (width &gt;= 768px) {
  .p-home-sliders {
    flex: 0 0 auto;
    padding-top: 20px;
  }
  .p-home-sliders .swiper-slide {
    width: 320px;
  }
  .p-home-sliders__bottom {
    padding-top: 20px;
  }
}
@media (width &lt; 768px) {
  .p-home-sliders {
    display: none;
  }
}

.p-home-grid {
  padding-top: 22px;
}
@media (width &gt;= 768px) {
  .p-home-grid {
    display: none;
  }
}

.p-home-footer {
  padding: 14px var(--gutter) 14px;
  margin-top: auto;
}
@media (width &gt;= 768px) {
  .p-home-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 6px;
    padding: 33px 48px 33px 45px;
  }
}

.p-home-news {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.p-home-news__ttl {
  flex: 0 0 auto;
  font-family: var(--font-family-latin);
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}
.p-home-news__cont {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.p-home-news__date {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-gray-500);
  letter-spacing: 0.03em;
}
.p-home-news__link {
  flex: 0 1 auto;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.375;
}
.p-home-news__link a:hover {
  text-decoration: underline;
}
.p-home-news__list {
  flex: 0 1 auto;
  height: auto;
}
.p-home-news__list .swiper-slide {
  display: flex;
  align-items: center;
}
@media (width &gt;= 768px) {
  .p-home-news {
    flex: 0 1 auto;
    gap: 0 56px;
  }
  .p-home-news__ttl {
    font-size: 35px;
  }
  .p-home-news__cont {
    gap: 0 16px;
  }
  .p-home-news__date, .p-home-news__link {
    font-size: 14px;
  }
}
@media (width &lt; 768px) {
  .p-home-news {
    padding-bottom: 3px;
  }
}

.p-internship-copy {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
}
.p-internship-copy + .p-internship-copy {
  margin-top: 1.8666666667em;
}
@media (width &gt;= 768px) {
  .p-internship-copy {
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 2;
  }
  .p-internship-copy + .p-internship-copy {
    margin-top: 2em;
  }
}

.p-mess-fv {
  position: relative;
}
.p-mess-fv__img img {
  border-radius: 4px 0 0 4px;
}
.p-mess-fv__copy {
  font-size: 23px;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.575;
}
.p-mess-fv__copy span {
  display: inline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  letter-spacing: 0.03em;
  padding-inline: 10px;
  padding-block: 0.1em;
}
@media (width &gt;= 768px) {
  .p-mess-fv__copy {
    font-size: 32px;
    line-height: 2;
  }
  .p-mess-fv__copy span {
    letter-spacing: 0.02em;
    padding-block: 0.3em;
    padding-inline: 0 20px;
  }
}
@media (width &gt;= 1024px) {
  .p-mess-fv__copy {
    position: absolute;
    top: 50%;
    left: max(var(--gutter), (var(--view-width) - 1440px) * 0.5);
    width: 60%;
    padding-left: 20px;
    translate: 0 -50%;
  }
  .p-mess-fv__img {
    height: 600px;
    margin-left: max(160px, (var(--view-width) - var(--inner-base)) * 0.5);
  }
  .p-mess-fv__img img {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 8px 0 0 8px;
    object-fit: cover;
  }
}
@media (width &lt; 1024px) {
  .p-mess-fv__img {
    margin-left: var(--gutter);
  }
  .p-mess-fv__copy {
    padding: 30px var(--gutter) 0;
  }
}

.p-tpi-sec__cont {
  position: relative;
  z-index: 0;
  background-color: #fff;
}
.p-tpi-sec__img {
  position: relative;
  z-index: 1;
}
@media (width &gt;= 768px) {
  .p-tpi-sec.-alignR {
    margin-left: max(var(--gutter), var(--view-width) * 0.5 - 540px);
  }
  .p-tpi-sec.-alignL {
    margin-right: max(var(--gutter), var(--view-width) * 0.5 - 540px);
  }
  .p-tpi-sec__cont {
    padding-top: 115px;
    padding-bottom: 120px;
  }
  .p-tpi-sec__cont:is(.-alignR *) {
    padding-left: 80px;
  }
  .p-tpi-sec__cont:is(.-alignL *) {
    padding-right: 80px;
  }
  .p-tpi-sec__img {
    width: 640px;
    height: 300px;
    margin-bottom: -150px;
  }
  .p-tpi-sec__img:is(.-alignR *) {
    margin-left: auto;
  }
}
@media (width &lt; 768px) {
  .p-tpi-sec.-alignR {
    padding-left: 30px;
  }
  .p-tpi-sec.-alignL {
    padding-right: 30px;
  }
  .p-tpi-sec__cont {
    padding: 101px 30px 60px;
  }
  .p-tpi-sec__img {
    height: 126px;
    margin-bottom: -63px;
  }
  .p-tpi-sec__img:is(.-alignR *) {
    padding-left: 75px;
  }
  .p-tpi-sec__img:is(.-alignL *) {
    padding-right: 75px;
  }
}

.p-tpi-slider {
  margin-top: 27px;
}
.p-tpi-slider .swiper-slide {
  width: 235px;
  height: auto;
}
.p-tpi-slider__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 10px;
  max-width: 1000px;
  padding-bottom: 20px;
}
.p-tpi-slider__prev, .p-tpi-slider__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gradation-t1));
  border-radius: 50%;
  color: #fff;
}
.p-tpi-slider__prev svg, .p-tpi-slider__next svg {
  width: 18px;
  height: 18px;
}
.p-tpi-slider__prev.is-disabled, .p-tpi-slider__next.is-disabled {
  background: var(--color-gray-150);
}
.p-tpi-slider__prev.swiper-button-lock, .p-tpi-slider__next.swiper-button-lock {
  visibility: hidden;
}
.p-tpi-slider__scroller {
  width: 160px;
  height: 4px;
  margin-top: 27px;
  margin-left: auto;
  background-color: var(--color-gray-150);
}
.p-tpi-slider__drag {
  height: 100%;
  background-image: linear-gradient(to right, var(--gradation-t1));
}
@media (width &gt;= 768px) {
  .p-tpi-slider {
    margin-top: 35px;
  }
  .p-tpi-slider .swiper:is(.-alignL *) {
    padding-left: max(var(--gutter), var(--view-width) * 0.5 - 520px);
  }
  .p-tpi-slider .swiper-slide {
    width: 300px;
  }
  .p-tpi-slider__nav {
    gap: 0 20px;
    padding-bottom: 40px;
  }
  .p-tpi-slider__nav:is(.-alignL *) {
    padding-left: max(var(--gutter), var(--view-width) * 0.5 - 540px);
  }
  .p-tpi-slider__prev, .p-tpi-slider__next {
    width: 50px;
    height: 50px;
  }
  .p-tpi-slider__prev svg, .p-tpi-slider__next svg {
    width: 24px;
    height: 24px;
  }
  .p-tpi-slider__scroller {
    width: 320px;
    height: 2px;
    margin-top: 37px;
  }
}
@media (width &lt; 768px) {
  .p-tpi-slider .swiper:is(.-alignR *) {
    margin-right: -30px;
  }
  .p-tpi-slider .swiper:is(.-alignL *) {
    margin-left: -30px;
  }
}

[class*="hover:opacity-"] {
  transition-duration: 0.3s;
  transition-property: opacity;
}

.collapse{
  visibility: collapse;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.inset-0{
  inset: 0px;
}

.bottom-\[-83px\]{
  bottom: -83px;
}

.bottom-\[5px\]{
  bottom: 5px;
}

.right-\[10px\]{
  right: 10px;
}

.top-0{
  top: 0px;
}

.z-0{
  z-index: 0;
}

.z-10{
  z-index: 10;
}

.z-50{
  z-index: 50;
}

.col-span-2{
  grid-column: span 2 / span 2;
}

.col-span-3{
  grid-column: span 3 / span 3;
}

.row-span-14{
  grid-row: span 14 / span 14;
}

.row-span-2{
  grid-row: span 2 / span 2;
}

.row-span-3{
  grid-row: span 3 / span 3;
}

.row-span-4{
  grid-row: span 4 / span 4;
}

.row-span-7{
  grid-row: span 7 / span 7;
}

.-mx-gutter{
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
}

.mx-\[10px\]{
  margin-left: 10px;
  margin-right: 10px;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-\[-60px\]{
  margin-top: -60px;
  margin-bottom: -60px;
}

.-mt-4{
  margin-top: -16px;
}

.mb-1{
  margin-bottom: 4px;
}

.mb-15{
  margin-bottom: 60px;
}

.mb-4{
  margin-bottom: 16px;
}

.mb-5{
  margin-bottom: 20px;
}

.mb-6{
  margin-bottom: 24px;
}

.mb-7{
  margin-bottom: 28px;
}

.mb-8{
  margin-bottom: 32px;
}

.mb-9{
  margin-bottom: 36px;
}

.mb-\[10px\]{
  margin-bottom: 10px;
}

.mb-\[11px\]{
  margin-bottom: 11px;
}

.mb-\[14px\]{
  margin-bottom: 14px;
}

.mb-\[21px\]{
  margin-bottom: 21px;
}

.mb-\[27px\]{
  margin-bottom: 27px;
}

.mb-\[30px\]{
  margin-bottom: 30px;
}

.mb-\[38px\]{
  margin-bottom: 38px;
}

.ml-3{
  margin-left: 12px;
}

.ml-4{
  margin-left: 16px;
}

.ml-5{
  margin-left: 20px;
}

.ml-auto{
  margin-left: auto;
}

.mt-1{
  margin-top: 4px;
}

.mt-10{
  margin-top: 40px;
}

.mt-14{
  margin-top: 56px;
}

.mt-15{
  margin-top: 60px;
}

.mt-2{
  margin-top: 8px;
}

.mt-3{
  margin-top: 12px;
}

.mt-4{
  margin-top: 16px;
}

.mt-5{
  margin-top: 20px;
}

.mt-6{
  margin-top: 24px;
}

.mt-7{
  margin-top: 28px;
}

.mt-9{
  margin-top: 36px;
}

.mt-\[1\.6666em\]{
  margin-top: 1.6666em;
}

.mt-\[10px\]{
  margin-top: 10px;
}

.mt-\[14px\]{
  margin-top: 14px;
}

.mt-\[18px\]{
  margin-top: 18px;
}

.mt-\[19px\]{
  margin-top: 19px;
}

.mt-\[26px\]{
  margin-top: 26px;
}

.mt-\[27px\]{
  margin-top: 27px;
}

.mt-\[29px\]{
  margin-top: 29px;
}

.mt-\[30px\]{
  margin-top: 30px;
}

.mt-\[32px\]{
  margin-top: 32px;
}

.mt-\[34px\]{
  margin-top: 34px;
}

.mt-\[38px\]{
  margin-top: 38px;
}

.mt-\[57px\]{
  margin-top: 57px;
}

.mt-\[58px\]{
  margin-top: 58px;
}

.block{
  display: block;
}

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.list-item{
  display: list-item;
}

.hidden{
  display: none;
}

.h-10{
  height: 40px;
}

.h-12{
  height: 48px;
}

.h-7{
  height: 28px;
}

.h-\[120px\]{
  height: 120px;
}

.h-\[130px\]{
  height: 130px;
}

.h-\[157px\]{
  height: 157px;
}

.h-\[160px\]{
  height: 160px;
}

.h-\[48px\]{
  height: 48px;
}

.h-\[50px\]{
  height: 50px;
}

.h-auto{
  height: auto;
}

.h-full{
  height: 100%;
}

.max-h-\[400px\]{
  max-height: 400px;
}

.min-h-\[200px\]{
  min-height: 200px;
}

.w-6{
  width: 24px;
}

.w-\[120px\]{
  width: 120px;
}

.w-\[156px\]{
  width: 156px;
}

.w-\[161px\]{
  width: 161px;
}

.w-\[174px\]{
  width: 174px;
}

.w-\[180px\]{
  width: 180px;
}

.w-\[189px\]{
  width: 189px;
}

.w-\[233px\]{
  width: 233px;
}

.w-\[50px\]{
  width: 50px;
}

.w-\[57px\]{
  width: 57px;
}

.w-\[77px\]{
  width: 77px;
}

.w-fit{
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.w-full{
  width: 100%;
}

.min-w-\[560px\]{
  min-width: 560px;
}

.min-w-\[850px\]{
  min-width: 850px;
}

.max-w-1000{
  max-width: 1000px;
}

.max-w-640{
  max-width: 640px;
}

.max-w-800{
  max-width: 800px;
}

.max-w-\[233px\]{
  max-width: 233px;
}

.max-w-\[340px\]{
  max-width: 340px;
}

.max-w-\[920px\]{
  max-width: 920px;
}

.flex-auto{
  flex: 1 1 auto;
}

.flex-initial{
  flex: 0 1 auto;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.flex-grow-0{
  flex-grow: 0;
}

.border-collapse{
  border-collapse: collapse;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flex-col{
  flex-direction: column;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-center{
  align-items: center;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.gap-3{
  gap: 12px;
}

.gap-5{
  gap: 20px;
}

.gap-\[10px\]{
  gap: 10px;
}

.gap-x-3{
  column-gap: 12px;
}

.gap-x-4{
  column-gap: 16px;
}

.gap-x-5{
  column-gap: 20px;
}

.gap-x-\[1px\]{
  column-gap: 1px;
}

.gap-x-\[25px\]{
  column-gap: 25px;
}

.gap-x-\[46px\]{
  column-gap: 46px;
}

.gap-y-1{
  row-gap: 4px;
}

.gap-y-10{
  row-gap: 40px;
}

.gap-y-14{
  row-gap: 56px;
}

.gap-y-15{
  row-gap: 60px;
}

.gap-y-16{
  row-gap: 64px;
}

.gap-y-3{
  row-gap: 12px;
}

.gap-y-35{
  row-gap: 140px;
}

.gap-y-4{
  row-gap: 16px;
}

.gap-y-5{
  row-gap: 20px;
}

.gap-y-8{
  row-gap: 32px;
}

.gap-y-9{
  row-gap: 36px;
}

.gap-y-\[10px\]{
  row-gap: 10px;
}

.gap-y-\[14px\]{
  row-gap: 14px;
}

.gap-y-\[17px\]{
  row-gap: 17px;
}

.gap-y-\[26px\]{
  row-gap: 26px;
}

.gap-y-\[30px\]{
  row-gap: 30px;
}

.gap-y-\[5\.5px\]{
  row-gap: 5.5px;
}

.gap-y-\[9px\]{
  row-gap: 9px;
}

.overflow-hidden{
  overflow: hidden;
}

.rounded-\[2\.5px\]{
  border-radius: 2.5px;
}

.rounded-\[5px\]{
  border-radius: 5px;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-half-md{
  border-radius: 5px;
}

.rounded-half-sm{
  border-radius: 4px;
}

.rounded-half-xl{
  border-radius: 7.5px;
}

.rounded-md{
  border-radius: 10px;
}

.rounded-l-half-sm{
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.rounded-r-half-sm{
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.rounded-bl-half-lg{
  border-bottom-left-radius: 6.5px;
}

.rounded-bl-lg{
  border-bottom-left-radius: 13px;
}

.rounded-tr-half-lg{
  border-top-right-radius: 6.5px;
}

.rounded-tr-lg{
  border-top-right-radius: 13px;
}

.border{
  border-width: 1px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-r{
  border-right-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(192 201 200 / var(--tw-border-opacity, 1));
}

.border-teal{
  --tw-border-opacity: 1;
  border-color: rgb(0 182 170 / var(--tw-border-opacity, 1));
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-l-aquablue{
  --tw-border-opacity: 1;
  border-left-color: rgb(54 180 230 / var(--tw-border-opacity, 1));
}

.border-l-clearwater{
  --tw-border-opacity: 1;
  border-left-color: rgb(62 166 238 / var(--tw-border-opacity, 1));
}

.border-l-dustyrose{
  --tw-border-opacity: 1;
  border-left-color: rgb(234 133 145 / var(--tw-border-opacity, 1));
}

.border-l-lavender{
  --tw-border-opacity: 1;
  border-left-color: rgb(119 87 131 / var(--tw-border-opacity, 1));
}

.border-l-leaf{
  --tw-border-opacity: 1;
  border-left-color: rgb(37 185 108 / var(--tw-border-opacity, 1));
}

.border-l-lime{
  --tw-border-opacity: 1;
  border-left-color: rgb(118 193 67 / var(--tw-border-opacity, 1));
}

.border-l-ocean{
  --tw-border-opacity: 1;
  border-left-color: rgb(43 106 155 / var(--tw-border-opacity, 1));
}

.border-r-gray-150{
  --tw-border-opacity: 1;
  border-right-color: rgb(235 235 235 / var(--tw-border-opacity, 1));
}

.bg-blush{
  --tw-bg-opacity: 1;
  background-color: rgb(255 149 150 / var(--tw-bg-opacity, 1));
}

.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230 / var(--tw-bg-opacity, 1));
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(237 240 240 / var(--tw-bg-opacity, 1));
}

.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1));
}

.bg-lemon{
  --tw-bg-opacity: 1;
  background-color: rgb(247 246 84 / var(--tw-bg-opacity, 1));
}

.bg-mint{
  --tw-bg-opacity: 1;
  background-color: rgb(228 247 246 / var(--tw-bg-opacity, 1));
}

.bg-peach{
  --tw-bg-opacity: 1;
  background-color: rgb(252 237 228 / var(--tw-bg-opacity, 1));
}

.bg-role-am{
  --tw-bg-opacity: 1;
  background-color: rgb(224 106 123 / var(--tw-bg-opacity, 1));
}

.bg-role-as{
  --tw-bg-opacity: 1;
  background-color: rgb(231 185 4 / var(--tw-bg-opacity, 1));
}

.bg-role-ds{
  --tw-bg-opacity: 1;
  background-color: rgb(69 130 178 / var(--tw-bg-opacity, 1));
}

.bg-role-oh{
  --tw-bg-opacity: 1;
  background-color: rgb(1 159 151 / var(--tw-bg-opacity, 1));
}

.bg-role-pm{
  --tw-bg-opacity: 1;
  background-color: rgb(238 139 59 / var(--tw-bg-opacity, 1));
}

.bg-role-sc{
  --tw-bg-opacity: 1;
  background-color: rgb(58 197 234 / var(--tw-bg-opacity, 1));
}

.bg-role-scm{
  --tw-bg-opacity: 1;
  background-color: rgb(118 195 152 / var(--tw-bg-opacity, 1));
}

.bg-role-sm{
  --tw-bg-opacity: 1;
  background-color: rgb(74 155 169 / var(--tw-bg-opacity, 1));
}

.bg-role-smc{
  --tw-bg-opacity: 1;
  background-color: rgb(55 85 119 / var(--tw-bg-opacity, 1));
}

.bg-role-ts{
  --tw-bg-opacity: 1;
  background-color: rgb(99 184 219 / var(--tw-bg-opacity, 1));
}

.bg-seafoam{
  --tw-bg-opacity: 1;
  background-color: rgb(170 237 221 / var(--tw-bg-opacity, 1));
}

.bg-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(204 0 51 / var(--tw-bg-opacity, 1));
}

.bg-teal{
  --tw-bg-opacity: 1;
  background-color: rgb(0 182 170 / var(--tw-bg-opacity, 1));
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-wl-1st{
  --tw-bg-opacity: 1;
  background-color: rgb(242 143 195 / var(--tw-bg-opacity, 1));
}

.bg-wl-2nd{
  --tw-bg-opacity: 1;
  background-color: rgb(234 155 90 / var(--tw-bg-opacity, 1));
}

.bg-wl-3rd{
  --tw-bg-opacity: 1;
  background-color: rgb(227 109 118 / var(--tw-bg-opacity, 1));
}

.bg-wl-4th{
  --tw-bg-opacity: 1;
  background-color: rgb(173 147 195 / var(--tw-bg-opacity, 1));
}

.bg-wl-5th{
  --tw-bg-opacity: 1;
  background-color: rgb(93 156 184 / var(--tw-bg-opacity, 1));
}

.bg-wl-6th{
  --tw-bg-opacity: 1;
  background-color: rgb(95 190 184 / var(--tw-bg-opacity, 1));
}

.bg-wl-7th{
  --tw-bg-opacity: 1;
  background-color: rgb(3 182 170 / var(--tw-bg-opacity, 1));
}

.bg-wl-8th{
  --tw-bg-opacity: 1;
  background-color: rgb(3 182 170 / var(--tw-bg-opacity, 1));
}

.bg-opacity-80{
  --tw-bg-opacity: 0.8;
}

.bg-opacity-90{
  --tw-bg-opacity: 0.9;
}

.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-magenta{
  --tw-gradient-from: #ff4a9d var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 74 157 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-meadow{
  --tw-gradient-from: #7DD693 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(125 214 147 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-coral{
  --tw-gradient-from: #ff926e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 146 110 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-rose{
  --tw-gradient-from: #f44682 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 70 130 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-cherry{
  --tw-gradient-from: #c03 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(204 0 51 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-orange{
  --tw-gradient-to: #ffac65 var(--tw-gradient-to-position);
}

.to-sky{
  --tw-gradient-to: #5BA0F1 var(--tw-gradient-to-position);
}

.to-coral{
  --tw-gradient-to: #ff926e var(--tw-gradient-to-position);
}

.to-rose{
  --tw-gradient-to: #f44682 var(--tw-gradient-to-position);
}

.to-cherry{
  --tw-gradient-to: #c03 var(--tw-gradient-to-position);
}

.via-coral{
  --tw-gradient-stops: var(--tw-gradient-from), #ff926e, var(--tw-gradient-to, rgba(255, 146 , 110, 0));
}

.via-rose{
  --tw-gradient-stops: var(--tw-gradient-from), #f44682, var(--tw-gradient-to, rgba(244, 70, 130, 0));
}

.via-cherry{
  --tw-gradient-stops: var(--tw-gradient-from), #c03, var(--tw-gradient-to, rgba(204, 0, 51, 0));
}

.p-5{
  padding: 20px;
}

.p-\[15px\]{
  padding: 15px;
}

.px-2{
  padding-left: 8px;
  padding-right: 8px;
}

.px-4{
  padding-left: 16px;
  padding-right: 16px;
}

.px-5{
  padding-left: 20px;
  padding-right: 20px;
}

.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}

.px-\[15px\]{
  padding-left: 15px;
  padding-right: 15px;
}

.px-\[30px\]{
  padding-left: 30px;
  padding-right: 30px;
}

.px-\[60px\]{
  padding-left: 60px;
  padding-right: 60px;
}

.px-gutter{
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.py-10{
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-15{
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-2{
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-4{
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-5{
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-6{
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-7{
  padding-top: 28px;
  padding-bottom: 28px;
}

.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[24px\]{
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-\[30px\]{
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-\[58px\]{
  padding-top: 58px;
  padding-bottom: 58px;
}

.py-\[5px\]{
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}

.pb-1{
  padding-bottom: 4px;
}

.pb-10{
  padding-bottom: 40px;
}

.pb-12{
  padding-bottom: 48px;
}

.pb-14{
  padding-bottom: 56px;
}

.pb-15{
  padding-bottom: 60px;
}

.pb-20{
  padding-bottom: 80px;
}

.pb-26{
  padding-bottom: 104px;
}

.pb-3{
  padding-bottom: 12px;
}

.pb-4{
  padding-bottom: 16px;
}

.pb-5{
  padding-bottom: 20px;
}

.pb-6{
  padding-bottom: 24px;
}

.pb-7{
  padding-bottom: 28px;
}

.pb-8{
  padding-bottom: 32px;
}

.pb-\[10px\]{
  padding-bottom: 10px;
}

.pb-\[14px\]{
  padding-bottom: 14px;
}

.pb-\[18px\]{
  padding-bottom: 18px;
}

.pb-\[19px\]{
  padding-bottom: 19px;
}

.pb-\[26px\]{
  padding-bottom: 26px;
}

.pb-\[27px\]{
  padding-bottom: 27px;
}

.pb-\[30px\]{
  padding-bottom: 30px;
}

.pb-\[37px\]{
  padding-bottom: 37px;
}

.pb-\[38px\]{
  padding-bottom: 38px;
}

.pb-\[56px\]{
  padding-bottom: 56px;
}

.pb-\[58px\]{
  padding-bottom: 58px;
}

.pb-\[6px\]{
  padding-bottom: 6px;
}

.pl-2{
  padding-left: 8px;
}

.pt-10{
  padding-top: 40px;
}

.pt-11{
  padding-top: 44px;
}

.pt-13{
  padding-top: 52px;
}

.pt-14{
  padding-top: 56px;
}

.pt-15{
  padding-top: 60px;
}

.pt-3{
  padding-top: 12px;
}

.pt-35{
  padding-top: 140px;
}

.pt-4{
  padding-top: 16px;
}

.pt-5{
  padding-top: 20px;
}

.pt-6{
  padding-top: 24px;
}

.pt-7{
  padding-top: 28px;
}

.pt-8{
  padding-top: 32px;
}

.pt-9{
  padding-top: 36px;
}

.pt-\[142px\]{
  padding-top: 142px;
}

.pt-\[18px\]{
  padding-top: 18px;
}

.pt-\[19px\]{
  padding-top: 19px;
}

.pt-\[23px\]{
  padding-top: 23px;
}

.pt-\[26px\]{
  padding-top: 26px;
}

.pt-\[29px\]{
  padding-top: 29px;
}

.pt-\[30px\]{
  padding-top: 30px;
}

.pt-\[31px\]{
  padding-top: 31px;
}

.pt-\[34px\]{
  padding-top: 34px;
}

.pt-\[38px\]{
  padding-top: 38px;
}

.pt-\[39px\]{
  padding-top: 39px;
}

.pt-\[58px\]{
  padding-top: 58px;
}

.pt-\[59px\]{
  padding-top: 59px;
}

.pt-\[70px\]{
  padding-top: 70px;
}

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

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

.font-latin{
  font-family: "Roboto Condensed", sans-serif;
}

.text-10{
  font-size: 20px;
}

.text-11{
  font-size: 22px;
}

.text-13{
  font-size: 26px;
}

.text-20{
  font-size: 40px;
}

.text-22{
  font-size: 44px;
}

.text-4{
  font-size: 8px;
}

.text-5{
  font-size: 10px;
}

.text-6{
  font-size: 12px;
}

.text-7{
  font-size: 14px;
}

.text-8{
  font-size: 16px;
}

.text-9{
  font-size: 18px;
}

.text-\[11\.5px\]{
  font-size: 11.5px;
}

.text-\[11px\]{
  font-size: 11px;
}

.text-\[13px\]{
  font-size: 13px;
}

.text-\[15px\]{
  font-size: 15px;
}

.text-\[19px\]{
  font-size: 19px;
}

.text-\[27px\]{
  font-size: 27px;
}

.text-\[9px\]{
  font-size: 9px;
}

.font-bold{
  font-weight: 700;
}

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

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

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.italic{
  font-style: italic;
}

.leading-\[1\.3333\]{
  line-height: 1.3333;
}

.leading-\[1\.5714\]{
  line-height: 1.5714;
}

.leading-\[1\.57\]{
  line-height: 1.57;
}

.leading-\[1\.6666\]{
  line-height: 1.6666;
}

.leading-\[1\.6\]{
  line-height: 1.6;
}

.leading-\[1\.714\]{
  line-height: 1.714;
}

.leading-\[1\.8666\]{
  line-height: 1.8666;
}

.leading-\[17px\]{
  line-height: 17px;
}

.leading-\[19px\]{
  line-height: 19px;
}

.leading-\[1\]{
  line-height: 1;
}

.leading-\[21px\]{
  line-height: 21px;
}

.leading-\[42px\]{
  line-height: 42px;
}

.leading-none{
  line-height: 1;
}

.leading-normal{
  line-height: 2;
}

.leading-snug{
  line-height: 1.5;
}

.tracking-0{
  letter-spacing: 0;
}

.tracking-0\.02{
  letter-spacing: 0.02em;
}

.tracking-\[0\.02em\]{
  letter-spacing: 0.02em;
}

.tracking-normal{
  letter-spacing: 0em;
}

.tracking-wide{
  letter-spacing: 0.03em;
}

.tracking-wider{
  letter-spacing: 0.05em;
}

.tracking-widest{
  letter-spacing: 0.08em;
}

.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(132 149 147 / var(--tw-text-opacity, 1));
}

.text-lime{
  --tw-text-opacity: 1;
  color: rgb(118 193 67 / var(--tw-text-opacity, 1));
}

.text-role-am{
  --tw-text-opacity: 1;
  color: rgb(224 106 123 / var(--tw-text-opacity, 1));
}

.text-role-as{
  --tw-text-opacity: 1;
  color: rgb(231 185 4 / var(--tw-text-opacity, 1));
}

.text-role-ds{
  --tw-text-opacity: 1;
  color: rgb(69 130 178 / var(--tw-text-opacity, 1));
}

.text-role-oh{
  --tw-text-opacity: 1;
  color: rgb(1 159 151 / var(--tw-text-opacity, 1));
}

.text-role-pm{
  --tw-text-opacity: 1;
  color: rgb(238 139 59 / var(--tw-text-opacity, 1));
}

.text-role-sc{
  --tw-text-opacity: 1;
  color: rgb(58 197 234 / var(--tw-text-opacity, 1));
}

.text-role-scm{
  --tw-text-opacity: 1;
  color: rgb(118 195 152 / var(--tw-text-opacity, 1));
}

.text-role-sm{
  --tw-text-opacity: 1;
  color: rgb(74 155 169 / var(--tw-text-opacity, 1));
}

.text-role-smc{
  --tw-text-opacity: 1;
  color: rgb(55 85 119 / var(--tw-text-opacity, 1));
}

.text-role-ts{
  --tw-text-opacity: 1;
  color: rgb(99 184 219 / var(--tw-text-opacity, 1));
}

.text-teal{
  --tw-text-opacity: 1;
  color: rgb(0 182 170 / var(--tw-text-opacity, 1));
}

.text-primary{
  --tw-text-opacity: 1;
  color: rgb(204 0 51 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.underline{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.outline{
  outline-style: solid;
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition{
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:underline:hover{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.hover\:opacity-60:hover{
  opacity: 0.6;
}

@media (min-width: 768px){
  .md\:bottom-\[-653px\]{
    bottom: -653px;
  }
  .md\:bottom-\[10px\]{
    bottom: 10px;
  }
  .md\:right-\[18px\]{
    right: 18px;
  }
  .md\:order-2{
    order: 2;
  }
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .md\:my-\[-79px\]{
    margin-top: -79px;
    margin-bottom: -79px;
  }
  .md\:-mt-3{
    margin-top: -12px;
  }
  .md\:-mt-5{
    margin-top: -20px;
  }
  .md\:mb-10{
    margin-bottom: 40px;
  }
  .md\:mb-11{
    margin-bottom: 44px;
  }
  .md\:mb-12{
    margin-bottom: 48px;
  }
  .md\:mb-13{
    margin-bottom: 52px;
  }
  .md\:mb-18{
    margin-bottom: 72px;
  }
  .md\:mb-20{
    margin-bottom: 80px;
  }
  .md\:mb-3{
    margin-bottom: 12px;
  }
  .md\:mb-30{
    margin-bottom: 120px;
  }
  .md\:mb-4{
    margin-bottom: 16px;
  }
  .md\:mb-6{
    margin-bottom: 24px;
  }
  .md\:mb-8{
    margin-bottom: 32px;
  }
  .md\:mb-9{
    margin-bottom: 36px;
  }
  .md\:mb-\[15px\]{
    margin-bottom: 15px;
  }
  .md\:mb-\[30px\]{
    margin-bottom: 30px;
  }
  .md\:mb-\[31px\]{
    margin-bottom: 31px;
  }
  .md\:mb-\[38px\]{
    margin-bottom: 38px;
  }
  .md\:mb-\[46px\]{
    margin-bottom: 46px;
  }
  .md\:mb-\[53px\]{
    margin-bottom: 53px;
  }
  .md\:mb-\[55px\]{
    margin-bottom: 55px;
  }
  .md\:ml-0{
    margin-left: 0px;
  }
  .md\:ml-5{
    margin-left: 20px;
  }
  .md\:ml-\[1em\]{
    margin-left: 1em;
  }
  .md\:ml-auto{
    margin-left: auto;
  }
  .md\:mr-\[-42px\]{
    margin-right: -42px;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-1{
    margin-top: 4px;
  }
  .md\:mt-10{
    margin-top: 40px;
  }
  .md\:mt-13{
    margin-top: 52px;
  }
  .md\:mt-14{
    margin-top: 56px;
  }
  .md\:mt-15{
    margin-top: 60px;
  }
  .md\:mt-16{
    margin-top: 64px;
  }
  .md\:mt-19{
    margin-top: 76px;
  }
  .md\:mt-2{
    margin-top: 8px;
  }
  .md\:mt-20{
    margin-top: 80px;
  }
  .md\:mt-3{
    margin-top: 12px;
  }
  .md\:mt-30{
    margin-top: 120px;
  }
  .md\:mt-4{
    margin-top: 16px;
  }
  .md\:mt-5{
    margin-top: 20px;
  }
  .md\:mt-7{
    margin-top: 28px;
  }
  .md\:mt-8{
    margin-top: 32px;
  }
  .md\:mt-9{
    margin-top: 36px;
  }
  .md\:mt-\[14px\]{
    margin-top: 14px;
  }
  .md\:mt-\[15px\]{
    margin-top: 15px;
  }
  .md\:mt-\[17px\]{
    margin-top: 17px;
  }
  .md\:mt-\[18px\]{
    margin-top: 18px;
  }
  .md\:mt-\[2em\]{
    margin-top: 2em;
  }
  .md\:mt-\[30px\]{
    margin-top: 30px;
  }
  .md\:mt-\[34px\]{
    margin-top: 34px;
  }
  .md\:mt-\[38px\]{
    margin-top: 38px;
  }
  .md\:mt-\[40px\]{
    margin-top: 40px;
  }
  .md\:mt-\[42px\]{
    margin-top: 42px;
  }
  .md\:mt-\[50px\]{
    margin-top: 50px;
  }
  .md\:mt-\[54px\]{
    margin-top: 54px;
  }
  .md\:mt-\[58px\]{
    margin-top: 58px;
  }
  .md\:mt-\[73px\]{
    margin-top: 73px;
  }
  .md\:mt-\[76px\]{
    margin-top: 76px;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-40{
    height: 160px;
  }
  .md\:h-\[158px\]{
    height: 158px;
  }
  .md\:h-\[272px\]{
    height: 272px;
  }
  .md\:h-\[300px\]{
    height: 300px;
  }
  .md\:h-\[60px\]{
    height: 60px;
  }
  .md\:h-\[62px\]{
    height: 62px;
  }
  .md\:h-\[70px\]{
    height: 70px;
  }
  .md\:h-full{
    height: 100%;
  }
  .md\:max-h-\[586px\]{
    max-height: 586px;
  }
  .md\:min-h-\[300px\]{
    min-height: 300px;
  }
  .md\:min-h-\[520px\]{
    min-height: 520px;
  }
  .md\:w-10{
    width: 40px;
  }
  .md\:w-\[94px\]{
    width: 94px;
  }
  .md\:w-\[115px\]{
    width: 115px;
  }
  .md\:w-\[120px\]{
    width: 120px;
  }
  .md\:w-\[129px\]{
    width: 129px;
  }
  .md\:w-\[139px\]{
    width: 139px;
  }
  .md\:w-\[144px\]{
    width: 144px;
  }
  .md\:w-\[145px\]{
    width: 145px;
  }
  .md\:w-\[158px\]{
    width: 158px;
  }
  .md\:w-\[180px\]{
    width: 180px;
  }
  .md\:w-\[186px\]{
    width: 186px;
  }
  .md\:w-\[200px\]{
    width: 200px;
  }
  .md\:w-\[253px\]{
    width: 253px;
  }
  .md\:w-\[260px\]{
    width: 260px;
  }
  .md\:w-\[290px\]{
    width: 290px;
  }
  .md\:w-\[300px\]{
    width: 300px;
  }
  .md\:w-\[360px\]{
    width: 360px;
  }
  .md\:w-\[400px\]{
    width: 400px;
  }
  .md\:w-\[60px\]{
    width: 60px;
  }
  .md\:w-\[720px\]{
    width: 720px;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:flex-shrink-0{
    flex-shrink: 0;
  }
  .md\:translate-y-\[-7px\]{
    --tw-translate-y: -7px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-center{
    justify-content: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-10{
    gap: 40px;
  }
  .md\:gap-5{
    gap: 20px;
  }
  .md\:gap-\[30px\]{
    gap: 30px;
  }
  .md\:gap-x-10{
    column-gap: 40px;
  }
  .md\:gap-x-15{
    column-gap: 60px;
  }
  .md\:gap-x-5{
    column-gap: 20px;
  }
  .md\:gap-x-6{
    column-gap: 24px;
  }
  .md\:gap-x-8{
    column-gap: 32px;
  }
  .md\:gap-x-\[50px\]{
    column-gap: 50px;
  }
  .md\:gap-y-0{
    row-gap: 0px;
  }
  .md\:gap-y-10{
    row-gap: 40px;
  }
  .md\:gap-y-13{
    row-gap: 52px;
  }
  .md\:gap-y-15{
    row-gap: 60px;
  }
  .md\:gap-y-20{
    row-gap: 80px;
  }
  .md\:gap-y-3{
    row-gap: 12px;
  }
  .md\:gap-y-30{
    row-gap: 120px;
  }
  .md\:gap-y-4{
    row-gap: 16px;
  }
  .md\:gap-y-40{
    row-gap: 160px;
  }
  .md\:gap-y-5{
    row-gap: 20px;
  }
  .md\:gap-y-8{
    row-gap: 32px;
  }
  .md\:gap-y-9{
    row-gap: 36px;
  }
  .md\:gap-y-\[10px\]{
    row-gap: 10px;
  }
  .md\:gap-y-\[200px\]{
    row-gap: 200px;
  }
  .md\:gap-y-\[210px\]{
    row-gap: 210px;
  }
  .md\:gap-y-\[29px\]{
    row-gap: 29px;
  }
  .md\:gap-y-\[66px\]{
    row-gap: 66px;
  }
  .md\:rounded-\[10px\]{
    border-radius: 10px;
  }
  .md\:rounded-\[5px\]{
    border-radius: 5px;
  }
  .md\:rounded-half-md{
    border-radius: 5px;
  }
  .md\:rounded-md{
    border-radius: 10px;
  }
  .md\:rounded-sm{
    border-radius: 8px;
  }
  .md\:rounded-xl{
    border-radius: 15px;
  }
  .md\:rounded-l-sm{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .md\:rounded-r-sm{
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .md\:border-t{
    border-top-width: 1px;
  }
  .md\:p-0{
    padding: 0px;
  }
  .md\:p-10{
    padding: 40px;
  }
  .md\:p-15{
    padding: 60px;
  }
  .md\:p-20{
    padding: 80px;
  }
  .md\:p-\[30px\]{
    padding: 30px;
  }
  .md\:px-10{
    padding-left: 40px;
    padding-right: 40px;
  }
  .md\:px-15{
    padding-left: 60px;
    padding-right: 60px;
  }
  .md\:px-20{
    padding-left: 80px;
    padding-right: 80px;
  }
  .md\:px-5{
    padding-left: 20px;
    padding-right: 20px;
  }
  .md\:px-\[30px\]{
    padding-left: 30px;
    padding-right: 30px;
  }
  .md\:px-\[38px\]{
    padding-left: 38px;
    padding-right: 38px;
  }
  .md\:px-\[41px\]{
    padding-left: 41px;
    padding-right: 41px;
  }
  .md\:py-15{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .md\:py-19{
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .md\:py-20{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .md\:py-29{
    padding-top: 116px;
    padding-bottom: 116px;
  }
  .md\:py-30{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .md\:py-6{
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .md\:py-\[24px\]{
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .md\:pb-0{
    padding-bottom: 0px;
  }
  .md\:pb-10{
    padding-bottom: 40px;
  }
  .md\:pb-12{
    padding-bottom: 48px;
  }
  .md\:pb-13{
    padding-bottom: 52px;
  }
  .md\:pb-14{
    padding-bottom: 56px;
  }
  .md\:pb-15{
    padding-bottom: 60px;
  }
  .md\:pb-19{
    padding-bottom: 76px;
  }
  .md\:pb-20{
    padding-bottom: 80px;
  }
  .md\:pb-25{
    padding-bottom: 100px;
  }
  .md\:pb-29{
    padding-bottom: 116px;
  }
  .md\:pb-30{
    padding-bottom: 120px;
  }
  .md\:pb-33{
    padding-bottom: 132px;
  }
  .md\:pb-35{
    padding-bottom: 140px;
  }
  .md\:pb-38{
    padding-bottom: 152px;
  }
  .md\:pb-40{
    padding-bottom: 160px;
  }
  .md\:pb-5{
    padding-bottom: 20px;
  }
  .md\:pb-6{
    padding-bottom: 24px;
  }
  .md\:pb-7{
    padding-bottom: 28px;
  }
  .md\:pb-8{
    padding-bottom: 32px;
  }
  .md\:pb-9{
    padding-bottom: 36px;
  }
  .md\:pb-\[114px\]{
    padding-bottom: 114px;
  }
  .md\:pb-\[11px\]{
    padding-bottom: 11px;
  }
  .md\:pb-\[18px\]{
    padding-bottom: 18px;
  }
  .md\:pb-\[25px\]{
    padding-bottom: 25px;
  }
  .md\:pb-\[26px\]{
    padding-bottom: 26px;
  }
  .md\:pb-\[31px\]{
    padding-bottom: 31px;
  }
  .md\:pb-\[34px\]{
    padding-bottom: 34px;
  }
  .md\:pb-\[35px\]{
    padding-bottom: 35px;
  }
  .md\:pb-\[38px\]{
    padding-bottom: 38px;
  }
  .md\:pb-\[40px\]{
    padding-bottom: 40px;
  }
  .md\:pb-\[42px\]{
    padding-bottom: 42px;
  }
  .md\:pb-\[49px\]{
    padding-bottom: 49px;
  }
  .md\:pb-\[51px\]{
    padding-bottom: 51px;
  }
  .md\:pl-0{
    padding-left: 0px;
  }
  .md\:pr-15{
    padding-right: 60px;
  }
  .md\:pr-7{
    padding-right: 28px;
  }
  .md\:pt-1{
    padding-top: 4px;
  }
  .md\:pt-10{
    padding-top: 40px;
  }
  .md\:pt-11{
    padding-top: 44px;
  }
  .md\:pt-13{
    padding-top: 52px;
  }
  .md\:pt-14{
    padding-top: 56px;
  }
  .md\:pt-16{
    padding-top: 64px;
  }
  .md\:pt-17{
    padding-top: 68px;
  }
  .md\:pt-19{
    padding-top: 76px;
  }
  .md\:pt-2{
    padding-top: 8px;
  }
  .md\:pt-20{
    padding-top: 80px;
  }
  .md\:pt-21{
    padding-top: 84px;
  }
  .md\:pt-22{
    padding-top: 88px;
  }
  .md\:pt-25{
    padding-top: 100px;
  }
  .md\:pt-29{
    padding-top: 116px;
  }
  .md\:pt-3{
    padding-top: 12px;
  }
  .md\:pt-30{
    padding-top: 120px;
  }
  .md\:pt-31{
    padding-top: 124px;
  }
  .md\:pt-4{
    padding-top: 16px;
  }
  .md\:pt-41{
    padding-top: 164px;
  }
  .md\:pt-5{
    padding-top: 20px;
  }
  .md\:pt-52{
    padding-top: 208px;
  }
  .md\:pt-7{
    padding-top: 28px;
  }
  .md\:pt-8{
    padding-top: 32px;
  }
  .md\:pt-\[106px\]{
    padding-top: 106px;
  }
  .md\:pt-\[114px\]{
    padding-top: 114px;
  }
  .md\:pt-\[115px\]{
    padding-top: 115px;
  }
  .md\:pt-\[146px\]{
    padding-top: 146px;
  }
  .md\:pt-\[14px\]{
    padding-top: 14px;
  }
  .md\:pt-\[17px\]{
    padding-top: 17px;
  }
  .md\:pt-\[22px\]{
    padding-top: 22px;
  }
  .md\:pt-\[26px\]{
    padding-top: 26px;
  }
  .md\:pt-\[27px\]{
    padding-top: 27px;
  }
  .md\:pt-\[35px\]{
    padding-top: 35px;
  }
  .md\:pt-\[38px\]{
    padding-top: 38px;
  }
  .md\:pt-\[42px\]{
    padding-top: 42px;
  }
  .md\:pt-\[45px\]{
    padding-top: 45px;
  }
  .md\:pt-\[58px\]{
    padding-top: 58px;
  }
  .md\:pt-\[62px\]{
    padding-top: 62px;
  }
  .md\:pt-\[67px\]{
    padding-top: 67px;
  }
  .md\:pt-\[6px\]{
    padding-top: 6px;
  }
  .md\:pt-\[71px\]{
    padding-top: 71px;
  }
  .md\:pt-\[74px\]{
    padding-top: 74px;
  }
  .md\:pt-\[75px\]{
    padding-top: 75px;
  }
  .md\:pt-\[78px\]{
    padding-top: 78px;
  }
  .md\:pt-\[82px\]{
    padding-top: 82px;
  }
  .md\:pt-\[90px\]{
    padding-top: 90px;
  }
  .md\:text-right{
    text-align: right;
  }
  .md\:text-10{
    font-size: 20px;
  }
  .md\:text-12{
    font-size: 24px;
  }
  .md\:text-13{
    font-size: 26px;
  }
  .md\:text-14{
    font-size: 28px;
  }
  .md\:text-22{
    font-size: 44px;
  }
  .md\:text-23{
    font-size: 46px;
  }
  .md\:text-27{
    font-size: 54px;
  }
  .md\:text-34{
    font-size: 68px;
  }
  .md\:text-35{
    font-size: 70px;
  }
  .md\:text-37{
    font-size: 74px;
  }
  .md\:text-5{
    font-size: 10px;
  }
  .md\:text-6{
    font-size: 12px;
  }
  .md\:text-7{
    font-size: 14px;
  }
  .md\:text-8{
    font-size: 16px;
  }
  .md\:text-9{
    font-size: 18px;
  }
  .md\:leading-\[1\.5652\]{
    line-height: 1.5652;
  }
  .md\:leading-\[1\.714\]{
    line-height: 1.714;
  }
  .md\:leading-\[1\.75\]{
    line-height: 1.75;
  }
  .md\:leading-\[1\.8333\]{
    line-height: 1.8333;
  }
  .md\:leading-\[2\.222\]{
    line-height: 2.222;
  }
  .md\:leading-\[2\.25\]{
    line-height: 2.25;
  }
  .md\:leading-\[64px\]{
    line-height: 64px;
  }
  .md\:leading-loose{
    line-height: 2.2857;
  }
  .md\:leading-normal{
    line-height: 2;
  }
  .md\:tracking-0\.02{
    letter-spacing: 0.02em;
  }
  .md\:tracking-wide{
    letter-spacing: 0.03em;
  }
  .md\:tracking-wider{
    letter-spacing: 0.05em;
  }
}

@media (min-width: 1024px){
  .lg\:flex{
    display: flex;
  }
  .lg\:h-\[540px\]{
    height: 540px;
  }
  .lg\:w-\[40\.35\%\]{
    width: 40.35%;
  }
  .lg\:w-\[41\.4\%\]{
    width: 41.4%;
  }
  .lg\:w-\[53\.1\%\]{
    width: 53.1%;
  }
  .lg\:w-\[54\.385\%\]{
    width: 54.385%;
  }
  .lg\:max-w-\[1111px\]{
    max-width: 1111px;
  }
  .lg\:justify-between{
    justify-content: space-between;
  }
  .lg\:px-20{
    padding-left: 80px;
    padding-right: 80px;
  }
  .lg\:px-25{
    padding-left: 100px;
    padding-right: 100px;
  }
  .lg\:py-\[94px\]{
    padding-top: 94px;
    padding-bottom: 94px;
  }
  .lg\:pt-0{
    padding-top: 0px;
  }
  .lg\:pt-15{
    padding-top: 60px;
  }
  .lg\:pt-44{
    padding-top: 176px;
  }
  .lg\:pt-9{
    padding-top: 36px;
  }
}

@media (min-width: 1280px){
  .xl\:ml-10{
    margin-left: 40px;
  }
  .xl\:ml-6{
    margin-left: 24px;
  }
  .xl\:ml-8{
    margin-left: 32px;
  }
  .xl\:translate-x-\[-50px\]{
    --tw-translate-x: -50px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .xl\:translate-x-\[50px\]{
    --tw-translate-x: 50px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}

@media (min-width: 1366px){
  .\32xl\:-mr-23{
    margin-right: -92px;
  }
}
</pre></body></html>