/*!
page > common > common
------------------------------
*/
/*!
global > Color
------------------------------
*/
/*!
global > content-width
------------------------------
*/
/*!
global > font
------------------------------
*/
/*!
global > function
------------------------------
*/
/*!
global > mixin
------------------------------
*/
/*!
foundation > base
------------------------------
*/
:root {
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-eb: "EB Garamond", serif;
  --cl-primary: #000;
  --cl-secondary: #E1E2AD;
  --cl-brown: #42210b;
  --cl-white: #FFF;
  --cl-red: #e60012;
  --cl-gray: #595757;
  --cl-border: #5f5f5f;
}

html {
  scroll-padding-top: 80px;
}

body {
  background: var(--cl-primary);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--cl-white);
}

.open-nav {
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .open-nav {
    overflow: unset;
  }
}

.body-wrapper {
  margin-top: 80px;
  width: 100%;
  display: block;
  overflow-x: clip;
  position: relative;
}
@media screen and (min-width: 992px) {
  .body-wrapper {
    margin-top: clamp(5.625rem, 12.8342245989vw + -2.3322192513rem, 8.625rem);
  }
}

main {
  position: relative;
  z-index: 5;
}

img {
  max-width: 100%;
  width: 100%;
}

:where(a) {
  cursor: pointer;
  transition: opacity 0.4s;
}

@media screen and (min-width: 768px) {
  :where(a:hover, .h_opacity:hover) {
    opacity: 0.8;
  }
}
.pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pc {
    display: initial !important;
  }
}

.tablet {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .tablet {
    display: initial !important;
  }
}

.tablet_only {
  display: initial !important;
}
@media screen and (min-width: 992px) {
  .tablet_only {
    display: none !important;
  }
}

.sp {
  display: initial !important;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

a.blank {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (min-width: 768px) {
  a.blank:hover {
    text-decoration: none;
  }
}

/*!
foundation > reset
------------------------------
*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  display: table;
  /* 1 */
  color: inherit;
  /* 2 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.c-footer {
  padding-block: 60px 142px;
}
@media screen and (min-width: 768px) {
  .c-footer {
    padding-block: 40px;
  }
}
.c-footer__inner {
  width: 100%;
  max-width: 1340px;
  padding-inline: 25px;
  margin-inline: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .c-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.c-footer__logo {
  margin-bottom: 40px;
  width: 240px;
}
@media screen and (min-width: 768px) {
  .c-footer__logo {
    margin-bottom: 21px;
  }
}
.c-footer__logo a {
  display: block;
}
.c-footer__copy {
  font-size: 0.625rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-footer__copy {
    text-align: center;
  }
}
.c-footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .c-footer__menu {
    padding-inline: clamp(0rem, 1.5050167224vw + -0.7224080268rem, 0.5625rem);
    flex-direction: row;
    gap: clamp(0.875rem, 1.6722408027vw + 0.0723244147rem, 1.5rem);
  }
}
.c-footer__menu--item a {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-footer__menu--item a {
    font-size: clamp(0.625rem, 0.3344481605vw + 0.4644648829rem, 0.75rem);
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding-block: 10px 14px;
  background: var(--cl-primary);
  transition: 0.5s ease;
  z-index: 20;
}
@media screen and (min-width: 992px) {
  .c-header {
    height: clamp(5.625rem, 12.8342245989vw + -2.3322192513rem, 8.625rem);
  }
}
.c-header.active {
  height: 80px;
}
.c-header__inner {
  width: 100%;
  max-width: 1305px;
  padding-inline: 25px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.c-header__logo {
  width: 169px;
}
@media screen and (min-width: 768px) {
  .c-header__logo {
    width: clamp(15rem, 13.0434782609vw + 8.7391304348rem, 19.875rem);
  }
}
.c-header__logo--link {
  display: block;
}

[data-delay="0.1s"] {
  transition-delay: 0.1s;
}

[data-delay="0.2s"] {
  transition-delay: 0.2s;
}

[data-delay="0.3s"] {
  transition-delay: 0.3s;
}

[data-delay="0.4s"] {
  transition-delay: 0.4s;
}

[data-delay="0.5s"] {
  transition-delay: 0.5s;
}

[data-delay="0.6s"] {
  transition-delay: 0.6s;
}

[data-delay="0.7s"] {
  transition-delay: 0.7s;
}

[data-delay="0.8s"] {
  transition-delay: 0.8s;
}

[data-delay="0.9s"] {
  transition-delay: 0.9s;
}

[data-delay="1s"] {
  transition-delay: 1s;
}

[data-delay="1.5s"] {
  transition-delay: 1.5s;
}

.js_inview[data-duration="1s"] {
  transition-duration: 1s;
}

.js_inview[data-duration="1.5s"] {
  transition-duration: 1.5s;
}

.js_inview[data-duration="2s"] {
  transition-duration: 2s;
}

.js_inview {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-delay: 0s;
}

.fade {
  opacity: 0;
}

.fadeup {
  transform: translate3d(0, 100px, 0);
}

.fadedown {
  transform: translate3d(0, -100px, 0);
}

.faderight {
  transform: translate3d(30px, 0, 0);
}

.fadeleft {
  transform: translate3d(-30px, 0, 0);
}

.is_show.js_inview {
  opacity: 1;
  transform: none;
}

/*!
component > Title
------------------------------
*/
.c-title__h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.18em;
  color: var(--cl-brown);
}
@media screen and (min-width: 768px) {
  .c-title__h1 {
    font-size: 1.8125rem;
    gap: 22px;
  }
  .c-title__h1::before, .c-title__h1::after {
    content: "";
    margin-top: 3px;
    display: block;
    width: 40px;
    height: 1px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-title__h1::before, .c-title__h1::after {
    width: 61px;
  }
}
@media screen and (min-width: 768px) {
  .c-title__h1::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(66, 33, 11) 100%);
  }
  .c-title__h1::after {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgb(66, 33, 11) 100%);
  }
}

@media screen and (max-width: 991px) {
  .c-nav {
    padding: 40px 50px 120px;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 80px);
    background: var(--cl-white);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: 0.4s ease;
  }
  .c-nav.open {
    opacity: 1;
    visibility: visible;
  }
}
.c-nav__btn--item:not(:last-child) {
  margin-bottom: 25px;
}
.c-nav__btn--link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.c-nav__btn--link.contact .c-nav__btn--img {
  width: 30px;
}
.c-nav__btn--link.recruit .c-nav__btn--img {
  width: 24px;
}
.c-nav__btn--txt {
  color: #231815;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
}
.c-nav__menu {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .c-nav__menu {
    margin-top: 0;
    padding-right: 4px;
    padding-top: 1px;
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .c-nav__menu--item {
    border-left: 1px solid var(--cl-white);
  }
}
@media screen and (min-width: 992px) {
  .c-nav__menu--item:nth-last-child(2) {
    border-right: 1px solid var(--cl-white);
  }
}
@media screen and (max-width: 991px) {
  .c-nav__menu--item:first-child a:first-child {
    border-top: 1px solid #231815;
  }
}
.c-nav__menu--item a {
  font-size: 0.8125rem;
  color: var(--cl-primary);
}
@media screen and (max-width: 991px) {
  .c-nav__menu--item a {
    display: block;
    padding: 33px 20px;
    border-bottom: 1px solid #231815;
    text-align: center;
    color: #231815;
  }
}
@media screen and (min-width: 992px) {
  .c-nav__menu--item a {
    padding: 1px clamp(0.9375rem, 1.3377926421vw + 0.2953595318rem, 1.4375rem);
    display: block;
    font-size: clamp(0.625rem, 0.3344481605vw + 0.4644648829rem, 0.75rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.149em;
    color: var(--cl-white);
  }
}

/*!
component > Button
------------------------------
*/
.c-btn__primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 275px;
  height: 40px;
  max-width: 100%;
  border: 1px solid var(--cl-white);
}
@media screen and (min-width: 768px) {
  .c-btn__primary {
    width: 310px;
    height: 44px;
    gap: 11px;
  }
}
.c-btn__primary > span {
  font-family: var(--font-serif);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .c-btn__primary > span {
    font-size: 0.6875rem;
  }
}
.c-btn__primary::after {
  content: "";
  display: block;
  width: 71px;
  height: 5px;
  -webkit-mask: url("../images/common/icon_arr.svg") center/100% auto no-repeat;
  mask: url("../images/common/icon_arr.svg") center/100% auto no-repeat;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .c-btn__primary::after {
    width: 81px;
    height: 6px;
  }
}
.c-btn__submit {
  padding: 8px 20px;
  margin-inline: auto;
  width: 275px;
  max-width: 100%;
  min-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9f8b4b;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cl-white);
  text-align: center;
  transition: 0.4s ease;
}
@media screen and (min-width: 768px) {
  .c-btn__submit {
    padding: 10px 20px;
    width: 500px;
    min-height: 70px;
    font-size: 1.6875rem;
  }
}
@media (any-hover: hover) and (pointer: fine) {
  .c-btn__submit:hover {
    opacity: 0.8;
  }
}

.c-totop {
  position: fixed;
  bottom: 29px;
  right: 29px;
  display: none;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  width: 21px;
  aspect-ratio: 21/19;
  background: url("../images/common/icon_totop.svg") center/100% auto no-repeat;
  mix-blend-mode: difference;
  cursor: pointer;
  z-index: 5;
}
@media (any-hover: hover) and (pointer: fine) {
  .c-totop:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .c-totop {
    display: block;
  }
}
.c-totop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-block: 16px 18px;
  display: flex;
  background: var(--cl-secondary);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 10;
}
.c-fixed.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .c-fixed {
    display: none;
  }
}
.c-fixed__item {
  min-height: 50px;
}
.c-fixed__item:not(:last-child) {
  border-right: 1px solid #231815;
}
.c-fixed__item:nth-child(1) {
  width: 45.6%;
}
.c-fixed__item:nth-child(2) {
  width: 31.7333333333%;
}
.c-fixed__item:nth-child(3) {
  flex-grow: 1;
}
.c-fixed__item--link {
  padding-inline: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.c-fixed__item--link .txt {
  font-size: 0.5625rem;
  font-weight: 500;
  line-height: 1;
  color: #231815;
  text-align: center;
}
.c-fixed__item--link.contact .icon {
  margin-bottom: 10px;
  width: 30px;
}
.c-fixed__item--link.recruit .icon {
  margin-bottom: 10px;
  width: 23px;
}
.c-fixed__item--link.totop .icon {
  margin-bottom: 14px;
  width: 21px;
}

.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--cl-white);
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
.c-hamburger.active .c-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.c-hamburger.active .c-hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(35deg);
}
.c-hamburger.active .c-hamburger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-35deg);
}

.c-required {
  padding: 1px 4px;
  flex-shrink: 0;
  align-self: center;
  display: inline-block;
  background: var(--cl-white);
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--cl-red);
  border: 1px solid var(--cl-red);
}
@media screen and (min-width: 768px) {
  .c-required {
    padding: 1px 8px 3px;
    font-size: 1rem;
  }
}

/*!
component > MV
------------------------------
*/
.c-mv {
  position: relative;
  z-index: 0;
}
.c-mv__heading {
  left: 25px;
  position: absolute;
  top: 34px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 4.8vw;
  line-height: 1.5;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .c-mv__heading {
    left: 10.980966325vw;
    top: 8.2723279649vw;
    line-height: 1.7;
    letter-spacing: 0.4em;
    font-size: clamp(1.5rem, 2.0066889632vw + 0.5367892977rem, 2.25rem);
  }
}
.c-mv__heading.right {
  left: auto;
  right: 10px;
  text-align: right;
  top: auto;
  bottom: 34px;
}
@media screen and (min-width: 768px) {
  .c-mv__heading.right {
    top: 7.3206442167vw;
    bottom: auto;
    left: auto;
    right: 4.6120058565vw;
  }
}
@media screen and (min-width: 768px) {
  .c-mv__heading .sm {
    font-size: clamp(1.5rem, 1.5050167224vw + 0.7775919732rem, 2.0625rem);
    letter-spacing: 0.2em;
  }
}

/*!
layout > container
------------------------------
*/
.container {
  width: 100%;
  max-width: 1012px;
  padding-inline: 25px;
  margin-inline: auto;
}

.u-cl__white {
  color: #fff !important;
}

.u-cl__black {
  color: #000 !important;
}

.u-cl__main {
  color: var(--cl-primary);
}

.u-cl__red {
  color: var(--cl-red);
}

.u-txt__left {
  text-align: left !important;
}

.u-txt__right {
  text-align: right !important;
}

.u-txt__center {
  text-align: center !important;
}

.u-txt__semi {
  font-weight: 600;
}
/*# sourceMappingURL=common.css.map */