@charset "UTF-8";
/* ---------------------------------

base

--------------------------------- */
:root {
  --layout-width-inner: 1100px;
  --layout-width-inner-lg: 1260px;
  --z-index-modal: 10000;
  --z-index-hamburger: 1000;
  --z-index-drawer: 100;
  --z-index-header: 10;
  --z-index-entry: 5;
  --font-base: "Zen Kaku Gothic New", sans-serif;
  --font-sub: "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-en: "Manrope", sans-serif;
  --color-primary: #0068B5;
  --color-secondary: #5EAAE2;
  --color-black: #000;
  --color-black02: #041036;
  --color-white: #FFF;
  --color-orange: #FF5532;
  --color-orange02: #ED6D1F;
  --color-yellow: #F7B000;
  --color-lightgreen: #ABCD03;
  --color-green: #53B3A7;
  --color-green02: #00A84D;
  --color-navy: #005493;
  --bg-color-lightblue: #F2F6FF;
  --bg-color-green: #4BA79B;
  --bg-color-gray: #EFEFEF;
  --bg-color-gray02: #EBEBEB;
  --bg-color-beige: #F7F6F2;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  padding: 0;
  margin: 0;
  font-size: inherit;
  vertical-align: baseline;
  border: 0;
}

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

body {
  font-family: var(--font-base);
  font-size: 1.5em;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0.04em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

li, dd {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

[type=checkbox],
[type=radio] {
  position: absolute;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* ---------------------------------

Layout

--------------------------------- */
/*
    l-wrapper
--------------------------------- */
.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*
    l-header
--------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  padding-block: 0.9375rem;
  background-color: var(--color-white);
}

.l-header__inner {
  display: flex;
  column-gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 30px;
}

@media (max-width: 767px) {
  .l-header {
    padding-block: 0;
  }
  .l-header__inner {
    padding-inline: 15px 0;
  }
}
/*
    l-main
--------------------------------- */
.l-main {
  flex: 1;
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .l-main {
    margin-top: 50px;
  }
}
/*
    l-inner
--------------------------------- */
.l-inner {
  width: 100%;
  max-width: var(--layout-width-inner);
  padding-inline: 30px;
  margin-inline: auto;
}

.l-inner.l-inner--lg {
  max-width: var(--layout-width-inner-lg);
}

/* ---------------------------------

Component

--------------------------------- */
/*  
    c-square-button
--------------------------------- */
.c-square-button {
  display: inline-grid;
  place-items: center;
  min-width: 9.375rem;
  min-height: 3.125rem;
  padding: 0.5em 1em;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 7px;
  transition: opacity 0.3s;
}
.c-square-button:focus-visible {
  opacity: 0.7;
}

.c-square-button.c-square-button--type01 {
  background-color: var(--color-orange);
}

.c-square-button.c-square-button--type02 {
  background-color: var(--color-navy);
}

@media (hover: hover) and (pointer: fine) {
  .c-square-button:hover {
    opacity: 0.7;
  }
}
/*
    c-round-button
--------------------------------- */
.c-round-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 27.375rem;
  min-height: 4.625rem;
  padding: 0.5em 3em;
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 9999px;
  transition: opacity 0.3s;
}
.c-round-button:focus-visible {
  opacity: 0.7;
}

.course01 .c-round-button {
  background-color: var(--color-primary);
}

.course02 .c-round-button {
  background-color: var(--color-secondary);
}

.c-round-button__arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 1.625rem;
  height: 1.625rem;
  background-color: var(--color-white);
  border-radius: 50%;
  translate: 0 -50%;
}
.c-round-button__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.6875rem;
  content: "";
  mask-image: url("../images/common/icon_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  translate: -50% -50%;
}

.course01 .c-round-button__arrow::before {
  background-color: var(--color-primary);
}

.course02 .c-round-button__arrow::before {
  background-color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .c-round-button:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .c-round-button {
    min-width: 14.0625rem;
    min-height: 2.375rem;
    font-size: 0.75rem;
  }
  .c-round-button__arrow {
    right: 12px;
    width: 1rem;
    height: 1rem;
  }
  .c-round-button__arrow::before {
    mask-size: 5px 6px;
  }
}
/*
    c-arrow-link
--------------------------------- */
.c-arrow-link {
  display: inline-flex;
  column-gap: 8px;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s;
}

.c-arrow-link__circle {
  display: inline-grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
}
.c-arrow-link__circle::before {
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  margin-top: 0.0625rem;
  content: "";
  background-image: url("../images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-arrow-link.c-arrow-link--type01 .c-arrow-link__circle {
  background-color: var(--color-primary);
}

.c-arrow-link.c-arrow-link--type02 .c-arrow-link__circle {
  background-color: var(--color-green);
}

.c-arrow-link.c-arrow-link--type01:focus-visible {
  color: var(--color-primary);
}

.c-arrow-link.c-arrow-link--type02:focus-visible {
  color: var(--color-green);
}

@media (hover: hover) and (pointer: fine) {
  .c-arrow-link.c-arrow-link--type01:hover {
    color: var(--color-primary);
  }
  .c-arrow-link.c-arrow-link--type02:hover {
    color: var(--color-green);
  }
}
@media (max-width: 767px) {
  .c-arrow-link {
    column-gap: 5px;
    font-size: 0.75rem;
  }
  .c-arrow-link__circle {
    width: 1.0625rem;
    height: 1.0625rem;
  }
  .c-arrow-link__circle::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}
/*
    c-section-title
--------------------------------- */
.c-section-title {
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 2.125rem;
  text-align: center;
}
.c-section-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2.6875rem;
  height: 1px;
  content: "";
  background-color: var(--color-white);
  translate: -50%;
}

@media (max-width: 767px) {
  .c-section-title {
    padding-bottom: 0.8125rem;
    font-size: 1.6875rem;
  }
  .c-section-title::after {
    width: 2.625rem;
  }
}
/*
    c-section-title02
--------------------------------- */
.c-section-title02 {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  justify-content: center;
  padding-bottom: 1.375rem;
  font-family: var(--font-sub);
  color: var(--color-white);
  text-align: center;
}
.c-section-title02::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2.6875rem;
  height: 1px;
  content: "";
  background-color: var(--color-white);
  translate: -50%;
}

.c-section-title02__main {
  font-size: 2.5rem;
  line-height: 1.2;
}

.c-section-title02__sub {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .c-section-title02 {
    row-gap: 4px;
    padding-bottom: 0.625rem;
  }
  .c-section-title02__main {
    font-size: 1.625rem;
  }
  .c-section-title02__sub {
    font-size: 0.8125rem;
  }
}
/*
    c-section-title03
--------------------------------- */
.c-section-title03 {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  align-items: center;
  text-align: center;
}

.c-section-title03__en {
  position: relative;
  display: inline-block;
  padding-bottom: 3.25rem;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.c-section-title03__en::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 38px;
  content: "";
  background-color: currentcolor;
  translate: -50%;
}

.c-section-title03__ja {
  font-size: 2.125rem;
  line-height: 1.62;
}

.course01 .c-section-title03__ja {
  color: var(--color-primary);
}

.course02 .c-section-title03__ja {
  color: var(--color-secondary);
}

@media (max-width: 767px) {
  .c-section-title03 {
    row-gap: 4px;
  }
  .c-section-title03__en {
    padding-bottom: 1.5625rem;
    font-size: 0.6875rem;
  }
  .c-section-title03__en::after {
    width: 1px;
    height: 19px;
  }
  .c-section-title03__ja {
    font-size: 1.0625rem;
  }
}
/*
    c-border-title
--------------------------------- */
.c-border-title {
  position: relative;
  padding-bottom: 0.625rem;
  font-size: 2.3125rem;
  line-height: 1.6;
  text-align: center;
}
.c-border-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 26px;
  height: 3px;
  content: "";
  background-color: currentcolor;
  translate: -50%;
}

.course01 .c-border-title {
  color: var(--color-primary);
}

.course02 .c-border-title {
  color: var(--color-secondary);
}

@media (max-width: 767px) {
  .c-border-title {
    padding-bottom: 0.4375rem;
    font-size: 1.125rem;
  }
  .c-border-title::after {
    width: 13px;
    height: 2px;
  }
}
/*
    c-border-title02
--------------------------------- */
.c-border-title02 {
  padding-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-bottom: 1px solid;
}

.course01 .c-border-title02 {
  color: var(--color-primary);
}

.course02 .c-border-title02 {
  color: var(--color-secondary);
}

@media (max-width: 767px) {
  .c-border-title02 {
    padding-bottom: 0.1875rem;
    font-size: 0.75rem;
  }
}
/*
    c-title
--------------------------------- */
.c-title {
  display: grid;
  place-items: center;
  min-height: 2.5rem;
  padding: 0.4em 1em;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.07em;
  border-radius: 7px;
}

.course01 .c-title {
  background-color: var(--color-primary);
}

.course02 .c-title {
  background-color: var(--color-secondary);
}

@media (max-width: 767px) {
  .c-title {
    min-height: 1.5625rem;
    padding: 0.3em 1em;
    font-size: 0.75rem;
    border-radius: 4px;
  }
}
/*
    c-title02
--------------------------------- */
.c-title02 {
  position: relative;
  padding: 1rem 30px;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.06em;
}
.c-title02::before {
  position: absolute;
  inset: 0;
  content: "";
  background-repeat: repeat;
  background-position: center center;
  background-size: 13px 13px;
}
.c-title02::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image: url("../images/job/bg-pattern.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: 1366px auto;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.course01 .c-title02 {
  background-color: var(--color-primary);
}
.course01 .c-title02::before {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px));
  mix-blend-mode: multiply;
}

.course02 .c-title02 {
  background-color: var(--color-secondary);
}
.course02 .c-title02::before {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.07) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.07) calc(100% - 1px));
}

.c-title02 span {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .c-title02 {
    padding: 0.5rem 30px;
    font-size: 1rem;
  }
  .c-title02::before {
    background-size: 6px 6px;
  }
}
/*
    c-text
--------------------------------- */
.c-text {
  font-size: 0.9375rem;
  line-height: 2.06;
}

@media (max-width: 767px) {
  .c-text {
    font-size: 0.75rem;
    line-height: 2;
  }
}
/*
    c-breadcrumb
--------------------------------- */
.c-breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1218px;
  padding: 1.5rem 30px;
  margin-inline: auto;
}

.c-breadcrumb.c-breadcrumb--white {
  color: var(--color-white);
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}

.c-breadcrumb__item {
  position: relative;
  padding-right: 1.5em;
  margin-right: 0.5em;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
}
.c-breadcrumb__item::after {
  position: absolute;
  top: -0.14em;
  right: 0;
  display: inline-block;
  width: 1em;
  height: 1em;
  content: ">";
}

.c-breadcrumb__item:last-child::after {
  content: none;
}

.c-breadcrumb__item a:focus-visible {
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb__item a:hover {
    text-decoration: underline;
  }
}
/*
    c-label
--------------------------------- */
.c-label {
  display: inline-grid;
  place-items: center;
  min-width: 12.25rem;
  min-height: 2.375rem;
  padding: 0.5em 1.2em;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  border-radius: 9999px;
}

.c-label.c-label--type01 {
  background-color: var(--color-orange02);
}

.c-label.c-label--type02 {
  background-color: var(--color-yellow);
}

.c-label.c-label--type03 {
  background-color: var(--color-green02);
}

.c-label.c-label--type04 {
  background-color: var(--color-lightgreen);
}

.c-label.c-label--sm {
  min-width: 11.5rem;
  min-height: 2.125rem;
  padding: 0.4em 1.2em;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .c-label {
    min-width: 9.1875rem;
    min-height: 1.75rem;
    padding: 0.4em 1.2em;
    font-size: 0.75rem;
  }
  .c-label.c-label--sm {
    min-width: 10.375rem;
    min-height: 1.875rem;
    font-size: 0.75rem;
  }
}
/*
    c-entry
--------------------------------- */
.c-entry {
  position: fixed;
  top: 554px;
  right: 50px;
  z-index: var(--z-index-entry);
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 50%;
}

.c-entry a {
  display: inline-flex;
  flex-direction: column;
  row-gap: 5px;
  align-items: center;
  justify-content: center;
  width: 10.25rem;
  height: 10.25rem;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-orange);
  border-radius: 50%;
  transition: opacity 0.3s;
}
.c-entry a:focus-visible {
  opacity: 0.7;
}

.c-entry__ja {
  font-size: 0.9375rem;
  font-weight: 700;
}

.c-entry__en {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.c-entry.move-up {
  top: 70vh;
}

@media (hover: hover) and (pointer: fine) {
  .c-entry a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1100px) {
  .c-entry {
    right: 30px;
  }
  .c-entry a {
    width: 8.125rem;
    height: 8.125rem;
  }
  .c-entry__ja {
    font-size: 0.75rem;
  }
  .c-entry__en {
    font-size: 1.1875rem;
  }
}
@media (max-width: 767px) {
  .c-entry {
    top: 514px;
    right: 24px;
  }
  .c-entry a {
    row-gap: 4px;
    width: 5.625rem;
    height: 5.625rem;
  }
  .c-entry__ja {
    font-size: 0.6875rem;
  }
  .c-entry__en {
    font-size: 0.875rem;
  }
}
/*
    c-to-top
--------------------------------- */
.c-to-top {
  display: grid;
  place-items: center;
  height: 80px;
  background-color: var(--bg-color-lightblue);
  transition: background-color 0.3s;
}
.c-to-top::before {
  display: inline-block;
  width: 25px;
  height: 14px;
  content: "";
  background-image: url("../images/common/icon_to-top.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-to-top:focus-visible {
  background-color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .c-to-top:hover {
    background-color: var(--color-primary);
  }
}
@media (max-width: 767px) {
  .c-to-top {
    height: 50px;
  }
  .c-to-top::before {
    width: 16px;
    height: 10px;
  }
}
/* ---------------------------------

Project

--------------------------------- */
/*
    p-header
--------------------------------- */
.p-header__logo a {
  display: inline-flex;
  column-gap: 20px;
  align-items: center;
  padding-block: 0.625rem;
  transition: opacity 0.3s;
}
.p-header__logo a:focus-visible {
  opacity: 0.7;
}

.p-header__logo-img {
  width: 9.875rem;
}

.p-header__logo-text {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.p-header__nav {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.p-header__nav-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.33;
  white-space: nowrap;
}

.p-header__button-list {
  display: flex;
  column-gap: 13px;
}

@media (hover: hover) and (pointer: fine) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 960px) {
  .p-header__logo-img {
    width: 8.125rem;
  }
  .p-header__logo-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .p-header__logo a {
    column-gap: 11px;
  }
  .p-header__logo-img {
    width: 6.5625rem;
  }
  .p-header__logo-text {
    font-size: 0.625rem;
  }
  .p-header__hamburger {
    position: relative;
    z-index: var(--z-index-hamburger);
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--color-black02);
    transition: background-color 0.3s;
  }
  .p-header__hamburger span {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    translate: -50%;
    transition: translate 0.3s, rotate 0.3s;
  }
  .p-header__hamburger span:nth-child(1) {
    top: 17px;
    transform-origin: top right;
  }
  .p-header__hamburger span:nth-child(2) {
    top: 24px;
  }
  .p-header__hamburger span:nth-child(3) {
    top: 31px;
    transform-origin: bottom right;
  }
  .p-header__hamburger.is-active {
    background-color: var(--color-white);
  }
  .p-header__hamburger.is-active span {
    background-color: var(--color-black02);
    translate: -65%;
  }
  .p-header__hamburger.is-active span:nth-child(1) {
    top: 16px;
    rotate: -45deg;
  }
  .p-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .p-header__hamburger.is-active span:nth-child(3) {
    top: 32px;
    rotate: 45deg;
  }
}
/*
    p-drawer
--------------------------------- */
.p-drawer {
  position: fixed;
  inset: 0;
  background-color: var(--color-black02);
  transition: opacity 0.3s, visibility 0.3s ease-out;
}

.p-drawer[aria-hidden=true] {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.p-drawer__inner {
  height: 100%;
  padding-top: 6px;
  padding-left: 15px;
  overflow-y: auto;
}

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

.p-drawer__nav {
  padding-top: 4.5rem;
  text-align: center;
}

.p-drawer__nav-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-white);
}

.p-drawer__button-list {
  margin-top: 1rem;
}

.p-drawer__button + .p-drawer__button {
  margin-top: 0.9375rem;
}

/*
    p-footer
--------------------------------- */
.p-footer__copy {
  display: grid;
  place-items: center;
  height: 4.375rem;
  text-align: center;
}

.p-footer__copy small {
  font-size: 0.75rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-footer__copy {
    height: 2.1875rem;
  }
  .p-footer__copy small {
    font-size: 0.6875rem;
  }
}
/*
    p-top-mv
--------------------------------- */
.p-top-mv {
  position: relative;
  padding-bottom: 14.375rem;
  color: var(--color-white);
}
.p-top-mv::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-color: rgba(83, 179, 167, 0.82);
}

.p-top-mv__bg {
  position: absolute;
  inset: 0;
}

.p-top-mv__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-mv__inner {
  position: relative;
  z-index: 2;
  margin-top: 8.75rem;
}

.p-top-mv__content {
  margin-top: 2.5rem;
  text-align: center;
}

.p-top-mv__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.125;
  letter-spacing: 0.06em;
}

.p-top-mv__text + .p-top-mv__text {
  margin-top: 2.125rem;
}

.p-top-mv + * {
  position: relative;
  z-index: 2;
  margin-top: -68px;
}

@media (max-width: 960px) {
  .p-top-mv__text {
    font-size: 0.8125rem;
  }
}
@media (max-width: 767px) {
  .p-top-mv {
    padding-bottom: 7.1875rem;
  }
  .p-top-mv__inner {
    margin-top: 0.875rem;
  }
  .p-top-mv__content {
    margin-top: 0.9375rem;
    text-align: left;
  }
  .p-top-mv__text {
    font-size: 0.75rem;
    line-height: 2;
    text-align: justify;
    letter-spacing: 0;
  }
  .p-top-mv__text + .p-top-mv__text {
    margin-top: 1.5rem;
  }
  .p-top-mv + * {
    margin-top: -70px;
  }
}
/*
    p-panel-wrap
--------------------------------- */
.p-panel-wrap__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-bottom: 6.25rem;
}

@media (max-width: 960px) {
  .p-panel-wrap__items {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }
  .p-panel-wrap__item {
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .p-panel-wrap__items {
    row-gap: 30px;
    padding-bottom: 1.875rem;
  }
}
/*
    p-panel
--------------------------------- */
.p-panel {
  max-width: 580px;
  text-align: center;
  background-color: var(--color-white);
}

.p-panel a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-panel__box {
  position: relative;
  flex: 1;
  transition: opacity 0.3s;
}

.p-panel a:focus-visible .p-panel__box {
  opacity: 0.7;
}

.p-panel__box-inner {
  height: 100%;
  padding: 120px 30px 110px;
}

.p-panel__title {
  position: relative;
  z-index: 2;
  font-size: 1.4375rem;
  line-height: 1.5;
  color: var(--color-white);
}

.p-panel__list {
  position: relative;
  z-index: 2;
  margin-top: 1.875rem;
}

.p-panel__list-item {
  padding-left: 1em;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.78;
  color: var(--color-white);
  text-indent: -1em;
}

.p-panel__link {
  margin-top: 1.625rem;
}

.p-panel.p-panel--type01 .p-panel__box {
  background-color: var(--color-primary);
}
.p-panel.p-panel--type01 .p-panel__box::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px));
  background-repeat: repeat;
  background-position: center center;
  background-size: 13px 13px;
  mix-blend-mode: multiply;
}

.p-panel.p-panel--type01 .p-panel__box-inner::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("../images/top/course01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  opacity: 0.7;
}
.p-panel.p-panel--type01 .p-panel__box-inner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image: url("../images/top/bg-pattern.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.p-panel.p-panel--type02 .p-panel__box {
  background-color: var(--bg-color-green);
  background-image: url("../images/top/course02.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 81.4% auto;
}

.p-panel.p-panel--type02 .p-panel__box-inner {
  background-color: rgba(36, 36, 36, 0.4);
}

.p-panel a:focus-visible .c-arrow-link.c-arrow-link--type01 {
  color: var(--color-primary);
}

.p-panel a:focus-visible .c-arrow-link.c-arrow-link--type02 {
  color: var(--color-green);
}

@media (hover: hover) and (pointer: fine) {
  .p-panel a:hover .p-panel__box {
    opacity: 0.7;
  }
  .p-panel a:hover .c-arrow-link.c-arrow-link--type01 {
    color: var(--color-primary);
  }
  .p-panel a:hover .c-arrow-link.c-arrow-link--type02 {
    color: var(--color-green);
  }
}
@media (max-width: 767px) {
  .p-panel {
    width: 100%;
    max-width: 360px;
  }
  .p-panel__box-inner {
    padding: 45px 30px;
  }
  .p-panel__title {
    font-size: 1.125rem;
  }
  .p-panel__list {
    margin-top: 0.75rem;
  }
  .p-panel__list-item {
    font-size: 0.6875rem;
    line-height: 1.63;
  }
  .p-panel__link {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .p-panel.p-panel--type01 .p-panel__box::before {
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.1) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.1) calc(100% - 1px));
    background-size: 6px 6px;
  }
  .p-panel.p-panel--type01 .p-panel__box-inner::before {
    background-size: 100% auto;
  }
}
/*
    p-job-archive
--------------------------------- */
.p-job-archive {
  position: relative;
  padding-block: 7.1875rem 7.875rem;
}
.p-job-archive::before {
  position: absolute;
  inset: 0;
  content: "";
  background-repeat: repeat;
  background-position: center center;
  background-size: 13px 13px;
}
.p-job-archive::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image: url("../images/job/bg-pattern.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: 1366px auto;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.p-job-archive.course01 {
  background-color: var(--color-primary);
}
.p-job-archive.course01::before {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px));
  mix-blend-mode: multiply;
}

.p-job-archive.course02 {
  background-color: var(--color-secondary);
}
.p-job-archive.course02::before {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.07) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.07) calc(100% - 1px));
}

.p-job-archive__inner {
  position: relative;
  z-index: 2;
}

.p-job-archive__tab {
  margin-top: 5rem;
}

.p-job-archive__contents {
  margin-top: 3rem;
}

.p-job-archive__content {
  display: none;
}

.p-job-archive__content.is-active {
  display: block;
}

.p-job-archive__note {
  padding-bottom: 3.125rem;
  margin-top: -0.9375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}

@media (max-width: 767px) {
  .p-job-archive {
    padding-block: 2.5rem 1.875rem;
  }
  .p-job-archive::before {
    background-size: 6px 6px;
  }
  .p-job-archive__tab {
    margin-top: 2.5rem;
  }
  .p-job-archive__contents {
    margin-top: 1.75rem;
  }
  .p-job-archive__note {
    padding-bottom: 2.5rem;
    margin-top: -0.625rem;
    font-size: 0.75rem;
  }
}
/*
    p-tab
--------------------------------- */
.p-tab {
  position: relative;
  display: flex;
  column-gap: 30px;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
}
.p-tab::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% + 88px);
  height: 3px;
  content: "";
  background-color: var(--color-white);
  border-radius: 2px;
  translate: -50%;
}

.p-tab__item label {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 19.5rem;
  height: 100%;
  min-height: 3.5rem;
  padding: 0.5em 1em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 12px 12px 0 0;
  transition: background-color 0.3s;
}

.p-tab__item label:has(input:checked) {
  background-color: var(--color-white);
}

.p-tab__item label:has(input:focus-visible) {
  outline: 3px solid;
}

.p-tab__item span {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
}

.course01 .p-tab__item span {
  color: var(--color-primary);
}

.course02 .p-tab__item span {
  color: var(--color-secondary);
}

@media (max-width: 960px) {
  .p-tab__item label {
    min-width: 17.5rem;
  }
}
@media (max-width: 767px) {
  .p-tab {
    column-gap: 13px;
  }
  .p-tab::after {
    width: calc(100% + 38px);
    height: 2px;
  }
  .p-tab__item label {
    min-width: 8.25rem;
    height: 1.75rem;
    min-height: 1.75rem;
    padding: 0.2em;
    border-radius: 6px 6px 0 0;
  }
  .p-tab__item span {
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
  }
}
/*
    p-cards
--------------------------------- */
.p-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

@media (max-width: 1100px) {
  .p-cards {
    gap: 48px 30px;
  }
}
@media (max-width: 767px) {
  .p-cards {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
  .p-cards__item {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}
/*
    p-card
--------------------------------- */
.p-card {
  position: relative;
}

.p-card a {
  display: block;
  height: 100%;
  padding: 10px 28px 27px;
  background-color: var(--color-white);
  border-radius: 27px;
  transition: opacity 0.3s;
}
.p-card a:focus-visible {
  opacity: 0.7;
}

.p-card__body {
  display: flex;
  column-gap: 18px;
  justify-content: space-between;
}

.p-card__title {
  padding-top: 0.9375rem;
  font-size: 1.0625rem;
  line-height: 1.53;
}

.p-card__category {
  position: absolute;
  top: 0;
  left: 30px;
  z-index: 1;
  translate: 0 -50%;
}

.p-card__img {
  display: grid;
  flex-shrink: 0;
  place-items: center end;
  min-height: 128px;
}

.p-card__bottom {
  padding-top: 0.875rem;
  margin-top: 0.375rem;
  border-top: 2px solid var(--bg-color-gray);
}

.p-card__list {
  margin-inline: -2px -11px;
}

.p-card__list-item {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.035em;
}
.p-card__list-item::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  width: 0.6875rem;
  height: 0.6875rem;
  content: "";
  border: 3px solid;
  border-radius: 50%;
}

.p-card__list-item + .p-card__list-item {
  margin-top: 0.4375rem;
}

.p-card.p-card--type01 .p-card__title {
  color: var(--color-primary);
}

.p-card.p-card--type01 .p-card__list-item::before {
  border-color: var(--color-primary);
}

.p-card.p-card--type02 .p-card__title {
  color: var(--color-secondary);
}

.p-card.p-card--type02 .p-card__list-item::before {
  border-color: var(--color-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .p-card a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .p-card a {
    padding: 14px 18px 15px;
    border-radius: 14px;
  }
  .p-card__body {
    column-gap: 14px;
  }
  .p-card__title {
    padding-top: 0.375rem;
    font-size: 0.8125rem;
  }
  .p-card__category {
    left: 18px;
  }
  .p-card__img {
    height: 64px;
    min-height: unset;
  }
  .p-card__img img {
    width: auto;
    max-height: 64px;
  }
  .p-card__img.p-card__img--sp-sm {
    height: 53px;
  }
  .p-card__img.p-card__img--sp-sm img {
    max-height: 53px;
  }
  .p-card__bottom {
    padding-top: 0.4375rem;
    margin-top: 0.75rem;
    border-width: 1px;
  }
  .p-card__list {
    margin-inline: 0;
  }
  .p-card__list-item {
    padding-left: 0.75rem;
    font-size: 0.75rem;
  }
  .p-card__list-item::before {
    width: 0.5rem;
    height: 0.5rem;
    border-width: 2px;
  }
  .p-card__list-item + .p-card__list-item {
    margin-top: 0.25rem;
  }
}
/*
    p-job-mv
--------------------------------- */
.p-job-mv {
  padding-block: 4.25rem 8rem;
  overflow: hidden;
}

.p-job-mv__inner {
  display: flex;
  column-gap: 60px;
  max-width: 1282px;
  padding-inline: 30px;
  margin-inline: auto;
}

.p-job-mv__text-wrap {
  width: 41%;
  padding-top: 4.375rem;
  text-align: center;
}

.p-job-mv__icon img {
  max-width: 60%;
}

.p-job-mv__category {
  margin-top: 1.875rem;
}

.p-job-mv__title {
  margin-inline: -0.1875rem;
  margin-top: 0.75rem;
  font-size: 1.4375rem;
  line-height: 1.83;
}

.course01 .p-job-mv__title {
  color: var(--color-primary);
}

.course02 .p-job-mv__title {
  color: var(--color-secondary);
}

.p-job-mv__img {
  position: relative;
  width: 59%;
  height: fit-content;
  margin-right: calc(50% - 50vw);
}

.p-job-mv__img img {
  border-radius: 50px 0 0 50px;
}

@media (max-width: 960px) {
  .p-job-mv__inner {
    column-gap: 40px;
  }
}
@media (max-width: 767px) {
  .p-job-mv {
    padding-block: 3.125rem;
  }
  .p-job-mv__inner {
    flex-direction: column;
  }
  .p-job-mv__text-wrap {
    width: 100%;
    padding-top: 0;
  }
  .p-job-mv__icon img {
    width: auto;
    height: 90px;
  }
  .p-job-mv__category {
    margin-top: 0.9375rem;
  }
  .p-job-mv__title {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .p-job-mv__img {
    width: calc(100% + 30px);
    margin-top: 1.5rem;
  }
  .p-job-mv__img img {
    width: 100%;
    border-radius: 25px 0 0 25px;
  }
}
/*
    p-mission
--------------------------------- */
.p-mission__content {
  padding-block: 7.5rem;
  margin-top: 7.5rem;
}

.p-mission__box + .p-mission__box {
  margin-top: 7.5rem;
}

@media (max-width: 767px) {
  .p-mission__content {
    padding-block: 1.875rem;
    margin-top: 1.5rem;
  }
  .p-mission__box + .p-mission__box {
    margin-top: 2.1875rem;
  }
}
/*
    p-bg-pattern
--------------------------------- */
.p-bg-pattern {
  position: relative;
}
.p-bg-pattern::before {
  position: absolute;
  inset: 0;
  content: "";
  background-repeat: repeat;
  background-position: center center;
  background-size: 13px 13px;
}
.p-bg-pattern::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image: url("../images/job/bg-pattern.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: 1366px auto;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.course01 .p-bg-pattern {
  background-color: var(--color-primary);
}
.course01 .p-bg-pattern::before {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.17) calc(100% - 1px));
  mix-blend-mode: multiply;
}

.course02 .p-bg-pattern {
  background-color: var(--color-secondary);
}
.course02 .p-bg-pattern::before {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.07) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 84, 147, 0.07) calc(100% - 1px));
}

.p-bg-pattern__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .p-bg-pattern::before {
    background-size: 6px 6px;
  }
}
/*
    p-box
--------------------------------- */
.p-box {
  padding: 76px 50px 84px;
  background-color: var(--color-white);
  border-radius: 27px;
}

.p-box__block + .p-box__block {
  margin-top: 4.375rem;
}

.p-box__img {
  margin-top: 1.875rem;
  text-align: center;
}

.p-box__modal-trigger {
  display: inline-block;
  pointer-events: none;
}

.p-box__text {
  margin-inline: -9px;
  margin-top: 2rem;
  text-align: justify;
}

.p-box__text02 {
  margin-top: 1.25rem;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-box__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 2.25rem;
}

.p-box__item:nth-child(even) {
  position: relative;
}
.p-box__item:nth-child(even)::before {
  position: absolute;
  top: 0;
  left: -32px;
  width: 2px;
  height: 100%;
  content: "";
  background-color: var(--bg-color-gray02);
}

.p-box__list {
  margin-top: 1.25rem;
}

.p-box__list-item {
  display: flex;
  font-size: 0.9375rem;
  line-height: 2.06;
  text-align: justify;
  letter-spacing: 0.03em;
}
.p-box__list-item::before {
  display: inline-block;
  flex-shrink: 0;
  content: "●";
}

.course01 .p-box__list-item::before {
  color: var(--color-primary);
}

.course02 .p-box__list-item::before {
  color: var(--color-secondary);
}

@media (max-width: 767px) {
  .p-box {
    padding: 24px 17px;
    border-radius: 14px;
  }
  .p-box__block + .p-box__block {
    margin-top: 1rem;
  }
  .p-box__img {
    margin-top: 1.375rem;
  }
  .p-box__modal-trigger {
    pointer-events: auto;
  }
  .p-box__text {
    margin-inline: 0;
    margin-top: 0.8125rem;
    letter-spacing: 0.03em;
  }
  .p-box__text02 {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
  .p-box__items {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 220px;
    margin-inline: auto;
    margin-top: 1.25rem;
  }
  .p-box__item:nth-child(even)::before {
    content: none;
  }
  .p-box__list {
    margin-top: 0.3125rem;
  }
  .p-box__list-item {
    font-size: 0.75rem;
    line-height: 2;
  }
}
/*
    p-modal
--------------------------------- */
.p-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-modal);
  display: none;
}

.p-modal.is-open {
  display: grid;
  place-items: center;
}

.p-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.p-modal__container {
  position: relative;
  width: 90%;
  max-width: 640px;
  max-height: 80vh;
  padding: 60px 10px 20px;
  background-color: var(--color-white);
}

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

.p-modal__button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.p-modal__button::before, .p-modal__button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 35px;
  height: 2px;
  content: "";
  background-color: var(--color-black);
}
.p-modal__button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal__button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*
    p-interview
--------------------------------- */
.p-interview {
  padding-block: 6.625rem 6.25rem;
}

.p-interview__content {
  margin-top: 3.75rem;
}

.p-interview__block + .p-interview__block {
  margin-top: 3.75rem;
}

@media (max-width: 767px) {
  .p-interview {
    padding-block: 1.5rem 1.875rem;
  }
  .p-interview__content {
    margin-top: 3.125rem;
  }
}
/*
    p-interview02
--------------------------------- */
.p-interview02 {
  padding-bottom: 3.75rem;
  overflow: hidden;
  background-color: var(--bg-color-beige);
}

.p-interview02__block + .p-interview02__block {
  margin-top: 3.75rem;
}

@media (max-width: 767px) {
  .p-interview02 {
    padding-bottom: 1.375rem;
  }
  .p-interview02__block + .p-interview02__block {
    margin-top: 2.5rem;
  }
}
/*
    p-media
--------------------------------- */
.p-media {
  display: flex;
  column-gap: 18px;
  padding: 50px 50px 40px 0;
  background-color: var(--bg-color-beige);
  border-radius: 27px;
}

.p-media__img {
  width: 31%;
  padding-top: 0.375rem;
  translate: -32px;
}

.p-media__img img {
  border-radius: 15px;
}

.p-media__body {
  display: grid;
  flex: 0 1 650px;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
}

.p-media__text {
  margin-top: 1.125rem;
  text-align: justify;
  letter-spacing: 0.03em;
}

@media (max-width: 1200px) {
  .p-media__img {
    translate: -20px;
  }
}
@media (max-width: 960px) {
  .p-media__img {
    min-width: 300px;
  }
  .p-media__body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .p-media {
    display: block;
    padding: 0 25px 24px;
    border-radius: 14px;
  }
  .p-media__img {
    width: 160px;
    min-width: unset;
    padding-top: 0;
    translate: 0 -30px;
  }
  .p-media__img img {
    border-radius: 8px;
  }
  .p-media__body {
    gap: 18px;
    margin-top: -6px;
  }
  .p-media__text {
    margin-top: 0.625rem;
  }
}
/*
    p-media02
--------------------------------- */
.p-media02 {
  display: flex;
  column-gap: 70px;
  justify-content: flex-end;
}

.p-media02__img {
  width: 50.5%;
  margin-left: calc(50% - 50vw);
}

.p-media02__img img {
  width: 100%;
  border-radius: 0 0 15px;
}

.p-media02__body {
  flex: 0 1 606px;
  padding-top: 3.75rem;
}

.p-media02__text-wrap + .p-media02__text-wrap {
  margin-top: 2.25rem;
}

.p-media02__text {
  margin-top: 1.125rem;
  text-align: justify;
}

@media (max-width: 960px) {
  .p-media02 {
    column-gap: 50px;
  }
  .p-media02__img {
    min-width: 350px;
  }
}
@media (max-width: 767px) {
  .p-media02 {
    display: block;
  }
  .p-media02__img {
    width: 200px;
    min-width: unset;
    margin-inline: auto;
  }
  .p-media02__img img {
    border-radius: 0;
  }
  .p-media02__body {
    width: 265px;
    padding-top: 1.625rem;
    margin-inline: auto;
  }
  .p-media02__text-wrap + .p-media02__text-wrap {
    margin-top: 1.25rem;
  }
  .p-media02__text {
    margin-top: 0.625rem;
    letter-spacing: 0.03em;
  }
}
/*
    p-job-bottom
--------------------------------- */
.p-job-bottom {
  padding-block: 6rem 8.75rem;
  text-align: center;
}

.p-job-bottom__img {
  max-width: 850px;
  margin-inline: auto;
}

.p-job-bottom__button {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .p-job-bottom {
    padding-block: 1.875rem;
  }
  .p-job-bottom__button {
    margin-top: 1.875rem;
  }
}
/* ---------------------------------

Utility

--------------------------------- */
@media (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-only-pc {
    display: none !important;
  }
}
/*
    スクリーンリーダー用
--------------------------------- */
.u-only-screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

/*
    英語大文字対応
--------------------------------- */
.u-text-uppercase {
  text-transform: uppercase;
}
/*# sourceMappingURL=style.css.map */