@charset "UTF-8";
/* font
-----------------------------------------------------*/
/* sans-serif */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/NotoSansJP-Regular.woff2") format("woff2"), url("assets/fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/NotoSansJP-Bold.woff2") format("woff2"), url("assets/fonts/NotoSansJP-Bold.woff") format("woff");
}
/* mixin var
-----------------------------------------------------*/
/* reset
-----------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* html
-----------------------------------------------------*/
:root {
  interpolate-size: allow-keywords;
}

html {
  overflow: auto;
  font-size: 62.5%;
  scroll-padding-top: 105px;
  scroll-behavior: smooth;
}

body {
  color: #333;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: clamp(14px, 13.388px + 0.163vw, 16px)/1.8 "Noto Sans JP", sans-serif;
  /*font:1.6rem/1.8 "Noto Serif CJK JP", serif;*/
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

/* link
-----------------------------------------------------*/
a {
  color: #0068B7;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: rgb(81, 179.8852459016, 255);
}

a[href*="tel:"] {
  color: #333;
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

/*flex
-----------------------------------------------------*/
.flex {
  display: flex;
}
@media (max-width: 1199px) {
  .flex-xl {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .flex-lg {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .flex-md {
    display: flex !important;
  }
}
@media (max-width: 575px) {
  .flex-sm {
    display: flex !important;
  }
}

.justify-start {
  justify-content: start;
}
@media (max-width: 1199px) {
  .justify-start-xl {
    justify-content: start !important;
  }
}
@media (max-width: 1023px) {
  .justify-start-lg {
    justify-content: start !important;
  }
}
@media (max-width: 767px) {
  .justify-start-md {
    justify-content: start !important;
  }
}
@media (max-width: 575px) {
  .justify-start-sm {
    justify-content: start !important;
  }
}

.justify-center {
  justify-content: center;
}
@media (max-width: 1199px) {
  .justify-center-xl {
    justify-content: center !important;
  }
}
@media (max-width: 1023px) {
  .justify-center-lg {
    justify-content: center !important;
  }
}
@media (max-width: 767px) {
  .justify-center-md {
    justify-content: center !important;
  }
}
@media (max-width: 575px) {
  .justify-center-sm {
    justify-content: center !important;
  }
}

.justify-between {
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .justify-between-xl {
    justify-content: space-between !important;
  }
}
@media (max-width: 1023px) {
  .justify-between-lg {
    justify-content: space-between !important;
  }
}
@media (max-width: 767px) {
  .justify-between-md {
    justify-content: space-between !important;
  }
}
@media (max-width: 575px) {
  .justify-between-sm {
    justify-content: space-between !important;
  }
}

.justify-around {
  justify-content: space-around;
}
@media (max-width: 1199px) {
  .justify-around-xl {
    justify-content: space-around !important;
  }
}
@media (max-width: 1023px) {
  .justify-around-lg {
    justify-content: space-around !important;
  }
}
@media (max-width: 767px) {
  .justify-around-md {
    justify-content: space-around !important;
  }
}
@media (max-width: 575px) {
  .justify-around-sm {
    justify-content: space-around !important;
  }
}

.justify-end {
  justify-content: end;
}
@media (max-width: 1199px) {
  .justify-end-xl {
    justify-content: end !important;
  }
}
@media (max-width: 1023px) {
  .justify-end-lg {
    justify-content: end !important;
  }
}
@media (max-width: 767px) {
  .justify-end-md {
    justify-content: end !important;
  }
}
@media (max-width: 575px) {
  .justify-end-sm {
    justify-content: end !important;
  }
}

.align-items-start {
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .align-items-start-xl {
    align-items: flex-start !important;
  }
}
@media (max-width: 1023px) {
  .align-items-start-lg {
    align-items: flex-start !important;
  }
}
@media (max-width: 767px) {
  .align-items-start-md {
    align-items: flex-start !important;
  }
}
@media (max-width: 575px) {
  .align-items-start-sm {
    align-items: flex-start !important;
  }
}

.align-items-center {
  align-items: center;
}
@media (max-width: 1199px) {
  .align-items-center-xl {
    align-items: center !important;
  }
}
@media (max-width: 1023px) {
  .align-items-center-lg {
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .align-items-center-md {
    align-items: center !important;
  }
}
@media (max-width: 575px) {
  .align-items-center-sm {
    align-items: center !important;
  }
}

.align-items-end {
  align-items: end;
}
@media (max-width: 1199px) {
  .align-items-end-xl {
    align-items: end !important;
  }
}
@media (max-width: 1023px) {
  .align-items-end-lg {
    align-items: end !important;
  }
}
@media (max-width: 767px) {
  .align-items-end-md {
    align-items: end !important;
  }
}
@media (max-width: 575px) {
  .align-items-end-sm {
    align-items: end !important;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .flex-wrap-xl {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 1023px) {
  .flex-wrap-lg {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 767px) {
  .flex-wrap-md {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 575px) {
  .flex-wrap-sm {
    flex-wrap: wrap !important;
  }
}

.flex-nowrap {
  flex-wrap: nowrap;
}
@media (max-width: 1199px) {
  .flex-nowrap-xl {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 1023px) {
  .flex-nowrap-lg {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 767px) {
  .flex-nowrap-md {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 575px) {
  .flex-nowrap-sm {
    flex-wrap: nowrap !important;
  }
}

.flex-column {
  flex-direction: column;
}
@media (max-width: 1199px) {
  .flex-column-xl {
    flex-direction: column !important;
  }
}
@media (max-width: 1023px) {
  .flex-column-lg {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  .flex-column-md {
    flex-direction: column !important;
  }
}
@media (max-width: 575px) {
  .flex-column-sm {
    flex-direction: column !important;
  }
}

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

/*font-size
-----------------------------------------------------*/
.fs-10 {
  font-size: 1rem;
}

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-19 {
  font-size: 1.9rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-21 {
  font-size: 2.1rem;
}

.fs-22 {
  font-size: 2.2rem;
}

.fs-23 {
  font-size: 2.3rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 2.6rem;
}

.fs-27 {
  font-size: 2.7rem;
}

.fs-28 {
  font-size: 2.8rem;
}

.fs-29 {
  font-size: 2.9rem;
}

.fs-30 {
  font-size: 3rem;
}

@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem !important;
  }
  .fs-11-xl {
    font-size: 1.1rem !important;
  }
  .fs-12-xl {
    font-size: 1.2rem !important;
  }
  .fs-13-xl {
    font-size: 1.3rem !important;
  }
  .fs-14-xl {
    font-size: 1.4rem !important;
  }
  .fs-15-xl {
    font-size: 1.5rem !important;
  }
  .fs-16-xl {
    font-size: 1.6rem !important;
  }
  .fs-17-xl {
    font-size: 1.7rem !important;
  }
  .fs-18-xl {
    font-size: 1.8rem !important;
  }
  .fs-19-xl {
    font-size: 1.9rem !important;
  }
  .fs-20-xl {
    font-size: 2rem !important;
  }
  .fs-21-xl {
    font-size: 2.1rem !important;
  }
  .fs-22-xl {
    font-size: 2.2rem !important;
  }
  .fs-23-xl {
    font-size: 2.3rem !important;
  }
  .fs-24-xl {
    font-size: 2.4rem !important;
  }
  .fs-25-xl {
    font-size: 2.5rem !important;
  }
  .fs-26-xl {
    font-size: 2.6rem !important;
  }
  .fs-27-xl {
    font-size: 2.7rem !important;
  }
  .fs-28-xl {
    font-size: 2.8rem !important;
  }
  .fs-29-xl {
    font-size: 2.9rem !important;
  }
  .fs-30-xl {
    font-size: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .fs-10-lg {
    font-size: 1rem !important;
  }
  .fs-11-lg {
    font-size: 1.1rem !important;
  }
  .fs-12-lg {
    font-size: 1.2rem !important;
  }
  .fs-13-lg {
    font-size: 1.3rem !important;
  }
  .fs-14-lg {
    font-size: 1.4rem !important;
  }
  .fs-15-lg {
    font-size: 1.5rem !important;
  }
  .fs-16-lg {
    font-size: 1.6rem !important;
  }
  .fs-17-lg {
    font-size: 1.7rem !important;
  }
  .fs-18-lg {
    font-size: 1.8rem !important;
  }
  .fs-19-lg {
    font-size: 1.9rem !important;
  }
  .fs-20-lg {
    font-size: 2rem !important;
  }
  .fs-21-lg {
    font-size: 2.1rem !important;
  }
  .fs-22-lg {
    font-size: 2.2rem !important;
  }
  .fs-23-lg {
    font-size: 2.3rem !important;
  }
  .fs-24-lg {
    font-size: 2.4rem !important;
  }
  .fs-25-lg {
    font-size: 2.5rem !important;
  }
  .fs-26-lg {
    font-size: 2.6rem !important;
  }
  .fs-27-lg {
    font-size: 2.7rem !important;
  }
  .fs-28-lg {
    font-size: 2.8rem !important;
  }
  .fs-29-lg {
    font-size: 2.9rem !important;
  }
  .fs-30-lg {
    font-size: 3rem !important;
  }
}
@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem !important;
  }
  .fs-11-md {
    font-size: 1.1rem !important;
  }
  .fs-12-md {
    font-size: 1.2rem !important;
  }
  .fs-13-md {
    font-size: 1.3rem !important;
  }
  .fs-14-md {
    font-size: 1.4rem !important;
  }
  .fs-15-md {
    font-size: 1.5rem !important;
  }
  .fs-16-md {
    font-size: 1.6rem !important;
  }
  .fs-17-md {
    font-size: 1.7rem !important;
  }
  .fs-18-md {
    font-size: 1.8rem !important;
  }
  .fs-19-md {
    font-size: 1.9rem !important;
  }
  .fs-20-md {
    font-size: 2rem !important;
  }
  .fs-21-md {
    font-size: 2.1rem !important;
  }
  .fs-22-md {
    font-size: 2.2rem !important;
  }
  .fs-23-md {
    font-size: 2.3rem !important;
  }
  .fs-24-md {
    font-size: 2.4rem !important;
  }
  .fs-25-md {
    font-size: 2.5rem !important;
  }
  .fs-26-md {
    font-size: 2.6rem !important;
  }
  .fs-27-md {
    font-size: 2.7rem !important;
  }
  .fs-28-md {
    font-size: 2.8rem !important;
  }
  .fs-29-md {
    font-size: 2.9rem !important;
  }
  .fs-30-md {
    font-size: 3rem !important;
  }
}
@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem !important;
  }
  .fs-11-sm {
    font-size: 1.1rem !important;
  }
  .fs-12-sm {
    font-size: 1.2rem !important;
  }
  .fs-13-sm {
    font-size: 1.3rem !important;
  }
  .fs-14-sm {
    font-size: 1.4rem !important;
  }
  .fs-15-sm {
    font-size: 1.5rem !important;
  }
  .fs-16-sm {
    font-size: 1.6rem !important;
  }
  .fs-17-sm {
    font-size: 1.7rem !important;
  }
  .fs-18-sm {
    font-size: 1.8rem !important;
  }
  .fs-19-sm {
    font-size: 1.9rem !important;
  }
  .fs-20-sm {
    font-size: 2rem !important;
  }
  .fs-21-sm {
    font-size: 2.1rem !important;
  }
  .fs-22-sm {
    font-size: 2.2rem !important;
  }
  .fs-23-sm {
    font-size: 2.3rem !important;
  }
  .fs-24-sm {
    font-size: 2.4rem !important;
  }
  .fs-25-sm {
    font-size: 2.5rem !important;
  }
  .fs-26-sm {
    font-size: 2.6rem !important;
  }
  .fs-27-sm {
    font-size: 2.7rem !important;
  }
  .fs-28-sm {
    font-size: 2.8rem !important;
  }
  .fs-29-sm {
    font-size: 2.9rem !important;
  }
  .fs-30-sm {
    font-size: 3rem !important;
  }
}
.lh-1 {
  line-height: 1.1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.3;
}

.lh-4 {
  line-height: 1.4;
}

.lh-5 {
  line-height: 1.5;
}

.lh-6 {
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .lh-1-xl {
    line-height: 1.1 !important;
  }
  .lh-2-xl {
    line-height: 1.2 !important;
  }
  .lh-3-xl {
    line-height: 1.3 !important;
  }
  .lh-4-xl {
    line-height: 1.4 !important;
  }
  .lh-5-xl {
    line-height: 1.5 !important;
  }
  .lh-6-xl {
    line-height: 1.6 !important;
  }
}
@media (max-width: 1023px) {
  .lh-1-lg {
    line-height: 1.1 !important;
  }
  .lh-2-lg {
    line-height: 1.2 !important;
  }
  .lh-3-lg {
    line-height: 1.3 !important;
  }
  .lh-4-lg {
    line-height: 1.4 !important;
  }
  .lh-5-lg {
    line-height: 1.5 !important;
  }
  .lh-6-lg {
    line-height: 1.6 !important;
  }
}
@media (max-width: 767px) {
  .lh-1-md {
    line-height: 1.1 !important;
  }
  .lh-2-md {
    line-height: 1.2 !important;
  }
  .lh-3-md {
    line-height: 1.3 !important;
  }
  .lh-4-md {
    line-height: 1.4 !important;
  }
  .lh-5-md {
    line-height: 1.5 !important;
  }
  .lh-6-md {
    line-height: 1.6 !important;
  }
}
@media (max-width: 575px) {
  .lh-1-sm {
    line-height: 1.1 !important;
  }
  .lh-2-sm {
    line-height: 1.2 !important;
  }
  .lh-3-sm {
    line-height: 1.3 !important;
  }
  .lh-4-sm {
    line-height: 1.4 !important;
  }
  .lh-5-sm {
    line-height: 1.5 !important;
  }
  .lh-6-sm {
    line-height: 1.6 !important;
  }
}
/*utility
-----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

em {
  font-style: normal;
  font-weight: bold;
}

.line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #fffa73 0%) repeat scroll 0 0;
}

.indent-list {
  text-indent: -1em;
  padding-left: 1em;
}

.disc-list {
  list-style: disc;
  padding-left: 1.5em;
}
.disc-list.list-blue {
  color: #0068B7;
}

.roman-list {
  list-style-type: lower-roman;
  padding-left: 1.5em;
}

.color-main {
  color: #0068B7 !important;
}

.color-accent01 {
  color: #eed636 !important;
}

.color-red01 {
  color: #E01614 !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.w-auto {
  text-align: left;
}
@media (max-width: 1199px) {
  .w-auto-xl {
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  .w-auto-lg {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .w-auto-md {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .w-auto-sm {
    margin: 0 auto;
  }
}

.align-l {
  text-align: left;
}
@media (max-width: 1199px) {
  .align-l-xl {
    text-align: left !important;
  }
}
@media (max-width: 1023px) {
  .align-l-lg {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .align-l-md {
    text-align: left !important;
  }
}
@media (max-width: 575px) {
  .align-l-sm {
    text-align: left !important;
  }
}

.align-c {
  text-align: center;
}
@media (max-width: 1199px) {
  .align-c-xl {
    text-align: center !important;
  }
}
@media (max-width: 1023px) {
  .align-c-lg {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .align-c-md {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .align-c-sm {
    text-align: center !important;
  }
}

.align-r {
  text-align: right;
}
@media (max-width: 1199px) {
  .align-r-xl {
    text-align: right !important;
  }
}
@media (max-width: 1023px) {
  .align-r-lg {
    text-align: right !important;
  }
}
@media (max-width: 767px) {
  .align-r-md {
    text-align: right !important;
  }
}
@media (max-width: 575px) {
  .align-r-sm {
    text-align: right !important;
  }
}

.pos-r {
  position: relative;
}

.box-shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.block {
  display: block;
}
@media (max-width: 1199px) {
  .block-xl {
    display: block !important;
  }
}
@media (max-width: 1023px) {
  .block-lg {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .block-md {
    display: block !important;
  }
}
@media (max-width: 575px) {
  .block-sm {
    display: block !important;
  }
}

.none {
  display: none;
}
@media (max-width: 1199px) {
  .none-xl {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .none-lg {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .none-md {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .none-sm {
    display: none !important;
  }
}

/* margin padding gap
-----------------------------------------------------*/
.mt-0 {
  margin-top: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.pt-10 {
  padding-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.pb-10 {
  padding-bottom: 1rem !important;
}

.ml-10 {
  margin-left: 1rem !important;
}

.pl-10 {
  padding-left: 1rem !important;
}

.mr-10 {
  margin-right: 1rem !important;
}

.pr-10 {
  padding-right: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.pt-15 {
  padding-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

.ml-15 {
  margin-left: 1.5rem !important;
}

.pl-15 {
  padding-left: 1.5rem !important;
}

.mr-15 {
  margin-right: 1.5rem !important;
}

.pr-15 {
  padding-right: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.pt-20 {
  padding-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.pb-20 {
  padding-bottom: 2rem !important;
}

.ml-20 {
  margin-left: 2rem !important;
}

.pl-20 {
  padding-left: 2rem !important;
}

.mr-20 {
  margin-right: 2rem !important;
}

.pr-20 {
  padding-right: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.pt-25 {
  padding-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

.ml-25 {
  margin-left: 2.5rem !important;
}

.pl-25 {
  padding-left: 2.5rem !important;
}

.mr-25 {
  margin-right: 2.5rem !important;
}

.pr-25 {
  padding-right: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.pt-30 {
  padding-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.pb-30 {
  padding-bottom: 3rem !important;
}

.ml-30 {
  margin-left: 3rem !important;
}

.pl-30 {
  padding-left: 3rem !important;
}

.mr-30 {
  margin-right: 3rem !important;
}

.pr-30 {
  padding-right: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.pt-35 {
  padding-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

.ml-35 {
  margin-left: 3.5rem !important;
}

.pl-35 {
  padding-left: 3.5rem !important;
}

.mr-35 {
  margin-right: 3.5rem !important;
}

.pr-35 {
  padding-right: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.pt-40 {
  padding-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.pb-40 {
  padding-bottom: 4rem !important;
}

.ml-40 {
  margin-left: 4rem !important;
}

.pl-40 {
  padding-left: 4rem !important;
}

.mr-40 {
  margin-right: 4rem !important;
}

.pr-40 {
  padding-right: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.pt-45 {
  padding-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

.ml-45 {
  margin-left: 4.5rem !important;
}

.pl-45 {
  padding-left: 4.5rem !important;
}

.mr-45 {
  margin-right: 4.5rem !important;
}

.pr-45 {
  padding-right: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.pt-50 {
  padding-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.pb-50 {
  padding-bottom: 5rem !important;
}

.ml-50 {
  margin-left: 5rem !important;
}

.pl-50 {
  padding-left: 5rem !important;
}

.mr-50 {
  margin-right: 5rem !important;
}

.pr-50 {
  padding-right: 5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.pt-60 {
  padding-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.pb-60 {
  padding-bottom: 6rem !important;
}

.ml-60 {
  margin-left: 6rem !important;
}

.pl-60 {
  padding-left: 6rem !important;
}

.mr-60 {
  margin-right: 6rem !important;
}

.pr-60 {
  padding-right: 6rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.pt-70 {
  padding-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.pb-70 {
  padding-bottom: 7rem !important;
}

.ml-70 {
  margin-left: 7rem !important;
}

.pl-70 {
  padding-left: 7rem !important;
}

.mr-70 {
  margin-right: 7rem !important;
}

.pr-70 {
  padding-right: 7rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.pt-80 {
  padding-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.pb-80 {
  padding-bottom: 8rem !important;
}

.ml-80 {
  margin-left: 8rem !important;
}

.pl-80 {
  padding-left: 8rem !important;
}

.mr-80 {
  margin-right: 8rem !important;
}

.pr-80 {
  padding-right: 8rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.pt-100 {
  padding-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.pb-100 {
  padding-bottom: 10rem !important;
}

.ml-100 {
  margin-left: 10rem !important;
}

.pl-100 {
  padding-left: 10rem !important;
}

.mr-100 {
  margin-right: 10rem !important;
}

.pr-100 {
  padding-right: 10rem !important;
}

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
.gap-0 {
  gap: 0rem !important;
}

.gap-10 {
  gap: 1rem !important;
}

.gap-15 {
  gap: 1.5rem !important;
}

.gap-20 {
  gap: 2rem !important;
}

.gap-25 {
  gap: 2.5rem !important;
}

.gap-30 {
  gap: 3rem !important;
}

.gap-35 {
  gap: 3.5rem !important;
}

.gap-40 {
  gap: 4rem !important;
}

.gap-45 {
  gap: 4.5rem !important;
}

.gap-50 {
  gap: 5rem !important;
}

.gap-60 {
  gap: 6rem !important;
}

.gap-70 {
  gap: 7rem !important;
}

.gap-80 {
  gap: 8rem !important;
}

.gap-100 {
  gap: 10rem !important;
}

@media (max-width: 1199px) {
  .gap-0-xl {
    gap: 0rem !important;
  }
  .gap-10-xl {
    gap: 1rem !important;
  }
  .gap-15-xl {
    gap: 1.5rem !important;
  }
  .gap-20-xl {
    gap: 2rem !important;
  }
  .gap-25-xl {
    gap: 2.5rem !important;
  }
  .gap-30-xl {
    gap: 3rem !important;
  }
  .gap-35-xl {
    gap: 3.5rem !important;
  }
  .gap-40-xl {
    gap: 4rem !important;
  }
  .gap-45-xl {
    gap: 4.5rem !important;
  }
  .gap-50-xl {
    gap: 5rem !important;
  }
  .gap-60-xl {
    gap: 6rem !important;
  }
  .gap-70-xl {
    gap: 7rem !important;
  }
  .gap-80-xl {
    gap: 8rem !important;
  }
  .gap-100-xl {
    gap: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .gap-0-lg {
    gap: 0rem !important;
  }
  .gap-10-lg {
    gap: 1rem !important;
  }
  .gap-15-lg {
    gap: 1.5rem !important;
  }
  .gap-20-lg {
    gap: 2rem !important;
  }
  .gap-25-lg {
    gap: 2.5rem !important;
  }
  .gap-30-lg {
    gap: 3rem !important;
  }
  .gap-35-lg {
    gap: 3.5rem !important;
  }
  .gap-40-lg {
    gap: 4rem !important;
  }
  .gap-45-lg {
    gap: 4.5rem !important;
  }
  .gap-50-lg {
    gap: 5rem !important;
  }
  .gap-60-lg {
    gap: 6rem !important;
  }
  .gap-70-lg {
    gap: 7rem !important;
  }
  .gap-80-lg {
    gap: 8rem !important;
  }
  .gap-100-lg {
    gap: 10rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !important;
  }
  .gap-10-md {
    gap: 1rem !important;
  }
  .gap-15-md {
    gap: 1.5rem !important;
  }
  .gap-20-md {
    gap: 2rem !important;
  }
  .gap-25-md {
    gap: 2.5rem !important;
  }
  .gap-30-md {
    gap: 3rem !important;
  }
  .gap-35-md {
    gap: 3.5rem !important;
  }
  .gap-40-md {
    gap: 4rem !important;
  }
  .gap-45-md {
    gap: 4.5rem !important;
  }
  .gap-50-md {
    gap: 5rem !important;
  }
  .gap-60-md {
    gap: 6rem !important;
  }
  .gap-70-md {
    gap: 7rem !important;
  }
  .gap-80-md {
    gap: 8rem !important;
  }
  .gap-100-md {
    gap: 10rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !important;
  }
  .gap-10-sm {
    gap: 1rem !important;
  }
  .gap-15-sm {
    gap: 1.5rem !important;
  }
  .gap-20-sm {
    gap: 2rem !important;
  }
  .gap-25-sm {
    gap: 2.5rem !important;
  }
  .gap-30-sm {
    gap: 3rem !important;
  }
  .gap-35-sm {
    gap: 3.5rem !important;
  }
  .gap-40-sm {
    gap: 4rem !important;
  }
  .gap-45-sm {
    gap: 4.5rem !important;
  }
  .gap-50-sm {
    gap: 5rem !important;
  }
  .gap-60-sm {
    gap: 6rem !important;
  }
  .gap-70-sm {
    gap: 7rem !important;
  }
  .gap-80-sm {
    gap: 8rem !important;
  }
  .gap-100-sm {
    gap: 10rem !important;
  }
}
/*header
-----------------------------------------------------*/
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding: 2rem 3.75%;
  height: 105px;
  transition: all 0.5s ease;
  z-index: 999;
}
@media (max-width: 890px) {
  .header {
    height: 80px;
  }
}
@media (max-width: 575px) {
  .header {
    padding: 2rem;
    height: 60px;
  }
}
.header.shadow {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  height: 80px;
}
@media (max-width: 575px) {
  .header.shadow {
    height: 60px;
  }
}
.header.shadow .header-nav,
.header.shadow .header-search {
  height: 0;
  opacity: 0;
}
@media (max-width: 890px) {
  .header.shadow .header-nav,
  .header.shadow .header-search {
    opacity: 1;
    height: auto;
  }
}
.header.hide-header {
  transform: translateY(-100%);
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.header-logo {
  width: 140px;
  line-height: 1;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .header-logo {
    width: 100px;
  }
}
.header-logo a {
  display: flex;
  align-items: center;
}
.header .header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  margin-left: auto;
  gap: 1rem 0;
  transition: unset;
}
@media (max-width: 890px) {
  .header .header-inner {
    position: absolute;
    width: 100%;
    top: 80px;
    left: 0;
    background: #fff;
    align-items: start;
    margin-left: 0;
    height: calc(100vh - 80px);
    padding: 0 3.75%;
    visibility: hidden;
    opacity: 0;
  }
  .header .header-inner .header-search {
    display: none;
  }
  .header .header-inner.active {
    display: flex;
    flex-direction: column;
    justify-content: start;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease;
  }
}
@media (max-width: 890px) and (max-width: 575px) {
  .header .header-inner {
    top: 60px;
    padding: 2rem;
    height: calc(100vh - 60px);
  }
}
.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 0;
  transition: all 0.3s ease;
}
@media (max-width: 890px) {
  .header-nav {
    width: 100%;
    order: 2;
    justify-content: center;
    margin-top: 2rem;
  }
}
.header-nav li {
  position: relative;
}
.header-nav li::after {
  position: absolute;
  content: "";
  top: calc(50% + 0.2rem);
  left: 0;
  width: 1px;
  height: 60%;
  transform: translateY(-50%);
  background: #333;
}
@media (max-width: 890px) {
  .header-nav li::after {
    content: none;
  }
}
.header-nav a {
  text-decoration: none;
  font-size: 1.3rem;
  color: #333;
  padding: 0 1.5rem;
}
.header-nav a[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #333;
  margin-left: 0.5rem;
}
.header .header-search {
  position: relative;
  top: 2px;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 890px) {
  .header .header-search {
    position: absolute;
    top: 26px;
    right: 80px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .header .header-search {
    top: 10px;
    right: 50px;
  }
}
.header .header-search__btn {
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url(assets/images/common/search_icon.svg) no-repeat center center;
}
.header .header-search__btn.btn-none-pc {
  display: none;
}
@media (max-width: 890px) {
  .header .header-search__btn.btn-none-pc {
    display: block;
  }
}
@media (max-width: 890px) {
  .header .header-search__btn {
    width: 26px;
    height: 26px;
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .header .header-search__btn {
    width: 38px;
    height: 38px;
    background-size: 20px 20px;
  }
}
.header .header-search.active .header-search__btn {
  background: url(assets/images/common/close_icon.svg) no-repeat center center;
}
@media (max-width: 575px) {
  .header .header-search.active .header-search__btn {
    background-size: 20px 20px;
  }
}
.header .global-nav {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 3rem;
}
@media (max-width: 890px) {
  .header .global-nav {
    display: block;
    width: 100%;
  }
}
.header .global-nav > li {
  position: relative;
}
.header .global-nav > li > a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 890px) {
  .header .global-nav > li > a {
    padding: 2rem 0;
    border-bottom: 1px solid #dfdfdf;
  }
}
.header .global-nav > li > a::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #222;
  transition: 0.2s ease;
}
@media (min-width: 891px) {
  .header .global-nav > li > a:hover {
    opacity: 1;
  }
  .header .global-nav > li > a:hover::before {
    width: calc(100% - 20px);
  }
}
.header .global-nav > li a[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #333;
  margin-left: 0.5rem;
}
.header .global-nav .menu-item-has-children {
  position: relative;
}
.header .global-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header .global-nav .menu-item-has-children .accordion-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 890px) {
  .header .global-nav .menu-item-has-children .accordion-btn {
    display: block;
  }
}
.header .global-nav .menu-item-has-children .accordion-btn::before {
  position: absolute;
  content: "";
  top: 48%;
  left: 50%;
  color: #333;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.5s ease;
}
.header .global-nav .menu-item-has-children .accordion-btn.active::before {
  top: 52%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .global-nav .menu-item-has-children:last-child .sub-menu {
  right: 0;
}
.header .global-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 280px;
  background: #0068B7;
  transform: translateY(10px);
  padding: 2rem;
}
@media (max-width: 890px) {
  .header .global-nav .menu-item-has-children .sub-menu {
    display: none;
    position: static;
    max-width: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    background: #f3f3f3;
    padding: 0;
    transition: unset;
  }
}
.header .global-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
}
@media (max-width: 890px) {
  .header .global-nav .menu-item-has-children .sub-menu a {
    color: #333;
    border-bottom: 1px solid #dfdfdf;
  }
}
.header .global-nav .menu-item-has-children .sub-menu a[target=_blank]::after {
  background: #fff;
}
@media (max-width: 890px) {
  .header .global-nav .menu-item-has-children .sub-menu a[target=_blank]::after {
    background: #333;
  }
}
@media (min-width: 891px) {
  .header .global-nav .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.header .global-nav.menu-item-has-children:last-of-type .sub-menu {
  right: 0;
}

.header-search-form {
  position: fixed;
  top: 105px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 3rem;
  border-top: 1px solid #dfdfdf;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}
@media (max-width: 890px) {
  .header-search-form {
    top: 80px;
  }
}
@media (max-width: 575px) {
  .header-search-form {
    top: 60px;
    padding: 2rem;
  }
}

.header-search.active .header-search-form {
  visibility: visible;
  opacity: 1;
}

.search-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.search-inner .search-input {
  appearance: none;
  width: 100%;
  min-height: 50px;
  border-radius: 25px;
  border: 1px solid #dfdfdf;
  background: #f3f3f3;
  padding: 0.6em 2rem;
  font-size: 1.5rem;
}
.search-inner .search-input::placeholder {
  color: #999999;
}
.search-inner.page-search {
  max-width: 400px;
}
.search-inner.page-search .search-input {
  min-height: 70px;
  border-radius: 35px;
}
@media (max-width: 767px) {
  .search-inner.page-search .search-input {
    min-height: 50px;
    border-radius: 25px;
  }
}
.search-inner .search-submit {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
}
.search-inner .search-submit img {
  vertical-align: middle;
}

#js-overlay {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  pointer-events: all;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
#js-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* hamburger-menu */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 19px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  z-index: 10001;
}
@media (max-width: 890px) {
  .hamburger {
    display: block;
  }
}
@media (max-width: 575px) {
  .hamburger {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #333;
  transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .hamburger span {
    width: 24px;
  }
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
@media (max-width: 575px) {
  .hamburger span:nth-child(2) {
    top: 18px;
  }
}
.hamburger span:nth-child(3) {
  top: 30px;
}
@media (max-width: 575px) {
  .hamburger span:nth-child(3) {
    top: 26px;
  }
}

/* open */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
@media (max-width: 575px) {
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}
@media (max-width: 575px) {
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

/*page-common
-----------------------------------------------------*/
#main {
  margin-top: 105px;
}
@media (max-width: 890px) {
  #main {
    margin-top: 80px;
  }
}
@media (max-width: 575px) {
  #main {
    margin-top: 60px;
  }
}

.container-sm {
  max-width: 720px;
  padding: 0 4rem;
  margin: 0 auto;
}

.container-ex {
  padding: 0 4rem;
  margin: 0 auto;
}

.container-md {
  max-width: 960px;
  padding: 0 4rem;
  margin: 0 auto;
}

.container-lg {
  max-width: 1200px;
  padding: 0 4rem;
  margin: 0 auto;
}

.container-xl {
  max-width: 1400px;
  padding: 0 4rem;
  margin: 0 auto;
}

.container-sm,
.container-md,
.container-ex,
.container-lg,
.container-xl {
  box-sizing: content-box;
}

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-ex,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
.bg-blue {
  color: #FFF;
  background-image: linear-gradient(140deg, rgb(0, 160, 233), rgb(17, 119, 228));
}

/* parts */
a:hover {
  opacity: 0.6;
}

/* btn */
.mod-btn {
  appearance: none;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  font-weight: 700;
  color: #fff;
  background: #0068B7;
  padding: 1rem 4rem;
  text-decoration: none;
  border-radius: 100px;
}
.mod-btn.border-btn {
  color: #0068B7;
  background: #fff;
  border: 1px solid #0068B7;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mod-btn.border-btn:hover, .mod-btn.border-btn:active, .mod-btn.border-btn:focus {
  color: #fff;
  background: #0068B7;
  opacity: 1;
}
.mod-btn.border-btn[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #0068B7;
}
.mod-btn.border-btn[target=_blank]:hover::after {
  background: #fff;
}
.mod-btn.btn-s {
  min-width: 160px;
  padding: 0.5rem 4rem;
}
.mod-btn.btn-xs {
  min-width: 110px;
  font-size: 1.2rem;
  font-weight: normal;
  padding: 1rem 2rem;
}
.mod-btn[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #fff;
  margin-left: 0.5rem;
}

.mod-bnr-btn {
  width: fit-content;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0068B7;
  background: #fff;
  padding: 0.5rem 3rem;
  border-radius: 100px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.btn-col2 {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .btn-col2 {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*見出し*/
.heading-2-01 {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .heading-2-01 {
    margin-bottom: 3rem;
  }
}
.heading-2-01 .en {
  font-size: clamp(40px, 24.694px + 4.082vw, 90px);
  font-weight: 700;
  line-height: 1;
}
.heading-2-01 .en::first-letter {
  color: #0068B7;
}
.heading-2-01 .ja {
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  word-break: auto-phrase;
}

.heading-2-02 {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .heading-2-02 {
    margin-bottom: 3rem;
  }
}
.heading-2-02 .en {
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  color: #0068B7;
  font-weight: 700;
}
.heading-2-02 .ja {
  font-size: clamp(22px, 19.551px + 0.653vw, 30px);
  word-break: auto-phrase;
  line-height: 1.4;
}

.heading-2-03 {
  margin-bottom: 4rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .heading-2-03 {
    margin-bottom: 3rem;
  }
}
.heading-2-03 .en {
  font-size: clamp(40px, 24.694px + 4.082vw, 90px);
  font-weight: 700;
  line-height: 1;
}
.heading-2-03 .en::first-letter {
  color: #0068B7;
}
.heading-2-03 .ja {
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  word-break: auto-phrase;
}
.heading-2-03--white {
  color: #FFF;
}
.heading-2-03--white .en::first-letter {
  color: #FFF;
}

.heading-2-04 {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .heading-2-04 {
    margin-bottom: 2rem;
  }
}
.heading-2-04 .en {
  font-size: clamp(14px, 13.388px + 0.163vw, 14px);
  color: #0068B7;
}
.heading-2-04 .en::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #0068B7;
  vertical-align: middle;
  margin: 0 0.5rem 0.3rem 0;
}
.heading-2-04 .en::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #0068B7;
  vertical-align: middle;
  margin: 0 0 0.3rem 0.5rem;
}
.heading-2-04 .ja {
  font-size: clamp(22px, 19.551px + 0.653vw, 30px);
  word-break: auto-phrase;
  line-height: 1.4;
}

.heading-2-05 {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  color: #0068B7;
  border-bottom: 2px solid #0068B7;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .heading-2-05 {
    margin-bottom: 3rem;
  }
}

.heading-2-06 {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 3px solid #dfdfdf;
  margin: 6rem 0 4rem;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .heading-2-06 {
    margin: 5rem 0 3rem;
  }
}
.heading-2-06::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #0068B7;
}
.heading-2-06 strong {
  font-size: clamp(22px, 21.388px + 0.163vw, 24px);
  margin-right: 5px;
}

.heading-3-01 {
  font-size: clamp(20px, 18.776px + 0.327vw, 24px);
  line-height: 1.6;
  margin: 6rem 0 3rem;
}
@media (max-width: 767px) {
  .heading-3-01 {
    margin: 4rem 0 2.5rem;
  }
}
.heading-3-01:first-letter {
  color: #0068B7;
}
.heading-3-01.f-letter-none:first-letter {
  color: none;
}
.heading-3-01.u-border {
  padding-bottom: 1rem;
  border-bottom: 1px solid #0068B7;
}

.heading-3-02 {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  color: #0068B7;
  border-bottom: 2px solid #0068B7;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .heading-3-02 {
    margin-bottom: 3rem;
  }
}
.heading-3-02 strong {
  font-size: clamp(22px, 15.388px + 0.163vw, 24px);
  margin-right: 10px;
}

.heading-4-01 {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  margin-bottom: 3rem;
}

.heading-2-02 + h3 {
  margin-top: 0;
}

.page-header {
  position: relative;
  padding: 4rem 0 3rem;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
@media (max-width: 575px) {
  .page-header {
    padding: 2rem 0;
  }
}
.page-header .page-title {
  margin-bottom: 3rem;
}
.page-header .page-title .en {
  display: flex;
  align-items: center;
  position: relative;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  line-height: 1.4;
  margin-bottom: 1rem;
  gap: 0.5rem;
}
.page-header .page-title .en::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: #0068B7;
  border-radius: 50%;
}
.page-header .page-title .ja {
  font-size: clamp(25px, 21.939px + 0.816vw, 35px);
  line-height: 1.4;
  word-break: auto-phrase;
  font-weight: 700 !important;
}
.page-header .title-bg {
  position: absolute;
  bottom: -6%;
  right: 0;
  font-size: clamp(50px, 40.816px + 2.449vw, 80px);
  font-weight: 700;
  line-height: 1;
  color: #f3f3f3;
}
@media (max-width: 575px) {
  .page-header .title-bg {
    display: none;
  }
}

/*パンくず*/
.breadcrumb {
  position: relative;
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
}
.breadcrumb-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

/*記事など*/
.card-list {
  display: flex;
  flex-wrap: wrap;
}
.card-list .card-item {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
.card-list .card-item .card__img {
  margin-bottom: 2rem;
}
.card-list .card-item .card__img img {
  width: 100%;
}
.card-list .card-item .card__img.border-img img {
  border: 1px solid #dfdfdf;
}
.card-list .card-item .card__date {
  font-weight: bold;
}
.card-list .card-item .card__title {
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  font-weight: bold;
  margin-bottom: 2rem;
}
.card-list.l-col3 {
  gap: 3rem 2%;
}
@media (max-width: 767px) {
  .card-list.l-col3 {
    gap: 3rem 4%;
  }
}
.card-list.l-col3 .card-item {
  width: 32%;
}
@media (max-width: 767px) {
  .card-list.l-col3 .card-item {
    width: 48%;
  }
}
.card-list.l-col2 {
  gap: 3rem 4%;
}
.card-list.l-col2 .card-item {
  width: 48%;
}
.card-list.l-col2 .card__title {
  font-size: clamp(17px, 16.082px + 0.245vw, 20px);
}
@media (max-width: 767px) {
  .card-list.l-col1-md .card-item {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .card-list.l-col1-sm .card-item {
    width: 100%;
  }
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cat-list a,
.cat-list .link-none {
  display: inline-block;
  font-size: clamp(10px, 8.776px + 0.327vw, 14px);
  text-decoration: none;
  color: #333;
  background: #eeeeee;
  padding: 0.5rem 2rem;
  border-radius: 100px;
}
@media (max-width: 575px) {
  .cat-list a,
  .cat-list .link-none {
    padding: 0.5rem 1rem;
  }
}
.cat-list .link-none {
  cursor: pointer;
  transition: 0.3s ease;
}
.cat-list .link-none:hover {
  opacity: 0.6;
}
.cat-list.l-cat a {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: bold;
  padding: 0.5rem 4rem;
}
.cat-list .active a {
  background: #0068B7;
  color: #FFF;
}
.cat-list .active.tab-black a {
  background: #333;
}
.cat-list .active.tab-green a {
  background: #01AD4C;
}
.cat-list .active.tab-red a {
  background: #E01614;
}
.cat-list .active.tab-blue a {
  background: #0094CE;
}
.cat-list.border-list a,
.cat-list.border-list .link-none {
  color: #0068B7;
  border: 1px solid #0068B7;
  background: none;
}

.line-box {
  padding: 4rem;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
@media (max-width: 767px) {
  .line-box {
    padding: 2rem;
  }
}

.line-text {
  padding: 1rem 2rem;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.mod-box {
  padding: 4rem;
  background: #f3f3f3;
}
@media (max-width: 767px) {
  .mod-box {
    padding: 2rem;
  }
}

.tag-list,
.tag-list-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list li,
.tag-list-2 li {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  background: #eeeeee;
  padding: 0.2rem 1rem;
}
.tag-list li a,
.tag-list-2 li a {
  color: #333;
  text-decoration: none;
}
.tag-list.border-list li,
.tag-list-2.border-list li {
  background: none;
  border: 1px solid #333;
}

.tag-list-2 li {
  font-size: clamp(10px, 8.388px + 0.163vw, 11px);
  border: 1px solid #999999;
  color: #999999;
  padding: 0.4rem 0.5rem;
  line-height: 1;
  background: none;
}

.news-list {
  width: 100%;
}
.news-list li {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid #dfdfdf;
}
.news-list li:first-of-type {
  padding-top: 0;
}
.news-list li a {
  text-decoration: none;
  color: #333;
}
.news-list li.news-list__item {
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
.news-list li .img-list__item {
  display: flex;
}
.news-list li .img-list__item .news-list__text {
  flex: 1;
}
.news-list li .news-list__img {
  width: 80px;
  flex-shrink: 0;
}
.news-list__info {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
  margin-bottom: 1rem;
}
.news-list__info .cat {
  color: #0068B7;
  border: 1px solid #0068B7;
  padding: 0.2rem 1rem;
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}
.news-list__info .cat-red {
  color: #E01614;
  border: 1px solid #E01614;
}
.news-list__info .cat-l-blue {
  color: #0094CE;
  border: 1px solid #0094CE;
}
.news-list__info .cat-green {
  color: #01AD4C;
  border: 1px solid #01AD4C;
}
.news-list__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1rem;
  margin-top: 1rem;
}
.news-list__tag li {
  padding: 0;
  border: none;
}
.news-list__tag li a {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
  color: #0068B7;
}

.link-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5%;
}
@media (max-width: 1023px) {
  .link-box-list {
    gap: 2rem 2%;
  }
}
@media (max-width: 690px) {
  .link-box-list {
    gap: 1.5rem 0;
  }
}
.link-box-list a[target=_blank] span::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #333;
  margin-left: 0.5rem;
}
.link-box-list__text .sub {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
  font-weight: normal;
  display: block;
}
.link-box-list li {
  width: 31.6666666667%;
  display: flex;
  background: #fff;
}
@media (max-width: 1023px) {
  .link-box-list li {
    width: 49%;
  }
}
@media (max-width: 690px) {
  .link-box-list li {
    width: 100%;
  }
}
.link-box-list li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #333;
  text-decoration: none;
  font-size: clamp(14px, 12.776px + 0.327vw, 18px);
  word-break: auto-phrase;
  font-weight: bold;
  line-height: 1.6;
  padding: 2rem 4rem 2rem 2rem;
  gap: 2rem;
  border: 1px solid #0068B7;
}
@media (max-width: 690px) {
  .link-box-list li a {
    padding: 1rem 4rem 1rem 2rem;
  }
}
.link-box-list li a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid #0068B7;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
}
.link-box-list li a[target=_blank] .link-box-list__text:not(:has(.sub))::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #333;
  margin-left: 0.5rem;
}
.link-box-list li a[target=_blank] .link-box-list__text .sub::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #333;
  margin-left: 0.5rem;
}
.link-box-list.list-gray li a {
  border: 1px solid #dfdfdf;
}
.link-box-list.list-gray li a::after {
  border: 2px solid #333;
  border-left: 0;
  border-bottom: 0;
}
.link-box-list.list-col2 li {
  width: 48.75%;
}
@media (max-width: 690px) {
  .link-box-list.list-col2 li {
    width: 100%;
  }
}
.link-box-list.list-col2 li a {
  flex-wrap: wrap;
  padding: 3rem 4rem 3rem 2rem;
}
@media (max-width: 1023px) {
  .link-box-list.list-col2 li a {
    gap: 0.5rem;
  }
}
@media (max-width: 690px) {
  .link-box-list.list-col2 li a {
    padding: 1.5rem 4rem 1.5rem 2rem;
  }
}
.link-box-list.list-col2 li .ja {
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
}
@media (max-width: 1023px) {
  .link-box-list.list-col2 li .ja {
    width: 100%;
  }
}
.link-box-list.list-col2 li .en {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  color: #0068B7;
}
@media (max-width: 1023px) {
  .content-col2 .link-box-list li {
    width: 100%;
  }
}
.link-box-list.fs-s li a .ja {
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
}

.cat-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5%;
}
@media (max-width: 767px) {
  .cat-link-list {
    gap: 1.5rem 0;
  }
}
.cat-link-list > li {
  width: 48.75%;
  display: flex;
}
@media (max-width: 767px) {
  .cat-link-list > li {
    width: 100%;
    gap: 1.5rem 0;
  }
}
.cat-link-list > li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #333;
  text-decoration: none;
  padding: 2rem;
  gap: 2rem;
  border: 1px solid #0068B7;
}
@media (max-width: 767px) {
  .cat-link-list > li a {
    padding: 1rem;
  }
}
.cat-link-list__img {
  min-width: 100px;
}
@media (max-width: 767px) {
  .cat-link-list__img {
    min-width: 60px;
  }
}
.cat-link-list__text .excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.cat-link-list__text .title {
  font-size: clamp(18px, 16.776px + 0.327vw, 22px);
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1rem;
}
.cat-link-list__text .title .status {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  font-weight: normal;
  position: relative;
  display: inline-block;
  background: #1F456B;
  color: #fff;
  padding: 0.45rem 0.5rem;
  top: -0.3em;
  line-height: 1;
}
.cat-link-list__text .title .series {
  margin-left: 0.5rem;
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: normal;
}
.cat-link-list__text .tag-list,
.cat-link-list__text .tag-list-2 {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cat-link-list__text .tag-list,
  .cat-link-list__text .tag-list-2 {
    margin-bottom: 1rem;
  }
}
.cat-link-list__text .tag-list + .tag-list-2 {
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .cat-link-list__text .tag-list + .tag-list-2 {
    margin-top: -0.5rem;
  }
}

.tab-container .tab {
  cursor: pointer;
}
.tab-container .tab a {
  pointer-events: none;
}

.tab-content {
  display: none;
}
.tab-content.show {
  display: block;
}

.bg-l-gray01 {
  background: #f3f3f3;
}

.table-scroll {
  overflow-x: scroll;
}
@media (max-width: 575px) {
  .table-scroll-sm {
    overflow-x: scroll;
  }
}

.v-align-m {
  vertical-align: middle;
}

.no-wrap {
  white-space: nowrap;
}
@media (max-width: 575px) {
  .no-wrap-sm {
    white-space: nowrap;
  }
}

.multiply {
  mix-blend-mode: multiply;
}

p + p {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  p + p {
    margin-top: 2rem;
  }
}

.page-sec {
  margin: 10rem 0 0;
}
@media (max-width: 767px) {
  .page-sec {
    margin: 6rem 0 0;
  }
}
.page-sec:first-child {
  margin-top: 8rem;
}
.page-sec:last-child {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .page-sec:last-child {
    margin-bottom: 2rem;
  }
}
.page-sec.bg-sec-padding {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .page-sec.bg-sec-padding {
    padding: 6rem 0;
  }
}

.col3-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 2.5%;
}
@media (max-width: 1023px) {
  .col3-list {
    gap: 4rem 2%;
  }
}
@media (max-width: 767px) {
  .col3-list {
    gap: 3rem 2%;
  }
}
.col3-list > * {
  width: 31.6666666667%;
}
@media (max-width: 1023px) {
  .col3-list > * {
    width: 49%;
  }
}
@media (max-width: 575px) {
  .col3-list > * {
    width: 100%;
  }
  .col3-list > * img {
    width: 100%;
  }
}
.col3-list > * a {
  text-decoration: none;
  color: #333;
}

.col2-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 2.5%;
}
@media (max-width: 1023px) {
  .col2-list {
    gap: 4rem 2%;
  }
}
@media (max-width: 767px) {
  .col2-list {
    gap: 3rem 2%;
  }
}
.col2-list > * {
  width: 48.75%;
}
@media (max-width: 575px) {
  .col2-list > * {
    width: 100%;
  }
  .col2-list > * img {
    width: 100%;
  }
}
.col2-list > * a {
  text-decoration: none;
  color: #333;
}

.w-100 {
  width: 100% !important;
}

.info-list dl {
  display: flex;
  flex-wrap: wrap;
}
.info-list dl:not(:first-of-type) {
  position: relative;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #dfdfdf;
}
.info-list dl:not(:first-of-type)::after {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 120px;
  border-top: 1px solid #0068B7;
}
.info-list dl dt {
  font-weight: bold;
  width: 120px;
  margin-right: 2rem;
}
@media (max-width: 575px) {
  .info-list dl dt {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
.info-list dl dd {
  flex: 1;
}
@media (max-width: 575px) {
  .info-list dl dd iframe {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: auto;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-list .faq-item {
  padding: 2.6rem 6rem 2.6rem 4rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .faq-list .faq-item {
    padding: 2rem 5rem 2rem 2rem;
  }
}
.faq-list .faq-item dt {
  position: relative;
  font-size: clamp(17px, 15.469px + 0.408vw, 22px);
  font-weight: bold;
  line-height: 1.6;
  word-break: auto-phrase;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .faq-list .faq-item dt {
    padding-left: 3rem;
  }
}
.faq-list .faq-item dt::before {
  position: absolute;
  content: "Q";
  top: -10px;
  left: 0;
  font-size: clamp(24px, 22.163px + 0.49vw, 30px);
  color: #0068B7;
}
@media (max-width: 767px) {
  .faq-list .faq-item dt::before {
    top: -7px;
  }
}
.faq-list .faq-item dt .plus {
  position: absolute;
  top: 50%;
  right: -20px;
  display: block;
  color: #0068B7;
  line-height: 1;
  width: 23px;
  height: 23px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .faq-list .faq-item dt .plus {
    right: -30px;
    width: 19px;
    height: 19px;
  }
}
.faq-list .faq-item dt .plus::after, .faq-list .faq-item dt .plus::before {
  content: "";
  position: absolute;
  top: 50%;
}
.faq-list .faq-item dt .plus::before {
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.faq-list .faq-item dt .plus::after {
  width: 100%;
  height: 2px;
  background: inherit;
  background: currentColor;
}
.faq-list .faq-item dt.active .plus::before {
  transform: rotate(0deg);
}
.faq-list .faq-item dd {
  display: none;
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .faq-list .faq-item dd {
    padding-top: 2rem;
  }
}

.tbl {
  width: 100%;
  border-collapse: collapse;
}
.tbl th,
.tbl td {
  padding: 1.5rem;
  border: 1px solid #dfdfdf;
}
.tbl th {
  background: #f3f3f3;
  text-align: left;
  width: 30%;
}
.tbl .cel-blue th {
  color: #FFF;
  background: #0068B7;
}

/*top
-----------------------------------------------------*/
.main-v {
  margin-bottom: 4rem;
}

.top-sec {
  margin-top: 10rem;
}
@media (max-width: 575px) {
  .top-sec {
    margin-top: 6rem;
  }
}

/* slide-bnr */
.slide-wrap {
  overflow-x: hidden;
  padding-bottom: 5rem;
}

.slide-bnr {
  width: 45.625%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .slide-bnr {
    width: 90%;
  }
}
.slide-bnr-slider {
  position: relative;
}
@media (max-width: 575px) {
  .slide-bnr-slider .slide-bnr__item a {
    display: flex;
    justify-content: center;
  }
  .slide-bnr-slider .slide-bnr__item img {
    margin: 0 auto;
  }
}
.slide-bnr-slider .swiper-button-prev,
.slide-bnr-slider .swiper-button-next {
  position: absolute;
  top: 50%;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.5s ease;
}
@media (max-width: 575px) {
  .slide-bnr-slider .swiper-button-prev,
  .slide-bnr-slider .swiper-button-next {
    height: 34px;
    width: 34px;
  }
}
.slide-bnr-slider .swiper-button-prev:hover,
.slide-bnr-slider .swiper-button-next:hover {
  opacity: 0.6;
}
@media (max-width: 575px) {
  .slide-bnr-slider .swiper-button-prev,
  .slide-bnr-slider .swiper-button-next {
    display: block;
  }
}
.slide-bnr-slider .swiper-button-prev::after, .slide-bnr-slider .swiper-button-prev::after,
.slide-bnr-slider .swiper-button-next::after,
.slide-bnr-slider .swiper-button-next::after {
  content: "";
}
.slide-bnr-slider .swiper-button-prev {
  left: -22.5px;
}
@media (max-width: 575px) {
  .slide-bnr-slider .swiper-button-prev {
    left: -17px;
  }
}
.slide-bnr-slider .swiper-button-next {
  right: -22.5px;
}
@media (max-width: 575px) {
  .slide-bnr-slider .swiper-button-next {
    right: -17px;
  }
}
.slide-bnr-slider .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
@media (max-width: 575px) {
  .slide-bnr-slider .arrow {
    top: -17px;
    left: 14px;
    width: 6px;
    height: 6px;
  }
}
.slide-bnr-slider .arrow.arrow-left {
  transform: rotate(-135deg);
}
@media (max-width: 575px) {
  .slide-bnr-slider .arrow.arrow-left {
    left: auto;
    right: -15px;
  }
}
.slide-bnr-slider .swiper-pagination {
  bottom: -50px !important;
}
@media (max-width: 767px) {
  .slide-bnr-slider .swiper-pagination {
    bottom: -40px !important;
  }
}
.slide-bnr-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 8px !important;
}
@media (max-width: 575px) {
  .slide-bnr-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
  }
}

/* top-news */
.top-news {
  margin-top: 15rem;
}
@media (max-width: 767px) {
  .top-news {
    margin-top: 8rem;
  }
}
.top-news__title {
  width: 20%;
}
@media (max-width: 767px) {
  .top-news__title {
    width: 100%;
  }
}
.top-news .news-list-wrap {
  width: 66.6666666667%;
}
@media (max-width: 767px) {
  .top-news .news-list-wrap {
    width: 100%;
  }
}
.top-news .mod-btn {
  position: absolute;
  top: clamp(100px, 81.633px + 4.898vw, 160px);
  left: 0;
}
@media (max-width: 767px) {
  .top-news .mod-btn {
    position: static;
    margin: 3rem auto;
    left: auto;
  }
}
.top-news .mod-btn--customer {
  top: clamp(100px, 81.633px + 4.898vw, 100px);
}

/* top-product */
.top-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1%;
}
@media (max-width: 767px) {
  .top-product-list {
    gap: 1rem 2%;
  }
}
.top-product-list li {
  width: 24.25%;
}
@media (max-width: 767px) {
  .top-product-list li {
    width: 49%;
  }
}
.top-product-list li a {
  display: block;
  color: #333;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  background: #f3f3f3;
  padding: 3rem;
}
@media (max-width: 575px) {
  .top-product-list li a {
    padding: 3rem 2rem;
  }
}
.top-product-list li .title {
  margin-top: 2rem;
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  white-space: nowrap;
}

/* top-bnr */
.top-bnr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.6666666667%;
}
@media (max-width: 575px) {
  .top-bnr-list {
    gap: 1rem;
  }
}
.top-bnr-list li {
  width: 49.1666666667%;
}
@media (max-width: 767px) {
  .top-bnr-list li {
    width: 100%;
  }
}
.top-bnr-list li img {
  width: 100%;
}

/* top-ina */
.top-ina {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .top-ina {
    padding: 6rem 0;
  }
}
.top-ina .top-ina-flex {
  gap: 3rem 0;
}
.top-ina__img {
  width: 44.1666666667%;
}
@media (max-width: 767px) {
  .top-ina__img {
    width: 100%;
  }
}
.top-ina__img img {
  width: 100%;
}
.top-ina__text {
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .top-ina__text {
    width: 100%;
  }
}
.top-ina__text::after {
  position: absolute;
  content: "";
  top: -8%;
  right: 0;
  width: 79.3333333333%;
  aspect-ratio: 238/67;
  background: url(assets/images/top/logitec_logo.svg) no-repeat left top;
  background-size: contain;
}
@media (max-width: 767px) {
  .top-ina__text::after {
    top: -5%;
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .top-ina__text .btn-col2 {
    gap: 2rem 1rem;
  }
}
@media (max-width: 840px) {
  .top-ina__text .btn-col2 {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .top-ina__text .btn-col2 {
    flex-direction: row;
  }
}

/*news
-----------------------------------------------------*/
.news-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .news-header {
    justify-content: start;
  }
}
.news-header__archive dt {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .news-header .cat-list {
    width: 100%;
  }
}

.news-sec .news-list > li:first-of-type {
  padding-top: 2rem;
  border-top: 1px solid #dfdfdf;
}

/*support
-----------------------------------------------------*/
.tel-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f3f3f3;
  padding: 4rem;
  gap: 0 6.25%;
}
@media (max-width: 767px) {
  .tel-box .tel-list {
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dfdfdf;
  }
}
.tel-box .tel-list dt {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: bold;
  border: 1px solid #333;
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.tel-box .tel-list dd {
  text-align: center;
}
.tel-box .tel-list dd .tel-link {
  font-size: clamp(32px, 28.327px + 0.98vw, 44px);
  line-height: 1.4;
  font-weight: 700;
}

.collection-tab-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.collection-tab-list .tab-item {
  position: relative;
  overflow: hidden;
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: bold;
  background: #f3f3f3;
  min-width: 250px;
  text-align: center;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .collection-tab-list .tab-item {
    min-width: 150px;
  }
}
.collection-tab-list .tab-item a {
  display: block;
  text-decoration: none;
  color: #333;
}
.collection-tab-list .tab-item:hover, .collection-tab-list .tab-item.active {
  background: #0068B7;
}
.collection-tab-list .tab-item:hover a, .collection-tab-list .tab-item.active a {
  color: #fff;
}

.tabs__content {
  overflow: hidden;
  position: absolute;
  height: 0;
}
.tabs__content p {
  font-size: clamp(13px, 12.388px + 0.163vw, 15px);
}

.collection-tab-content {
  padding: 5rem;
  border: 5px solid #0068B7;
}
@media (max-width: 767px) {
  .collection-tab-content {
    padding: 3rem 2rem;
    border: 3px solid #0068B7;
  }
}
.collection-tab-content .tab-title {
  font-size: clamp(22px, 20.776px + 0.327vw, 26px);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.collection-tab-content .tab-title__sub {
  color: #0068B7;
  font-size: clamp(17px, 16.082px + 0.245vw, 20px);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: bold;
}
.collection-tab-content .collection-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .collection-tab-content .collection-list {
    gap: 2rem 1rem;
    margin-bottom: 3rem;
  }
}
.collection-tab-content .collection-list li {
  width: 130px;
  text-align: center;
}

.support-bnr {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 24/5;
}
@media (max-width: 767px) {
  .support-bnr {
    flex-direction: column;
    aspect-ratio: auto;
  }
}
.support-bnr .mod-bnr-btn {
  color: #074099;
}
@media (max-width: 1023px) {
  .support-bnr .mod-bnr-btn {
    border: 1px solid #074099;
  }
}
.support-bnr:hover .mod-bnr-btn {
  color: #fff;
  background: #074099;
  border: 1px solid #fff;
}
.support-bnr__img {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .support-bnr__img {
    position: static;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.support-bnr__content {
  position: relative;
  color: #fff;
  padding-left: clamp(30px, -15.714px + 5.952vw, 70px);
}
@media (max-width: 767px) {
  .support-bnr__content {
    width: 100%;
    padding: 2rem;
    background: #074099;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
.support-bnr__shoulder {
  font-size: clamp(14px, 9.429px + 0.595vw, 18px);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.support-bnr__title {
  font-size: clamp(22px, 12.857px + 1.19vw, 30px);
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.support-bnr__text {
  font-size: clamp(12px, 9.714px + 0.298vw, 14px);
}
@media (max-width: 767px) {
  .support-bnr__text {
    width: 100%;
  }
}
.support-bnr__flex {
  align-items: center;
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .support-bnr__flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem 0;
  }
}

@media (max-width: 640px) {
  .support-panel-list {
    width: 100%;
  }
}

.support-panel-bnr {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.support-panel-bnr .mod-bnr-btn {
  color: #074099;
}
.support-panel-bnr:hover .mod-bnr-btn {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.support-panel-bnr__img {
  position: absolute;
  top: 0;
  left: 0;
}
.support-panel-bnr__content {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: clamp(20px, 16.939px + 0.816vw, 30px);
  aspect-ratio: 4/3;
}
.support-panel-bnr__shoulder {
  font-size: clamp(14px, 12.592px + 0.376vw, 18px);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.support-panel-bnr__title {
  font-size: clamp(20px, 10.769px + 1.202vw, 30px);
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.support-panel-bnr__text {
  font-size: clamp(12px, 11.296px + 0.188vw, 14px);
  white-space: nowrap;
  margin-bottom: auto;
}

@media (max-width: 767px) {
  .support-company-list {
    width: 100%;
  }
}

.support-company-bnr {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 90/41;
}
.support-company-bnr .mod-bnr-btn {
  color: #074099;
}
@media (max-width: 1023px) {
  .support-company-bnr .mod-bnr-btn {
    padding: 0.2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .support-company-bnr .mod-bnr-btn {
    padding: 0.5rem 3rem;
  }
}
.support-company-bnr:hover .mod-bnr-btn {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.support-company-bnr__img {
  position: absolute;
  top: 0;
  left: 0;
}
.support-company-bnr__content {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 0 clamp(20px, 16.939px + 0.816vw, 30px);
}
.support-company-bnr__shoulder {
  font-size: clamp(14px, 12.592px + 0.376vw, 18px);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.support-company-bnr__title {
  font-size: clamp(20px, 18.239px + 0.469vw, 25px);
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.support-company-bnr__text {
  font-size: clamp(12px, 11.296px + 0.188vw, 14px);
  white-space: nowrap;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .support-company-bnr__text {
    margin-bottom: 1rem;
  }
}

.faq-link-list dt {
  font-size: clamp(17px, 16.082px + 0.245vw, 20px);
  font-weight: bold;
}
.faq-link-list dt::first-letter {
  color: #0068B7;
}
.faq-link-list ul li a {
  position: relative;
  display: block;
  padding: 2rem 4rem 2rem 0;
  border-bottom: 1px solid #dfdfdf;
}
.faq-link-list ul li a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid #0068B7;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
}
.faq-link-list ul li a[target=_blank] span::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #333;
  margin-left: 0.5rem;
}

.news-important-box {
  background: #fff;
  padding: 4rem 6rem;
}
@media (max-width: 767px) {
  .news-important-box {
    padding: 2rem;
  }
}
.news-important-box__title {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: clamp(20px, 18.776px + 0.327vw, 24px);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .news-box {
    width: 100%;
  }
}
.news-box__title {
  font-size: clamp(18px, 17.388px + 0.163vw, 20px);
  background: #fff;
  line-height: 1.6;
  margin-bottom: 3rem;
  padding: 0.5rem 2rem;
  border-left: 5px solid #01AD4C;
}
.news-box__title.important {
  border-left: 5px solid #E01614;
}
.news-box .mod-btn {
  color: #fff;
}

/*product
-----------------------------------------------------*/
.product-bnr-wrap {
  width: 100%;
}

.product-bnr-list li + li {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .product-bnr-list li + li {
    margin-top: 2rem;
  }
}

.product-flex {
  flex-wrap: wrap;
}
.product-flex .recruit-aboutus-flex__text-top {
  color: #0068B7;
}

.product-footer {
  margin-top: 10rem;
  padding: 5rem 0;
  background: #0068B7;
}
@media (max-width: 767px) {
  .product-footer {
    margin-top: 6rem;
    padding: 3rem 0;
  }
}
@media (max-width: 1023px) {
  .product-footer .link-box-list {
    justify-content: center;
  }
}

/*company
-----------------------------------------------------*/
.company-header {
  gap: 3rem 0;
}
.company-header__img {
  width: 54.1666666667%;
}
@media (max-width: 767px) {
  .company-header__img {
    width: 100%;
  }
  .company-header__img img {
    width: 100%;
  }
}
.company-header__text {
  width: 40%;
  position: relative;
}
@media (max-width: 767px) {
  .company-header__text {
    width: 100%;
  }
}
.company-header__text::after {
  position: absolute;
  content: "";
  top: -18%;
  left: -12.5%;
  width: 99.1666666667%;
  aspect-ratio: 238/67;
  background: url(assets/images/top/logitec_logo.svg) no-repeat left top;
  background-size: contain;
}
@media (max-width: 1023px) {
  .company-header__text::after {
    top: -10%;
  }
}
@media (max-width: 767px) {
  .company-header__text::after {
    top: -5%;
    left: auto;
    right: 0;
    width: 60%;
  }
}
@media (max-width: 575px) {
  .company-header__text::after {
    width: 70%;
  }
}

/*greetings
-----------------------------------------------------*/
.greet-block {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 5.5555555556%;
}
.greet-block__img {
  width: 28.4444444444%;
}
@media (max-width: 890px) {
  .greet-block__img {
    width: 100%;
  }
  .greet-block__img img {
    width: 100%;
    object-position: center 20%;
    object-fit: cover;
    aspect-ratio: 4/3;
  }
}
.greet-block__text {
  width: 66%;
}
@media (max-width: 890px) {
  .greet-block__text {
    width: 100%;
  }
}

/*purpose
-----------------------------------------------------*/
.purpose-block__img {
  margin-bottom: 2rem;
  text-align: center;
}
.purpose-block__text {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  line-height: 2.2;
  max-width: 594px;
  margin: 0 auto;
}

.action-list {
  display: flex;
  flex-direction: column;
}
.action-list dl + dl {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #dfdfdf;
}
.action-list dl dt {
  font-size: clamp(17px, 16.082px + 0.245vw, 20px);
  color: #0068B7;
  font-weight: bold;
}

/*philosophy
-----------------------------------------------------*/
.num-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.num-list dl {
  display: flex;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.num-list dl dt {
  display: flex;
  align-items: center;
  font-size: clamp(22px, 20.776px + 0.327vw, 26px);
  color: #fff;
  font-weight: 700;
  background: #0068B7;
  padding: 1.5rem;
}
.num-list dl dd {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  padding: 1.5rem;
}
.num-list dl:nth-of-type(even) dt {
  background: #0094CE;
}

/*history
-----------------------------------------------------*/
.history-list .history-item {
  display: flex;
  flex-wrap: wrap;
}
.history-list .history-item:not(:first-of-type) {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #dfdfdf;
}
.history-list .history-item dt {
  width: 80px;
  font-weight: bold;
}
@media (max-width: 575px) {
  .history-list .history-item dt {
    width: 100%;
  }
}
.history-list .history-item dd {
  flex: 1;
}
.history-list .history-item .history-sub-item {
  display: flex;
  flex-wrap: wrap;
}
.history-list .history-item .history-sub-item dt {
  width: 56px;
}
@media (max-width: 575px) {
  .history-list .history-item .history-sub-item dt {
    width: 40px;
  }
}

/*product-history
-----------------------------------------------------*/
.history-tab-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .history-tab-list {
    margin-bottom: 3rem;
  }
}
.history-tab-list .tab {
  position: relative;
  overflow: hidden;
  font-size: clamp(10px, 8.776px + 0.327vw, 14px);
  text-decoration: none;
  color: #0068B7;
  background: #fff;
  padding: 0.5rem 2rem;
  border-radius: 100px;
  border: 1px solid #0068B7;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 575px) {
  .history-tab-list .tab {
    padding: 0.5rem 1rem;
  }
}
.history-tab-list .tab:hover, .history-tab-list .tab.active {
  background: #0068B7;
  color: #fff;
}

.history-tab-contant {
  position: relative;
}
.history-tab-contant::before {
  position: absolute;
  content: "";
  top: 0;
  left: 10px;
  width: 9px;
  height: 100%;
  background: #DCF0FF;
  z-index: -1;
}

.history-tab-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.history-tab-block + .history-tab-block {
  margin-top: 6rem;
}
@media (max-width: 890px) {
  .history-tab-block + .history-tab-block {
    margin-top: 4rem;
  }
}
.history-tab-block .heading-3-01 {
  position: relative;
  width: 130px;
  padding-left: 4rem;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 890px) {
  .history-tab-block .heading-3-01 {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.history-tab-block .heading-3-01::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0px;
  width: 30px;
  height: 30px;
  background: #0068B7;
  border-radius: 50%;
}
@media (max-width: 890px) {
  .history-tab-block .heading-3-01::before {
    left: 2px;
    width: 26px;
    height: 26px;
  }
}
.history-tab-block .tab-info {
  width: 78.8888888889%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
@media (max-width: 890px) {
  .history-tab-block .tab-info {
    margin-left: 4rem;
    gap: 2rem 0;
  }
}
.history-tab-block .tab-info__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
}
.history-tab-block .tab-info__item .tab-info__img {
  width: 40.2816901408%;
}
@media (max-width: 575px) {
  .history-tab-block .tab-info__item .tab-info__img {
    width: 100%;
  }
}
.history-tab-block .tab-info__item .tab-info__text {
  width: 55.3521126761%;
}
@media (max-width: 575px) {
  .history-tab-block .tab-info__item .tab-info__text {
    width: 100%;
  }
}
.history-tab-block .tab-info__item .tab-info__text .tab-info__name {
  font-weight: bold;
  margin-bottom: 2rem;
}
.history-tab-block .tab-info__item .tab-info__text p {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}

/*management-system
-----------------------------------------------------*/
.auth-box {
  display: flex;
  justify-content: center;
  gap: 2rem 5rem;
}

/*recycling-corporations
-----------------------------------------------------*/
.desc-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
}
.desc-box .desc-item {
  width: 47.7777777778%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #0068B7;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .desc-box .desc-item {
    width: 100%;
    padding: 3rem 2rem;
  }
}
.desc-box .desc-item__title {
  font-size: clamp(17px, 16.082px + 0.245vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  color: #0068B7;
  text-align: center;
  margin-bottom: 2rem;
  word-break: auto-phrase;
}
.desc-box .desc-item p {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
.desc-box .desc-item .sub {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}

/*recycling-individuals
-----------------------------------------------------*/
.contact-box {
  border-top: 5px solid #dfdfdf;
  border-bottom: 5px solid #dfdfdf;
  text-align: center;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .contact-box {
    padding: 3rem 2rem;
  }
}
.contact-box__tel {
  margin-top: -1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 3rem;
}
.contact-box__tel .en {
  font-weight: 700;
  font-size: clamp(34px, 30.939px + 0.816vw, 44px);
  line-height: 1.2;
}
.contact-box__tel .en span {
  font-size: clamp(24px, 20.939px + 0.816vw, 34px);
  margin-right: 0.5rem;
}

/*search
-----------------------------------------------------*/
.search-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  gap: 2rem;
}
@media (max-width: 767px) {
  .search-header {
    margin-top: 4rem;
  }
}
.search-header .search-inner {
  margin: 0;
  width: 600px;
  max-width: 100%;
}
.search-header__select select {
  min-width: 200px;
}

.search-item.last {
  padding-bottom: 2rem;
  border-bottom: 1px solid #dfdfdf;
}
.search-item__title {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: bold;
  margin: 2rem 0 1rem;
}

.keyword-block {
  margin-top: 2rem;
}
.keyword-block dl {
  display: flex;
}
.keyword-block dl + dl {
  margin-top: 1rem;
}
.keyword-block dl dt {
  width: 100px;
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
@media (max-width: 575px) {
  .keyword-block dl dt {
    width: 70px;
  }
}

.search-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  font-size: clamp(10px, 8.776px + 0.327vw, 14px);
  margin-top: 2rem;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 2rem;
  gap: 1rem;
}
.search-filter dl {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-filter dl dd .select-wrap::after {
  width: 4px;
  height: 4px;
  right: 5px;
}
.search-filter dl dd select {
  height: 25px;
  font-size: clamp(10px, 8.776px + 0.327vw, 14px);
  padding: 0.2rem 2rem 0.2rem 0.5rem;
  min-width: initial;
}

.search-main .page-sec {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .search-main .page-sec {
    margin-top: 4rem;
  }
}

.search-commended {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2.5%;
}
@media (max-width: 767px) {
  .search-commended {
    gap: 3rem 4%;
  }
}
.search-commended a {
  display: block;
  color: #333;
  text-decoration: none;
  text-align: center;
}
.search-commended__item {
  width: 14.5833333333%;
}
@media (max-width: 767px) {
  .search-commended__item {
    width: 48%;
  }
}
.search-commended__item img {
  aspect-ratio: 3/2;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.search-result__list .search-result__item a {
  display: flex;
  flex-wrap: wrap;
  color: #333;
  text-decoration: none;
  gap: 2rem 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid #dfdfdf;
}
.search-result__list .search-result__item .search-result__img {
  max-width: 260px;
}
.search-result__list .search-result__item .search-result__img img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 575px) {
  .search-result__list .search-result__item .search-result__img {
    width: 100%;
    margin: 0 auto;
  }
}
.search-result__list .search-result__item.img-md .search-result__img {
  max-width: 200px;
}
.search-result__list .search-result__item.img-sm .search-result__img {
  max-width: 160px;
}
.search-result__list .search-result__item .search-result__text {
  flex: 1;
}
@media (max-width: 575px) {
  .search-result__list .search-result__item .search-result__text {
    flex: auto;
  }
}
.search-result__list .search-result__item .search-result__title {
  display: flex;
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2rem;
  gap: 1rem;
}
.search-result__list .search-result__item .search-result__url {
  margin-top: 2rem;
  color: #999999;
}
.search-result__list .isfw_keyword {
  background: #eed636;
}

.pdf-icon {
  display: inline-block;
  position: relative;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url(assets/images/common/pdf_icon.svg);
  background-size: contain;
}

/*single
-----------------------------------------------------*/
.content-col2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 8rem;
  gap: 6rem 8.3333333333%;
}
@media (max-width: 767px) {
  .content-col2 {
    margin-top: 6rem;
  }
}
.content-col2.page-content {
  gap: 6rem 6.6666666667%;
}
.content-col2 .post-sec {
  width: 66.6666666667%;
  margin-top: 0;
}
@media (max-width: 767px) {
  .content-col2 .post-sec {
    width: 100%;
  }
}
.content-col2 .side-bar {
  width: 25%;
}
@media (max-width: 890) {
  .content-col2 .side-bar {
    top: 110px;
  }
}
@media (max-width: 767px) {
  .content-col2 .side-bar {
    position: static;
    top: 0;
    width: 100%;
    order: 2;
  }
}
.content-col2 .page-main {
  width: 75%;
  order: 2;
}
@media (max-width: 767px) {
  .content-col2 .page-main {
    width: 100%;
    order: 1;
  }
}
.content-col2 .page-main .page-sec:first-child {
  margin-top: 0;
}
.content-col2 .page-main + .side-bar {
  width: 18.3333333333%;
}
@media (max-width: 767px) {
  .content-col2 .page-main + .side-bar {
    width: 100%;
  }
}
.content-col2.row-reverse {
  flex-direction: row-reverse;
}

.sticky-none {
  position: static !important;
}

h2.myproduct,
h3.myproduct,
h4.myproduct,
h5.myproduct,
h6.myproduct,
h1.myproduct {
  font-weight: 700 !important;
}

.post-sec {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .post-sec {
    margin-top: 6rem;
  }
}
.post-sec .section-header {
  margin-bottom: 5rem;
}
.post-sec .section-header h1 {
  font-size: clamp(24px, 22.163px + 0.49vw, 30px);
  word-break: auto-phrase;
  line-height: 1.4;
  font-weight: 700 !important;
}
.post-sec .section-header .sub {
  margin-top: 1rem;
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: bold;
}
.post-sec #press-detail-head h2 {
  text-align: center;
  font-size: 2rem;
  padding: 0;
  border: none;
  color: #333;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .post-sec #press-detail-head h2 {
    font-size: 1.8rem;
  }
}
.post-sec #press-detail-head h2::after, .post-sec #press-detail-head h2::before {
  content: none;
}
.post-sec .l-updated {
  width: fit-content;
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
  margin-left: auto;
  padding: 0.2rem 1rem;
  border: 1px solid #dfdfdf;
}
.post-sec .eye-catch {
  text-align: center;
  margin-bottom: 5rem;
}
.post-sec h2.myproduct {
  position: relative;
  font-size: clamp(22px, 21.388px + 0.163vw, 24px);
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 3px solid #dfdfdf;
  margin: 6rem 0 4rem;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .post-sec h2.myproduct {
    margin: 5rem 0 3rem;
  }
}
.post-sec h2.myproduct::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #0068B7;
}
.post-sec h3.myproduct {
  font-size: clamp(20px, 19.388px + 0.163vw, 22px);
  margin: 5rem 0 3rem;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .post-sec h3.myproduct {
    margin: 4rem 0 2.5rem;
  }
}
.post-sec h2 + h3,
.post-sec h3 + h4,
.post-sec h4 + h5 {
  margin-top: 0;
}
.post-sec table {
  width: 100% !important;
  border-collapse: collapse !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}
.post-sec table th,
.post-sec table td {
  padding: 1rem !important;
  border: 1px solid #dfdfdf !important;
  word-break: auto-phrase !important;
  /* width: auto !important; */
}
.post-sec table th {
  background: #f3f3f3 !important;
  text-align: left !important;
}
.post-sec table .cel-blue th {
  color: #FFF !important;
  background: #0068B7 !important;
}
.post-sec.response td {
  vertical-align: middle;
}
.post-sec.response td:first-child {
  white-space: nowrap;
}
.post-sec .table-of-contents dt {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px) !important;
  font-weight: bold !important;
}
.post-sec .table-of-contents ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}
.post-sec .table-of-contents ul li {
  width: 32%;
}
@media (max-width: 767px) {
  .post-sec .table-of-contents ul li {
    width: 49%;
  }
}
@media (max-width: 575px) {
  .post-sec .table-of-contents ul li {
    width: 100%;
  }
}
.post-sec .table-scroll-sem,
.post-sec .wp-block-flexible-table-block-table {
  width: 100% !important;
  overflow-x: auto !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}
.post-sec .product-inner div,
.post-sec .product-inner p {
  max-width: 100% !important;
}
.post-sec .info-inner {
  font-family: "Noto Sans JP", sans-serif !important;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: clamp(14px, 13.388px + 0.163vw, 16px)/1.8 "Noto Sans JP", sans-serif;
  /*font:1.6rem/1.8 "Noto Serif CJK JP", serif;*/
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 767px) {
  .post-sec .info-inner {
    font-size: 1.4rem;
  }
}
.post-sec .info-inner h2 {
  position: relative;
  font-size: clamp(22px, 21.388px + 0.163vw, 24px);
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 3px solid #dfdfdf;
  margin: 6rem 0 4rem;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .post-sec .info-inner h2 {
    margin: 5rem 0 3rem;
  }
}
.post-sec .info-inner h2::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #0068B7;
}
.post-sec .info-inner h3 {
  font-size: clamp(20px, 19.388px + 0.163vw, 22px);
  margin: 5rem 0 3rem;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .post-sec .info-inner h3 {
    margin: 4rem 0 2.5rem;
  }
}
.post-sec .info-inner .press-link a {
  text-decoration: none;
}
.post-sec .info-inner .press-link a:hover, .post-sec .info-inner .press-link a:active, .post-sec .info-inner .press-link a:focus {
  text-decoration: none !important;
}

.info-btn-container .mod-btn {
  text-decoration: none !important;
  color: #fff !important;
}

.direct-bnr {
  width: 100%;
  background: #14252F;
}
.direct-bnr a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(14px, 12.776px + 0.327vw, 18px);
  font-weight: bold;
  margin-top: 4rem;
  padding: 3rem;
  gap: 1rem 2rem;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .direct-bnr a {
    margin-top: 3rem;
    padding: 3rem 4rem;
  }
}

.related-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f3f3f3;
  margin-top: 5rem;
  padding: 4rem;
  gap: 3rem 4.5454545455%;
}
@media (max-width: 767px) {
  .related-box {
    margin-top: 3rem;
    padding: 2rem;
  }
}
.related-box__text {
  width: 73.8636363636%;
}
@media (max-width: 575px) {
  .related-box__text {
    width: 100%;
  }
}
.related-box__text .title {
  font-size: clamp(20px, 19.388px + 0.163vw, 22px);
  font-weight: bold;
  margin-bottom: 1rem;
}
.related-box__img {
  width: 21.5909090909%;
  max-width: 190px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .related-box__img {
    width: 100%;
  }
}
.related-box__img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.single-search-box {
  padding: 4rem;
  border: 1px solid #dfdfdf;
}
.single-search-box .title {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
.single-search-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 575px) {
  .single-search-box ul {
    flex-direction: column;
  }
}

.download-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 4.1666666667%;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .download-header {
    margin-bottom: 3em;
  }
}
.download-header__img {
  max-width: 200px;
  text-align: center;
}
@media (max-width: 575px) {
  .download-header__img {
    width: 100%;
    max-width: initial;
  }
}
.download-header__text {
  flex: 1;
}
@media (max-width: 575px) {
  .download-header__text {
    width: 100%;
  }
}
.download-header__text dt {
  font-size: clamp(17px, 16.082px + 0.245vw, 20px);
  font-weight: bold;
}

.side-bar {
  display: flex;
  flex-direction: column;
  gap: 6rem 0;
}
@media (max-width: 767px) {
  .side-bar {
    gap: 4rem 0;
  }
}
.side-bar img {
  width: 100%;
}
.side-bar .side-item h2 {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  margin-bottom: 3rem;
  font-weight: 700 !important;
}
.side-bar .side-item .side-cat-list {
  margin-top: -1rem;
}
.side-bar .side-item .side-cat-list li {
  position: relative;
  font-size: 1.4rem;
}
.side-bar .side-item .side-cat-list li.place-1st a {
  color: #C89A00;
  font-weight: bold;
}
.side-bar .side-item .side-cat-list li.place-2st a {
  color: #1F456B;
  font-weight: bold;
}
.side-bar .side-item .side-cat-list li.place-3st a {
  color: #966718;
  font-weight: bold;
}
.side-bar .side-item .side-cat-list li .plus {
  position: absolute;
  top: 15px;
  right: 0;
  display: block;
  color: #0068B7;
  line-height: 1;
  width: 13px;
  height: 13px;
}
.side-bar .side-item .side-cat-list li .plus::after, .side-bar .side-item .side-cat-list li .plus::before {
  content: "";
  position: absolute;
  top: 50%;
}
.side-bar .side-item .side-cat-list li .plus::before {
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.side-bar .side-item .side-cat-list li .plus::after {
  width: 100%;
  height: 1px;
  background: inherit;
  background: currentColor;
}
.side-bar .side-item .side-cat-list li .plus.active::before {
  transform: rotate(0);
}
.side-bar .side-item .side-cat-list li a,
.side-bar .side-item .side-cat-list li .link-none {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid #dfdfdf;
}
.side-bar .side-item .side-cat-list li .sub-menu {
  display: none;
}
.side-bar .side-item .side-cat-list li .sub-menu a {
  padding-left: 1em;
  font-size: 1.2rem;
}
.side-bar .side-item .local-nav li a {
  border-bottom: none;
}
.side-bar .side-item .local-nav li .sub-menu {
  display: block;
  word-break: auto-phrase;
}
.side-bar .side-item .local-nav li .sub-menu li a::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 0;
  width: 5px;
  height: 1px;
  background: #333;
}
.side-bar .side-item .local-nav .current-menu-item > a {
  color: #0068B7;
  font-weight: bold;
}
.side-bar .side-bnr-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/*contact
-----------------------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  font-size: 1.6rem;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

input[type=checkbox] + label {
  cursor: pointer;
  padding-left: 3.5rem;
  position: relative;
}
input[type=checkbox] + label::before, input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
}
input[type=checkbox] + label::before {
  background: #fff;
  border-radius: 0%;
  border: 1px solid #dfdfdf;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  top: calc(50% + 1px);
  left: 0;
}
input[type=checkbox] + label::after {
  border-bottom: 3px solid #0068B7;
  border-left: 3px solid #0068B7;
  opacity: 0;
  height: 5px;
  width: 9px;
  transform: rotate(-45deg);
  top: 6px;
  left: 6px;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

input[type=radio] + label {
  cursor: pointer;
  padding-left: 3.5rem;
  position: relative;
}
input[type=radio] + label::before, input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
}
input[type=radio] + label::before {
  background: #fff;
  border-radius: 0%;
  border: 1px solid #dfdfdf;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: calc(50% + 1px);
  left: 0;
  transform: translateY(-50%);
}
input[type=radio] + label::after {
  opacity: 0;
  top: calc(50% + 1px);
  left: 5px;
  height: 14px;
  width: 14px;
  transform: translateY(-50%);
  background: #0068B7;
  border-radius: 50%;
}

input[type=radio]:checked + label::after {
  opacity: 1;
}

input[type=radio]:disabled + label,
input[type=checkbox]:disabled + label {
  opacity: 0.5;
  cursor: default;
}

select {
  appearance: none;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  min-width: 250px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  content: "";
  top: 48%;
  right: 10px;
  color: #333;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.5s ease;
}

.ckr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.ckr-list.width-set01 li {
  width: 85px;
}

.page-inputform h2 {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 4rem;
}
@media (max-width: 1023px) {
  .page-inputform h2 {
    font-size: 3.4rem;
  }
}
@media (max-width: 767px) {
  .page-inputform h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .page-inputform h2 {
    font-size: 2rem;
  }
}

.page-simulation th {
  vertical-align: middle !important;
  width: 24% !important;
}
@media (max-width: 1023px) {
  .page-simulation th {
    width: 30% !important;
  }
}
@media (max-width: 575px) {
  .page-simulation th {
    width: 100% !important;
  }
}
.page-simulation .radio-group {
  display: block !important;
}
.page-simulation dl {
  margin-top: 2rem;
}
.page-simulation dl dt {
  margin-bottom: 1rem;
}

.form-container {
  margin-top: 2rem;
}
.form-container table {
  width: 100%;
}
.form-container table tr {
  border-bottom: 1px solid #DFDFDF;
}
.form-container table th,
.form-container table td {
  padding: 3rem 0;
}
@media (max-width: 575px) {
  .form-container table th,
  .form-container table td {
    display: block;
  }
}
.form-container table th {
  text-align: left;
  vertical-align: top;
  width: 36%;
}
@media (max-width: 575px) {
  .form-container table th {
    width: 100%;
    padding-bottom: 0;
  }
}
.form-container label {
  display: block;
  color: #333;
  margin: 0 !important;
  display: flex;
  align-items: center;
}
.form-container .radio-group {
  display: flex;
  gap: 20px;
}
.form-container .radio-group-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.form-container .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 3.5rem;
}
.form-container .check-group-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-container textarea {
  resize: vertical;
}
.form-container button {
  width: 200px;
  padding: 15px;
  height: 60px;
  box-sizing: border-box;
  background-color: #00A0E9;
  border: none;
  border-radius: 200px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin: 5rem auto 0 auto;
}
.form-container button:hover {
  background-color: #007bbf;
}
.form-container .required,
.form-container .any {
  font-size: 1.2rem;
  color: #FFF;
  padding: 0.1rem 0.5rem;
  margin-right: 1.5rem;
}
.form-container .required {
  background-color: #00A0E9;
}
.form-container .any {
  background-color: #333;
}
.form-container .border-box {
  border: 1px solid #999999;
  padding: 1.5rem 2.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.form-container .border-box:last-of-type {
  margin-bottom: 0;
}
.form-container .red01-box {
  border: 1px solid #999999;
  padding: 4.5rem;
  margin-top: 5rem;
}
@media (max-width: 575px) {
  .form-container .red01-box {
    padding: 3rem 2.5rem;
  }
}
.form-container .red01-box .flex {
  gap: 1.5rem 2rem;
}
@media (max-width: 575px) {
  .form-container .red01-box .flex {
    flex-wrap: wrap;
  }
}
.form-container .red01-box .flex-l {
  width: 24%;
}
@media (max-width: 575px) {
  .form-container .red01-box .flex-l {
    width: 100%;
  }
}
.form-container .red01-box .flex-r {
  width: 100%;
}
.form-container .red01-box .dots {
  margin: 0;
}

.wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.wpcf7-list-item:nth-child(n+2) {
  margin-top: 1rem;
}
.wpcf7-list-item .wpcf7-list-item-label {
  margin: 0 0 0 0.5rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*pagenation
-----------------------------------------------------*/
.pagination {
  font-size: 1.4rem;
  margin: 5rem 0 0;
  gap: 1rem;
}
@media (max-width: 767px) {
  .pagination {
    position: relative;
    font-size: 1.2rem;
    margin: 3rem 0 0;
  }
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.pagination span,
.pagination a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #333;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s linear;
}
@media (max-width: 575px) {
  .pagination span,
  .pagination a {
    width: 30px;
    height: 30px;
  }
}
.pagination a:hover {
  opacity: 1;
  background: #0068B7;
  color: #FFF;
}
.pagination .current {
  color: #fff;
  background-color: #0068B7;
}
.pagination .prev,
.pagination .pageLink[title=Prev] {
  position: relative;
}
.pagination .prev:after,
.pagination .pageLink[title=Prev]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 13px;
  transition: all 0.3s linear;
}
.pagination .prev:hover::after,
.pagination .pageLink[title=Prev]:hover::after {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.pagination .pageLink[title=Top] {
  position: relative;
}
.pagination .pageLink[title=Top]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 10px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Top]:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 16px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Top]:hover::after, .pagination .pageLink[title=Top]:hover::before {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.pagination .next,
.pagination .pageLink[title=Next] {
  position: relative;
}
.pagination .next:after,
.pagination .pageLink[title=Next]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 17px;
  transition: all 0.3s linear;
}
.pagination .next:hover::after,
.pagination .pageLink[title=Next]:hover::after {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.pagination .pageLink[title=Last] {
  position: relative;
}
.pagination .pageLink[title=Last]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 14px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Last]:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 20px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Last]:hover::after, .pagination .pageLink[title=Last]:hover::before {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

/*footer
-----------------------------------------------------*/
.footer {
  background-color: #333;
}

.footer-info {
  background: #fff;
  display: flex;
  padding: 7rem 0;
}
@media (max-width: 767px) {
  .footer-info {
    padding: 4rem 0;
  }
}
.footer-info a {
  text-decoration: none;
  color: #333;
}
.footer-info-flex {
  width: 100%;
  gap: 3rem 0;
}
.footer-info .footer-sns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  height: 100%;
  padding: 3rem 4rem;
  border-top: 5px solid #dfdfdf;
  border-bottom: 5px solid #dfdfdf;
}
@media (max-width: 1072px) {
  .footer-info .footer-sns {
    padding: 3rem 0;
  }
}
@media (max-width: 890px) {
  .footer-info .footer-sns {
    width: 100%;
    height: auto;
    padding: 3rem 2rem;
  }
}
@media (max-width: 440px) {
  .footer-info .footer-sns {
    padding: 2rem;
  }
}
.footer-info .footer-sns__inner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  align-items: center;
}
.footer-info .footer-sns__title {
  font-size: clamp(30px, 25.408px + 1.224vw, 45px);
  line-height: 1;
  font-weight: 700;
  margin-right: 2rem;
  padding-right: 2rem;
  border-right: 1px solid #333;
}
@media (max-width: 440px) {
  .footer-info .footer-sns__title {
    width: 100%;
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 0;
    border-right: 0;
  }
}
.footer-info .footer-sns-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
@media (max-width: 440px) {
  .footer-info .footer-sns-list {
    width: 100%;
  }
}
.footer-info .footer-mailmaga {
  width: 50%;
  padding: 4rem;
  border: 1px solid #0068B7;
}
@media (max-width: 1023px) {
  .footer-info .footer-mailmaga {
    padding: 4rem 3rem;
  }
}
@media (max-width: 890px) {
  .footer-info .footer-mailmaga {
    width: 100%;
    padding: 3rem 2rem;
  }
}
.footer-info .footer-mailmaga .en {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  font-size: clamp(35px, 30.408px + 1.224vw, 50px);
  font-weight: 700;
  line-height: 1;
  color: #0068B7;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-info .footer-mailmaga .arrow {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #0068B7;
  border-radius: 50%;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .footer-info .footer-mailmaga .arrow {
    width: 35px;
    height: 35px;
  }
}
.footer-info .footer-mailmaga .arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 46%;
  color: #fff;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer-link {
  padding-top: 7rem;
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
@media (max-width: 767px) {
  .footer-link {
    padding-top: 4rem;
  }
}
.footer-link__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 10rem;
}
@media (max-width: 890px) {
  .footer-link__inner {
    gap: 4rem 5rem;
  }
}
@media (max-width: 767px) {
  .footer-link__inner {
    width: 100%;
    gap: 3rem 2%;
    justify-content: start;
  }
}
.footer-link a {
  color: #fff;
  text-decoration: none;
}
.footer-link a[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(assets/images/common/external_icon.svg);
  background: #fff;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .footer-link-list {
    width: 49%;
  }
}
.footer-link-list ul + ul {
  margin-top: 3rem;
}
.footer-link-list .menu-item-has-children .sub-menu {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}
.footer-link-list .menu-item-has-children .sub-menu li {
  position: relative;
  padding-left: 1rem;
}
.footer-link-list .menu-item-has-children .sub-menu li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #FFF;
  width: 5px;
  height: 1px;
}
.footer-link li {
  padding: 0.5rem;
}

.footer-bottom {
  padding: 5rem 0;
  margin-top: 5rem;
  border-top: 1px solid #999999;
  text-align: center;
  color: #fff;
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}
@media (max-width: 767px) {
  .footer-bottom {
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom .footer-privacy {
  display: inline-flex;
  justify-content: center;
  gap: 0 2rem;
  margin-bottom: 1rem;
}

.page-top a {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 50%;
  text-align: center;
  z-index: 999;
}
@media (max-width: 575px) {
  .page-top a {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
}
.page-top a::before {
  position: absolute;
  content: "";
  top: 52%;
  left: 50%;
  color: #fff;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 575px) {
  .page-top a::before {
    width: 4px;
    height: 4px;
  }
}

/*recruit-common
-----------------------------------------------------*/
.recruit-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem;
}
@media (max-width: 767px) {
  .recruit-flex {
    gap: 4rem 2rem;
  }
}
.recruit-flex__box {
  box-sizing: border-box;
  width: calc(33.3333333333% - 3rem);
}
@media (max-width: 767px) {
  .recruit-flex__box {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 575px) {
  .recruit-flex__box {
    width: 100%;
  }
}
.recruit-flex__box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.recruit-flex__box h2 {
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  .recruit-flex__box h2 {
    font-size: 1.8rem;
  }
}
.recruit-flex__box h2 span {
  font-size: 1.4rem;
  display: block;
}
.recruit-flex__box p {
  font-size: 1.4rem;
}

/*recruit-header
-----------------------------------------------------*/
.recruit-header {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 2rem 3.75%;
  height: 105px;
  transition: all 0.5s ease;
  z-index: 999;
}
@media (max-width: 1080px) {
  .recruit-header {
    height: 80px;
    background-color: #FFF;
  }
}
@media (max-width: 575px) {
  .recruit-header {
    padding: 2rem;
    height: 60px;
  }
}
.recruit-header-wrap {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.recruit-header-logo {
  width: 140px;
  line-height: 1;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .recruit-header-logo {
    width: 100px;
  }
}
.recruit-header-logo a {
  display: flex;
  align-items: center;
}
.recruit-header-inner {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 1rem 0;
}
@media (max-width: 1080px) {
  .recruit-header-inner {
    display: none;
    position: absolute;
    width: 100%;
    top: 80px;
    left: 0;
    background: #fff;
    align-items: start;
    margin-left: 0;
    height: calc(100vh - 80px);
    padding: 0 3.75%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .recruit-header-inner.active {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1080px) and (max-width: 575px) {
  .recruit-header-inner {
    top: 60px;
    padding: 2rem;
    height: calc(100vh - 60px);
  }
}
.recruit-header .global-nav {
  display: flex;
  align-items: center;
  gap: 0 3rem;
  background-color: #FFF;
  border-radius: 100px;
  padding: 0 0 0 4rem;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .recruit-header .global-nav {
    padding: 0 0 0 3rem;
    gap: 0 2rem;
  }
}
@media (max-width: 1080px) {
  .recruit-header .global-nav {
    display: block;
    width: 100%;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
}
.recruit-header .global-nav > li {
  position: relative;
}
.recruit-header .global-nav > li > a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .recruit-header .global-nav > li > a {
    font-size: 1.4rem;
  }
}
@media (max-width: 1080px) {
  .recruit-header .global-nav > li > a {
    padding: 2rem;
    border-bottom: 1px solid #dfdfdf;
  }
}
.recruit-header .global-nav > li > a::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #222;
  transition: 0.2s ease;
}
@media (min-width: 1081px) {
  .recruit-header .global-nav > li > a:hover {
    opacity: 1;
  }
  .recruit-header .global-nav > li > a:hover::before {
    width: calc(100% - 20px);
  }
}
.recruit-header .global-nav .btn-entry {
  border-radius: 100px;
}
.recruit-header .global-nav .btn-entry a {
  position: relative;
  color: #FFF;
  background-color: #0068B7;
  padding: 2rem 4rem;
  border-radius: 0 100px 100px 0;
}
@media (max-width: 1280px) {
  .recruit-header .global-nav .btn-entry a {
    padding: 2rem 3rem 2rem 2rem;
  }
}
@media (max-width: 1080px) {
  .recruit-header .global-nav .btn-entry a {
    border-radius: 0 !important;
  }
}
.recruit-header .global-nav .btn-entry a::before {
  display: none !important;
}
.recruit-header .global-nav .btn-entry a:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
.recruit-header .global-nav .menu-item-has-children {
  position: relative;
}
.recruit-header .global-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.recruit-header .global-nav .menu-item-has-children .accordion-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 1080px) {
  .recruit-header .global-nav .menu-item-has-children .accordion-btn {
    display: block;
  }
}
.recruit-header .global-nav .menu-item-has-children .accordion-btn::before {
  position: absolute;
  content: "";
  top: 48%;
  left: 50%;
  color: #333;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.5s ease;
}
.recruit-header .global-nav .menu-item-has-children .accordion-btn.active::before {
  top: 52%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.recruit-header .global-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 240px;
  background: #0068B7;
  transform: translateY(10px);
  padding: 2rem;
}
@media (max-width: 1080px) {
  .recruit-header .global-nav .menu-item-has-children .sub-menu {
    display: none;
    position: static;
    max-width: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    background: #f3f3f3;
    padding: 0;
  }
}
.recruit-header .global-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
}
@media (max-width: 1080px) {
  .recruit-header .global-nav .menu-item-has-children .sub-menu a {
    color: #333;
    border-bottom: 1px solid #dfdfdf;
  }
}
@media (min-width: 1081px) {
  .recruit-header .global-nav .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.recruit-header .global-nav.menu-item-has-children:last-of-type .sub-menu {
  right: 0;
}

/* hamburger-menu */
.recruit-hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 19px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  z-index: 10001;
}
@media (max-width: 1080px) {
  .recruit-hamburger {
    display: block;
  }
}
@media (max-width: 575px) {
  .recruit-hamburger {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}
.recruit-hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #333;
  transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .recruit-hamburger span {
    width: 24px;
  }
}
.recruit-hamburger span:nth-child(1) {
  top: 10px;
}
.recruit-hamburger span:nth-child(2) {
  top: 20px;
}
@media (max-width: 575px) {
  .recruit-hamburger span:nth-child(2) {
    top: 18px;
  }
}
.recruit-hamburger span:nth-child(3) {
  top: 30px;
}
@media (max-width: 575px) {
  .recruit-hamburger span:nth-child(3) {
    top: 26px;
  }
}

/* open */
.recruit-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
@media (max-width: 575px) {
  .recruit-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
}

.recruit-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.recruit-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}
@media (max-width: 575px) {
  .recruit-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

/*recruit-main
-----------------------------------------------------*/
#main.recruit-main {
  margin-top: 0;
}
@media (max-width: 1080px) {
  #main.recruit-main {
    margin-top: 80px;
  }
}
@media (max-width: 575px) {
  #main.recruit-main {
    margin-top: 60px;
  }
}

/*recruit-page-header
-----------------------------------------------------*/
.recruit-page-header {
  background-image: url(assets/images/recruit/recruit-header-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 3rem;
  padding: 20rem 0 10rem 0;
}
@media (max-width: 1080px) {
  .recruit-page-header {
    padding: 16rem 0 10rem 0;
  }
}
@media (max-width: 767px) {
  .recruit-page-header {
    padding: 12rem 0 8rem 0;
  }
}
.recruit-page-header .inner {
  position: relative;
  z-index: 1;
}
.recruit-page-header .en {
  color: #0068B7;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .recruit-page-header .en {
    font-size: 1.8rem;
  }
}
.recruit-page-header .ja {
  font-weight: bold;
  font-size: 3.5rem;
  color: #000;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .recruit-page-header .ja {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .recruit-page-header .ja {
    font-size: 2.6rem;
  }
}
.recruit-page-header .title-bg {
  max-width: 476px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .recruit-page-header .title-bg {
    max-width: 300px;
  }
}
@media (max-width: 1023px) {
  .recruit-page-header .title-bg {
    width: 80%;
  }
}

/*recruit-main-v
-----------------------------------------------------*/
.recruit-main-v {
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
}
.recruit-main-v-catch {
  text-align: left;
  position: absolute;
  top: 30%;
  left: 6%;
}
@media (max-width: 1080px) {
  .recruit-main-v-catch {
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
.recruit-main-v-catch .ja {
  font-size: clamp(1.8rem, 2.6vw, 4.6rem);
  font-weight: bold;
}
.recruit-main-v-catch .en {
  color: #0068B7;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: bold;
  margin-top: 2rem;
}
@media (max-width: 1080px) {
  .recruit-main-v-catch .en {
    margin-top: 1rem;
  }
}
.recruit-main-v-btm {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  word-break: keep-all;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
  word-break: normal;
}
.recruit-main-v-btm .en {
  font-weight: bold;
  font-size: clamp(3.6rem, 9vw, 17rem);
  color: rgba(255, 255, 255, 0.7);
}
.recruit-main-v img {
  width: 100%;
}

/*recruit-lead
-----------------------------------------------------*/
.recruit-lead-box {
  text-align: center;
}
.recruit-lead-box img {
  max-width: 476px;
  width: 100%;
}
.recruit-lead-box p {
  margin-top: -6rem;
  font-size: 2rem;
  line-height: 2.4;
}
@media (max-width: 1023px) {
  .recruit-lead-box p {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .recruit-lead-box p {
    font-size: 1.6rem;
  }
}

/*recruit-message
-----------------------------------------------------*/
.recruit-message-flex {
  display: flex;
  gap: 5rem;
}
@media (max-width: 767px) {
  .recruit-message-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .recruit-message-flex {
    justify-content: center;
  }
}
.recruit-message-flex__img {
  max-width: 256px;
  width: 100%;
}
.recruit-message-flex__text {
  width: 100%;
}
.recruit-message-flex__text h3 {
  font-size: 3rem;
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .recruit-message-flex__text h3 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .recruit-message-flex__text h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .recruit-message-flex__text h3 {
    font-size: 2rem;
  }
}

/*recruit-aboutus
-----------------------------------------------------*/
.recruit-aboutus {
  background: linear-gradient(to right, #0068B7, #00A2E2);
  padding: 10rem 0;
  color: #FFF;
}
@media (max-width: 767px) {
  .recruit-aboutus {
    padding: 6rem 0;
  }
}
.recruit-aboutus-flex {
  display: flex;
  align-items: center;
  gap: 3rem 0;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .recruit-aboutus-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.recruit-aboutus-flex:last-child {
  margin-bottom: 0;
}
.recruit-aboutus-flex__img {
  max-width: 600px;
  width: 50%;
}
@media (max-width: 767px) {
  .recruit-aboutus-flex__img {
    width: 100%;
    order: 1;
  }
}
.recruit-aboutus-flex__text {
  width: 50%;
  padding-left: 7%;
}
@media (max-width: 767px) {
  .recruit-aboutus-flex__text {
    width: 100%;
    padding: 0;
  }
}
.recruit-aboutus-flex__text-top {
  margin-bottom: 4rem;
}
@media (max-width: 1023px) {
  .recruit-aboutus-flex__text-top {
    margin-bottom: 2rem;
  }
}
.recruit-aboutus-flex__text-top .num {
  font-size: 8rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .recruit-aboutus-flex__text-top .num {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .recruit-aboutus-flex__text-top .num {
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .recruit-aboutus-flex__text-top .num {
    font-size: 4rem;
  }
}
.recruit-aboutus-flex__text-top p {
  font-size: 1.4rem;
  font-weight: bold;
}
.recruit-aboutus-flex__text-top h3 {
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .recruit-aboutus-flex__text-top h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .recruit-aboutus-flex__text-top h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .recruit-aboutus-flex__text-top h3 {
    font-size: 2rem;
  }
}
.recruit-aboutus-flex__text-top h4 {
  font-size: 2rem;
  line-height: 1.6;
  margin-top: 2rem;
  word-break: auto-phrase;
}
@media (max-width: 1023px) {
  .recruit-aboutus-flex__text-top h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .recruit-aboutus-flex__text-top h4 {
    font-size: 1.6rem;
  }
}
.recruit-aboutus-flex:nth-of-type(even) {
  flex-direction: row-reverse;
}
.recruit-aboutus-flex:nth-of-type(even) .recruit-aboutus-flex__text {
  padding-left: 0;
  padding-right: 7%;
}
@media (max-width: 767px) {
  .recruit-aboutus-flex:nth-of-type(even) .recruit-aboutus-flex__text {
    padding: 0;
  }
}
.recruit-aboutus-flex .btn-col2 {
  gap: 1.5rem 2%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1210px) {
  .recruit-aboutus-flex .btn-col2 {
    justify-content: center;
  }
}
.recruit-aboutus-flex .btn-col2 .mod-btn {
  width: 48%;
  min-width: auto;
}
@media (max-width: 1210px) {
  .recruit-aboutus-flex .btn-col2 .mod-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .recruit-aboutus-flex .btn-col2 .mod-btn {
    width: auto;
    min-width: 247px;
  }
}

/*recruit-environment
-----------------------------------------------------*/
.recruit-environment-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}
@media (max-width: 1023px) {
  .recruit-environment-flex {
    gap: 5rem 4rem;
  }
}
.recruit-environment-flex__box {
  box-sizing: border-box;
  width: calc(50% - 3rem);
}
@media (max-width: 1023px) {
  .recruit-environment-flex__box {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 767px) {
  .recruit-environment-flex__box {
    width: 100%;
  }
}
.recruit-environment-flex__box h3 {
  margin: 3rem 0 2rem 0;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 1023px) {
  .recruit-environment-flex__box h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .recruit-environment-flex__box h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .recruit-environment-flex__box h3 {
    font-size: 2rem;
  }
}

/*recruit-menu
-----------------------------------------------------*/
.recruit-menu .privacypolicy-links {
  text-align: center;
  margin-top: 3rem;
}
.recruit-menu .privacypolicy-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
.recruit-menu .privacypolicy-links a::after {
  display: inline-block;
  content: "";
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid #0068B7;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%) rotate(45deg);
}

/*recruit-links
-----------------------------------------------------*/
.recruit-links {
  display: flex;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .recruit-links {
    flex-wrap: wrap;
    margin-top: 8rem;
  }
}
.recruit-links a {
  color: #FFF;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8rem 5rem;
}
@media (max-width: 767px) {
  .recruit-links a {
    padding: 5rem 3rem;
  }
}
.recruit-links-box {
  width: 50%;
  color: #FFF;
}
@media (max-width: 767px) {
  .recruit-links-box {
    width: 100%;
  }
}
.recruit-links-box .inner {
  max-width: 500px;
  width: 100%;
  position: relative;
}
.recruit-links-box .inner::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 2px solid #FFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
}
.recruit-links-box .en {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .recruit-links-box .en {
    font-size: 3.6rem;
  }
}
.recruit-links-box .ja {
  font-weight: bold;
  margin-top: 0;
}
.recruit-links-box__new a {
  background-color: #0068B7;
}
.recruit-links-box__new a .inner {
  margin-left: auto;
}
@media (max-width: 767px) {
  .recruit-links-box__new a .inner {
    margin: auto;
  }
}
.recruit-links-box__career a {
  background-color: #00599D;
}
.recruit-links-box__career a .inner {
  margin-right: auto;
}
@media (max-width: 767px) {
  .recruit-links-box__career a .inner {
    margin: auto;
  }
}

/*recruit-pagelink
-----------------------------------------------------*/
.recruit-pagelink-flex {
  display: flex;
  gap: 4rem 6rem;
}
@media (max-width: 767px) {
  .recruit-pagelink-flex {
    flex-wrap: wrap;
  }
}
.recruit-pagelink-flex__box {
  box-sizing: border-box;
  width: calc(50% - 3rem);
}
@media (max-width: 767px) {
  .recruit-pagelink-flex__box {
    width: 100%;
  }
}
.recruit-pagelink-flex__box a {
  color: #333;
  text-decoration: none;
}
.recruit-pagelink-flex__box a h2::after {
  display: inline-block;
  content: "";
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid #0068B7;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
  margin-right: 2rem;
}
.recruit-pagelink-flex__box h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .recruit-pagelink-flex__box h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .recruit-pagelink-flex__box h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .recruit-pagelink-flex__box h2 {
    font-size: 2rem;
  }
}
.recruit-pagelink-flex__box p {
  font-size: 1.8rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .recruit-pagelink-flex__box p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .recruit-pagelink-flex__box p {
    font-size: 1.4rem;
  }
}

/*recruit-privacypolicy
-----------------------------------------------------*/
.recruit-privacypolicy__inner h3 {
  font-size: 2.4rem;
  margin: 6rem 0 3rem 0;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .recruit-privacypolicy__inner h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .recruit-privacypolicy__inner h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .recruit-privacypolicy__inner h3 {
    font-size: 1.8rem;
    margin: 6rem 0 2rem 0;
  }
}
.recruit-privacypolicy__inner a {
  color: #333;
}
.recruit-privacypolicy__inner ol {
  margin: 3rem 0;
  padding-left: 2rem;
}

/*recruit-interview-detail
-----------------------------------------------------*/
.recruit-interview-detail {
  position: relative;
}
.recruit-interview-detail:after {
  content: "";
  background-color: #F3F3F3;
  display: block;
  width: 100%;
  height: 84%;
  position: absolute;
  z-index: -1;
  bottom: 0;
}
.recruit-interview-detail .inner {
  background-color: #FFF;
  padding: 7rem 8rem 10rem 8rem;
}
@media (max-width: 767px) {
  .recruit-interview-detail .inner {
    padding: 6rem 4rem 8rem 4rem;
  }
}
@media (max-width: 575px) {
  .recruit-interview-detail .inner {
    padding: 4rem 3rem 8rem 3rem;
  }
}
.recruit-interview-detail h1 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 5rem;
}
@media (max-width: 1023px) {
  .recruit-interview-detail h1 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .recruit-interview-detail h1 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 575px) {
  .recruit-interview-detail h1 {
    font-size: 2.2rem;
  }
}
.recruit-interview-detail h2 {
  font-size: 2.4rem;
  color: #000;
  margin: 6rem 0 3rem 0;
  border-bottom: 0;
  padding-bottom: 0;
  padding-left: 4rem;
  position: relative;
}
.recruit-interview-detail h2::before {
  content: none;
}
.recruit-interview-detail h2::after {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .recruit-interview-detail h2 {
    font-size: 2.2rem;
    margin: 4rem 0 2rem 0;
  }
}
@media (max-width: 575px) {
  .recruit-interview-detail h2 {
    font-size: 1.8rem;
  }
}
.recruit-interview-detail figure {
  margin-top: 6rem;
}
@media (max-width: 575px) {
  .recruit-interview-detail figure {
    margin-top: 4rem;
  }
}
.recruit-interview-detail-flex {
  display: flex;
  align-items: center;
  gap: 3rem 8%;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .recruit-interview-detail-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.recruit-interview-detail-flex__img {
  max-width: 370px;
  width: 100%;
}
.recruit-interview-detail-flex__text {
  width: 100%;
}
.recruit-interview-detail-flex__text .name {
  margin-bottom: 2rem;
}
.recruit-interview-detail-flex__text .name br {
  display: none;
}
.recruit-interview-detail-flex__text .name span {
  font-size: 1.2rem;
  border: 1px solid #333;
  display: inline-block;
  padding: 0 1rem;
}
.recruit-interview-detail-flex__text .name p {
  font-size: 2.4rem;
  font-weight: bold;
}

/*recruit-career
-----------------------------------------------------*/
.recruit-career__link {
  margin-bottom: 5rem;
}
.recruit-career__link ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.recruit-career__link ul li a {
  display: inline-block;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  border-radius: 100px;
  background: #0068B7;
}
@media (max-width: 767px) {
  .recruit-career__link ul li a {
    padding: 1rem 2.5rem;
  }
}
.recruit-career #application {
  background-color: #F3F3F3;
  padding: 10rem 0;
  margin: 10rem auto;
}
@media (max-width: 767px) {
  .recruit-career #application {
    padding: 6rem 0;
    margin: 6rem auto;
  }
}
.recruit-career #application .recruit-application {
  background-color: #FFF;
  padding: 10rem 9rem;
}
@media (max-width: 1023px) {
  .recruit-career #application .recruit-application {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .recruit-career #application .recruit-application {
    padding: 6rem 3rem;
  }
}
.recruit-career #application table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .recruit-career #application table {
    margin-top: 3rem;
  }
}
@media (max-width: 575px) {
  .recruit-career #application table {
    border-bottom: 1px solid #dfdfdf;
  }
}
.recruit-career #application table th,
.recruit-career #application table td {
  padding: 2rem;
  border: 1px solid #dfdfdf;
  word-break: auto-phrase;
}
@media (max-width: 575px) {
  .recruit-career #application table th,
  .recruit-career #application table td {
    display: block;
  }
}
.recruit-career #application table th {
  background: #f3f3f3;
  text-align: left;
  width: 230px;
}
@media (max-width: 1023px) {
  .recruit-career #application table th {
    width: 120px;
  }
}
@media (max-width: 575px) {
  .recruit-career #application table th {
    width: 100%;
    border-bottom: 0;
  }
}
@media (max-width: 575px) {
  .recruit-career #application table td {
    border-bottom: 0;
  }
}
.recruit-career #application .entry-btn {
  display: inline-block;
  min-width: 400px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: #0068B7;
  padding: 3rem 4rem;
  text-decoration: none;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .recruit-career #application .entry-btn {
    font-size: 2rem;
    max-width: 400px;
    width: 100%;
    padding: 2rem 3rem;
  }
}
@media (max-width: 575px) {
  .recruit-career #application .entry-btn {
    font-size: 2rem;
    min-width: initial;
    width: 100%;
    padding: 2rem 4rem;
  }
}

/* recruit-entry
-----------------------------------------------------*/
.recruit-entry-flow {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .recruit-entry-flow {
    margin-bottom: 4rem;
  }
}
.recruit-entry-flow .step {
  list-style-type: none;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.recruit-entry-flow .step li {
  position: relative;
  background: #EEEEEE;
  padding: 1rem 0.5rem 1rem 5rem;
  height: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
  width: 33.3333333333%;
}
@media (max-width: 575px) {
  .recruit-entry-flow .step li {
    height: 80px;
    padding: 1rem 0.5rem 1rem 3rem;
  }
}
.recruit-entry-flow .step li span {
  font-size: 1.4rem;
  color: #0068B7;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit-entry-flow .step li span {
    font-size: 1.2rem;
  }
}
.recruit-entry-flow .step li p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit-entry-flow .step li p {
    font-size: 1.4rem;
  }
}
.recruit-entry-flow .step li:last-child {
  padding-right: 1em;
}
.recruit-entry-flow .step li:last-child::before, .recruit-entry-flow .step li:last-child::after {
  display: none;
}
.recruit-entry-flow .step li::before, .recruit-entry-flow .step li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.recruit-entry-flow .step li::before {
  top: -20px;
  right: -28px;
  border-style: solid;
  border-color: transparent transparent transparent #FFF;
  border-width: 70px 0 70px 40px;
  z-index: 10;
}
@media (max-width: 575px) {
  .recruit-entry-flow .step li::before {
    top: -28px;
    right: -16px;
    border-width: 70px 0 70px 14px;
  }
}
.recruit-entry-flow .step li::after {
  top: -20px;
  right: -24px;
  border-style: solid;
  border-color: transparent transparent transparent #EEEEEE;
  border-width: 70px 0 70px 40px;
  z-index: 10;
}
@media (max-width: 575px) {
  .recruit-entry-flow .step li::after {
    top: -28px;
    right: -12px;
    border-width: 70px 0 70px 14px;
  }
}
.recruit-entry-flow .step li.is-current {
  background: #0068B7;
  padding: 1rem 0.5rem 1rem 3rem;
}
@media (max-width: 575px) {
  .recruit-entry-flow .step li.is-current {
    padding: 1rem 0.5rem 1rem 1rem;
  }
}
.recruit-entry-flow .step li.is-current span,
.recruit-entry-flow .step li.is-current p {
  color: #FFF;
}
.recruit-entry-flow .step li.is-current::after {
  border-color: transparent transparent transparent #0068B7;
}

.recruit-entry .step-content {
  display: none;
}
.recruit-entry .step-content.active {
  display: block;
}
.recruit-entry .form-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #DFDFDF;
  gap: 1.5rem 0;
  flex-wrap: wrap;
}
.recruit-entry .form-row:last-child {
  border-bottom: none;
}
@media (max-width: 575px) {
  .recruit-entry .form-row {
    flex-wrap: wrap;
  }
}
.recruit-entry .form-row:last-child {
  border-bottom: none;
}
.recruit-entry .form-row .error-message {
  flex: 0 0 100%;
  display: block;
  color: #BF0000;
  font-size: 12px;
  margin-left: calc(230px + 5rem);
  display: none;
}
.recruit-entry .form-row .error-message.show {
  display: block;
}
@media only screen and (max-width: 909px) {
  .recruit-entry .form-row .error-message.long {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .recruit-entry .form-row .error-message {
    margin-left: calc(190px + 4rem);
  }
  .recruit-entry .form-row .error-message.long {
    margin-left: 0;
  }
}
@media only screen and (max-width: 719px) {
  .recruit-entry .form-row .error-message {
    margin-left: 0;
  }
}
.recruit-entry .form-row .form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 230px;
  margin-right: 5rem;
}
@media (max-width: 767px) {
  .recruit-entry .form-row .form-label {
    flex: 0 0 190px;
    margin-right: 4rem;
  }
}
.recruit-entry .form-row .form-label label {
  font-weight: bold;
}
.recruit-entry .form-row .form-label span {
  margin-left: 10px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #BF0000;
}
.recruit-entry .form-row input[type=text],
.recruit-entry .form-row input[type=email] {
  width: 100%;
  box-sizing: border-box;
}
.recruit-entry .form-row #fullname,
.recruit-entry .form-row #kana {
  max-width: 410px;
}
.recruit-entry .form-row #email,
.recruit-entry .form-row #email_confirm {
  max-width: 550px;
}
.recruit-entry .form-row input,
.recruit-entry .form-row textarea {
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  flex-grow: 1;
  border: 1px solid #DFDFDF;
  border-radius: 0;
}
.recruit-entry .form-row input::placeholder,
.recruit-entry .form-row textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.recruit-entry .form-row .file-input-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.recruit-entry .form-row .file-input-wrap .file-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F3F3F3;
  border: 1px solid #DFDFDF;
  cursor: pointer;
  font-size: 14px;
}
.recruit-entry .form-row .file-input-wrap .file-name {
  font-size: 14px;
}
.recruit-entry .form-row .file-input-wrap .file-note {
  width: 100%;
  margin: 5px 0 0;
  font-size: 12px;
}
.recruit-entry .form-row .file-input-wrap button {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #0068B7;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 1.2rem;
  border: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.recruit-entry .form-row .file-input-wrap button:hover {
  opacity: 0.6;
}
.recruit-entry .form-row--select {
  position: relative;
}
.recruit-entry .checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.recruit-entry .checkboxItem:not(:last-of-type) {
  margin-bottom: 16px;
}
.recruit-entry .checkbox {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #cccccc;
  cursor: pointer;
  clip-path: none;
}
.recruit-entry .checkbox:checked {
  border: 1px solid #0068b7;
  background-color: #0068b7;
}
.recruit-entry .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-45deg);
}
.recruit-entry .submit-box {
  text-align: center;
  margin-top: 4rem;
}
.recruit-entry .submit-box .agree-row {
  margin-top: 3rem;
}
.recruit-entry .submit-box .agree-row label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.recruit-entry .submit-box .submit-btn button {
  display: inline-block;
  min-width: 400px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: #BF0000;
  padding: 3rem 4rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.recruit-entry .submit-box .submit-btn button:hover {
  opacity: 0.6;
}
@media (max-width: 575px) {
  .recruit-entry .submit-box .submit-btn button {
    min-width: initial;
    max-width: 340px;
    width: 100%;
    padding: 2rem 3rem;
    font-size: 2rem;
  }
}
.recruit-entry .submit-box.confirm .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.recruit-entry .submit-box.confirm .submit-btn button {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #BF0000;
  padding: 1.5rem 3rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.recruit-entry .submit-box.confirm .submit-btn button#backBtn {
  background: #666;
}
@media (max-width: 575px) {
  .recruit-entry .submit-box.confirm .submit-btn {
    flex-direction: column;
  }
  .recruit-entry .submit-box.confirm .submit-btn button {
    min-width: initial;
    width: 100%;
    padding: 2rem 3rem;
    font-size: 1.4rem;
  }
}

.select-box {
  position: relative;
  display: inline-block;
}
.select-box::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}
.select-box select {
  width: 300px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: 1px solid #DFDFDF;
  padding: 15px 40px 15px 20px;
  font-size: 16px;
  border-radius: 0;
  color: #333;
}

/*recycling-individuals-form
-----------------------------------------------------*/
.form .error-message {
  flex: 0 0 100%;
  display: block;
  color: #BF0000;
  font-size: 12px;
  display: none;
}
.form .error-message.active {
  display: block;
}
.form.step-content {
  display: none;
}
.form.step-content.active {
  display: block;
}
.form .form-row {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #DFDFDF;
  gap: 1.5rem 0;
}
@media (max-width: 575px) {
  .form .form-row {
    flex-wrap: wrap;
  }
}
.form .form-row:last-child {
  border-bottom: none;
}
.form .form-row .form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 230px;
  margin-right: 5rem;
}
@media (max-width: 767px) {
  .form .form-row .form-label {
    flex: 0 0 190px;
    margin-right: 4rem;
  }
}
.form .form-row .form-label label {
  font-weight: bold;
}
.form .form-row .form-label span {
  margin-left: 10px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #BF0000;
}
.form .form-row input[type=text],
.form .form-row input[type=email],
.form .form-row input[type=tel],
.form .form-row textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #dfdfdf;
  border-radius: 0;
  font-size: 1.6rem;
}
.form .form-row #comment {
  height: 280px;
}
.form .form-row .input-wrap {
  width: 100%;
}
.form #email,
.form #email_confirm {
  max-width: 550px;
}
.form .name-wrap {
  display: flex;
  gap: 1rem;
}
.form .submit-box {
  margin-top: 4rem;
}
.form .submit-box .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.form .submit-box .submit-btn--recycle button {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #BF0000;
  padding: 1.5rem 3rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.form .submit-box .submit-btn--recycle button:hover {
  opacity: 0.6;
}
@media (max-width: 575px) {
  .form .submit-box .submit-btn--recycle button {
    min-width: initial;
    width: 100%;
    padding: 2rem 3rem;
    font-size: 1.4rem;
  }
}
.form .submit-box .submit-btn--recycle button#return {
  background: #666;
}
.form .radioItem {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.form .radioItem:not(:last-of-type) {
  margin-bottom: 10px;
}
.form .radioButton {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #cccccc;
  border-radius: 9999px;
  cursor: pointer;
}
.form .radioButton:checked {
  border: 1px solid #0068b7;
}
.form .radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  border-radius: 9999px;
  background-color: #0068b7;
}

/* recycling-collection
-----------------------------------------------------*/
.recycling-collection-list {
  margin-top: 5rem;
}
@media (max-width: 575px) {
  .recycling-collection-list {
    margin-top: 4rem;
  }
}
.recycling-collection-list li {
  border-top: 1px solid #DFDFDF;
}
.recycling-collection-list li:last-of-type {
  border-bottom: 1px solid #DFDFDF;
}
.recycling-collection-list li a {
  padding: 2rem 2rem 2rem 0;
  display: inline-block;
  text-decoration: none;
  color: #333;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.recycling-collection-list li a::before, .recycling-collection-list li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #0068b7;
  transform-origin: calc(100% - 1px) 50%;
}
@media (max-width: 575px) {
  .recycling-collection-list li a::before, .recycling-collection-list li a::after {
    right: 0;
  }
}
.recycling-collection-list li a::before {
  transform: rotate(45deg);
}
.recycling-collection-list li a::after {
  transform: rotate(-45deg);
}

.table-scroll table {
  min-width: 900px;
}

.table01 {
  margin-bottom: 2rem;
  width: 100%;
}
.table01 table {
  width: 100%;
}
.table01 table,
.table01 td,
.table01 th {
  border: 1px solid #DFDFDF;
  border-collapse: collapse;
  text-align: left;
}
.table01 td,
.table01 th {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  vertical-align: middle;
}
.table01 th.bold {
  font-weight: bold !important;
}
.table01 th.align-c {
  text-align: center !important;
}
.table01 .cel-darkgray th {
  background-color: #666666;
  color: #FFF;
  font-weight: 400;
}
.table01 .cel-darkgray .align-l {
  text-align: left !important;
  font-weight: bold;
}
.table01 .cel-gray {
  background-color: #CCCCCC;
}
.table01 .cel-lightgray {
  background-color: #F3F3F3;
  font-weight: 400;
}

.flex-collection-agreement {
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .flex-collection-agreement {
    flex-shrink: initial;
  }
}
.flex-collection-agreement img {
  width: 466px;
}
@media (max-width: 575px) {
  .flex-collection-agreement img {
    max-width: 466px;
    width: 100%;
  }
}

/*index-individual,index-corporate
-----------------------------------------------------*/
.product-bnr-list-2 {
  display: flex;
  gap: 2rem;
  margin: 2rem auto;
}
@media (max-width: 767px) {
  .product-bnr-list-2 {
    flex-wrap: wrap;
  }
}
.product-bnr-list-2 li {
  width: calc(25% - 1rem);
}
@media (max-width: 767px) {
  .product-bnr-list-2 li {
    width: calc(50% - 1rem);
  }
}

/* ========================================
 * Info 画像モーダル
 * ======================================== */
#info-image-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 7px 11px rgba(0, 0, 0, 0.05), 0 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
#info-image-modal.is-visible {
  visibility: visible;
  opacity: 1;
}

#info-modal-image {
  height: auto;
  max-width: 600px;
  width: auto;
}
#info-modal-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
}

#info-modal-close {
  position: absolute;
  top: -12px;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #333;
  cursor: pointer;
  transform: translateX(50%);
  transition: background-color ease 0.15s;
  z-index: 1;
}
#info-modal-close:hover {
  background-color: #555555;
}
#info-modal-close:before, #info-modal-close:after {
  content: "";
  width: 12px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
#info-modal-close:before {
  transform: rotate(-45deg);
}

#info-modal-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#info-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* press-image-zoomのカーソル表示 */
.info-content-scope .press-image-zoom .press-image {
  position: relative;
  transition: opacity 0.15s ease;
}
.info-content-scope .press-image-zoom .press-image:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><circle cx="10" cy="10" r="7"/><line x1="15" y1="15" x2="21" y2="21"/><line x1="10" y1="7" x2="10" y2="13"/><line x1="7" y1="10" x2="13" y2="10"/></svg>') no-repeat center/contain;
  position: absolute;
  bottom: 5px;
  right: 5px;
  pointer-events: none;
}
.info-content-scope .press-image-zoom .press-image:hover {
  opacity: 0.8;
}

/*response-hdd
-----------------------------------------------------*/
.hdd-search .form-row {
  border-bottom: 1px solid #DFDFDF;
  padding: 2rem 0;
  display: flex;
  gap: 1rem 0;
}
@media (max-width: 1023px) {
  .hdd-search .form-row {
    flex-wrap: wrap;
  }
}
.hdd-search .form-row:first-of-type {
  padding-top: 0;
}
.hdd-search .form-row .form-label {
  max-width: 260px;
  width: 100%;
}
@media (max-width: 1023px) {
  .hdd-search .form-row .form-label {
    max-width: 100%;
  }
}
.hdd-search .form-row input[type=text] {
  border-radius: 0;
}
.hdd-search .text-box {
  width: 100%;
}
.hdd-search .text-box p {
  margin-top: 7px;
}
.hdd-search .select-box {
  width: 100%;
}
.hdd-search .select-box select {
  width: 100%;
}
.hdd-search .select-box--s {
  max-width: 280px;
  width: 100%;
}
.hdd-search .select-flex {
  gap: 2rem 0;
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .hdd-search .select-flex {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
}
.hdd-search .select-flex--box {
  width: 50%;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .hdd-search .select-flex--box {
    width: auto;
  }
}
@media (max-width: 1023px) {
  .hdd-search .select-flex--box span {
    width: 80px;
  }
}

.submit-box02 {
  margin-top: 4rem;
}
.submit-box02 .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.submit-box02 .submit-btn button {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #BF0000;
  padding: 1.5rem 3rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.submit-box02 .submit-btn button:hover {
  opacity: 0.6;
}
@media (max-width: 575px) {
  .submit-box02 .submit-btn button {
    min-width: initial;
    width: 100%;
    padding: 2rem 3rem;
    font-size: 1.4rem;
  }
}
.submit-box02 .submit-btn button#return {
  background: #666;
}

.hdd-table {
  margin-top: 5rem;
  width: 100%;
  overflow-x: auto;
}
@media (max-width: 1023px) {
  .hdd-table {
    display: block;
  }
}
.hdd-table table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 1023px) {
  .hdd-table table {
    min-width: 810px;
  }
}
.hdd-table table .cel-blue th {
  color: #FFF;
  background: #0068B7;
}
.hdd-table table th,
.hdd-table table td {
  padding: 1.5rem 2rem;
  vertical-align: middle;
  box-sizing: border-box;
}
.hdd-table table th {
  border: 1px solid #dfdfdf;
  background: #f3f3f3;
  text-align: left;
}
.hdd-table table th.tv {
  min-width: 300px;
}
.hdd-table table th.status {
  min-width: 106px;
  text-align: center;
}
.hdd-table table td {
  border: 1px solid #dfdfdf;
}
.hdd-table table td .flex {
  gap: 2rem;
}
.hdd-table table td .flex .img {
  width: 55px;
}
.hdd-table table td .flex .text {
  width: 214px;
}
.hdd-table table td .flex .text ul {
  margin-top: 1rem;
}
.hdd-table table td .flex .btn {
  margin-left: auto;
}
.hdd-table table .capacities {
  margin-bottom: 0.5rem;
}
.hdd-table table .feature {
  font-size: 1.3rem;
}

/* ui-menu */
/* ドロップダウンリスト全体 */
.ui-autocomplete {
  max-height: 300px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 1000;
  border: 1px solid #ccc;
  background: #fff;
}

/* 各アイテム */
.ui-menu-item-wrapper {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}

/* ホバー・選択時 */
.ui-state-active,
.ui-state-focus {
  background-color: #007bff;
  color: #fff;
  border: none;
}

/* ホバー時のアイテム */
.ui-menu-item-wrapper:hover {
  background-color: #f0f0f0;
  color: #333;
}

/*# sourceMappingURL=style.css.map */
