@charset "UTF-8";
:root {
  --breakpoint-sm: 560px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1366px;
  --inner-slim: 960px;
  --inner-base: 1080px;
  --inner-wide: 1360px;
  --view-width: 100vw;
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  --font-family-latin: "Lato", sans-serif;
  --font-size-body: 16px;
  --line-height-body: 1.777777;
  --color-black: #191919;
  --color-black-rgb: 25 25 25;
  --color-darkgrey: #4b4b4b;
  --color-white: #fff;
  --color-navy: #1e377d;
  --color-blue: #2d5aaf;
  --color-story-red: #dd1c50;
  --color-story-orange: #f48700;
  --color-story-blue: #547abc;
  --color-story-aqua: #00a0e1;
  --color-story-macha: #8cb808;
  --color-story-green: #56b5a5;
  --gutter: 20px;
}

@media (width >= 768px) {
  :root {
    --font-size-body: 18px;
  }
}
:root,
[data-theme=light] {
  --color-text-body: #191919;
  --color-text-body-rgb: 25 25 25;
  --color-primary: #1e377d;
  --color-primary-rgb: 30 55 125;
  --color-secondary: #b9d7ff;
  --color-secondary-rgb: 185 215 255;
  --color-thirdary: #3769cd;
  --color-thirdary-rgb: 55 105 205;
  --color-dark: var(--color-black);
  --bg-body: #fff;
  --bg-body-rgb: 255 255 255;
  --bg-primary: #ebf0f0;
  --bg-secondary: #b9d7ff;
  --bg-thirdary: #ebeef0;
  --bg-grad-primary: 0deg, #84adff 0%, #3769cd 100%;
}

[data-theme=dark] {
  --color-text-body: #fff;
  --color-text-body-rgb: 255 255 255;
  --color-primary: #fff;
  --color-primary-rgb: 255 255 255;
  --color-secondary: #fff;
  --color-secondary-rgb: 255 255 255;
  --color-thirdary: #fff;
  --color-thirdary-rgb: 255 255 255;
  --bg-body: #191919;
  --bg-body-rgb: 25 25 25;
  --bg-primary: #787878;
  --bg-secondary: #b9d7ff;
  --bg-thirdary: #ebeef0;
  --bg-grad-primary: 0deg, #84adff 0%, #3769cd 100%;
  --color-dark: #555;
}

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

html {
  font-size: 0.625em;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

body {
  min-height: 100vh;
}

a {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

picture {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  width: 100%;
  background-color: inherit;
  border: none;
  border-radius: 0;
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

:target {
  scroll-margin-block: 5ex;
}

body {
  background-color: var(--bg-body);
  font: var(--font-size-body)/var(--line-height-body) var(--font-family-body);
  color: var(--color-text-body);
}

body.is-open, body.is-modal-open {
  overflow: hidden;
}

* {
  outline-color: var(--color-primary);
}

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

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(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

: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(> svg) {
  line-height: 0;
}

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

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

.l-fixedbnr {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  width: 90px;
  height: 90px;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
}

.l-fixedbnr.is-fixed {
  opacity: 1;
  visibility: visible;
}

@media (any-hover: hover) {
  .l-fixedbnr.is-fixed:hover {
    opacity: 0.6;
  }
}
.l-fixedbnr.is-fixed.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media (width >= 768px) {
  .l-fixedbnr {
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
  }
}
.l-loading {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  background-color: var(--color-navy);
}

.l-loading__copy {
  flex: 0 0 260px;
  width: 260px;
  opacity: 0;
}

@media (width >= 768px) {
  .l-loading__copy {
    flex: 0 0 550px;
    width: 550px;
  }
}
.l-header {
  display: flex;
  align-items: center;
  padding: 13px 8px;
}

.l-header__logo {
  flex: 0 0 180px;
  width: 180px;
}

.l-header__switcher {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 25px 25px;
  gap: 0 4px;
  margin-left: auto;
}

.l-header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 10px;
}

.l-header__btn[data-theme=light] {
  border: 1px solid var(--color-black);
  color: var(--color-black);
}

.l-header__btn[data-theme=dark] {
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  color: var(--color-white);
}

.l-header__btn:is([data-theme=dark] *)[data-theme=light] {
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-black);
}

.l-header__btn:is([data-theme=dark] *)[data-theme=dark] {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

@media (any-hover: hover) {
  .l-header__btn {
    transition: 0.3s opacity ease-in-out;
  }
  .l-header__btn:hover {
    opacity: 0.6;
  }
}
.l-header__20th {
  flex: 0 0 61px;
  width: 61px;
  margin-left: 10px;
}

@media (width >= 768px) {
  .l-header {
    padding: 16px 30px;
  }
  .l-header__logo {
    flex: 0 0 226px;
    width: 226px;
  }
  .l-header__switcher {
    grid-template-columns: 32px 32px;
    gap: 0 5px;
  }
  .l-header__btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .l-header__20th {
    flex: 0 0 105px;
    width: 105px;
    margin-left: 23px;
  }
}
@media (width < 768px) {
  .l-header__switcher {
    padding-bottom: 10px;
  }
  .l-header__20th {
    padding-bottom: 15px;
  }
}
.l-footer {
  background-color: var(--color-black);
}

.l-footer__copyright {
  font-size: 13px;
  color: var(--color-white);
  text-align: center;
}

.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}

@media (width >= 768px) {
  .l-footer__inner {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 90px;
  }
  .l-footer__sns {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    justify-content: flex-end;
  }
}
@media (width < 768px) {
  .l-footer {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .l-footer__inner {
    display: grid;
    grid-template-columns: 100%;
  }
  .l-footer__sns {
    order: 1;
  }
  .l-footer__copyright {
    order: 2;
    padding-top: 22px;
  }
}
.l-inner-wide, .l-inner, .l-inner-slim {
  margin-inline: auto;
  --section-gutter: var(--gutter);
}

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

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

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

.-nogutter:is(*.l-inner-slim, *.l-inner, *.l-inner-wide) {
  --section-gutter: 0px;
}

@media (width >= 768px) {
  .-nogutter-pc:is(*.l-inner-slim, *.l-inner, *.l-inner-wide) {
    --section-gutter: 0px;
  }
}
@media (width < 768px) {
  .-nogutter-mobile:is(*.l-inner-slim, *.l-inner, *.l-inner-wide) {
    --section-gutter: 0px;
  }
}
.l-main-mission {
  position: relative;
  padding-top: 174px;
  padding-bottom: 130px;
  background-color: #7dd7f0;
}

.l-main-mission__in {
  position: relative;
  z-index: 1;
}

.l-main-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: #7dd7f0 url("../img/shared/img_mobile_mv_missions.jpg") no-repeat center top/cover;
}

.l-main-mission::after {
  content: "";
  position: absolute;
  inset: 400px 0 0;
  z-index: 0;
  background-image: linear-gradient(0deg, #e1f5ff 0%, #7dd7f0 100%);
}

@media (width >= 768px) {
  .l-main-mission {
    padding-top: 260px;
  }
  .l-main-mission::before {
    height: 710px;
    background-image: url("/discover/assets/img/shared/img_mv_missions.jpg");
    background-size: auto 100%;
  }
  .l-main-mission::after {
    top: 710px;
  }
}
.c-round-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-black);
  border: 2px solid currentcolor;
  border-radius: 100vmax;
  font-size: 16px;
  text-decoration: none;
}

.c-round-btn:not(.-flex) {
  width: 200px;
  height: 50px;
}

.c-round-btn.-flex {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  line-height: 1;
}

.c-round-btn.-blue {
  background-color: var(--color-blue);
}

.c-round-btn.-blue:is([data-theme=dark] *) {
  background-color: var(--color-black);
}

@media (any-hover: hover) {
  .c-round-btn {
    transition: 0.3s opacity ease-in-out;
  }
  .c-round-btn:hover {
    opacity: 0.6;
  }
}
.c-close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-blue);
  border-radius: 50%;
  font-family: var(--font-family-latin);
  font-size: 10px;
  font-weight: bold;
  color: var(--color-white);
}

.c-close-btn:is([data-theme=dark] *) {
  background-color: var(--color-dark);
}

.c-close-btn.-bg-transparent {
  background-color: transparent;
}

@media (any-hover: hover) {
  .c-close-btn {
    transition: 0.3s opacity ease-in-out;
  }
  .c-close-btn:hover {
    opacity: 0.6;
  }
}
@media (width >= 768px) {
  .c-close-btn {
    width: 65px;
    height: 65px;
    font-size: 15px;
  }
}
.c-lgvideo-card__video {
  position: relative;
}

.c-lgvideo-card__video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 958/539;
}

.c-lgvideo-card__ttl {
  margin-top: 6px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1667;
}

.c-lgvideo-card__txt {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
}

@media (width >= 768px) {
  .c-lgvideo-card__ttl {
    margin-top: 15px;
  }
  .c-lgvideo-card__txt {
    margin-top: 11px;
    line-height: 1.75;
  }
}
.c-video-card__video {
  line-height: 0;
}

.c-video-card__video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 958/539;
}

.c-video-card__ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
}

@media (width >= 768px) {
  .c-video-card__ttl {
    padding-top: 8px;
    font-size: 18px;
    line-height: 1.5555;
  }
}
@media (width < 768px) {
  .c-video-card {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 25px;
  }
}
.c-mission-card {
  background-color: var(--bg-body);
  border-radius: 15px;
  overflow: hidden;
}

.c-mission-card.-frontline {
  box-shadow: 3px 3px 6px rgba(25, 25, 25, 0.2);
  transition-duration: 0.3s;
  transition-property: opacity;
}

@media (any-hover: hover) {
  .c-mission-card.-frontline:hover {
    opacity: 0.8;
  }
}
.c-mission-card__cont {
  padding: 12px 10px;
}

.c-mission-card__cont:is(.-frontline *) {
  padding-bottom: 20px;
}

.c-mission-card__tags {
  display: grid;
  grid-template-columns: 100%;
  gap: 0.25em 0.5em;
  padding-bottom: 0.65em;
  border-bottom: 2px solid var(--color-text-body);
  font-size: 16px;
}

.c-mission-card__tags li {
  font-size: inherit;
  font-weight: bold;
  line-height: 1.25;
}

.c-mission-card__tags li::before {
  content: "＃";
  display: inline-block;
  font-size: inherit;
  color: var(--color-thirdary);
  padding-inline-end: 5px;
}

.c-mission-card__ttl {
  padding-top: 12px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-thirdary);
  line-height: 1.227;
}

.c-mission-card__txts {
  position: relative;
  height: calc(5em * var(--line-height-body) + 0.5em + 18px);
  padding-top: 6px;
  padding-bottom: 18px;
  overflow: hidden;
}

.c-mission-card__txts p {
  font-weight: 500;
}

.c-mission-card__txts::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 165px;
  background: linear-gradient(0deg, rgb(var(--bg-body-rgb)/100%) 0%, rgb(var(--bg-body-rgb)/100%) 5%, rgb(var(--bg-body-rgb)/0%) 100%);
}

.c-mission-card__more {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: var(--color-blue);
  border: 2px solid var(--color-white);
  border-radius: 50%;
  translate: -50% 0;
}

.c-mission-card__more::before {
  content: "MORE";
  font-family: var(--font-family-latin);
  font-size: 12px;
  color: var(--color-white);
}

.c-mission-card__more:is([data-theme=dark] *) {
  background-color: var(--color-dark);
}

@media (width >= 768px) {
  .c-mission-card__cont {
    padding: 7px 24px;
  }
  .c-mission-card__cont:is(.-frontline *) {
    padding-bottom: 24px;
  }
  .c-mission-card__tags {
    gap: 0 0.5em;
    padding-bottom: 0.5em;
    font-size: 20px;
  }
  .c-mission-card__tags li::before {
    padding-inline-end: 0.65em;
  }
  .c-mission-card__ttl {
    padding-top: 12px;
    font-size: 22px;
  }
  .c-mission-card__txts {
    height: calc(5em * var(--line-height-body) + 0.5em);
    padding-top: 10px;
  }
  .c-mission-card__txts::after {
    height: 137px;
    background: linear-gradient(0deg, rgb(var(--bg-body-rgb)/100%) 0%, rgb(var(--bg-body-rgb)/100%) 30%, rgb(var(--bg-body-rgb)/0%) 100%);
  }
  .c-mission-card__more {
    bottom: 13px;
    width: 65px;
  }
  .c-mission-card__more::before {
    font-size: 15px;
  }
}
@media (width < 768px) {
  .c-mission-card__txts p {
    line-height: 1.75;
  }
}
.c-20th-card {
  position: relative;
  background-color: var(--color-thirdary);
  border-radius: 15px;
}

.c-20th-card:is([data-theme=dark] *) {
  background-color: var(--color-black);
}

.c-20th-card__thumb {
  position: relative;
}

.c-20th-card__thumb img {
  border-radius: 15px 15px 0 0;
}

.c-20th-card__tags {
  position: absolute;
  top: 10px;
  left: 10px;
}

.c-20th-card__tags li {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 8px;
  background-color: var(--bg-body);
  border: 2px solid var(--color-thirdary);
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

.c-20th-card__tags li + li {
  margin-top: 4px;
}

.c-20th-card__tags li small {
  font-size: 10px;
}

.c-20th-card__tags li.-blue {
  background-color: var(--color-thirdary);
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.c-20th-card__tags li.-blue:is([data-theme=dark] *) {
  background-color: var(--color-dark);
}

.c-20th-card__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 8px;
  background: linear-gradient(0deg, rgb(var(--color-thirdary-rgb)/100%) 0%, rgb(var(--color-thirdary-rgb)/100%) 50%, rgb(var(--color-thirdary-rgb)/0%) 100%);
}

.c-20th-card__copy p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  line-height: 1.2222;
  margin-inline: auto;
}

.c-20th-card__copy p::before, .c-20th-card__copy p::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
}

.c-20th-card__copy p::before {
  top: -8px;
  left: 0;
  border-top: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
}

.c-20th-card__copy p::after {
  bottom: -8px;
  right: 0;
  border-bottom: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}

.c-20th-card__copy:is([data-theme=dark] *) {
  background: linear-gradient(0deg, rgb(var(--color-black-rgb)/100%) 0%, rgb(var(--color-black-rgb)/100%) 50%, rgb(var(--color-black-rgb)/0%) 100%);
}

.c-20th-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px 0;
  color: var(--color-white);
}

.c-20th-card__dept {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.c-20th-card__name {
  font-size: 20px;
  font-weight: 500;
}

.c-20th-card__name small {
  font-size: 15px;
  font-weight: 500;
}

.c-20th-card__txts {
  height: 0;
  margin: 33px 12px 0;
  overflow: hidden;
  color: var(--color-white);
}

.c-20th-card__txtin {
  padding-top: 6px;
  padding-bottom: 47px;
  border-top: 2px solid currentcolor;
}

.c-20th-card__btn {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 0;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: var(--bg-body);
  border: 2px solid currentcolor;
  border-radius: 50%;
  font-size: 15px;
  color: var(--color-thirdary);
  translate: -50% 50%;
}

.c-20th-card__btn::before {
  content: "MORE";
  font-family: var(--font-family-latin);
  font-weight: bold;
}

.c-20th-card__btn.is-open::before {
  content: "CLOSE";
}

@media (width >= 768px) {
  .c-20th-card__thumb img {
    width: 100%;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-20th-card__thumb picture {
    width: 100%;
    height: 100%;
  }
  .c-20th-card__tags li {
    padding: 5px 8px;
    font-size: 15px;
  }
  .c-20th-card__tags li small {
    font-size: 12px;
  }
  .c-20th-card__tags li + li {
    margin-top: 6px;
  }
  .c-20th-card__copy {
    padding-top: 10px;
    padding-bottom: 5px;
    background: linear-gradient(0deg, rgb(var(--color-thirdary-rgb)/100%) 0%, rgb(var(--color-thirdary-rgb)/100%) 20%, rgb(var(--color-thirdary-rgb)/0%) 100%);
  }
  .c-20th-card__copy p {
    padding: 0 16px;
    font-size: 22px;
    line-height: 1.272727;
  }
  .c-20th-card__copy p::before, .c-20th-card__copy p::after {
    width: 15px;
    height: 15px;
  }
  .c-20th-card__copy p::before {
    top: 0;
    left: 0;
  }
  .c-20th-card__copy p::after {
    bottom: 0;
    right: 0;
  }
  .c-20th-card__copy:is([data-theme=dark] *) {
    background: linear-gradient(0deg, rgb(var(--color-black-rgb)/100%) 0%, rgb(var(--color-black-rgb)/100%) 20%, rgb(var(--color-black-rgb)/0%) 100%);
  }
  .c-20th-card__info {
    padding: 7px 25px 0;
  }
  .c-20th-card__dept {
    font-size: 15px;
    line-height: 1.2;
  }
  .c-20th-card__name {
    font-size: 28px;
  }
  .c-20th-card__name small {
    font-size: 20px;
  }
  .c-20th-card__txts {
    margin: 25px 25px 0;
  }
  .c-20th-card__txtin {
    padding-top: 16px;
    padding-bottom: 84px;
    line-height: 1.777777;
  }
}
.c-hgrp-num__num span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1/1;
  border: 2px solid currentcolor;
  border-radius: 50%;
  font-family: var(--font-family-latin);
  font-size: 22px;
  font-weight: bold;
  margin-inline: auto;
}

.c-hgrp-num__num::after {
  content: "";
  display: block;
  width: 2px;
  height: 9px;
  background-color: currentcolor;
  border-radius: 0 50% 50% 0%;
  margin-inline: auto;
}

.c-hgrp-num__ttl {
  padding-top: 8px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

@media (width >= 768px) {
  .c-hgrp-num__num span {
    width: 65px;
    font-size: 28px;
  }
  .c-hgrp-num__ttl {
    padding-top: 8px;
    font-size: 36px;
  }
}
.c-modal {
  position: relative;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  transition-property: visibility, opacity;
  --space: 20px;
}

.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.c-modal__overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: var(--space);
  background: rgba(0, 0, 0, 0.5);
  will-change: transform;
}

.c-modal__container {
  width: 100%;
  max-width: 960px;
  max-height: calc(100vh - var(--space, 0px) * 2);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.c-modal__container::-webkit-scrollbar {
  display: none;
}

.c-mission-modal {
  max-width: 800px;
  background-color: var(--bg-body);
  border-radius: 15px;
  margin-inline: auto;
}

.c-mission-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.7em;
  font-size: 16px;
}

.c-mission-modal__tags li {
  font-size: inherit;
  font-weight: bold;
  line-height: 1.5625;
}

.c-mission-modal__tags li::before {
  content: "＃";
  display: inline-block;
  font-size: inherit;
  color: var(--color-thirdary);
  padding-inline-end: 2px;
}

.c-mission-modal__copy {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-thirdary);
  line-height: 1.3333;
}

.c-mission-modal__txt p {
  font-weight: 500;
}

.c-mission-modal__name {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}

.c-mission-modal__name span {
  font-size: 20px;
  font-weight: 500;
}

.c-mission-modal__dept {
  font-size: 15px;
  font-weight: 500;
}

.c-mission-modal__close {
  margin-left: auto;
}

@media (width >= 768px) {
  .c-mission-modal__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 40px;
  }
  .c-mission-modal__hdr {
    flex: 0 0 100%;
    width: 100%;
    padding-bottom: 23px;
  }
  .c-mission-modal__profile {
    flex: 0 0 calc(50% - 20px);
    max-width: 350px;
  }
  .c-mission-modal__cont {
    flex: 0 0 calc(50% - 20px);
    max-width: 350px;
  }
  .c-mission-modal__tags {
    font-size: 20px;
  }
  .c-mission-modal__tags li {
    line-height: 1.25;
  }
  .c-mission-modal__tags li::before {
    padding-inline-end: 0.65em;
  }
  .c-mission-modal__copy {
    font-size: 24px;
  }
  .c-mission-modal__mbclose {
    display: none;
  }
}
@media (width < 768px) {
  .c-mission-modal__profile {
    padding-top: 10px;
  }
  .c-mission-modal__tags {
    padding-bottom: 0.65em;
    border-bottom: 2px solid var(--color-text-body);
  }
  .c-mission-modal__close {
    translate: 5px 0;
  }
  .c-mission-modal__thumb {
    padding: 10px 20px 0;
  }
  .c-mission-modal__dept {
    padding-top: 20px;
  }
  .c-mission-modal__cont {
    padding-top: 10px;
  }
  .c-mission-modal__mbclose {
    margin-inline: auto;
    translate: 0 calc(50% + 15px);
  }
}
.c-story-modal {
  border-radius: 15px;
}

.c-story-modal__header {
  display: flex;
}

.c-story-modal__dept {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  padding: 6px 3px;
  background-color: #fff;
  border-radius: 100vmax;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.c-story-modal__copy {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.c-story-modal__cont {
  position: relative;
  z-index: 0;
  max-width: 800px;
  margin-inline: auto;
  color: var(--color-white);
}

.c-story-modal__cont figure {
  text-align: center;
}

@media (width >= 768px) {
  .c-story-modal__mbclose {
    display: none;
  }
  .c-story-modal__header {
    justify-content: space-between;
    align-items: flex-start;
  }
  .c-story-modal__cont {
    position: relative;
    -moz-column-gap: 100px;
         column-gap: 100px;
    -moz-column-count: 2;
         column-count: 2;
  }
  .c-story-modal__cont::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    bottom: 0;
    width: 2px;
    background-color: var(--color-white);
  }
  .c-story-modal__dept {
    padding: 0 1.2em;
    font-size: 22px;
  }
}
@media (width < 768px) {
  .c-story-modal__copy {
    padding: 17px 0 13px;
    text-align: center;
  }
  .c-story-modal__copy img {
    width: 100%;
    max-width: 320px;
  }
  .c-story-modal__mbclose {
    margin-inline: auto;
    translate: 0 calc(50% + 15px);
  }
  .c-story-modal__header {
    position: relative;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 60px;
  }
  .c-story-modal__close {
    position: absolute;
    right: 0;
  }
}
.c-gallery-modal {
  max-width: 630px;
  margin-inline: auto;
}

.c-gallery-modal__close {
  margin-bottom: 10px;
  border: 2px solid var(--color-white);
  margin-inline-start: auto;
}

.c-gallery-modal__inner {
  max-width: 500px;
  margin-inline: auto;
}

.c-slider {
  position: relative;
}

.c-slider .swiper-slide {
  width: 280px;
}

.c-slider__prev, .c-slider__next {
  display: none;
}

@media (width >= 768px) {
  .c-slider .swiper-slide {
    width: 400px;
  }
  .c-slider__prev, .c-slider__next {
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: var(--color-blue);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    font-size: 30px;
    color: var(--color-white);
  }
  .c-slider__prev.-grey, .c-slider__next.-grey {
    background-color: #d7d7d7;
    border-color: var(--color-black);
    color: var(--color-black);
  }
  .c-slider__prev.-grey:is([data-theme=dark] *), .c-slider__next.-grey:is([data-theme=dark] *) {
    background-color: var(--color-black);
    border-color: var(--color-white);
    color: var(--color-white);
  }
  .c-slider__prev:is([data-theme=dark] *), .c-slider__next:is([data-theme=dark] *) {
    background-color: var(--color-dark);
  }
  .c-slider__prev {
    left: 0;
    translate: 0 -50%;
  }
  .c-slider__next {
    right: 0;
    translate: 0 -50%;
  }
}
@media (width >= 1080px) {
  .c-slider__prev {
    translate: -50% -50%;
  }
  .c-slider__next {
    translate: 50% -50%;
  }
}
.c-en-ttl {
  font-family: var(--font-family-latin);
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
}

.c-en-ttl span {
  font-weight: normal;
  letter-spacing: inherit;
}

.c-en-ttl b {
  font-weight: 900;
  letter-spacing: inherit;
  padding-inline-start: 0.5em;
}

@media (width >= 768px) {
  .c-en-ttl {
    font-size: 40px;
  }
}
.c-en02-ttl {
  padding-bottom: 2px;
  border-bottom: 2px solid currentcolor;
  font-family: var(--font-family-latin);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.c-en02-ttl.-border-white {
  border-bottom-color: var(--color-white);
}

@media (width >= 768px) {
  .c-en02-ttl {
    padding-bottom: 11px;
    font-size: 35px;
  }
}
.c-mission-ttl {
  margin-bottom: 22px;
  text-align: center;
}

.c-mission-ttl svg {
  width: 174px;
  color: var(--color-black);
  translate: -12px 0;
}

@media (width >= 768px) {
  .c-mission-ttl {
    margin-bottom: -5px;
  }
  .c-mission-ttl svg {
    width: 300px;
    translate: -31px 0;
  }
}
.p-home-mv {
  position: relative;
  margin-top: 31px;
}

.p-home-mv__slider {
  --swiper-wrapper-transition-timing-function: linear;
  pointer-events: none;
}

.p-home-mv__slider .swiper-slide {
  width: 153px;
}

.p-home-mv__txt {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
}

.p-home-mv__txt figure {
  flex: 0 0 81.333%;
  width: 81.333%;
}

@media (width >= 768px) {
  .p-home-mv {
    position: relative;
    margin-top: 12px;
  }
  .p-home-mv__slider {
    position: relative;
    z-index: 0;
  }
  .p-home-mv__slider .swiper-slide {
    width: 240px;
  }
  .p-home-mv__slider:has(.-bottom) {
    margin-top: 104px;
  }
  .p-home-mv__txt {
    position: absolute;
    inset: 0;
  }
  .p-home-mv__txt figure {
    flex: 0 0 561px;
    width: 561px;
  }
}
@media (width < 768px) {
  .p-home-mv__txt {
    margin: -2% 0 -3.6%;
  }
}
.p-home-start {
  position: relative;
  z-index: 1;
  margin-top: 33px;
  font-family: var(--font-family-latin);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

.p-home-start::after {
  content: "";
  display: block;
  width: 1px;
  height: 144px;
  margin-top: 5px;
  background-image: linear-gradient(180deg, var(--color-black) 0%, var(--color-black) 50%, var(--color-white) 70%, var(--color-white) 100%);
  margin-inline: auto;
}

.p-home-start:is([data-theme=dark] *)::after {
  background-color: var(--color-white);
  background-image: none;
}

@media (width >= 768px) {
  .p-home-start {
    margin-top: 13px;
    font-size: 24px;
  }
  .p-home-start::after {
    height: 157px;
    margin-top: 5px;
    background-image: linear-gradient(180deg, var(--color-black) 0%, var(--color-black) 55%, var(--color-white) 100%);
  }
}
.p-home-movies {
  position: relative;
  z-index: 0;
  padding-top: 48px;
  padding-bottom: 145px;
  margin-top: -48px;
  background-color: var(--color-dark);
}

.p-home-movies__main {
  margin-top: 10px;
}

.p-home-movies__others {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px 0;
  padding: 31px 0 29px;
  margin: 34px 0 31px;
  border-top: 1px solid currentcolor;
  border-bottom: 1px solid currentcolor;
}

@media (width >= 768px) {
  .p-home-movies {
    padding-top: 54px;
    padding-bottom: 142px;
    margin-top: -44px;
  }
  .p-home-movies__main {
    margin-top: 20px;
  }
  .p-home-movies__others {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 45px 0 25px;
    margin: 59px 0 29px;
  }
}
@media (width < 768px) {
  .p-home-movies .c-lgvideo-card__video {
    margin-inline: calc(-1 * var(--gutter));
  }
  .p-home-movies__others {
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
  }
  .p-home-movies__others .c-video-card {
    margin-inline-end: calc(-0.5 * var(--gutter));
  }
}
.p-home-tabs {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr 1fr;
}

.p-home-tab {
  display: flex;
  position: relative;
  justify-content: center;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.p-home-tab span {
  position: relative;
  z-index: 1;
  padding-top: 11px;
  padding-bottom: 12px;
  font-size: 15px;
  color: rgb(var(--color-text-body-rgb)/50%);
}

.p-home-tab.is-active {
  padding-top: 25px;
  margin-top: -25px;
  background-color: var(--bg-body);
}

.p-home-tab.is-active span {
  position: relative;
  z-index: 1;
  font-weight: bold;
  color: var(--color-text-body);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 5px;
  text-underline-offset: 9px;
}

.p-home-tab:not(.is-active)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 40px;
}

.p-home-tab:is(.p-home-tabs *:nth-child(1)):not(.is-active) {
  border-radius: 0 0 15px;
}

.p-home-tab:is(.p-home-tabs *:nth-child(1)):not(.is-active)::before {
  right: 0;
  background-image: linear-gradient(-90deg, #dce1e1 0%, var(--bg-primary) 100%);
}

.p-home-tab:is(.p-home-tabs *:nth-child(1)):not(.is-active):is([data-theme=dark] *)::before {
  background-image: linear-gradient(-90deg, #646464 0%, var(--bg-primary) 100%);
}

.p-home-tab:is(.p-home-tabs *:nth-child(1)).is-active {
  border-radius: 0 15px 0 0;
}

.p-home-tab:is(.p-home-tabs *:nth-child(2)):not(.is-active) {
  border-radius: 0 0 0 15px;
}

.p-home-tab:is(.p-home-tabs *:nth-child(2)):not(.is-active)::before {
  left: 0;
  background-image: linear-gradient(90deg, #dce1e1 0%, var(--bg-primary) 100%);
}

.p-home-tab:is(.p-home-tabs *:nth-child(2)):not(.is-active):is([data-theme=dark] *)::before {
  background-image: linear-gradient(90deg, #646464 0%, var(--bg-primary) 100%);
}

.p-home-tab:is(.p-home-tabs *:nth-child(2)).is-active {
  border-radius: 15px 0 0;
}

@media (width >= 768px) {
  .p-home-tab span {
    flex: 1 1 auto;
    max-width: 460px;
    padding-top: 10px;
    padding-bottom: 15px;
    font-size: 25px;
  }
  .p-home-tab.is-active {
    padding-top: 20px;
    margin-top: -20px;
  }
  .p-home-tab.is-active span {
    text-underline-offset: 12px;
  }
  .p-home-tab:is(.p-home-tabs *:nth-child(1)) {
    justify-content: flex-end;
  }
  .p-home-tab:is(.p-home-tabs *:nth-child(2)) {
    justify-content: flex-start;
  }
}
.p-home-order {
  display: grid;
  grid-template-columns: 100%;
}

.p-home-order[data-order=student] .p-home-order__student {
  order: 1;
}

.p-home-order[data-order=student] .p-home-order__parent {
  order: 2;
}

.p-home-order[data-order=parent] .p-home-order__student {
  order: 2;
}

.p-home-order[data-order=parent] .p-home-order__parent {
  order: 1;
}

.p-home-story {
  padding-top: 70px;
  padding-bottom: 92px;
}

.p-home-story__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 11px;
  margin-top: 56px;
}

.p-home-story__copy {
  margin-top: 2px;
}

@media (any-hover: hover) {
  .p-home-story__btn {
    transition: 0.3s opacity ease-in-out;
  }
  .p-home-story__btn:hover {
    opacity: 0.6;
  }
}
@media (width >= 768px) {
  .p-home-story {
    padding-top: 110px;
    padding-bottom: 121px;
  }
  .p-home-story__copy {
    margin-top: -6px;
  }
  .p-home-story__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 16px;
    margin-top: 65px;
  }
}
.p-home-mission {
  padding-top: 20px;
  padding-bottom: 60px;
  background-image: linear-gradient(var(--bg-grad-primary));
}

.p-home-mission:is([data-theme=dark] *) {
  background: var(--color-dark);
  background-image: none;
}

.p-home-mission__copy {
  padding-top: 30px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
}

.p-home-mission__txt {
  padding-top: 12px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.p-home-mission__slider {
  margin-top: 30px;
}

@media (width >= 768px) {
  .p-home-mission {
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .p-home-mission__copy {
    padding-top: 55px;
    font-size: 40px;
  }
  .p-home-mission__txt {
    padding-top: 12px;
    font-size: 18px;
  }
  .p-home-mission__slider {
    margin-top: 30px;
  }
}
.p-home-20th {
  padding-top: 20px;
  padding-bottom: 92px;
}

.p-home-20th__logo {
  width: 164px;
  padding-top: 30px;
  margin-inline: auto;
}

.p-home-20th__cards {
  display: grid;
  grid-template-columns: 100%;
  gap: 48px 0;
  padding-top: 24px;
}

@media (width >= 768px) {
  .p-home-20th {
    padding-top: 56px;
    padding-bottom: 199px;
  }
  .p-home-20th__logo {
    width: 335px;
    padding-top: 47px;
  }
  .p-home-20th__cards {
    gap: 64px 20px;
    padding-top: 57px;
  }
}
@media (width >= 910px) {
  .p-home-20th__cards {
    grid-template-columns: 1fr 1fr;
  }
}
.p-home-data {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (width >= 768px) {
  .p-home-data {
    padding-top: 62px;
    padding-bottom: 120px;
  }
}
.p-home-concept {
  padding-top: 22px;
  background: url("/discover/assets/img/home/concept_mobile_bg.jpg") no-repeat center top/cover;
}

.p-home-concept__ttl {
  border-bottom: 2px solid currentcolor;
  font-family: var(--font-family-latin);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.p-home-concept__copy {
  padding-top: 18px;
  text-align: center;
  margin-inline: -5px;
}

.p-home-concept__copy img {
  display: inline-block;
  width: 100%;
}

.p-home-concept__box {
  margin-top: 20px;
}

.p-home-concept__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
  margin-top: 10px;
}

.p-home-concept__img {
  margin-top: 32px;
  pointer-events: none;
  margin-inline: calc(-1 * var(--gutter));
}

@media (width >= 768px) {
  .p-home-concept {
    padding-top: 36px;
    background-image: url("/discover/assets/img/home/concept_bg.jpg");
  }
  .p-home-concept__ttl {
    padding-bottom: 10px;
    font-size: 24px;
  }
  .p-home-concept__copy {
    padding-top: 48px;
    margin-inline: 0;
  }
  .p-home-concept__copy img {
    translate: 2% 0;
    max-width: 816px;
  }
  .p-home-concept__box {
    width: 50%;
    margin-top: -3%;
    margin-left: auto;
  }
  .p-home-concept__box p {
    letter-spacing: -0.02em;
    line-height: 1.66666;
  }
  .p-home-concept__btns {
    gap: 0 22px;
    margin-top: 3.6%;
  }
  .p-home-concept__img {
    width: 88.8888%;
    margin-top: -21%;
    margin-inline: 0;
  }
}
.p-gallery-main {
  position: relative;
  padding-top: 70px;
  padding-bottom: 40px;
  background-image: linear-gradient(180deg, #3769cd 0%, #84adff 100%);
}

.p-gallery-main__in {
  position: relative;
  z-index: 1;
}

.p-gallery-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1400px);
  height: 100%;
  background: url("/discover/assets/img/gallery/bg.png") no-repeat center top/100% auto;
  translate: -50% 0%;
  mix-blend-mode: multiply;
}

@media (width >= 768px) {
  .p-gallery-main {
    padding-top: 95px;
    padding-bottom: 60px;
  }
}
.p-gallery-ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.p-gallery-ttl::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background-color: var(--color-white);
  margin-inline: auto;
}

@media (width >= 768px) {
  .p-gallery-ttl {
    font-size: 28px;
  }
  .p-gallery-ttl::after {
    width: 2px;
    height: 50px;
    margin-top: 4px;
  }
}
.p-gallery-copy {
  position: relative;
  width: 305px;
  padding-top: 14px;
  margin-bottom: -14px;
  opacity: 0.35;
  margin-inline: auto;
}

@media (width >= 768px) {
  .p-gallery-copy {
    width: 650px;
    padding-top: 27px;
    margin-bottom: -28px;
  }
}
:root:not([data-theme=dark]) .light\:hidden {
  display: none;
}

[data-theme=dark] .dark\:hidden {
  display: none;
}

[aria-hidden=true] {
  display: none;
}

.ff-latin {
  font-family: var(--font-family-latin);
}

.relative{
  position: relative;
}

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

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

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

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

.block{
  display: block;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

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

.resize{
  resize: both;
}

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

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

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

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

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

.overflow-hidden{
  overflow: hidden;
}

.rounded{
  border-radius: 5px;
}

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

.rounded-lg{
  border-radius: 15px;
}

.border-2{
  border-width: 2px;
}

.border-solid{
  border-style: solid;
}

.border-white{
  border-color: var(--color-white);
}

.bg-bgbody{
  background-color: var(--bg-body);
}

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

.bg-secondary{
  background-color: var(--color-secondary);
}

.bg-story-aqua{
  background-color: var(--color-story-aqua);
}

.bg-story-blue{
  background-color: var(--color-story-blue);
}

.bg-story-green{
  background-color: var(--color-story-green);
}

.bg-story-macha{
  background-color: var(--color-story-macha);
}

.bg-story-orange{
  background-color: var(--color-story-orange);
}

.bg-story-red{
  background-color: var(--color-story-red);
}

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

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

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

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

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

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

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

.font-black{
  font-weight: 900;
}

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

.text-\[inherit\]{
  color: inherit;
}

.text-primary{
  color: var(--color-primary);
}

.text-secondary{
  color: var(--color-secondary);
}

.text-story-aqua{
  color: var(--color-story-aqua);
}

.text-story-blue{
  color: var(--color-story-blue);
}

.text-story-green{
  color: var(--color-story-green);
}

.text-story-macha{
  color: var(--color-story-macha);
}

.text-story-orange{
  color: var(--color-story-orange);
}

.text-story-red{
  color: var(--color-story-red);
}

.text-thirdary{
  color: var(--color-thirdary);
}

.text-white{
  color: var(--color-white);
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300{
  transition-duration: 300ms;
}

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

.hover\:opacity-80:hover{
  opacity: 0.8;
}

.dark\:hidden:is([data-theme="dark"] *){
  display: none;
}

.dark\:bg-black:is([data-theme="dark"] *){
  background-color: var(--color-black);
}

.dark\:bg-dark:is([data-theme="dark"] *){
  background-color: var(--color-dark);
}

@media (min-width: 768px){
  .md\:mt-\[-26px\]{
    margin-top: -26px;
  }
  .md\:mt-\[-8px\]{
    margin-top: -8px;
  }
  .md\:mt-\[40px\]{
    margin-top: 40px;
  }
  .md\:block{
    display: block;
  }
  .md\:hidden{
    display: none;
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:gap-\[30px\]{
    gap: 30px;
  }
  .md\:px-\[20px\]{
    padding-left: 20px;
    padding-right: 20px;
  }
  .md\:pb-\[27px\]{
    padding-bottom: 27px;
  }
  .md\:pb-\[47px\]{
    padding-bottom: 47px;
  }
  .md\:pb-\[60px\]{
    padding-bottom: 60px;
  }
  .md\:pb-\[7px\]{
    padding-bottom: 7px;
  }
  .md\:pl-\[40px\]{
    padding-left: 40px;
  }
  .md\:pt-\[110px\]{
    padding-top: 110px;
  }
  .md\:pt-\[14px\]{
    padding-top: 14px;
  }
  .md\:pt-\[15px\]{
    padding-top: 15px;
  }
  .md\:pt-\[20px\]{
    padding-top: 20px;
  }
  .md\:pt-\[33px\]{
    padding-top: 33px;
  }
  .md\:pt-\[57px\]{
    padding-top: 57px;
  }
  .md\:text-center{
    text-align: center;
  }
}

@media (min-width: 1024px){
  .lg\:gap-\[60px\]{
    gap: 60px;
  }
}
/*# sourceMappingURL=style.css.map */
