@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-08-01
--------------------------------------------------------------- */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #111;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.alpha:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* HR */
/* ------------------------------------------------------------ */
hr {
  width: 100%;
  height: 1px;
  margin: min(4.392vw, 60px) auto;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  hr {
    margin: 8vw auto;
  }
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  /* -ms-overflow-style: none; */
  /* scrollbar-width: none; */
  font-size: 1.171vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.733vw;
  }
}
html body {
  background: #fff;
  /*  &::-webkit-scrollbar {
      display: none;
  } */
}
html body header {
  position: relative;
}
html body header .inner {
  background: rgba(255, 255, 255, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: min(7.321vw, 100px);
  padding: 0 min(2.562vw, 35px);
  margin: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 10;
}
html body header .inner .header_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
html body header .inner .header_area h1 a,
html body header .inner .header_area .logo a {
  display: block;
  background: url("../img/logo.png") no-repeat center center/cover;
  width: min(17.57vw, 240px);
  aspect-ratio: 6/1;
}
html body header .inner .header_area h1 a span,
html body header .inner .header_area .logo a span {
  display: none;
}
html body header .inner .header_area #nav_toggle {
  display: none;
}
html body header .inner #global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(2.928vw, 40px);
}
html body header .inner #global_nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(2.928vw, 40px);
}
html body header .inner #global_nav > ul li span {
  display: block;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
html body header .inner #global_nav > ul li span:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
html body header .inner #global_nav > ul li.dropdwn {
  position: relative;
}
html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  padding-top: min(1.464vw, 20px);
}
html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(1.464vw, 20px);
  border-radius: min(0.366vw, 5px);
  background: #fff;
  padding: min(1.464vw, 20px) min(2.196vw, 30px);
}
html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #111;
}
html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu ul li span::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: min(0.366vw, 5px);
  height: 1px;
  background: #BD2D20;
  margin-right: min(0.366vw, 5px);
}
html body header .inner #global_nav > ul li.dropdwn.active .dropdwn_menu {
  opacity: 1;
  visibility: visible;
}
html body header .inner #global_nav form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ffffff;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
  border-radius: 0;
  background: transparent;
  color: #fff;
}
html body header .inner #global_nav form input {
  border: none;
  outline: none;
  background: transparent;
  width: min(5.857vw, 80px);
  color: #ffffff;
  font-family: "A1 Mincho";
  font-size: min(0.625rem, 10px);
}
html body header .inner #global_nav form input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
html body header .inner #global_nav form input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
html body header .inner #global_nav form input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
html body header .inner #global_nav form input::-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
html body header .inner #global_nav form input::placeholder {
  color: #ffffff;
  opacity: 1;
}
html body header .inner #global_nav form button {
  background: url("../img/icon_search.svg") no-repeat center center/cover;
  width: min(0.805vw, 11px);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  cursor: pointer;
  padding: 0;
}
html body header .inner #global_nav .btn {
  width: min(13.177vw, 180px);
}
html body header .inner #global_nav .btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: min(3.66vw, 50px);
  width: 100%;
  height: min(3.66vw, 50px);
  padding: 0 0 0 min(1.464vw, 20px);
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  background: #BD2D20;
  overflow: hidden;
  z-index: 0;
}
html body header .inner #global_nav .btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#BD2D20), to(#CA5715));
  background: linear-gradient(to right, #BD2D20, #CA5715);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}
html body header .inner #global_nav .btn a::after {
  content: "";
  position: absolute;
  right: min(1.098vw, 15px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(27vw, 24px);
  height: min(27vw, 24px);
  background: url("../img/icon_arrow1.svg") no-repeat center/contain;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body header .inner #global_nav .btn a:hover::before {
  opacity: 1;
}
html body header .inner #global_nav .btn a:hover::after {
  -webkit-transform: translateY(-50%) scale(1.3);
          transform: translateY(-50%) scale(1.3);
}
html body header .inner.fixed {
  background: rgb(255, 255, 255);
}
html body header .inner.fixed .header_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
html body header .inner.fixed .header_area h1 a,
html body header .inner.fixed .header_area .logo a {
  background: url("../img/logo2.png") no-repeat center center/cover;
}
html body header .inner.fixed #global_nav ul li span {
  color: #111;
}
html body header .inner.fixed #global_nav ul li span:hover::after {
  background: #111;
}
html body header .inner.fixed #global_nav form {
  border: 1px solid #000;
  color: #111;
}
html body header .inner.fixed #global_nav form input {
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.625rem, 10px);
}
html body header .inner.fixed #global_nav form input::-webkit-input-placeholder {
  color: #111;
}
html body header .inner.fixed #global_nav form input::-moz-placeholder {
  color: #111;
}
html body header .inner.fixed #global_nav form input:-ms-input-placeholder {
  color: #111;
}
html body header .inner.fixed #global_nav form input::-ms-input-placeholder {
  color: #111;
}
html body header .inner.fixed #global_nav form input::placeholder {
  color: #111;
}
html body header .inner.fixed #global_nav form button {
  background: url("../img/icon_search2.svg") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  html body header .inner {
    background: none;
    height: 16vw;
    padding: 0;
  }
  html body header .inner .header_area {
    width: 100%;
    padding: 0 0 0 4vw;
  }
  html body header .inner .header_area h1 a,
  html body header .inner .header_area .logo a {
    width: 53.333vw;
  }
  html body header .inner .header_area #nav_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #BD2D20;
    width: 16vw;
    height: 16vw;
    cursor: pointer;
    position: relative;
  }
  html body header .inner .header_area #nav_toggle span {
    width: 8vw;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    -webkit-transition: top 0.2s ease, -webkit-transform 0.5s ease-in-out;
    transition: top 0.2s ease, -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, top 0.2s ease;
    transition: transform 0.5s ease-in-out, top 0.2s ease, -webkit-transform 0.5s ease-in-out;
  }
  html body header .inner .header_area #nav_toggle span:nth-child(1) {
    top: calc(38% - 1.867vw);
  }
  html body header .inner .header_area #nav_toggle span:nth-child(2) {
    top: 38%;
  }
  html body header .inner .header_area #nav_toggle span:nth-child(3) {
    top: calc(38% + 1.867vw);
  }
  html body header .inner .header_area #nav_toggle p {
    color: #fff;
    font-family: "Nanum Myeongjo";
    font-size: 0.714rem;
    position: absolute;
    bottom: 2.667vw;
  }
  html body header .inner #global_nav {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: hidden;
    height: 100dvh;
    opacity: 0;
    z-index: 50;
    gap: 0;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  html body header .inner #global_nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5.333vw;
    opacity: 0;
    -webkit-transform: translateY(10.667vw);
            transform: translateY(10.667vw);
    -webkit-transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.1s ease;
    transition: transform 0.5s ease, opacity 0.1s ease, -webkit-transform 0.5s ease;
  }
  html body header .inner #global_nav > ul li span {
    text-align: center;
    color: #fff;
    font-size: 1rem;
  }
  html body header .inner #global_nav > ul li.dropdwn {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  html body header .inner #global_nav > ul li.dropdwn > span {
    cursor: initial;
  }
  html body header .inner #global_nav > ul li.dropdwn > span:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
  html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu {
    opacity: 1;
    visibility: visible;
    position: initial;
    -webkit-transform: none;
            transform: none;
    padding-top: 2.667vw;
  }
  html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu ul {
    gap: 2.667vw;
    background: none;
    padding: 0;
  }
  html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu ul li span {
    color: #fff;
    font-size: 0.857rem;
  }
  html body header .inner #global_nav > ul li.dropdwn .dropdwn_menu ul li span::before {
    content: "・";
    width: auto;
    height: auto;
    background: none;
    margin-right: 0;
  }
  html body header .inner #global_nav form {
    padding: 1.333vw 2.667vw;
    opacity: 0;
    -webkit-transform: translateY(10.667vw);
            transform: translateY(10.667vw);
    -webkit-transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.1s ease;
    transition: transform 0.5s ease, opacity 0.1s ease, -webkit-transform 0.5s ease;
    margin-top: 10.667vw;
  }
  html body header .inner #global_nav form input {
    width: 48vw;
    color: #fff !important;
    font-size: 1rem;
  }
  html body header .inner #global_nav form button {
    width: 4vw;
  }
  html body header .inner #global_nav .btn {
    width: 48vw;
    opacity: 0;
    -webkit-transform: translateY(10.667vw);
            transform: translateY(10.667vw);
    -webkit-transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.1s ease;
    transition: transform 0.5s ease, opacity 0.1s ease, -webkit-transform 0.5s ease;
    margin-top: 10.667vw;
  }
  html body header .inner #global_nav .btn a {
    border-radius: 10.667vw;
    height: 10.667vw;
    padding: 0 0 0 5.333vw;
    font-size: 1rem;
  }
  html body header .inner #global_nav .btn a::after {
    right: 2.667vw;
    width: 6.667vw;
    height: 6.667vw;
  }
  html body header .inner.fixed #global_nav ul li span {
    color: #fff;
  }
  html body header .inner.fixed #global_nav form {
    border: 1px solid #fff;
    color: #fff;
  }
  html body header .inner.fixed #global_nav form input {
    color: #fff;
    font-size: 1rem;
  }
  html body header .inner.fixed #global_nav form input::-webkit-input-placeholder {
    color: #fff;
  }
  html body header .inner.fixed #global_nav form input::-moz-placeholder {
    color: #fff;
  }
  html body header .inner.fixed #global_nav form input:-ms-input-placeholder {
    color: #fff;
  }
  html body header .inner.fixed #global_nav form input::-ms-input-placeholder {
    color: #fff;
  }
  html body header .inner.fixed #global_nav form input::placeholder {
    color: #fff;
  }
  html body header .inner.fixed #global_nav form button {
    background: url("../img/icon_search.svg") no-repeat center center/cover;
  }
  html body header .inner.open {
    background: none;
  }
  html body header .inner.open .header_area h1 a,
  html body header .inner.open .header_area .logo a {
    background: url("../img/logo.png") no-repeat center center/cover;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(1) {
    top: 38% !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(2) {
    width: 0;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(3) {
    top: 38% !important;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  html body header .inner.open #global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open #global_nav > ul {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  html body header .inner.open #global_nav form {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  html body header .inner.open #global_nav .btn {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
html body main {
  overflow: hidden;
}
html body main#index section#mainvisual {
  position: relative;
  height: 100svh;
}
html body main#index section#mainvisual .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100svh;
}
html body main#index section#mainvisual .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#index section#mainvisual .swiper .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(0.732vw, 10px);
  width: auto;
  top: auto;
  left: min(4.392vw, 60px);
  bottom: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .swiper .swiper-pagination {
    gap: 2.667vw;
    left: 8vw;
    bottom: 8vw;
  }
}
html body main#index section#mainvisual .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  width: min(0.732vw, 10px);
  height: min(0.732vw, 10px);
  margin: 0;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
  }
}
html body main#index section#mainvisual .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #BD2D20;
}
html body main#index section#mainvisual .inner {
  position: absolute;
  bottom: min(7.321vw, 100px);
  left: min(4.392vw, 60px);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner {
    bottom: 16vw;
    left: 8vw;
  }
}
html body main#index section#mainvisual .inner h2 {
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(2.75rem, 44px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner h2 {
    font-size: 2.285rem;
  }
}
html body main#index section#mainvisual .inner p {
  color: #fff;
  font-family: "Nanum Myeongjo";
  font-size: min(0.875rem, 14px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner p {
    font-size: 0.714rem;
    margin-top: 5.333vw;
  }
}
html body main#index section:not(#mainvisual) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner {
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#index section#greetings .inner {
  background: url("../img/bg_index_greetings.png") no-repeat right center/auto;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#index section#greetings .inner {
    background: url("../img/bg_index_greetings_sp.png") no-repeat calc(100% - 8vw) calc(100% - 21.333vw)/38%;
  }
}
html body main#index section#greetings .inner strong {
  font-family: "A1 Mincho";
  font-size: min(2.75rem, 44px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#greetings .inner strong {
    font-size: 2rem;
    margin-top: 10.667vw;
  }
}
html body main#index section#greetings .inner .comment {
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#greetings .inner .comment {
    margin-top: 2.667vw;
  }
}
html body main#index section#greetings .inner .btn1 {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#greetings .inner .btn1 {
    margin-top: 10.667vw;
  }
}
html body main#index section#movie {
  background: url("../img/bg_index_movie.png") repeat-y center top/100% auto;
}
html body main#index section#movie .inner {
  width: min(58.565vw, 800px);
}
html body main#index section#movie .inner h2 {
  color: #fff;
}
html body main#index section#movie .inner h2 span {
  color: #fff;
}
html body main#index section#movie .inner h2 span::before {
  background: #fff;
}
html body main#index section#movie .inner video {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#movie .inner video {
    margin-top: 10.667vw;
  }
}
html body main#index section#movie .inner video source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#index section#safety .wrapper:nth-of-type(1) {
  background: url("../img/bg_index_safety.png") no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 2732/1535;
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(1) {
    background: url("../img/bg_index_safety_sp.png") no-repeat center top/cover;
    aspect-ratio: 250/337;
  }
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner h2 {
  width: 100%;
  color: #fff;
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner h2 span {
  color: #fff;
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner h2 span::before {
  background: #fff;
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner strong {
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(2.75rem, 44px);
  margin-top: min(8.785vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(1) .inner strong {
    font-size: 2.142rem;
    line-height: 1.6;
    margin-top: 10.667vw;
  }
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner em {
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(1) .inner em {
    font-size: 1.285rem;
    line-height: 1.6;
    margin-top: 5.333vw;
  }
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner .btn1 {
  margin-top: min(11.713vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(1) .inner .btn1 {
    margin-top: 10.667vw;
  }
}
html body main#index section#safety .wrapper:nth-of-type(1) .inner .btn1 a {
  color: #fff;
}
html body main#index section#safety .wrapper:nth-of-type(2) {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
html body main#index section#safety .wrapper:nth-of-type(2) .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#index section#safety .wrapper:nth-of-type(2) .inner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(2) .inner h3 {
    font-size: 1.857rem;
  }
}
html body main#index section#safety .wrapper:nth-of-type(2) .inner h3::after {
  content: "";
  display: block;
  width: min(3.66vw, 50px);
  height: 1px;
  background: #BD2D20;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(2) .inner h3::after {
    width: 10.667vw;
    margin-top: 5.333vw;
  }
}
html body main#index section#safety .wrapper:nth-of-type(2) .inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.928vw, 40px);
  width: min(71.742vw, 980px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(2) .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    width: 100%;
    margin-top: 10.667vw;
  }
}
html body main#index section#safety .wrapper:nth-of-type(2) .inner ul li figure {
  width: 100%;
}
html body main#index section#safety .wrapper:nth-of-type(2) .inner ul li figure img {
  display: block;
  width: min(10.981vw, 150px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(2) .inner ul li figure img {
    width: 40vw;
  }
}
html body main#index section#safety .wrapper:nth-of-type(2) .inner ul li figure figcaption {
  font-size: min(1rem, 16px);
  line-height: 2;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#safety .wrapper:nth-of-type(2) .inner ul li figure figcaption {
    text-align: center;
    font-size: 1.142rem;
    margin-top: 2.667vw;
  }
}
html body main#index section#products .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-top: min(4.392vw, 60px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div {
    display: block;
    margin-top: 10.667vw;
    position: initial;
  }
}
html body main#index section#products .inner > div h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(40.996vw, 560px);
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div h3 {
    width: 100%;
    font-size: 1.857rem;
  }
}
html body main#index section#products .inner > div h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.875rem, 14px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div h3::before {
    font-size: 2.667vw;
    margin-right: 1.333vw;
  }
}
html body main#index section#products .inner > div figure {
  width: min(37.555vw, 513px);
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div figure {
    width: 100%;
    margin-top: 5.333vw;
  }
}
html body main#index section#products .inner > div > div {
  position: absolute;
  left: 0;
  top: min(5.124vw, 70px);
  width: min(40.996vw, 560px);
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div > div {
    position: initial;
    width: 100%;
    margin-top: 10.667vw;
  }
}
html body main#index section#products .inner > div > div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div > div ul {
    margin-top: 5.333vw;
  }
}
html body main#index section#products .inner > div > div ul li {
  width: min(19.034vw, 260px);
  border-top: 1px #EEEBE5 solid;
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div > div ul li {
    width: 100%;
  }
}
html body main#index section#products .inner > div > div ul li:last-of-type {
  border-bottom: 1px #EEEBE5 solid;
}
html body main#index section#products .inner > div > div ul li a {
  display: block;
  background: url("../img/icon_arrow3.svg") no-repeat right center/min(1.245vw, 17px) min(1.098vw, 15px);
  width: 100%;
  padding: min(1.464vw, 20px) 0;
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div > div ul li a {
    background: url("../img/icon_arrow3.svg") no-repeat right center/4.359vw 2.821vw;
    padding: 5.333vw 0;
    font-size: 1.428rem;
  }
}
html body main#index section#products .inner > div > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.464vw, 20px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#products .inner > div > div > div {
    gap: 2.667vw;
    margin-top: 5.333vw;
  }
}
html body main#index section#products .inner > div:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
html body main#index section#products .inner > div:nth-of-type(2n) > div {
  left: initial;
  right: 0;
}
html body main#index section#recruit {
  background: url("../img/bg_index_recruit.png") no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit {
    background: url("../img/bg_index_recruit_sp.png") no-repeat center top/cover;
  }
}
html body main#index section#recruit .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner {
    display: block;
    position: initial;
  }
}
html body main#index section#recruit .inner h2 {
  color: #E7E1D5;
}
html body main#index section#recruit .inner h2 span {
  color: #fff;
}
html body main#index section#recruit .inner h2 span::before {
  background: #fff;
}
html body main#index section#recruit .inner > div:nth-of-type(1) {
  width: min(43.924vw, 600px);
  aspect-ratio: 3/2;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner > div:nth-of-type(1) {
    width: 100%;
    margin-top: 10.667vw;
  }
}
html body main#index section#recruit .inner > div:nth-of-type(1) figure {
  position: absolute;
  top: 0;
  width: min(25.11vw, 343px);
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner > div:nth-of-type(1) figure {
    width: 57.166%;
  }
}
html body main#index section#recruit .inner > div:nth-of-type(1) figure:nth-of-type(1) {
  left: 0;
}
html body main#index section#recruit .inner > div:nth-of-type(1) figure:nth-of-type(2) {
  right: 0;
}
html body main#index section#recruit .inner > div:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: min(21.23vw, 290px);
  width: min(38.799vw, 530px);
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner > div:nth-of-type(2) {
    position: initial;
    width: 100%;
    margin-top: 10.667vw;
  }
}
html body main#index section#recruit .inner > div:nth-of-type(2) .comment {
  color: #fff;
}
html body main#index section#recruit .inner > div:nth-of-type(2) .btn1 {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner > div:nth-of-type(2) .btn1 {
    margin-top: 5.333vw;
  }
}
html body main#index section#recruit .inner > div:nth-of-type(2) .btn1 a {
  color: #fff;
}
html body main#index section#news .inner {
  width: min(58.565vw, 800px);
  padding: min(8.785vw, 120px) 0 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner {
    padding: 21.333vw 8vw 0;
    position: initial;
  }
}
html body main#index section#news .inner h2 {
  margin-bottom: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner h2 {
    margin-bottom: 5.333vw;
  }
}
html body main#index section#news .inner article {
  background-image: linear-gradient(to right, #DACCB0 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  width: 100%;
}
html body main#index section#news .inner article:first-of-type {
  background-image: none;
}
html body main#index section#news .inner article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/icon_arrow3.svg") no-repeat right center/min(1.245vw, 17px) min(1.098vw, 15px);
  padding: min(1.83vw, 25px) min(1.83vw, 25px) min(1.83vw, 25px) 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner article a {
    display: block;
    background: none;
    padding: 5.333vw 0;
  }
}
html body main#index section#news .inner article a div {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner article a div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
html body main#index section#news .inner article a div time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner article a div time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#index section#news .inner article a div .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner article a div .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#index section#news .inner article a h1 {
  display: block;
  width: 70%;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner article a h1 {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-top: 2.667vw;
  }
}
html body main#index section#news .inner .btn1 {
  position: absolute;
  top: min(14.641vw, 200px);
  right: 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner .btn1 {
    position: initial;
    margin: 5.333vw auto 0;
  }
}
html body main#company section#title {
  background: url("../img/title_company.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#company section#title {
    background: url("../img/title_company.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#company section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#company section#title .inner h1,
html body main#company section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner h1,
  html body main#company section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#company section#title .inner h1::after,
html body main#company section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner h1::after,
  html body main#company section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#company section:not(#title) {
  overflow: hidden;
}
html body main#company section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#company section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#company section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#company section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#company section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#company section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#company section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#company section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#company section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#company section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#company section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#company section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#company section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#company section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#company section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#company section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#company section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#company section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#company section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#company section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#company section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#company section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#company section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#company section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#company section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#company section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#company section#posting .inner article > .comment h1,
html body main#company section#posting .inner article > .comment h2,
html body main#company section#posting .inner article > .comment h3,
html body main#company section#posting .inner article > .comment h4,
html body main#company section#posting .inner article > .comment h5,
html body main#company section#posting .inner article > .comment h6,
html body main#company section#posting .inner article > .comment p {
  all: revert;
}
html body main#company section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#company section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#company section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#company section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#company section#posting .inner article > .comment ul,
html body main#company section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#company section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#company section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#company section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#company section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#company section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#company section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#company section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#company section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#company section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#company section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#company .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#company .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#company .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#company .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#company .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#company .breadcrumbs li a {
  white-space: nowrap;
}
html body main#company .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#company .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#company .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#company .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#commercial section#title {
  background: url("../img/title_commercial.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#title {
    background: url("../img/title_commercial.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#commercial section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#commercial section#title .inner h1,
html body main#commercial section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#title .inner h1,
  html body main#commercial section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#commercial section#title .inner h1::after,
html body main#commercial section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#title .inner h1::after,
  html body main#commercial section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#commercial section:not(#title) {
  overflow: hidden;
}
html body main#commercial section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#commercial section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#commercial section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#commercial section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#commercial section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#commercial section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#commercial section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#commercial section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#commercial section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#commercial section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#commercial section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#commercial section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#commercial section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#commercial section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#commercial section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#commercial section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#commercial section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#commercial section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#commercial section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#commercial section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#commercial section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#commercial section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#commercial section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#commercial section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#commercial section#posting .inner article > .comment h1,
html body main#commercial section#posting .inner article > .comment h2,
html body main#commercial section#posting .inner article > .comment h3,
html body main#commercial section#posting .inner article > .comment h4,
html body main#commercial section#posting .inner article > .comment h5,
html body main#commercial section#posting .inner article > .comment h6,
html body main#commercial section#posting .inner article > .comment p {
  all: revert;
}
html body main#commercial section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#commercial section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#commercial section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#commercial section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#commercial section#posting .inner article > .comment ul,
html body main#commercial section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#commercial section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#commercial section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#commercial section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#commercial section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#commercial section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#commercial section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#commercial section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#commercial section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#commercial section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#commercial section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#commercial .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#commercial .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#commercial .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#commercial .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#commercial .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#commercial .breadcrumbs li a {
  white-space: nowrap;
}
html body main#commercial .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#commercial .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#commercial .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#commercial .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#consumer section#title {
  background: url("../img/title_consumer.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#consumer section#title {
    background: url("../img/title_consumer.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#consumer section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#consumer section#title .inner h1,
html body main#consumer section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#consumer section#title .inner h1,
  html body main#consumer section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#consumer section#title .inner h1::after,
html body main#consumer section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#title .inner h1::after,
  html body main#consumer section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#consumer section:not(#title) {
  overflow: hidden;
}
html body main#consumer section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#consumer section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#consumer section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#consumer section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#consumer section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#consumer section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#consumer section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#consumer section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#consumer section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#consumer section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#consumer section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#consumer section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#consumer section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#consumer section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#consumer section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#consumer section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#consumer section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#consumer section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#consumer section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#consumer section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#consumer section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#consumer section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#consumer section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#consumer section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#consumer section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#consumer section#posting .inner article > .comment h1,
html body main#consumer section#posting .inner article > .comment h2,
html body main#consumer section#posting .inner article > .comment h3,
html body main#consumer section#posting .inner article > .comment h4,
html body main#consumer section#posting .inner article > .comment h5,
html body main#consumer section#posting .inner article > .comment h6,
html body main#consumer section#posting .inner article > .comment p {
  all: revert;
}
html body main#consumer section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#consumer section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#consumer section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#consumer section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#consumer section#posting .inner article > .comment ul,
html body main#consumer section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#consumer section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#consumer section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#consumer section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#consumer section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#consumer section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#consumer section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#consumer section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#consumer section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#consumer section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#consumer section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#consumer section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#consumer .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#consumer .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#consumer .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#consumer .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#consumer .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#consumer .breadcrumbs li a {
  white-space: nowrap;
}
html body main#consumer .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#consumer .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#consumer .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#consumer .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#recruit section#title {
  background: url("../img/title_recruit.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title {
    background: url("../img/title_recruit.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#recruit section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#recruit section#title .inner h1,
html body main#recruit section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner h1,
  html body main#recruit section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#recruit section#title .inner h1::after,
html body main#recruit section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner h1::after,
  html body main#recruit section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#recruit section:not(#title) {
  overflow: hidden;
}
html body main#recruit section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#recruit section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#recruit section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#recruit section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#recruit section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#recruit section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#recruit section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#recruit section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#recruit section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#recruit section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#recruit section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#recruit section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#recruit section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#recruit section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#recruit section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#recruit section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#recruit section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#recruit section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#recruit section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#recruit section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#recruit section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#posting .inner article > .comment h1,
html body main#recruit section#posting .inner article > .comment h2,
html body main#recruit section#posting .inner article > .comment h3,
html body main#recruit section#posting .inner article > .comment h4,
html body main#recruit section#posting .inner article > .comment h5,
html body main#recruit section#posting .inner article > .comment h6,
html body main#recruit section#posting .inner article > .comment p {
  all: revert;
}
html body main#recruit section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#recruit section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#recruit section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#recruit section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#recruit section#posting .inner article > .comment ul,
html body main#recruit section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#recruit section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#recruit section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#recruit section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#recruit section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#recruit section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#recruit section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#recruit section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#recruit section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#recruit section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#recruit section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#recruit .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#recruit .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#recruit .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#recruit .breadcrumbs li a {
  white-space: nowrap;
}
html body main#recruit .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#recruit .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#recruit .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#recruit .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#work section#title {
  background: url("../img/title_work.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#work section#title {
    background: url("../img/title_work.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#work section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#work section#title .inner h1,
html body main#work section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#work section#title .inner h1,
  html body main#work section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#work section#title .inner h1::after,
html body main#work section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#work section#title .inner h1::after,
  html body main#work section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#work section:not(#title) {
  overflow: hidden;
}
html body main#work section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#work section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#work section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#work section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#work section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#work section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#work section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#work section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#work section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#work section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#work section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#work section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#work section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#work section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#work section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#work section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#work section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#work section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#work section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#work section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#work section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#work section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#work section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#work section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#work section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#work section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#work section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#work section#posting .inner article > .comment h1,
html body main#work section#posting .inner article > .comment h2,
html body main#work section#posting .inner article > .comment h3,
html body main#work section#posting .inner article > .comment h4,
html body main#work section#posting .inner article > .comment h5,
html body main#work section#posting .inner article > .comment h6,
html body main#work section#posting .inner article > .comment p {
  all: revert;
}
html body main#work section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#work section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#work section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#work section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#work section#posting .inner article > .comment ul,
html body main#work section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#work section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#work section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#work section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#work section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#work section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#work section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#work section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#work section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#work section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#work section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#work section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#work .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#work .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#work .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#work .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#work .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#work .breadcrumbs li a {
  white-space: nowrap;
}
html body main#work .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#work .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#work .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#work .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#interview section#title {
  background: url("../img/title_interview.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title {
    background: url("../img/title_interview.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#interview section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#interview section#title .inner h1,
html body main#interview section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title .inner h1,
  html body main#interview section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#interview section#title .inner h1::after,
html body main#interview section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#title .inner h1::after,
  html body main#interview section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#interview section:not(#title) {
  overflow: hidden;
}
html body main#interview section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#interview section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#interview section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#interview section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#interview section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#interview section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#interview section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#interview section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#interview section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#interview section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#interview section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#interview section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#interview section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#interview section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#interview section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#interview section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#interview section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#interview section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#interview section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#interview section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#interview section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#interview section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#interview section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#interview section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#interview section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#interview section#posting .inner article > .comment h1,
html body main#interview section#posting .inner article > .comment h2,
html body main#interview section#posting .inner article > .comment h3,
html body main#interview section#posting .inner article > .comment h4,
html body main#interview section#posting .inner article > .comment h5,
html body main#interview section#posting .inner article > .comment h6,
html body main#interview section#posting .inner article > .comment p {
  all: revert;
}
html body main#interview section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#interview section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#interview section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#interview section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#interview section#posting .inner article > .comment ul,
html body main#interview section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#interview section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#interview section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#interview section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#interview section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#interview section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#interview section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#interview section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#interview section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#interview section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#interview section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#interview .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#interview .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#interview .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#interview .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#interview .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#interview .breadcrumbs li a {
  white-space: nowrap;
}
html body main#interview .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#interview .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#interview .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#interview .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#requirement section#title {
  background: url("../img/title_requirement.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#title {
    background: url("../img/title_requirement.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#requirement section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#requirement section#title .inner h1,
html body main#requirement section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#title .inner h1,
  html body main#requirement section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#requirement section#title .inner h1::after,
html body main#requirement section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#title .inner h1::after,
  html body main#requirement section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#requirement section:not(#title) {
  overflow: hidden;
}
html body main#requirement section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#requirement section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#requirement section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#requirement section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#requirement section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#requirement section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#requirement section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#requirement section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#requirement section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#requirement section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#requirement section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#requirement section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#requirement section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#requirement section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#requirement section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#requirement section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#requirement section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#requirement section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#requirement section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#requirement section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#requirement section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#requirement section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#requirement section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#requirement section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#requirement section#posting .inner article > .comment h1,
html body main#requirement section#posting .inner article > .comment h2,
html body main#requirement section#posting .inner article > .comment h3,
html body main#requirement section#posting .inner article > .comment h4,
html body main#requirement section#posting .inner article > .comment h5,
html body main#requirement section#posting .inner article > .comment h6,
html body main#requirement section#posting .inner article > .comment p {
  all: revert;
}
html body main#requirement section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#requirement section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#requirement section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#requirement section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#requirement section#posting .inner article > .comment ul,
html body main#requirement section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#requirement section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#requirement section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#requirement section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#requirement section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#requirement section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#requirement section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#requirement section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#requirement section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#requirement section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#requirement section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#requirement .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#requirement .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#requirement .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#requirement .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#requirement .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#requirement .breadcrumbs li a {
  white-space: nowrap;
}
html body main#requirement .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#requirement .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#requirement .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#requirement .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#news section#title {
  background: url("../img/title_news.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#news section#title {
    background: url("../img/title_news.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#news section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#news section#title .inner h1,
html body main#news section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner h1,
  html body main#news section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#news section#title .inner h1::after,
html body main#news section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner h1::after,
  html body main#news section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#news section:not(#title) {
  overflow: hidden;
}
html body main#news section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#news section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#news section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#news section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#news section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#news section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#news section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#news section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#news section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#news section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#news section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#news section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#news section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#news section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#news section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#news section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#news section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#news section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#news section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#news section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#news section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#news section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#news section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#news section#posting .inner article > .comment h1,
html body main#news section#posting .inner article > .comment h2,
html body main#news section#posting .inner article > .comment h3,
html body main#news section#posting .inner article > .comment h4,
html body main#news section#posting .inner article > .comment h5,
html body main#news section#posting .inner article > .comment h6,
html body main#news section#posting .inner article > .comment p {
  all: revert;
}
html body main#news section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#news section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#news section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#news section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#news section#posting .inner article > .comment ul,
html body main#news section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#news section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#news section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#news section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#news section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#news section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#news section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#news section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#news section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#news section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#news section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#news .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#news .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#news .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#news .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#news .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#news .breadcrumbs li a {
  white-space: nowrap;
}
html body main#news .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#news .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#news .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#news_detail section#title {
  background: url("../img/title_news_detail.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title {
    background: url("../img/title_news_detail.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#news_detail section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#news_detail section#title .inner h1,
html body main#news_detail section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner h1,
  html body main#news_detail section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#news_detail section#title .inner h1::after,
html body main#news_detail section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner h1::after,
  html body main#news_detail section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#news_detail section:not(#title) {
  overflow: hidden;
}
html body main#news_detail section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#news_detail section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#news_detail section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#news_detail section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#news_detail section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#news_detail section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#news_detail section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#news_detail section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#news_detail section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#news_detail section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#news_detail section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#news_detail section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#news_detail section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#news_detail section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#news_detail section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news_detail section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#news_detail section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#news_detail section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news_detail section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news_detail section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#news_detail section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#news_detail section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#news_detail section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#news_detail section#posting .inner article > .comment h1,
html body main#news_detail section#posting .inner article > .comment h2,
html body main#news_detail section#posting .inner article > .comment h3,
html body main#news_detail section#posting .inner article > .comment h4,
html body main#news_detail section#posting .inner article > .comment h5,
html body main#news_detail section#posting .inner article > .comment h6,
html body main#news_detail section#posting .inner article > .comment p {
  all: revert;
}
html body main#news_detail section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#news_detail section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#news_detail section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#news_detail section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#news_detail section#posting .inner article > .comment ul,
html body main#news_detail section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#news_detail section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#news_detail section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#news_detail section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#news_detail section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#news_detail section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#news_detail section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#news_detail section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#news_detail section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#news_detail section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#news_detail section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#news_detail .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#news_detail .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#news_detail .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#news_detail .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#news_detail .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#news_detail .breadcrumbs li a {
  white-space: nowrap;
}
html body main#news_detail .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#news_detail .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#news_detail .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#contact section#title {
  background: url("../img/title_contact.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title {
    background: url("../img/title_contact.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#contact section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#contact section#title .inner h1,
html body main#contact section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h1,
  html body main#contact section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#contact section#title .inner h1::after,
html body main#contact section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h1::after,
  html body main#contact section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#contact section:not(#title) {
  overflow: hidden;
}
html body main#contact section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#contact section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#contact section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#contact section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#contact section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#contact section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#contact section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#contact section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#contact section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#contact section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#contact section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#contact section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#contact section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#contact section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#contact section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#contact section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#contact section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#contact section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#contact section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#contact section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#contact section#posting .inner article > .comment h1,
html body main#contact section#posting .inner article > .comment h2,
html body main#contact section#posting .inner article > .comment h3,
html body main#contact section#posting .inner article > .comment h4,
html body main#contact section#posting .inner article > .comment h5,
html body main#contact section#posting .inner article > .comment h6,
html body main#contact section#posting .inner article > .comment p {
  all: revert;
}
html body main#contact section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#contact section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#contact section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#contact section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#contact section#posting .inner article > .comment ul,
html body main#contact section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#contact section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#contact section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#contact section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#contact section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#contact section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#contact section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#contact section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#contact section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#contact section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#contact .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#contact .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#contact .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#contact .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#contact .breadcrumbs li a {
  white-space: nowrap;
}
html body main#contact .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contact .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#contact .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#contact .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#complete section#title {
  background: url("../img/title_complete.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title {
    background: url("../img/title_complete.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#complete section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#complete section#title .inner h1,
html body main#complete section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h1,
  html body main#complete section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#complete section#title .inner h1::after,
html body main#complete section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h1::after,
  html body main#complete section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#complete section:not(#title) {
  overflow: hidden;
}
html body main#complete section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#complete section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#complete section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#complete section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#complete section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#complete section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#complete section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#complete section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#complete section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#complete section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#complete section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#complete section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#complete section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#complete section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#complete section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#complete section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#complete section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#complete section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#complete section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#complete section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#complete section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#complete section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#complete section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#complete section#posting .inner article > .comment h1,
html body main#complete section#posting .inner article > .comment h2,
html body main#complete section#posting .inner article > .comment h3,
html body main#complete section#posting .inner article > .comment h4,
html body main#complete section#posting .inner article > .comment h5,
html body main#complete section#posting .inner article > .comment h6,
html body main#complete section#posting .inner article > .comment p {
  all: revert;
}
html body main#complete section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#complete section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#complete section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#complete section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#complete section#posting .inner article > .comment ul,
html body main#complete section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#complete section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#complete section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#complete section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#complete section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#complete section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#complete section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#complete section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#complete section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#complete section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#complete section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#complete .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#complete .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#complete .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#complete .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#complete .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#complete .breadcrumbs li a {
  white-space: nowrap;
}
html body main#complete .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#complete .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#complete .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#complete .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#notfound section#title {
  background: url("../img/title_notfound.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title {
    background: url("../img/title_notfound.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#notfound section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#notfound section#title .inner h1,
html body main#notfound section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title .inner h1,
  html body main#notfound section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#notfound section#title .inner h1::after,
html body main#notfound section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title .inner h1::after,
  html body main#notfound section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#notfound section:not(#title) {
  overflow: hidden;
}
html body main#notfound section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#notfound section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#notfound section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#notfound section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#notfound section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#notfound section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#notfound section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#notfound section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#notfound section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#notfound section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#notfound section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#notfound section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#notfound section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#notfound section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#notfound section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#notfound section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#notfound section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#notfound section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#notfound section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#notfound section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#notfound section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#notfound section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#notfound section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#notfound section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#notfound section#posting .inner article > .comment h1,
html body main#notfound section#posting .inner article > .comment h2,
html body main#notfound section#posting .inner article > .comment h3,
html body main#notfound section#posting .inner article > .comment h4,
html body main#notfound section#posting .inner article > .comment h5,
html body main#notfound section#posting .inner article > .comment h6,
html body main#notfound section#posting .inner article > .comment p {
  all: revert;
}
html body main#notfound section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#notfound section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#notfound section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#notfound section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#notfound section#posting .inner article > .comment ul,
html body main#notfound section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#notfound section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#notfound section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#notfound section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#notfound section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#notfound section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#notfound section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#notfound section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#notfound section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#notfound section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#notfound section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#notfound .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#notfound .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#notfound .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#notfound .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#notfound .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#notfound .breadcrumbs li a {
  white-space: nowrap;
}
html body main#notfound .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#notfound .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#notfound .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#notfound .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#privacy section#title {
  background: url("../img/title_privacy.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title {
    background: url("../img/title_privacy.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#privacy section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#privacy section#title .inner h1,
html body main#privacy section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h1,
  html body main#privacy section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#privacy section#title .inner h1::after,
html body main#privacy section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h1::after,
  html body main#privacy section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#privacy section:not(#title) {
  overflow: hidden;
}
html body main#privacy section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#privacy section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#privacy section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#privacy section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#privacy section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#privacy section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#privacy section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#privacy section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#privacy section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#privacy section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#privacy section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#privacy section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#privacy section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#privacy section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#privacy section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#privacy section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#privacy section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#privacy section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#privacy section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#privacy section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#privacy section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#privacy section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#privacy section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#privacy section#posting .inner article > .comment h1,
html body main#privacy section#posting .inner article > .comment h2,
html body main#privacy section#posting .inner article > .comment h3,
html body main#privacy section#posting .inner article > .comment h4,
html body main#privacy section#posting .inner article > .comment h5,
html body main#privacy section#posting .inner article > .comment h6,
html body main#privacy section#posting .inner article > .comment p {
  all: revert;
}
html body main#privacy section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#privacy section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#privacy section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#privacy section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#privacy section#posting .inner article > .comment ul,
html body main#privacy section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#privacy section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#privacy section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#privacy section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#privacy section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#privacy section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#privacy section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#privacy section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#privacy section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#privacy section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#privacy section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#privacy .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#privacy .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#privacy .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#privacy .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#privacy .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#privacy .breadcrumbs li a {
  white-space: nowrap;
}
html body main#privacy .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#privacy .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#privacy .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#privacy .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#voice section#title {
  background: url("../img/title_voice.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#voice section#title {
    background: url("../img/title_voice.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#voice section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#voice section#title .inner h1,
html body main#voice section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#voice section#title .inner h1,
  html body main#voice section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#voice section#title .inner h1::after,
html body main#voice section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#title .inner h1::after,
  html body main#voice section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#voice section:not(#title) {
  overflow: hidden;
}
html body main#voice section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#voice section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#voice section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#voice section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#voice section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#voice section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#voice section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#voice section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#voice section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#voice section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#voice section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#voice section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#voice section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#voice section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#voice section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#voice section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#voice section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#voice section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#voice section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#voice section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#voice section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#voice section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#voice section#posting .inner article > .comment h1,
html body main#voice section#posting .inner article > .comment h2,
html body main#voice section#posting .inner article > .comment h3,
html body main#voice section#posting .inner article > .comment h4,
html body main#voice section#posting .inner article > .comment h5,
html body main#voice section#posting .inner article > .comment h6,
html body main#voice section#posting .inner article > .comment p {
  all: revert;
}
html body main#voice section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#voice section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#voice section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#voice section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#voice section#posting .inner article > .comment ul,
html body main#voice section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#voice section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#voice section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#voice section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#voice section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#voice section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#voice section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#voice section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#voice section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#voice section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#voice .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#voice .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#voice .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#voice .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#voice .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#voice .breadcrumbs li a {
  white-space: nowrap;
}
html body main#voice .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#voice .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#voice .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#voice .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#voice_detail section#title {
  background: url("../img/title_voice_detail.png") no-repeat center/cover;
  aspect-ratio: 683/148;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#title {
    background: url("../img/title_voice_detail.png") no-repeat center/cover;
    aspect-ratio: 15/8;
  }
}
html body main#voice_detail section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
html body main#voice_detail section#title .inner h1,
html body main#voice_detail section#title .inner p {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(3.125rem, 50px);
  margin-top: 3.66vw;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#title .inner h1,
  html body main#voice_detail section#title .inner p {
    font-size: 2.142rem;
    margin-top: min(8vw, 30px);
  }
}
html body main#voice_detail section#title .inner h1::after,
html body main#voice_detail section#title .inner p::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Nanum Myeongjo";
  font-size: min(1.125rem, 18px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#title .inner h1::after,
  html body main#voice_detail section#title .inner p::after {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#voice_detail section:not(#title) {
  overflow: hidden;
}
html body main#voice_detail section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section:not(#title) .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body main#voice_detail section#entry {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#voice_detail section#entry a .wrapper {
  border-top: 1px #F7F3EB solid;
  border-bottom: 1px #F7F3EB solid;
  margin: min(0.732vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#entry a .wrapper {
    margin: 2.667vw 0;
  }
}
html body main#voice_detail section#entry a .wrapper .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#entry a .wrapper .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#voice_detail section#entry a .wrapper .inner h2 {
  color: #E7E1D5;
}
html body main#voice_detail section#entry a .wrapper .inner h2 span {
  color: #fff;
}
html body main#voice_detail section#entry a .wrapper .inner h2 span::before {
  background: #fff;
}
html body main#voice_detail section#entry a .wrapper .inner .btn {
  width: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#entry a .wrapper .inner .btn {
    width: 16vw;
  }
}
html body main#voice_detail section#entry a .wrapper .inner .btn img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#voice_detail section#entry a:hover .btn img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#voice_detail section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#voice_detail section#posting .inner article {
  display: block;
  width: 100%;
}
html body main#voice_detail section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#voice_detail section#posting .inner article > .date time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
  margin-right: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#voice_detail section#posting .inner article > .date .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .date .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice_detail section#posting .inner article > h1 {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > h1 {
    font-size: 1.571rem;
    padding-bottom: 2.667vw;
    margin: 5.333vw 0 0;
  }
}
html body main#voice_detail section#posting .inner article > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > dl {
    margin-top: 5.333vw;
  }
}
html body main#voice_detail section#posting .inner article > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice_detail section#posting .inner article > dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice_detail section#posting .inner article > .name {
  font-size: min(1rem, 16px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .name {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#voice_detail section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > figure {
    margin-top: 5.333vw;
  }
}
html body main#voice_detail section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#voice_detail section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .comment {
    margin-top: 5.333vw;
  }
}
html body main#voice_detail section#posting .inner article > .comment h1,
html body main#voice_detail section#posting .inner article > .comment h2,
html body main#voice_detail section#posting .inner article > .comment h3,
html body main#voice_detail section#posting .inner article > .comment h4,
html body main#voice_detail section#posting .inner article > .comment h5,
html body main#voice_detail section#posting .inner article > .comment h6,
html body main#voice_detail section#posting .inner article > .comment p {
  all: revert;
}
html body main#voice_detail section#posting .inner article > .comment h2 {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #DACCB0 solid;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .comment h2 {
    font-size: 1.428rem;
    padding-bottom: 2.667vw;
  }
}
html body main#voice_detail section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .comment h3 {
    font-size: 1.285rem;
  }
}
html body main#voice_detail section#posting .inner article > .comment h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .comment h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#voice_detail section#posting .inner article > .comment h4 {
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .comment h4 {
    font-size: 1.142rem;
  }
}
html body main#voice_detail section#posting .inner article > .comment ul,
html body main#voice_detail section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#voice_detail section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#voice_detail section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#voice_detail section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#voice_detail section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#voice_detail section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#voice_detail section#posting .inner article > .comment blockquote {
  background: #F7F3EB;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner article > .comment blockquote {
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice_detail section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#voice_detail section#posting .inner article > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#voice_detail section#posting .inner article > .comment a {
  color: #BD2D20;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#voice_detail section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#voice_detail .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(83.455vw, 1140px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail .breadcrumbs {
    width: 100%;
    padding: 0 8vw;
    margin: 2.667vw auto 0;
  }
}
html body main#voice_detail .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#voice_detail .breadcrumbs li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body main#voice_detail .breadcrumbs li a {
  white-space: nowrap;
}
html body main#voice_detail .breadcrumbs li::after {
  content: "";
  background: url("../img/icon_arrow3.svg") no-repeat center/contain;
  width: min(1.025vw, 14px);
  height: min(0.878vw, 12px);
  margin: 0 min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail .breadcrumbs li::after {
    width: 3.077vw;
    height: 2.821vw;
    margin: 0 1.333vw;
  }
}
html body main#voice_detail .breadcrumbs li:last-child::after {
  content: normal;
}
html body main#voice_detail .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main#company section#greetings .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div {
    display: block;
    margin-top: 5.333vw;
  }
}
html body main#company section#greetings .inner > div div {
  width: 100%;
}
html body main#company section#greetings .inner > div div .signature {
  font-size: min(1rem, 16px);
  line-height: 2;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div div .signature {
    font-size: 0.857rem;
    margin-top: 5.333vw;
  }
}
html body main#company section#greetings .inner > div div .signature span {
  font-size: min(1.375rem, 22px);
  vertical-align: baseline;
  margin-left: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div div .signature span {
    font-size: 1.142rem;
    margin-left: 2.667vw;
  }
}
html body main#company section#greetings .inner > div figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(35.652vw, 487px);
  margin: 0 0 0 min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greetings .inner > div figure {
    width: 100%;
    margin: 0 0 5.333vw 0;
  }
}
html body main#company section#safety {
  background: url("../img/bg_company_safety.png") no-repeat center top/cover;
}
html body main#company section#safety .inner {
  width: min(58.565vw, 800px);
}
html body main#company section#safety .inner h2 {
  color: #fff;
}
html body main#company section#safety .inner h2 span {
  color: #fff;
}
html body main#company section#safety .inner h2 span::before {
  background: #fff;
}
html body main#company section#safety .inner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#safety .inner .container {
    display: block;
    margin-top: 5.333vw;
  }
}
html body main#company section#safety .inner .container .comment {
  color: #fff;
}
html body main#company section#safety .inner .container figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  width: min(10.249vw, 140px);
  margin: 0 0 0 min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#company section#safety .inner .container figure {
    width: 100%;
    margin: 5.333vw 0 0 0;
  }
  html body main#company section#safety .inner .container figure img {
    width: 37.333vw;
  }
}
html body main#company section#safety .inner .container figure figcaption {
  color: #fff;
  font-size: min(0.625rem, 10px);
  line-height: 1.6;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#safety .inner .container figure figcaption {
    font-size: 0.714rem;
    margin-top: 1.333vw;
  }
}
html body main#company section#safety .inner .swiper-container {
  margin: min(4.392vw, 60px) 0 0 0;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#company section#safety .inner .swiper-container {
    margin: 8vw 0 0 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }
}
html body main#company section#safety .inner .swiper-container .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
html body main#company section#safety .inner .swiper-container .swiper-wrapper .swiper-slide {
  width: min(29.283vw, 400px);
  margin: 0 min(2.196vw, 30px) 0 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#safety .inner .swiper-container .swiper-wrapper .swiper-slide {
    width: 70vw;
    margin: 0 4vw 0 0;
  }
}
html body main#company section#safety .inner .swiper-container .swiper-wrapper .swiper-slide figure {
  width: 100%;
}
html body main#company section#overview .inner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner h3 {
    font-size: 1.285rem;
    margin-top: 10.667vw;
  }
}
html body main#company section#overview .inner h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.875rem, 14px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#company section#overview .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner > div {
    display: block;
    margin-top: 5.333vw;
  }
}
html body main#company section#overview .inner > div figure {
  width: min(40.264vw, 550px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner > div figure {
    width: 100%;
  }
}
html body main#company section#overview .inner > div iframe {
  width: min(40.264vw, 550px);
  aspect-ratio: 275/171;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner > div iframe {
    width: 100%;
    margin-top: 5.333vw;
  }
}
html body main#company section#overview .inner > div div {
  width: min(40.264vw, 550px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner > div div {
    width: 100%;
  }
}
html body main#company section#overview .inner > div div dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
html body main#company section#overview .inner > div div dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 2;
  width: min(11.713vw, 160px);
  padding: min(1.098vw, 15px) 0;
  margin: 0 min(0.732vw, 10px) 0 0;
  border-bottom: 1px #BD2D20 solid;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner > div div dl dt {
    font-size: 0.857rem;
    width: 29.333vw;
    padding: 4vw 0;
    margin: 0 2.667vw 0 0;
  }
}
html body main#company section#overview .inner > div div dl dd {
  font-size: min(0.875rem, 14px);
  line-height: 2;
  width: 100%;
  padding: min(1.098vw, 15px) 0;
  border-bottom: 1px #EEEBE5 solid;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner > div div dl dd {
    font-size: 0.857rem;
    padding: 4vw 0;
  }
}
html body main#company section#overview .inner > div div dl dd a {
  text-decoration: underline;
}
html body main#company section#overview .inner > div + div {
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner > div + div {
    margin-top: 2.667vw;
  }
}
html body main#company section#affiliate {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
html body main#company section#affiliate .inner h2 {
  color: #fff;
}
html body main#company section#affiliate .inner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#affiliate .inner h3 {
    font-size: 1.285rem;
    margin-top: 5.333vw;
  }
}
html body main#company section#affiliate .inner h3::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.875rem, 14px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#company section#affiliate .inner h3::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#company section#affiliate .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#affiliate .inner > div {
    display: block;
    margin-top: 5.333vw;
  }
}
html body main#company section#affiliate .inner > div div {
  width: min(40.264vw, 550px);
}
@media screen and (max-width: 768px) {
  html body main#company section#affiliate .inner > div div {
    width: 100%;
  }
  html body main#company section#affiliate .inner > div div:nth-of-type(2) {
    margin-top: 5.333vw;
  }
}
html body main#company section#affiliate .inner > div div figure {
  width: 100%;
}
html body main#company section#affiliate .inner > div div .comment {
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#affiliate .inner > div div .comment {
    margin-top: 2.667vw;
  }
}
html body main#company section#history .inner {
  width: min(58.565vw, 800px);
  padding: min(8.785vw, 120px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner {
    padding: 21.333vw 8vw 0;
  }
}
html body main#company section#history .inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
html body main#company section#history .inner dl:nth-of-type(1) {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner dl:nth-of-type(1) {
    font-sie: 1.285rem;
    margin-top: 5.333vw;
  }
}
html body main#company section#history .inner dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 2;
  width: min(11.713vw, 160px);
  padding: min(1.098vw, 15px) 0;
  margin: 0 min(0.732vw, 10px) 0 0;
  border-bottom: 1px #BD2D20 solid;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner dl dt {
    font-size: 0.857rem;
    width: 29.333vw;
    padding: 4vw 0;
    margin: 0 2.667vw 0 0;
  }
}
html body main#company section#history .inner dl dd {
  font-size: min(0.875rem, 14px);
  line-height: 2;
  width: 100%;
  padding: min(1.098vw, 15px) 0;
  border-bottom: 1px #EEEBE5 solid;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner dl dd {
    font-size: 0.857rem;
    padding: 4vw 0;
  }
}
html body main#commercial .navigation, html body main#consumer .navigation {
  width: min(71.596vw, 978px);
  margin: min(8.785vw, 120px) auto;
  gap: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#commercial .navigation, html body main#consumer .navigation {
    width: 100%;
    margin: 16vw auto;
  }
}
html body main#commercial .navigation li, html body main#consumer .navigation li {
  width: min(22.401vw, 306px);
}
@media screen and (max-width: 768px) {
  html body main#commercial .navigation li, html body main#consumer .navigation li {
    width: 42.667vw;
  }
}
html body main#commercial .navigation li a, html body main#consumer .navigation li a {
  height: min(4.539vw, 62px) !important;
}
@media screen and (max-width: 768px) {
  html body main#commercial .navigation li a, html body main#consumer .navigation li a {
    height: 10.667vw !important;
  }
}
html body main#commercial section#products .inner, html body main#consumer section#products .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: min(8.785vw, 120px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products .inner, html body main#consumer section#products .inner {
    padding: 21.333vw 8vw 0;
  }
}
html body main#commercial section#products .inner figure, html body main#consumer section#products .inner figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(37.555vw, 513px);
  margin: 0 min(4.392vw, 60px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products .inner figure, html body main#consumer section#products .inner figure {
    width: 100%;
    margin: 0 0 10.667vw 0;
  }
}
html body main#commercial section#products .inner > div, html body main#consumer section#products .inner > div {
  width: 100%;
}
html body main#commercial section#products .inner > div h2, html body main#consumer section#products .inner > div h2 {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000 !important;
  font-family: "A1 Mincho" !important;
  font-size: min(1.875rem, 30px) !important;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products .inner > div h2, html body main#consumer section#products .inner > div h2 {
    font-size: 1.857rem !important;
  }
}
html body main#commercial section#products .inner > div h2::before, html body main#consumer section#products .inner > div h2::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.875rem, 14px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products .inner > div h2::before, html body main#consumer section#products .inner > div h2::before {
    font-size: 2.667vw;
    margin-right: 1.333vw;
  }
}
html body main#commercial section#products .inner > div .comment, html body main#consumer section#products .inner > div .comment {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products .inner > div .comment, html body main#consumer section#products .inner > div .comment {
    margin-top: 5.333vw;
  }
}
html body main#commercial section#products1 .inner, html body main#commercial section#products2 .inner, html body main#commercial section#products3 .inner, html body main#commercial section#products4 .inner, html body main#commercial section#products5 .inner, html body main#consumer section#products1 .inner, html body main#consumer section#products2 .inner, html body main#consumer section#products3 .inner, html body main#consumer section#products4 .inner, html body main#consumer section#products5 .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#commercial section#products1 .inner > h3, html body main#commercial section#products2 .inner > h3, html body main#commercial section#products3 .inner > h3, html body main#commercial section#products4 .inner > h3, html body main#commercial section#products5 .inner > h3, html body main#consumer section#products1 .inner > h3, html body main#consumer section#products2 .inner > h3, html body main#consumer section#products3 .inner > h3, html body main#consumer section#products4 .inner > h3, html body main#consumer section#products5 .inner > h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner > h3, html body main#commercial section#products2 .inner > h3, html body main#commercial section#products3 .inner > h3, html body main#commercial section#products4 .inner > h3, html body main#commercial section#products5 .inner > h3, html body main#consumer section#products1 .inner > h3, html body main#consumer section#products2 .inner > h3, html body main#consumer section#products3 .inner > h3, html body main#consumer section#products4 .inner > h3, html body main#consumer section#products5 .inner > h3 {
    font-size: 1.285rem;
  }
}
html body main#commercial section#products1 .inner > h3::after, html body main#commercial section#products2 .inner > h3::after, html body main#commercial section#products3 .inner > h3::after, html body main#commercial section#products4 .inner > h3::after, html body main#commercial section#products5 .inner > h3::after, html body main#consumer section#products1 .inner > h3::after, html body main#consumer section#products2 .inner > h3::after, html body main#consumer section#products3 .inner > h3::after, html body main#consumer section#products4 .inner > h3::after, html body main#consumer section#products5 .inner > h3::after {
  content: "";
  display: block;
  width: min(3.66vw, 50px);
  height: 1px;
  background: #BD2D20;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner > h3::after, html body main#commercial section#products2 .inner > h3::after, html body main#commercial section#products3 .inner > h3::after, html body main#commercial section#products4 .inner > h3::after, html body main#commercial section#products5 .inner > h3::after, html body main#consumer section#products1 .inner > h3::after, html body main#consumer section#products2 .inner > h3::after, html body main#consumer section#products3 .inner > h3::after, html body main#consumer section#products4 .inner > h3::after, html body main#consumer section#products5 .inner > h3::after {
    width: 8vw;
    margin-top: 2.667vw;
  }
}
html body main#commercial section#products1 .inner > .comment, html body main#commercial section#products2 .inner > .comment, html body main#commercial section#products3 .inner > .comment, html body main#commercial section#products4 .inner > .comment, html body main#commercial section#products5 .inner > .comment, html body main#consumer section#products1 .inner > .comment, html body main#consumer section#products2 .inner > .comment, html body main#consumer section#products3 .inner > .comment, html body main#consumer section#products4 .inner > .comment, html body main#consumer section#products5 .inner > .comment {
  width: min(58.565vw, 800px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner > .comment, html body main#commercial section#products2 .inner > .comment, html body main#commercial section#products3 .inner > .comment, html body main#commercial section#products4 .inner > .comment, html body main#commercial section#products5 .inner > .comment, html body main#consumer section#products1 .inner > .comment, html body main#consumer section#products2 .inner > .comment, html body main#consumer section#products3 .inner > .comment, html body main#consumer section#products4 .inner > .comment, html body main#consumer section#products5 .inner > .comment {
    width: 100%;
    margin-top: 2.667vw;
  }
}
html body main#commercial section#products1 .inner ul, html body main#commercial section#products2 .inner ul, html body main#commercial section#products3 .inner ul, html body main#commercial section#products4 .inner ul, html body main#commercial section#products5 .inner ul, html body main#consumer section#products1 .inner ul, html body main#consumer section#products2 .inner ul, html body main#consumer section#products3 .inner ul, html body main#consumer section#products4 .inner ul, html body main#consumer section#products5 .inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.196vw, 30px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner ul, html body main#commercial section#products2 .inner ul, html body main#commercial section#products3 .inner ul, html body main#commercial section#products4 .inner ul, html body main#commercial section#products5 .inner ul, html body main#consumer section#products1 .inner ul, html body main#consumer section#products2 .inner ul, html body main#consumer section#products3 .inner ul, html body main#consumer section#products4 .inner ul, html body main#consumer section#products5 .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    margin-top: 5.333vw;
  }
}
html body main#commercial section#products1 .inner ul li, html body main#commercial section#products2 .inner ul li, html body main#commercial section#products3 .inner ul li, html body main#commercial section#products4 .inner ul li, html body main#commercial section#products5 .inner ul li, html body main#consumer section#products1 .inner ul li, html body main#consumer section#products2 .inner ul li, html body main#consumer section#products3 .inner ul li, html body main#consumer section#products4 .inner ul li, html body main#consumer section#products5 .inner ul li {
  background: #fff;
}
html body main#commercial section#products1 .inner ul li figure, html body main#commercial section#products2 .inner ul li figure, html body main#commercial section#products3 .inner ul li figure, html body main#commercial section#products4 .inner ul li figure, html body main#commercial section#products5 .inner ul li figure, html body main#consumer section#products1 .inner ul li figure, html body main#consumer section#products2 .inner ul li figure, html body main#consumer section#products3 .inner ul li figure, html body main#consumer section#products4 .inner ul li figure, html body main#consumer section#products5 .inner ul li figure {
  width: 100%;
}
html body main#commercial section#products1 .inner ul li figure img, html body main#commercial section#products2 .inner ul li figure img, html body main#commercial section#products3 .inner ul li figure img, html body main#commercial section#products4 .inner ul li figure img, html body main#commercial section#products5 .inner ul li figure img, html body main#consumer section#products1 .inner ul li figure img, html body main#consumer section#products2 .inner ul li figure img, html body main#consumer section#products3 .inner ul li figure img, html body main#consumer section#products4 .inner ul li figure img, html body main#consumer section#products5 .inner ul li figure img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
html body main#commercial section#products1 .inner ul li figure figcaption, html body main#commercial section#products2 .inner ul li figure figcaption, html body main#commercial section#products3 .inner ul li figure figcaption, html body main#commercial section#products4 .inner ul li figure figcaption, html body main#commercial section#products5 .inner ul li figure figcaption, html body main#consumer section#products1 .inner ul li figure figcaption, html body main#consumer section#products2 .inner ul li figure figcaption, html body main#consumer section#products3 .inner ul li figure figcaption, html body main#consumer section#products4 .inner ul li figure figcaption, html body main#consumer section#products5 .inner ul li figure figcaption {
  padding: min(1.464vw, 20px) min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner ul li figure figcaption, html body main#commercial section#products2 .inner ul li figure figcaption, html body main#commercial section#products3 .inner ul li figure figcaption, html body main#commercial section#products4 .inner ul li figure figcaption, html body main#commercial section#products5 .inner ul li figure figcaption, html body main#consumer section#products1 .inner ul li figure figcaption, html body main#consumer section#products2 .inner ul li figure figcaption, html body main#consumer section#products3 .inner ul li figure figcaption, html body main#consumer section#products4 .inner ul li figure figcaption, html body main#consumer section#products5 .inner ul li figure figcaption {
    padding: 5.333vw 5.333vw;
  }
}
html body main#commercial section#products1 .inner ul li figure figcaption strong, html body main#commercial section#products2 .inner ul li figure figcaption strong, html body main#commercial section#products3 .inner ul li figure figcaption strong, html body main#commercial section#products4 .inner ul li figure figcaption strong, html body main#commercial section#products5 .inner ul li figure figcaption strong, html body main#consumer section#products1 .inner ul li figure figcaption strong, html body main#consumer section#products2 .inner ul li figure figcaption strong, html body main#consumer section#products3 .inner ul li figure figcaption strong, html body main#consumer section#products4 .inner ul li figure figcaption strong, html body main#consumer section#products5 .inner ul li figure figcaption strong {
  display: block;
  font-family: "A1 Mincho";
  font-size: min(1.5rem, 24px);
  line-height: 1.3;
  padding-bottom: min(0.732vw, 10px);
  border-bottom: 1px #BD2D20 solid;
  margin: 0 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner ul li figure figcaption strong, html body main#commercial section#products2 .inner ul li figure figcaption strong, html body main#commercial section#products3 .inner ul li figure figcaption strong, html body main#commercial section#products4 .inner ul li figure figcaption strong, html body main#commercial section#products5 .inner ul li figure figcaption strong, html body main#consumer section#products1 .inner ul li figure figcaption strong, html body main#consumer section#products2 .inner ul li figure figcaption strong, html body main#consumer section#products3 .inner ul li figure figcaption strong, html body main#consumer section#products4 .inner ul li figure figcaption strong, html body main#consumer section#products5 .inner ul li figure figcaption strong {
    font-size: 1.142rem;
    padding-bottom: 2.667vw;
    margin: 0 0 2.667vw;
  }
}
html body main#commercial section#products1 .inner ul li figure figcaption .comment em, html body main#commercial section#products2 .inner ul li figure figcaption .comment em, html body main#commercial section#products3 .inner ul li figure figcaption .comment em, html body main#commercial section#products4 .inner ul li figure figcaption .comment em, html body main#commercial section#products5 .inner ul li figure figcaption .comment em, html body main#consumer section#products1 .inner ul li figure figcaption .comment em, html body main#consumer section#products2 .inner ul li figure figcaption .comment em, html body main#consumer section#products3 .inner ul li figure figcaption .comment em, html body main#consumer section#products4 .inner ul li figure figcaption .comment em, html body main#consumer section#products5 .inner ul li figure figcaption .comment em {
  color: #BD2D20;
  font-weight: 700;
  vertical-align: baseline;
}
html body main#commercial section#products1 .inner .note, html body main#commercial section#products2 .inner .note, html body main#commercial section#products3 .inner .note, html body main#commercial section#products4 .inner .note, html body main#commercial section#products5 .inner .note, html body main#consumer section#products1 .inner .note, html body main#consumer section#products2 .inner .note, html body main#consumer section#products3 .inner .note, html body main#consumer section#products4 .inner .note, html body main#consumer section#products5 .inner .note {
  color: #BD2D20;
  font-size: min(1rem, 16px);
  line-height: 2;
  width: 100%;
  margin-top: min(1.464vw, 20px);
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner .note, html body main#commercial section#products2 .inner .note, html body main#commercial section#products3 .inner .note, html body main#commercial section#products4 .inner .note, html body main#commercial section#products5 .inner .note, html body main#consumer section#products1 .inner .note, html body main#consumer section#products2 .inner .note, html body main#consumer section#products3 .inner .note, html body main#consumer section#products4 .inner .note, html body main#consumer section#products5 .inner .note {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#commercial section#products1 .inner .btn2, html body main#commercial section#products2 .inner .btn2, html body main#commercial section#products3 .inner .btn2, html body main#commercial section#products4 .inner .btn2, html body main#commercial section#products5 .inner .btn2, html body main#consumer section#products1 .inner .btn2, html body main#consumer section#products2 .inner .btn2, html body main#consumer section#products3 .inner .btn2, html body main#consumer section#products4 .inner .btn2, html body main#consumer section#products5 .inner .btn2 {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#commercial section#products1 .inner .btn2, html body main#commercial section#products2 .inner .btn2, html body main#commercial section#products3 .inner .btn2, html body main#commercial section#products4 .inner .btn2, html body main#commercial section#products5 .inner .btn2, html body main#consumer section#products1 .inner .btn2, html body main#consumer section#products2 .inner .btn2, html body main#consumer section#products3 .inner .btn2, html body main#consumer section#products4 .inner .btn2, html body main#consumer section#products5 .inner .btn2 {
    margin: 5.333vw auto 0;
  }
}
html body main#commercial section#products1, html body main#commercial section#products3, html body main#commercial section#products5, html body main#consumer section#products1, html body main#consumer section#products3, html body main#consumer section#products5 {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
html body main#commercial section#products2 .inner ul li, html body main#commercial section#products4 .inner ul li, html body main#consumer section#products2 .inner ul li, html body main#consumer section#products4 .inner ul li {
  background: #F7F3EB;
}
html body main#recruit section#title_recruit {
  background: url("../img/bg_recruit_title.png") no-repeat center top/100% auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title_recruit {
    background: url("../img/bg_recruit_title_sp.png") no-repeat center top/cover;
  }
}
html body main#recruit section#title_recruit .inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  aspect-ratio: 683/384;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title_recruit .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100svh;
    aspect-ratio: auto;
  }
}
html body main#recruit section#title_recruit .inner h1 {
  width: 52.709vw;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title_recruit .inner h1 {
    width: 70.4vw;
  }
}
html body main#recruit section#title_recruit .inner p {
  position: absolute;
  bottom: 4.392vw;
  left: 4.392vw;
  color: #fff;
  font-family: "Nanum Myeongjo";
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title_recruit .inner p {
    bottom: 5.333vw;
    left: 5.333vw;
    font-size: 0.857rem;
  }
}
html body main#recruit section#title_recruit .inner .gradation1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  -webkit-animation: glow1 3s ease-in-out infinite;
          animation: glow1 3s ease-in-out infinite;
}
html body main#recruit section#title_recruit .inner .gradation2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  -webkit-animation: glow2 4s ease-in-out infinite;
          animation: glow2 4s ease-in-out infinite;
}
@-webkit-keyframes glow1 {
  0%, 100% {
    opacity: 0.2;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes glow1 {
  0%, 100% {
    opacity: 0.2;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes glow2 {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
@keyframes glow2 {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
html body main#recruit section#message {
  background: url("../img/bg_recruit.png") no-repeat center top/cover;
}
html body main#recruit section#message .inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(72.182vw, 986px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#recruit section#message .inner figure {
  position: absolute;
  width: min(54.173vw, 740px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner figure {
    width: 68vw;
  }
}
html body main#recruit section#message .inner div {
  width: 100%;
  z-index: 1;
}
html body main#recruit section#message .inner div h2 span {
  color: #fff;
}
html body main#recruit section#message .inner div h2 span::before {
  background: #fff;
}
html body main#recruit section#message .inner div strong {
  display: block;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(2.375rem, 38px);
  margin-top: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner div strong {
    font-size: 2rem;
    margin-top: 10.667vw;
    line-height: 1.5;
  }
}
html body main#recruit section#message .inner div .comment {
  color: #fff;
  font-size: min(1.125rem, 18px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner div .comment {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#message .inner div .btn1 {
  margin-top: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner div .btn1 {
    margin-top: 10.667vw;
  }
}
html body main#recruit section#message .inner div .btn1 a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#interview_list .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
html body main#recruit section#interview_list .inner .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(3.66vw, 50px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#interview_list .inner .title {
    display: block;
  }
}
html body main#recruit section#interview_list .inner .title .comment {
  margin: 0 0 min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#interview_list .inner .title .comment {
    margin: 5.333vw 0 0;
  }
}
html body main#recruit section#interview_list .inner .title + .list {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#interview_list .inner .title + .list {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#interview_list .inner .btn1 {
  margin: min(2.928vw, 40px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#interview_list .inner .btn1 {
    margin: 8vw auto 0;
  }
}
html body main#recruit section#number {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
html body main#recruit section#number .inner .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(3.66vw, 50px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .title {
    display: block;
  }
}
html body main#recruit section#number .inner .title h2 {
  color: #fff;
}
html body main#recruit section#number .inner .title .comment {
  margin: 0 0 min(2.928vw, 40px) 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .title .comment {
    margin: 5.333vw 0 0 0;
  }
}
html body main#recruit section#number .inner .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.196vw, 30px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    margin-top: 5.333vw;
  }
}
html body main#recruit section#number .inner .list div {
  background: #fff;
  text-align: center;
  padding: min(2.196vw, 30px) min(0.732vw, 10px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list div {
    padding: 8vw 1.333vw 2.667vw;
  }
}
html body main#recruit section#number .inner .list div h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list div h3 {
    font-size: 1.571rem;
  }
}
html body main#recruit section#number .inner .list div h3 img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(1.83vw, 25px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list div h3 img {
    width: 5.333vw;
    margin-right: 1.333vw;
  }
}
html body main#recruit section#number .inner .list div p {
  display: block;
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list div p {
    font-size: 1.857rem;
    margin-top: 5.333vw;
  }
}
html body main#recruit section#number .inner .list div p strong {
  color: #BD2D20;
  font-family: "Nanum Myeongjo";
  font-size: min(6.875rem, 110px);
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list div p strong {
    font-size: 6.857rem;
  }
}
html body main#recruit section#number .inner .list div small {
  display: block;
  width: 100%;
  text-align: right;
  font-size: min(0.75rem, 12px);
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list div small {
    font-size: 0.857rem;
    margin-top: 1.333vw;
  }
}
html body main#recruit section#number .inner .list div:nth-of-type(5) p {
  font-size: min(2.375rem, 38px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#number .inner .list div:nth-of-type(5) p {
    font-size: 2.714rem;
  }
}
html body main#recruit section#job {
  background: url("../img/bg_recruit_job.png") no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#job {
    background: url("../img/bg_recruit_job_sp.png") no-repeat center top/cover;
  }
}
html body main#recruit section#job .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#job .inner {
    display: block;
    position: initial;
  }
}
html body main#recruit section#job .inner h2 {
  color: #fff;
}
html body main#recruit section#job .inner h2 span {
  color: #fff;
}
html body main#recruit section#job .inner h2 span::before {
  background: #fff;
}
html body main#recruit section#job .inner > div:nth-of-type(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(38.799vw, 530px);
  aspect-ratio: 106/83;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#job .inner > div:nth-of-type(1) {
    width: 100%;
    margin-top: 10.667vw;
  }
}
html body main#recruit section#job .inner > div:nth-of-type(1) figure:nth-of-type(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: min(31.991vw, 437px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#job .inner > div:nth-of-type(1) figure:nth-of-type(1) {
    width: 69.333vw;
  }
}
html body main#recruit section#job .inner > div:nth-of-type(1) figure:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(18.302vw, 250px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#job .inner > div:nth-of-type(1) figure:nth-of-type(2) {
    width: 40vw;
  }
}
html body main#recruit section#job .inner > div:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: min(21.23vw, 290px);
  width: min(40.996vw, 560px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#job .inner > div:nth-of-type(2) {
    position: initial;
    width: 100%;
    margin-top: 10.667vw;
  }
}
html body main#recruit section#job .inner > div:nth-of-type(2) .comment {
  color: #fff;
}
html body main#recruit section#job .inner > div:nth-of-type(2) .btn1 {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#job .inner > div:nth-of-type(2) .btn1 {
    margin-top: 5.333vw;
  }
}
html body main#recruit section#job .inner > div:nth-of-type(2) .btn1 a {
  color: #fff;
}
html body main#work section#message > .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#work section#message > .inner > div {
  width: 100%;
}
html body main#work section#message > .inner > div .comment {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .inner > div .comment {
    margin-top: 5.333vw;
  }
}
html body main#work section#message > .inner > div .signature {
  font-size: min(1rem, 16px);
  line-height: 2;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .inner > div .signature {
    font-size: 0.857rem;
    margin-top: 5.333vw;
  }
}
html body main#work section#message > .inner > div .signature span {
  font-size: min(1.375rem, 22px);
  vertical-align: baseline;
  margin-left: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .inner > div .signature span {
    font-size: 1.142rem;
    margin-left: 2.667vw;
  }
}
html body main#work section#message > .inner figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(35.652vw, 487px);
  margin: 0 0 0 min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .inner figure {
    width: 100%;
    margin: 5.333vw 0 0 0;
  }
}
html body main#work section#message > .wrapper {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
html body main#work section#message > .wrapper .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#work section#message > .wrapper .inner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .wrapper .inner h3 {
    font-size: 1.285rem;
  }
}
html body main#work section#message > .wrapper .inner h3::after {
  content: "";
  display: block;
  width: min(3.66vw, 50px);
  height: 1px;
  background: #BD2D20;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .wrapper .inner h3::after {
    width: 8vw;
    margin-top: 2.667vw;
  }
}
html body main#work section#message > .wrapper .inner ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.464vw, 20px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .wrapper .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    width: 100%;
    margin-top: 5.333vw;
  }
}
html body main#work section#message > .wrapper .inner ul li figure {
  width: 100%;
}
html body main#work section#message > .wrapper .inner ul li figure img {
  display: block;
  width: min(11.713vw, 160px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .wrapper .inner ul li figure img {
    width: 37.333vw;
  }
}
html body main#work section#message > .wrapper .inner ul li figure figcaption {
  overflow: hidden;
}
html body main#work section#message > .wrapper .inner ul li figure figcaption strong {
  display: block;
  text-align: center;
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  margin: min(2.196vw, 30px) 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#work section#message > .wrapper .inner ul li figure figcaption strong {
    font-size: 1.142rem;
    margin: 4vw 0 2.667vw;
  }
}
html body main#work section#message > .wrapper .inner ul li figure figcaption strong span {
  color: #BD2D20;
  vertical-align: baseline;
}
html body main#work section#job .inner .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(3.66vw, 50px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#work section#job .inner .title {
    display: block;
  }
}
html body main#work section#job .inner .title .comment {
  margin-bottom: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#job .inner .title .comment {
    margin: 5.333vw 0 0;
  }
}
html body main#work section#job .inner ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.464vw, 20px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#job .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    width: 100%;
    margin-top: 5.333vw;
  }
}
html body main#work section#job .inner ul li {
  position: relative;
}
html body main#work section#job .inner ul li figure {
  width: 100%;
}
html body main#work section#job .inner ul li figure > img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
html body main#work section#job .inner ul li figure figcaption {
  padding: min(1.464vw, 20px) min(1.098vw, 15px) min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#work section#job .inner ul li figure figcaption {
    padding: 5.333vw 4vw 16vw;
  }
}
html body main#work section#job .inner ul li figure figcaption strong {
  display: block;
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  width: 100%;
  margin: 0 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#work section#job .inner ul li figure figcaption strong {
    font-size: 1.142rem;
    margin: 0 0 2.667vw;
  }
}
html body main#work section#job .inner ul li figure figcaption strong span {
  color: #BD2D20;
  vertical-align: baseline;
  margin-right: 0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#work section#job .inner ul li figure figcaption strong span {
    margin-right: 1.333vw;
  }
}
html body main#work section#job .inner ul li .btn1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
html body main#work section#environment {
  background: url("../img/bg_work_environment.png") no-repeat center top/100% auto;
}
@media screen and (max-width: 768px) {
  html body main#work section#environment {
    background: url("../img/bg_work_environment.png") no-repeat center top/150% auto;
  }
}
html body main#work section#environment .inner {
  padding: min(8.785vw, 120px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#work section#environment .inner {
    padding: 21.333vw 8vw 0;
  }
}
html body main#work section#environment .inner h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  html body main#work section#environment .inner h2 {
    font-size: 3.857rem;
  }
}
html body main#work section#environment .inner h2 span {
  color: #fff;
}
html body main#work section#environment .inner h2 span::before {
  background: #fff;
}
html body main#work section#environment .inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.196vw, 30px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#environment .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    margin-top: 5.333vw;
  }
}
html body main#work section#environment .inner ul li {
  background: #F7F3EB;
}
html body main#work section#environment .inner ul li figure {
  width: 100%;
  padding: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#work section#environment .inner ul li figure {
    padding: 5.333vw;
  }
}
html body main#work section#environment .inner ul li figure img {
  display: block;
  width: min(6.589vw, 90px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#work section#environment .inner ul li figure img {
    width: 10.667vw;
  }
}
html body main#work section#environment .inner ul li figure figcaption {
  overflow: hidden;
}
html body main#work section#environment .inner ul li figure figcaption strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
  margin: min(2.196vw, 30px) 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#work section#environment .inner ul li figure figcaption strong {
    font-size: 1.142rem;
    margin: 4vw 0 2.667vw;
  }
}
html body main#work section#environment .inner ul li figure figcaption strong::after {
  content: "";
  display: block;
  width: min(2.196vw, 30px);
  height: 1px;
  background: #BD2D20;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#work section#environment .inner ul li figure figcaption strong::after {
    width: 8vw;
    margin-top: 4vw;
  }
}
html body main#interview .navigation {
  width: min(50.146vw, 685px);
  gap: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#interview .navigation {
    width: 100% !important;
  }
}
html body main#interview .navigation li {
  width: min(11.713vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#interview .navigation li {
    width: 42.667vw;
  }
}
html body main#interview section#interview_list .inner {
  padding: min(8.785vw, 120px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#interview section#interview_list .inner {
    padding: 21.333vw 8vw 0;
  }
}
html body main#interview section#title_interview {
  background: url("../img/bg_interview_title.png") no-repeat center top/100% auto;
}
html body main#interview section#title_interview .inner {
  width: 100%;
  padding: 0;
}
html body main#interview section#title_interview .inner > figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title_interview .inner > figure {
    display: block;
  }
}
html body main#interview section#title_interview .inner > figure > div {
  width: 64.422vw;
  aspect-ratio: 22/15;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title_interview .inner > figure > div {
    width: 100%;
  }
}
html body main#interview section#title_interview .inner > figure > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#interview section#title_interview .inner > figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 35.578vw;
  padding: 0 0 0 4.392vw;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title_interview .inner > figure figcaption {
    background: url("../img/bg_interview_title.png") no-repeat center top/100% auto;
    width: 100%;
    padding: 5.333vw;
  }
}
html body main#interview section#title_interview .inner > figure figcaption h1 {
  color: #fff;
  font-family: "A1 Mincho";
  font-size: 1.687rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title_interview .inner > figure figcaption h1 {
    font-size: 1.285rem;
  }
}
html body main#interview section#title_interview .inner > figure figcaption p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: 0.875rem;
  margin-top: 2.196vw;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title_interview .inner > figure figcaption p {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#interview section#title_interview .inner > figure figcaption p::before {
  content: "●";
  color: #fff;
  font-size: 0.512vw;
  margin-right: 0.366vw;
}
@media screen and (max-width: 768px) {
  html body main#interview section#title_interview .inner > figure figcaption p::before {
    font-size: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main#interview section#title_interview .inner > figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 58.333%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(27%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 27%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
html body main#interview section#contents .inner {
  width: min(58.565vw, 800px);
}
html body main#interview section#contents .inner dl {
  width: 100%;
  margin-top: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner dl {
    margin-top: 6.667vw;
  }
}
html body main#interview section#contents .inner dl:nth-of-type(1) {
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner dl:nth-of-type(1) {
    margin-top: 8vw;
  }
}
html body main#interview section#contents .inner dl dt {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 21px);
  padding: 0 min(0.732vw, 10px) min(1.098vw, 15px);
  border-bottom: 1px #BD2D20 solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner dl dt {
    font-size: 1.142rem;
    line-height: 1.3;
    padding: 0 2.667vw 4vw;
  }
}
html body main#interview section#contents .inner dl dt strong {
  color: #BD2D20;
  font-family: "Nanum Myeongjo";
  vertical-align: baseline;
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner dl dt strong {
    margin-right: 1.333vw;
  }
}
html body main#interview section#contents .inner dl dd {
  margin-top: min(1.464vw, 20px);
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner dl dd {
    margin-top: 2.667vw;
    font-size: 1rem;
  }
}
html body main#interview section#contents .inner dl dd a {
  color: #BD2D20;
}
html body main#interview section#contents .inner > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2.196vw, 30px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner > div {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
  }
}
html body main#interview section#contents .inner > div dl {
  background: #F7F3EB;
  width: 100%;
  padding: min(2.928vw, 40px);
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner > div dl {
    padding: 5.333vw;
  }
}
html body main#interview section#contents .inner > div dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0;
  border-bottom: none;
}
html body main#interview section#contents .inner > div dl dt::after {
  content: "";
  display: block;
  width: min(2.196vw, 30px);
  height: 1px;
  background: #BD2D20;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner > div dl dt::after {
    width: 8vw;
    margin-top: 2.667vw;
  }
}
html body main#interview section#contents .inner figure {
  width: 100%;
  aspect-ratio: 8/5;
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#contents .inner figure {
    margin-top: 10.667vw;
  }
}
html body main#interview section#contents .inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#interview section#schedule {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
html body main#interview section#schedule .inner {
  width: min(58.565vw, 800px);
}
html body main#interview section#schedule .inner h2 {
  color: #fff;
  margin-bottom: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#schedule .inner h2 {
    margin-bottom: 5.333vw;
  }
}
html body main#interview section#schedule .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-bottom: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#schedule .inner > div {
    padding-bottom: 8vw;
  }
}
html body main#interview section#schedule .inner > div time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Nanum Myeongjo";
  font-size: min(1.25rem, 20px);
  width: min(5.857vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#schedule .inner > div time {
    font-size: 0.857rem;
    width: 13.333vw;
  }
}
html body main#interview section#schedule .inner > div .circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(0.732vw, 10px);
  margin-right: min(1.464vw, 20px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#interview section#schedule .inner > div .circle {
    width: 2.667vw;
    margin-right: 2.667vw;
  }
}
html body main#interview section#schedule .inner > div .circle::after {
  content: "";
  position: absolute;
  top: min(0.366vw, 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: min(5.124vw, 70px);
  background: #fff;
}
@media screen and (max-width: 768px) {
  html body main#interview section#schedule .inner > div .circle::after {
    top: 1.333vw;
    height: 13.333vw;
  }
}
html body main#interview section#schedule .inner > div .circle img {
  width: 100%;
  z-index: 1;
}
html body main#interview section#schedule .inner > div:nth-last-of-type(1) .circle::after {
  content: none;
}
html body main#interview section#schedule .inner > div p {
  font-family: "A1 Mincho";
  font-size: min(1.25rem, 20px);
}
@media screen and (max-width: 768px) {
  html body main#interview section#schedule .inner > div p {
    font-size: 0.857rem;
  }
}
html body main#requirement section#list .inner {
  width: min(58.565vw, 800px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner h2 {
    font-size: 3.857rem;
  }
}
html body main#requirement section#list .inner .department {
  width: 100%;
}
html body main#requirement section#list .inner .department:nth-of-type(1) {
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department:nth-of-type(1) {
    margin-top: 10.667vw;
  }
}
html body main#requirement section#list .inner .department:nth-of-type(n+2) {
  margin-top: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department:nth-of-type(n+2) {
    margin-top: 2.667vw;
  }
}
html body main#requirement section#list .inner .department > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F7F3EB;
  border-radius: min(3.66vw, 50px);
  width: 100%;
  padding: min(1.098vw, 15px) min(2.196vw, 30px);
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department > dt {
    border-radius: 13.333vw;
    padding: 2.667vw 4vw;
  }
}
html body main#requirement section#list .inner .department > dt p {
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department > dt p {
    font-size: 1rem;
  }
}
html body main#requirement section#list .inner .department > dt .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(1.098vw, 15px);
  position: relative;
  margin-left: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department > dt .icon {
    width: 2.667vw;
    margin-left: 2.667vw;
  }
}
html body main#requirement section#list .inner .department > dt .icon span {
  width: 100%;
  height: 1px;
  display: block;
  background: #BD2D20;
  position: absolute;
  left: 0;
  -webkit-transition: top 0.2s ease, -webkit-transform 0.5s ease-in-out;
  transition: top 0.2s ease, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, top 0.2s ease;
  transition: transform 0.5s ease-in-out, top 0.2s ease, -webkit-transform 0.5s ease-in-out;
}
html body main#requirement section#list .inner .department > dt .icon span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
html body main#requirement section#list .inner .department > dt .icon span:nth-child(2) {
  top: 50%;
}
html body main#requirement section#list .inner .department > dt.active {
  background: #BD2D20;
}
html body main#requirement section#list .inner .department > dt.active p {
  color: #fff;
}
html body main#requirement section#list .inner .department > dt.active .icon span {
  background: #fff;
}
html body main#requirement section#list .inner .department > dt.active .icon span:nth-child(1) {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
html body main#requirement section#list .inner .department > dd {
  display: none;
  width: 100%;
  padding: 0 min(2.196vw, 30px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department > dd {
    padding: 0 4vw;
  }
}
html body main#requirement section#list .inner .department > dd > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html body main#requirement section#list .inner .department > dd > dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  line-height: 2;
  width: min(11.713vw, 160px);
  padding: min(1.098vw, 15px) 0;
  margin: 0 min(0.732vw, 10px) 0 0;
  border-bottom: 1px #BD2D20 solid;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department > dd > dl dt {
    font-size: 0.857rem;
    width: 29.333vw;
    padding: 4vw 0;
    margin: 0 2.667vw 0 0;
  }
}
html body main#requirement section#list .inner .department > dd > dl dd {
  font-size: min(0.875rem, 14px);
  line-height: 2;
  width: 100%;
  padding: min(1.098vw, 15px) 0;
  border-bottom: 1px #EEEBE5 solid;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department > dd > dl dd {
    font-size: 0.857rem;
    padding: 4vw 0;
  }
}
html body main#requirement section#list .inner .department > dd .btn2 {
  margin: min(2.928vw, 40px) auto;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#list .inner .department > dd .btn2 {
    margin-top: 10.667vw;
  }
}
html body main#requirement section#faq {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
html body main#requirement section#faq .inner {
  width: min(58.565vw, 800px);
}
html body main#requirement section#faq .inner h2 {
  color: #fff;
}
html body main#requirement section#faq .inner dl {
  width: 100%;
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#faq .inner dl {
    margin-top: 10.667vw;
  }
}
html body main#requirement section#faq .inner dl dt {
  font-family: "A1 Mincho";
  font-size: min(1.375rem, 22px);
  padding-bottom: min(0.732vw, 10px);
  border-bottom: 1px #BD2D20 solid;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#faq .inner dl dt {
    font-size: 1.142rem;
    line-height: 1.3;
    padding-bottom: 2.667vw;
  }
}
html body main#requirement section#faq .inner dl dt strong {
  color: #BD2D20;
  font-family: "Nanum Myeongjo";
  vertical-align: baseline;
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#requirement section#faq .inner dl dt strong {
    margin-right: 1.333vw;
  }
}
html body main#requirement section#faq .inner dl dd {
  margin-top: min(1.464vw, 20px);
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#requirement section#faq .inner dl dd {
    margin-top: 2.667vw;
    font-size: 1rem;
  }
}
html body main#requirement section#faq .inner dl dd a {
  color: #BD2D20;
  text-decoration: underline;
}
html body main#news section#contents .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: min(8.785vw, 120px) 0;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner {
    padding: 21.333vw 8vw;
  }
}
html body main#news section#contents .inner .list {
  display: block;
  width: 75%;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list {
    width: 100%;
  }
}
html body main#news section#contents .inner .list article {
  background-image: linear-gradient(to right, #DACCB0 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  width: 100%;
}
html body main#news section#contents .inner .list article:first-of-type {
  background-image: none;
}
html body main#news section#contents .inner .list article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/icon_arrow3.svg") no-repeat right center/min(1.245vw, 17px) min(1.098vw, 15px);
  padding: min(1.83vw, 25px) min(1.83vw, 25px) min(1.83vw, 25px) 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a {
    display: block;
    background: none;
    padding: 5.333vw 0;
  }
}
html body main#news section#contents .inner .list article a div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
html body main#news section#contents .inner .list article a div time {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a div time {
    font-size: 1rem;
    margin-right: 5.333vw;
  }
}
html body main#news section#contents .inner .list article a div .category {
  background: #BD2D20;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a div .category {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#news section#contents .inner .list article a h2 {
  display: block;
  width: 70%;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a h2 {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-top: 2.667vw;
  }
}
html body main#news_detail section#posting .inner {
  padding: min(8.785vw, 120px) 0;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner {
    padding: 21.333vw 8vw;
  }
}
html body main#news_detail .btn2 {
  margin: 0 auto;
  padding: 0 0 min(8.785vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail .btn2 {
    padding: 0 0 16vw;
  }
}
html body main#contact > .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5.857vw, 80px);
  width: min(58.565vw, 800px);
  padding: min(8.785vw, 120px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step {
    gap: 10.667vw;
    width: 100%;
    padding: 16vw 0 0;
  }
}
html body main#contact > .step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#contact > .step li .txt {
  text-align: center;
  font-family: "A1 Mincho";
  font-size: min(1.5rem, 24px);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .txt {
    font-size: 1rem;
  }
}
html body main#contact > .step li .txt span {
  font-family: "Nanum Myeongjo";
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .txt span {
    font-size: 0.714rem;
  }
}
html body main#contact > .step li .circle {
  width: min(1.098vw, 15px);
  height: min(1.098vw, 15px);
  background: #EEEBE5;
  border-radius: 50%;
  margin-bottom: min(0.732vw, 10px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .circle {
    width: 4vw;
    height: 4vw;
    margin-bottom: 2.667vw;
  }
}
html body main#contact > .step li .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  width: min(9.883vw, 135px);
  height: 1px;
  background: #e6e6e6;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .circle::after {
    width: 21.333vw;
  }
}
html body main#contact > .step li:last-child .circle::after {
  width: 0;
}
html body main#contact > .step li.active .circle {
  background: #BD2D20;
}
html body main#contact section#inquiry .inner {
  width: min(58.565vw, 800px);
  padding: min(2.928vw, 40px) 0 min(8.785vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner {
    padding: 10.667vw 8vw 21.333vw;
  }
}
html body main#contact section#inquiry .inner form {
  width: 100%;
}
html body main#contact section#inquiry .inner form > .note {
  margin-bottom: min(5.857vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form > .note {
    margin-bottom: 10.667vw;
  }
}
html body main#contact section#inquiry .inner form > .note p {
  text-align: center;
  font-size: min(1rem, 16px);
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form > .note p {
    text-align: left;
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form .privacy_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .privacy_text {
    margin-top: 10.667vw;
  }
}
html body main#contact section#inquiry .inner form .privacy_text p {
  text-align: center;
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .privacy_text p {
    text-align: left;
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form .privacy_text p a {
  color: #BD2D20;
  text-decoration: underline;
}
html body main#contact section#inquiry .inner form .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area {
    margin-top: 10.667vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area .btn_submit,
html body main#contact section#inquiry .inner form .btn_area .btn_confirm,
html body main#contact section#inquiry .inner form .btn_area .btn_fixes {
  background: url(../img/icon_arrow2.svg) no-repeat right min(0.732vw, 10px) center/min(3.221vw, 44px);
  display: block;
  width: min(16.105vw, 220px);
  height: min(4.392vw, 60px);
  padding-right: calc(min(3.221vw, 44px) + min(0.732vw, 10px));
  text-align: left;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  cursor: pointer;
  border: none;
  -webkit-transition: background-size 0.5s ease, background-position 0.5s ease;
  transition: background-size 0.5s ease, background-position 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area .btn_submit,
  html body main#contact section#inquiry .inner form .btn_area .btn_confirm,
  html body main#contact section#inquiry .inner form .btn_area .btn_fixes {
    background: url(../img/icon_arrow2.svg) no-repeat right 2.667vw center/11.733vw;
    width: 64vw;
    height: 16vw;
    padding-right: 14.4vw;
    font-size: 1.142rem;
  }
}
html body main#contact section#inquiry .inner form .btn_area .btn_submit:hover,
html body main#contact section#inquiry .inner form .btn_area .btn_confirm:hover,
html body main#contact section#inquiry .inner form .btn_area .btn_fixes:hover {
  background-size: min(4.187vw, 57.2px);
  background-position: calc(100% - (min(4.187vw, 57.2px) - min(3.221vw, 44px)) / 2) center;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area .btn_submit:hover,
  html body main#contact section#inquiry .inner form .btn_area .btn_confirm:hover,
  html body main#contact section#inquiry .inner form .btn_area .btn_fixes:hover {
    background-size: 15.253vw;
    background-position: calc(100% - 1.76vw) center;
  }
}
html body main#contact section#inquiry .inner form .btn_area + .btn_area {
  margin-top: 0;
}
html body main#contact section#inquiry .inner form .must {
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.512vw, 7px) min(0.952vw, 13px) min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .must {
    font-size: 0.571rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#inquiry .inner form .w30 {
  width: 30% !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .w30 {
    width: 40% !important;
  }
}
html body main#contact section#inquiry .inner form .w30 + input {
  width: 100%;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .w30 + input {
    margin-top: 1.333vw;
  }
}
html body main#contact section#inquiry .inner form span.error {
  display: block;
  text-align: left;
  margin-top: min(0.366vw, 5px);
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form span.error {
    margin-top: 1.333vw;
  }
}
html body main#contact section#inquiry .inner form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: min(2.928vw, 40px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5.333vw 0 0;
  }
}
html body main#contact section#inquiry .inner form dl:last-of-type {
  border: none;
}
html body main#contact section#inquiry .inner form dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30%;
  margin: 0 min(2.196vw, 30px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dt {
    width: 100%;
    margin: 0 0 2.667vw 0;
  }
}
html body main#contact section#inquiry .inner form dl dt .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dt .wrap {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form dl dd {
  display: block;
  width: 100%;
}
html body main#contact section#inquiry .inner form dl dd .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form dl dd .wrap + .wrap {
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap + .wrap {
    margin-top: 1.333vw;
  }
}
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px #E6E0D4 solid;
  border-radius: min(0.366vw, 5px);
  color: #111;
  font-size: min(1rem, 16px);
  letter-spacing: 1px;
  width: 100%;
  height: min(4.392vw, 60px);
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
    font-size: 1rem;
    height: 13.333vw;
    padding: 1.333vw 2.667vw;
  }
}
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea):focus {
  outline: none;
}
html body main#contact section#inquiry .inner form textarea {
  height: min(10.417vw, 200px) !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form textarea {
    height: 53.333vw !important;
  }
}
html body main#contact section#inquiry .inner form input[type=file] {
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form input[type=file] {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form .horizontal-item {
  padding: min(0.366vw, 5px) 0;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .horizontal-item {
    padding: 1.333vw 0;
  }
}
html body main#contact section#inquiry .inner form .horizontal-item + .horizontal-item {
  padding: min(0.366vw, 5px) 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .horizontal-item + .horizontal-item {
    padding: 1.333vw 0;
  }
}
html body main#contact section#inquiry .inner form .select {
  width: 100%;
  position: relative;
}
html body main#contact section#inquiry .inner form .select::after {
  content: "";
  display: block;
  width: min(0.366vw, 5px);
  height: min(0.366vw, 5px);
  border-width: 0 2px 2px 0;
  border-color: #111;
  border-style: solid;
  position: absolute;
  right: min(0.732vw, 10px);
  top: calc(50% - min(0.366vw, 5px));
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .select::after {
    width: 1.333vw;
    height: 1.333vw;
    right: 2.667vw;
    top: calc(50% - 1.333vw);
  }
}
html body main#contact section#inquiry .inner form .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
html body main#contact section#inquiry .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1rem, 16px);
  margin: 0 min(1.464vw, 20px) 0 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text {
    font-size: 1rem;
    margin: 0 5.333vw 0 0;
  }
}
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text::before {
  content: "";
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  margin: 0 min(0.732vw, 10px) 0 0;
  border: 1px solid #E6E0D4;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text::before {
    margin: 0 2.667vw 0 0;
  }
}
html body main#contact section#inquiry .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #E6E0D4;
}
html body main#contact section#inquiry .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 3px;
  content: "";
  width: 12px;
  height: 12px;
  background: #BD2D20;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}
html body main#contact section#inquiry .inner form .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1rem, 16px);
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .check {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form .check input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field {
  display: block;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1rem, 16px);
  line-height: 1.3;
  margin: 0 min(1.464vw, 20px) 0 0;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 calc(20px + min(0.732vw, 10px));
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
    font-size: 1rem;
    margin: 0 5.333vw 0 0;
    padding: 0 0 0 calc(20px + 2.667vw);
  }
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before, html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  content: "";
  display: inline-block;
  position: absolute;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  top: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: 0;
  background: #fff;
  border: 1px solid #E6E0D4;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  border-right: 2px solid #BD2D20;
  border-bottom: 2px solid #BD2D20;
  height: 12px;
  opacity: 0;
  position: absolute;
  left: 6px;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
html body main#contact section#inquiry .inner form .check input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main#contact section#inquiry .inner .mw_wp_form {
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form_confirm {
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form_confirm .select::after {
  content: none;
}
html body main#complete > .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5.857vw, 80px);
  width: min(58.565vw, 800px);
  padding: min(8.785vw, 120px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step {
    gap: 10.667vw;
    width: 100%;
    padding: 16vw 0 0;
  }
}
html body main#complete > .step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#complete > .step li .txt {
  text-align: center;
  font-family: "A1 Mincho";
  font-size: min(1.5rem, 24px);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .txt {
    font-size: 1rem;
  }
}
html body main#complete > .step li .txt span {
  font-family: "Nanum Myeongjo";
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .txt span {
    font-size: 0.714rem;
  }
}
html body main#complete > .step li .circle {
  width: min(1.098vw, 15px);
  height: min(1.098vw, 15px);
  background: #EEEBE5;
  border-radius: 50%;
  margin-bottom: min(0.732vw, 10px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .circle {
    width: 4vw;
    height: 4vw;
    margin-bottom: 2.667vw;
  }
}
html body main#complete > .step li .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  width: min(9.883vw, 135px);
  height: 1px;
  background: #e6e6e6;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .circle::after {
    width: 21.333vw;
  }
}
html body main#complete > .step li:last-child .circle::after {
  width: 0;
}
html body main#complete > .step li.active .circle {
  background: #BD2D20;
}
html body main#complete section#contents .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(58.565vw, 800px);
}
html body main#complete section#contents .inner > strong {
  display: block;
  text-align: center;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > strong {
    font-size: 1.142rem;
    line-height: 2;
  }
}
html body main#complete section#contents .inner > .comment {
  text-align: center;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > .comment {
    margin-top: 5.333vw;
  }
}
html body main#complete section#contents .inner > div {
  border-radius: min(1.464vw, 20px);
  background: #F7F3EB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: min(1.464vw, 20px) min(2.928vw, 40px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div {
    border-radius: 1.333vw;
    width: 100%;
    padding: 5.333vw;
    margin-top: 10.667vw;
  }
}
html body main#complete section#contents .inner > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
html body main#complete section#contents .inner > div > div figure {
  width: min(2.928vw, 40px);
  margin: 0 min(1.464vw, 20px) 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div figure {
    width: 10.667vw;
    margin: 0 0 2.667vw 0;
  }
}
html body main#complete section#contents .inner > div > div div {
  width: 100%;
}
html body main#complete section#contents .inner > div > div div p {
  font-size: min(0.875rem, 14px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div div p {
    font-size: 0.857rem;
  }
}
html body main#complete section#contents .inner > div > em {
  font-size: min(1rem, 16px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > em {
    font-size: 0.857rem;
    margin-top: 5.333vw;
  }
}
html body main#complete section#contents .inner > div > p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  line-height: 2;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > p {
    font-size: 0.857rem;
    margin-top: 2.667vw;
  }
}
html body main#complete section#contents .inner > div > p a {
  color: #111;
}
html body main#complete section#contents .inner .btn2 {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner .btn2 {
    margin: 10.667vw auto 0;
  }
}
html body main#privacy section#contents .inner strong {
  display: block;
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner strong {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner em {
  display: block;
  font-size: min(1rem, 16px);
  font-weight: 700;
  width: 100%;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #000 solid;
  margin: min(4.392vw, 60px) 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner em {
    font-size: 1.142rem;
    padding-bottom: 2.667vw;
    margin: 10.667vw 0 2.667vw;
  }
}
html body main#privacy section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner p {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner p a {
  color: #111;
}
html body main#privacy section#contents .inner ul li {
  font-size: min(1rem, 16px);
  line-height: 2;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner ul li {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner ul li::before {
  content: "・";
}
html body main#privacy section#contents .inner b {
  font-size: min(1.125rem, 18px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner b {
    font-size: 1.142rem;
  }
}
html body main#voice .navigation {
  width: min(41.728vw, 570px);
  gap: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#voice .navigation {
    width: 100% !important;
  }
}
html body main#voice .navigation li {
  width: min(13.177vw, 180px);
}
@media screen and (max-width: 768px) {
  html body main#voice .navigation li {
    width: 42.667vw;
  }
}
html body main#voice section#contents .inner {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.196vw, 30px);
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    padding: 21.333vw 8vw 0 !important;
  }
}
html body main#voice section#contents .inner article {
  width: 100%;
  min-width: 0;
}
html body main#voice section#contents .inner article figure div {
  background: #BD2D20;
}
html body main#voice section#contents .inner article figure div a {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
}
html body main#voice section#contents .inner article figure div a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#voice section#contents .inner article figure div a .arrow {
  width: min(2.928vw, 40px);
  position: absolute;
  right: min(0.732vw, 10px);
  bottom: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner article figure div a .arrow {
    width: 5.333vw;
    position: absolute;
    right: 2.667vw;
    bottom: 2.667vw;
  }
}
html body main#voice section#contents .inner article figure div a .arrow img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
html body main#voice section#contents .inner article figure div a:hover .arrow img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main#voice section#contents .inner article figure figcaption {
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner article figure figcaption {
    margin-top: 2.667vw;
  }
}
html body main#voice section#contents .inner article figure figcaption h1 {
  display: block;
  font-family: "A1 Mincho";
  font-size: min(1.5rem, 24px);
  line-height: 1.3;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner article figure figcaption h1 {
    font-size: 1.142rem;
  }
}
html body main#voice section#contents .inner article figure figcaption dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner article figure figcaption dl {
    margin-top: 2.667vw;
  }
}
html body main#voice section#contents .inner article figure figcaption dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BD2D20;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner article figure figcaption dl dt {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice section#contents .inner article figure figcaption dl dd {
  background: #F7F3EB;
  font-size: min(0.875rem, 14px);
  line-height: 1.6;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner article figure figcaption dl dd {
    font-size: 0.714rem;
    padding: 1.333vw 2.667vw;
  }
}
html body main#voice section#contents .inner article figure figcaption .name {
  margin-top: min(0.732vw, 10px);
  font-size: min(1rem, 16px);
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#voice section#contents .inner article figure figcaption .name {
    margin-top: 2.667vw;
    font-size: 0.857rem;
  }
}
html body main#voice_detail section#posting .inner {
  padding: min(8.785vw, 120px) 0;
}
@media screen and (max-width: 768px) {
  html body main#voice_detail section#posting .inner {
    padding: 21.333vw 8vw;
  }
}
html body main#voice_detail .btn2 {
  margin: 0 auto;
  padding: 0 0 min(8.785vw, 120px);
}
@media screen and (max-width: 768px) {
  html body main#voice_detail .btn2 {
    padding: 0 0 16vw;
  }
}
html body main#notfound section#contents .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#notfound section#contents .inner strong {
  font-family: "A1 Mincho";
  font-size: min(1.875rem, 30px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner strong {
    font-size: 1.285rem;
    line-height: 1.3;
  }
}
html body main#notfound section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 2;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner p {
    font-size: 1rem;
    margin-top: 5.333vw;
  }
}
html body main#notfound section#contents .inner .btn2 {
  margin-top: min(5.857vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner .btn2 {
    margin: 10.667vw auto 0;
  }
}
html body main#page section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 2;
}
html body main h2 {
  display: block;
  text-align: left;
  color: #E7E1D5;
  font-family: "Nanum Myeongjo";
  font-size: min(6.875rem, 110px);
}
@media screen and (max-width: 768px) {
  html body main h2 {
    font-size: 4.285rem;
  }
}
html body main h2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main h2 span {
    font-size: 1rem;
    margin-top: 2.667vw;
  }
}
html body main h2 span::before {
  content: "";
  display: block;
  width: min(1.464vw, 20px);
  height: 1px;
  background: #BD2D20;
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main h2 span::before {
    width: 4vw;
    margin-right: 1.333vw;
  }
}
html body main .comment {
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main .comment {
    font-size: 1rem;
  }
}
html body main .btn1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main .btn1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main .btn1 a {
    font-size: 1.142rem;
  }
}
html body main .btn1 a img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(3.221vw, 44px);
  margin: 0 0 0 min(1.464vw, 20px);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main .btn1 a img {
    width: 11.733vw;
    margin: 0 0 0 2.667vw;
  }
}
html body main .btn1 a:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
html body main .btn2 {
  width: min(13.177vw, 180px);
}
@media screen and (max-width: 768px) {
  html body main .btn2 {
    width: 48vw;
  }
}
html body main .btn2 a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: min(3.66vw, 50px);
  width: 100%;
  height: min(3.66vw, 50px);
  padding: 0 0 0 min(1.464vw, 20px);
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  background-color: #BD2D20;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  html body main .btn2 a {
    border-radius: 10.667vw;
    height: 10.667vw;
    padding: 0 0 0 5.333vw;
  }
}
html body main .btn2 a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#BD2D20), to(#CA5715));
  background: linear-gradient(to right, #BD2D20, #CA5715);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}
html body main .btn2 a::after {
  content: "";
  position: absolute;
  right: min(1.098vw, 15px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(27vw, 24px);
  height: min(27vw, 24px);
  background: url("../img/icon_arrow1.svg") no-repeat center/contain;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main .btn2 a::after {
    right: 2.667vw;
    width: 6.667vw;
    height: 6.667vw;
  }
}
html body main .btn2 a:hover::before {
  opacity: 1;
}
html body main .btn2 a:hover::after {
  -webkit-transform: translateY(-50%) scale(1.3);
          transform: translateY(-50%) scale(1.3);
}
html body main .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(0.732vw, 10px);
  padding: 0 0 min(8.785vw, 120px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main .pagination {
    gap: 2.667vw;
    padding: 0 0 16vw;
  }
}
html body main .pagination li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: #111;
  height: min(2.928vw, 40px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main .pagination li a {
    height: 10.667vw;
  }
}
html body main .pagination li a span {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  html body main .pagination li a span {
    font-size: 0.857rem;
  }
}
html body main .pagination li a:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
html body main .pagination li .page-numbers {
  font-family: "Quattrocento";
  font-size: min(1rem, 16px);
  width: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers {
    font-size: 0.857rem;
    width: 10.667vw;
  }
}
html body main .pagination li .page-numbers.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  height: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers.current {
    height: 10.667vw;
  }
}
html body main .sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(16.105vw, 220px);
  margin: 0 0 0 min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar {
    width: 100%;
    margin: 0;
  }
}
html body main .sidebar h3 {
  background: #BD2D20;
  color: #fff;
  font-size: min(1rem, 16px);
  padding: min(0.732vw, 10px) min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar h3 {
    font-size: 1rem;
    padding: 4.333vw 4.667vw;
  }
}
html body main .sidebar h3:nth-of-type(n+2) {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar h3:nth-of-type(n+2) {
    margin-top: 5.333vw;
  }
}
html body main .sidebar > ul li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: min(1.464vw, 20px) 0;
  border-bottom: 1px #DACCB0 solid;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main .sidebar > ul li a {
    padding: 5.333vw 0;
  }
}
html body main .sidebar > ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  html body main .sidebar > ul li a span {
    font-size: 1rem;
  }
}
html body main .sidebar > ul li a span::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: min(0.366vw, 5px);
  height: 1px;
  background: #BD2D20;
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar > ul li a span::before {
    width: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body main .sidebar .select {
  width: 100%;
  margin-top: min(1.464vw, 20px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main .sidebar .select {
    margin-top: 5.333vw;
  }
}
html body main .sidebar .select::after {
  content: "";
  display: block;
  width: min(0.512vw, 7px);
  height: min(0.512vw, 7px);
  border-width: 0 2px 2px 0;
  border-color: #111;
  border-style: solid;
  position: absolute;
  right: min(0.732vw, 10px);
  top: calc(50% - min(0.512vw, 7px));
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body main .sidebar .select::after {
    width: 1.333vw;
    height: 1.333vw;
    border-width: 0 1px 1px 0;
    right: 2.667vw;
    top: calc(50% - 1.333vw);
  }
}
html body main .sidebar .select select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F7F3EB;
  border: none;
  color: #111;
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
  letter-spacing: 1px;
  width: 100%;
  height: min(2.928vw, 40px);
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body main .sidebar .select select {
    font-size: 1rem;
    height: 10.667vw;
    padding: 1.333vw 2.667vw;
  }
}
html body main .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: min(8.785vw, 120px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main .navigation {
    gap: 2.667vw !important;
    margin: 16vw auto 0;
  }
}
html body main .navigation li a {
  background: #F7F3EB url("../img/icon_arrow6.svg") no-repeat right min(1.464vw, 20px) center/min(0.952vw, 13px) min(1.025vw, 14px);
  border-radius: min(3.66vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: min(3.66vw, 50px);
  padding: 0 0 0 min(1.464vw, 20px);
  font-family: "A1 Mincho";
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body main .navigation li a {
    background: #F7F3EB url("../img/icon_arrow6.svg") no-repeat right 4vw center/2.821vw 3.077vw;
    border-radius: 10.667vw;
    width: 100%;
    height: 10.667vw;
    padding: 0 0 0 4.667vw;
    font-size: 1rem;
  }
}
html body main .navigation li.active a {
  background: #BD2D20 url("../img/icon_arrow7.svg") no-repeat right min(1.464vw, 20px) center/min(0.952vw, 13px) min(1.025vw, 14px);
  color: #fff;
}
@media screen and (max-width: 768px) {
  html body main .navigation li.active a {
    background: #BD2D20 url("../img/icon_arrow7.svg") no-repeat right 4vw center/2.821vw 3.077vw;
  }
}
html body main #interview_list .inner h2 + .list {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner h2 + .list {
    margin-top: 5.333vw;
  }
}
html body main #interview_list .inner .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
  }
}
html body main #interview_list .inner .list article a {
  display: block;
  background: url("../img/interview_person_bg.png") no-repeat right bottom/min(19.18vw, 262px) min(24.158vw, 330px);
  padding: 0 min(0.586vw, 8px) min(0.586vw, 8px) 0;
  -webkit-transition: background-position 0.5s ease-in-out;
  transition: background-position 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner .list article a {
    background: url("../img/interview_person_bg.png") no-repeat right bottom/97.037% auto;
    padding: 0 2.667vw 2.667vw 0;
  }
}
html body main #interview_list .inner .list article a figure {
  width: 100%;
  position: relative;
}
html body main #interview_list .inner .list article a figure > div {
  width: min(19.18vw, 262px);
  aspect-ratio: 131/170;
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner .list article a figure > div {
    width: 100%;
  }
}
html body main #interview_list .inner .list article a figure > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main #interview_list .inner .list article a figure > img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(19.18vw, 262px);
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner .list article a figure > img {
    width: 100%;
  }
}
html body main #interview_list .inner .list article a figure figcaption {
  position: absolute;
  left: min(1.464vw, 20px);
  bottom: min(1.464vw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner .list article a figure figcaption {
    left: 4.667vw;
    bottom: 4.667vw;
    font-size: 1.285rem;
  }
}
html body main #interview_list .inner .list article a figure figcaption::before {
  content: "●";
  color: #fff;
  font-size: min(0.439vw, 6px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner .list article a figure figcaption::before {
    font-size: 0.714rem;
    margin-right: 1.333vw;
  }
}
html body main #interview_list .inner .list article a:hover {
  background-position: calc(100% - min(0.586vw, 8px)) calc(100% - min(0.586vw, 8px));
}
@media screen and (max-width: 768px) {
  html body main #interview_list .inner .list article a:hover {
    background-position: calc(100% - 2.667vw) calc(100% - 2.667vw);
  }
}
html body main #banner .inner {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2.196vw, 30px);
  width: min(54.905vw, 750px) !important;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main #banner .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
  }
}
html body main #banner2 .inner {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2.196vw, 30px);
  width: min(57.833vw, 790px) !important;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main #banner2 .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
  }
}
html body main #banner2 .inner p {
  width: 100%;
  overflow: hidden;
}
html body main #banner2 .inner p a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  z-index: 0;
}
html body main #banner2 .inner p a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/") center/cover no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: -1;
}
html body main #banner2 .inner p a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  aspect-ratio: 95/33;
  margin: min(0.366vw, 5px);
  border: 1px #fff solid;
  color: #fff;
  font-family: "A1 Mincho";
  font-size: min(1.75rem, 28px);
}
@media screen and (max-width: 768px) {
  html body main #banner2 .inner p a span {
    margin: 1.333vw;
    font-size: 1.571rem;
  }
}
html body main #banner2 .inner p a span img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(3.221vw, 44px);
  margin: 0 0 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main #banner2 .inner p a span img {
    width: 9.6vw;
    margin: 0 0 0 2.667vw;
  }
}
html body main #banner2 .inner p a:hover::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
html body main #banner2 .inner p:nth-of-type(1) a::before {
  background: url("../img/bnr_requirement.png") no-repeat center/cover;
}
html body main #banner2 .inner p:nth-of-type(2) a::before {
  background: url("../img/bnr_faq.png") no-repeat center/cover;
}
html body footer {
  background: url("../img/bg_common.png") repeat-y center top/100% auto;
}
@media screen and (max-width: 768px) {
  html body footer {
    background: url("../img/bg_common.png") repeat-y center top/200% auto;
    padding-bottom: 16vw;
  }
}
html body footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: min(83.455vw, 1140px);
  padding: min(8.785vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body footer .inner {
    display: block;
    width: 100% !important;
    padding: 21.333vw 8vw;
  }
}
html body footer .inner > div:nth-of-type(1) .footer-logo,
html body footer .inner > div:nth-of-type(1) .logo {
  width: min(25.037vw, 342px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(1) .footer-logo,
  html body footer .inner > div:nth-of-type(1) .logo {
    width: 71.2vw;
  }
}
html body footer .inner > div:nth-of-type(1) address {
  font-size: min(0.875rem, 14px);
  line-height: 2;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(1) address {
    font-size: 1rem;
    line-height: 2;
    margin-top: 5.333vw;
  }
}
html body footer .inner > div:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.333vw;
    margin-top: 10.667vw;
  }
}
html body footer .inner > div:nth-of-type(2) > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.333vw;
  }
}
html body footer .inner > div:nth-of-type(2) > ul:nth-of-type(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > ul:nth-of-type(2) {
    gap: 5.333vw;
  }
}
html body footer .inner > div:nth-of-type(2) > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
html body footer .inner > div:nth-of-type(2) > ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "A1 Mincho";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > ul li span {
    font-size: 1.142rem;
  }
}
html body footer .inner > div:nth-of-type(2) > ul li span::before {
  content: "●";
  color: #BD2D20;
  font-size: min(0.439vw, 6px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > ul li span::before {
    font-size: 0.571rem;
    margin-right: 1.333vw;
  }
}
html body footer .inner > div:nth-of-type(2) > ul li span:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
html body footer .inner > div:nth-of-type(2) > ul li > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(1.464vw, 20px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > ul li > ul {
    gap: 2.667vw;
    margin-top: 2.667vw;
  }
}
html body footer .inner > div:nth-of-type(2) > ul li > ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > ul li > ul li span {
    font-size: 1rem;
  }
}
html body footer .inner > div:nth-of-type(2) > ul li > ul li span::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: min(0.366vw, 5px);
  height: 1px;
  background: #BD2D20;
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > ul li > ul li span::before {
    width: 1.333vw;
    margin-right: 1.333vw;
  }
}
html body footer .inner > div:nth-of-type(2) > ul li > ul li span:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
html body footer small {
  display: block;
  background: #BD2D20;
  width: 100%;
  padding: min(1.098vw, 15px) 0;
  color: #fff;
  text-align: center;
  font-size: min(0.75rem, 12px);
}
@media screen and (max-width: 768px) {
  html body footer small {
    padding: 2.667vw;
    font-size: 0.714rem;
    border-bottom: 1px #fff solid;
  }
}
html body .pagetop_banner {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body .pagetop_banner {
    bottom: 18vw;
    right: 15px;
  }
}
html body .pagetop_banner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: gap 0.5s ease;
  transition: gap 0.5s ease;
}
html body .pagetop_banner a img {
  width: 50px;
  aspect-ratio: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body .pagetop_banner a img {
    width: 34px;
  }
}
html body .pagetop_banner a span {
  font-family: "A1 Mincho";
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
}
html body .pagetop_banner a:hover {
  gap: 12px;
}
html body .pagetop_banner a:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
@media screen and (max-width: 768px) {
  html body .sample_banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
  }
  html body .sample_banner a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #BD2D20;
    width: 100%;
    height: 16vw;
    padding: 0 8vw;
  }
  html body .sample_banner a span {
    color: #fff;
    font-family: "A1 Mincho";
    font-size: 1.142rem;
  }
  html body .sample_banner a img {
    width: 6.4vw;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  html body .sample_banner a:hover img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
html body .scroll_banner {
  position: fixed;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(4.173vw, 57px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body .scroll_banner {
    width: 10.667vw;
  }
}

.recaptca_area {
  margin-top: 20px;
  color: gray;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .recaptca_area {
    text-align: left;
  }
}
.recaptca_area a {
  color: gray;
  border-bottom: solid 1px gray;
}

.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */