@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Afacad:wght@400..700&family=Noto+Sans+JP:wght@100..900&display=swap");
/**************
Sass Mixin
**************/
/**************
Basic Setting
**************/
:root {
  --pcBaseWidth: 144;
  --tabBaseWidth: 82;
  --spBaseWidth: 48;
  --vw1: calc(100vw / var(--pcBaseWidth));
  --content-max-width: 1200px;
  --space-xs: clamp(4px, calc(4 * var(--vw1)), 8px);
  --space-sm: clamp(8px, calc(8 * var(--vw1)), 16px);
  --space-md: clamp(16px, calc(16 * var(--vw1)), 32px);
  --space-lg: clamp(32px, calc(32 * var(--vw1)), 64px);
  --space-xl: clamp(64px, calc(64 * var(--vw1)), 128px);
  --font-xs: clamp(10px, calc(1.2 * var(--vw1)), 12px);
  --font-sm: clamp(12px, calc(1.4 * var(--vw1)), 14px);
  --font-md: clamp(14px, calc(1.6 * var(--vw1)), 18px);
  --font-lg: clamp(18px, calc(2 * var(--vw1)), 24px);
  --font-xl: clamp(24px, calc(2.8 * var(--vw1)), 32px);
  --lh-base: 1.6;
  --lh-tight: 1.4;
  --container-padding: clamp(16px, calc(32 * var(--vw1)), 64px);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: calc(100vw / var(--pcBaseWidth));
}
@media (min-width: 560px) and (max-width: 820.9px) {
  html {
    font-size: calc(100vw / var(--tabBaseWidth));
  }
}
@media (max-width: 559.9px) {
  html {
    font-size: calc(100vw / var(--spBaseWidth));
  }
}
html * {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  color: #1B1B1B;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-family: -apple-system-body, BlinkMacSystemFont, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--lh-base);
  padding: 0;
  margin: 0;
  vertical-align: baseline;
}
body.admin-bar {
  position: relative;
}
@media (min-width: 560px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  body {
    font-size: 15px;
  }
}

select,
input,
button,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

img {
  max-width: 100%;
}

#pagetop {
  background: url(../images/common/pagetop2.png);
  background-size: contain;
  position: fixed;
  right: 1rem;
  text-indent: -9999px;
  outline: none;
  opacity: 0.7;
  z-index: 10;
}
@media (min-width: 560px) {
  #pagetop {
    width: 6rem;
    height: 6rem;
    bottom: -6rem;
  }
}
@media (max-width: 820.9px) {
  #pagetop {
    right: 8px;
    width: 40px;
    height: 40px;
    bottom: -50px;
  }
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

a {
  text-decoration: none;
  color: #4557A4;
  outline: none;
  font-weight: bold;
}
a:hover {
  color: #358AAC;
}

/**************
Layout Set
**************/
.page_section {
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding: 8rem 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_section {
    padding: 6rem 0;
  }
}
@media (max-width: 559.9px) {
  .page_section {
    padding: 4rem 0;
  }
}
.page_section__lightGray {
  background-color: #F5F5F5;
}
.page_section__bgBlue {
  background-color: #F1F6FA;
}
.page_section__blue {
  background-color: #1A9FBA;
}

.wrap {
  width: 100%;
  padding: 0 12rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .wrap {
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .wrap {
    padding: 0 5.6vw;
  }
}

.middlewrap {
  width: 100%;
  padding: 0 20rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .middlewrap {
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .middlewrap {
    padding: 0 5.6vw;
  }
}

.shortwrap {
  width: 100%;
  padding: 0 24rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .shortwrap {
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .shortwrap {
    padding: 0 5.6vw;
  }
}

.relative {
  position: relative;
  z-index: 1;
}

/**************
Header
**************/
#header {
  z-index: 10;
  width: 100%;
  height: 8rem;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
}
@media (max-width: 820.9px) {
  #header {
    height: 7rem;
  }
}
#header.fixed {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  top: 0;
}

.header_inner {
  position: relative;
  height: 100%;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .header_inner {
    padding: 0 0 0 2.4rem;
  }
}

.header_logo {
  text-align: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (min-width: 821px) {
  .header_logo {
    width: 13rem;
  }
}
@media (max-width: 820.9px) {
  .header_logo {
    width: 10rem;
  }
}
.header_logo img {
  display: block;
  width: 100%;
}

@media (min-width: 821px) {
  .global_navi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    margin-left: auto;
  }
}
@media (max-width: 820.9px) {
  .global_navi {
    height: 100%;
    position: fixed;
    top: 0;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    overflow: auto;
    z-index: 11;
    background-color: #1B1B1B;
    box-shadow: -2px 0 3px rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .global_navi {
    width: 400px;
    right: -440px;
  }
}
@media (max-width: 559.9px) {
  .global_navi {
    width: 100vw;
    left: 100%;
    top: 0;
    height: 100vh;
    padding-top: 96px;
  }
}

@media (min-width: 560px) and (max-width: 820.9px) {
  .opened .global_navi {
    right: 0;
  }
}
@media (max-width: 559.9px) {
  .opened .global_navi {
    left: 0;
  }
}

.navi_ul {
  position: relative;
}
@media (min-width: 821px) {
  .navi_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 2rem;
    gap: 1.8rem;
  }
}
@media (max-width: 820.9px) {
  .navi_ul {
    width: 80%;
    margin: 0 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .navi_ul {
    margin-top: 120px;
  }
}
@media (max-width: 559.9px) {
  .navi_ul {
    padding-bottom: 10px;
  }
}
@media (min-width: 821px) {
  .navi_ul > li {
    position: relative;
    height: 100%;
  }
}
@media (min-width: 821px) {
  .navi_ul > li::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.2rem;
    background-color: #1A9FBA;
    display: block;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center center;
    transition: all 0.4s ease;
  }
}
.navi_ul > li.toggle {
  position: relative;
  font-weight: bold;
}
@media (min-width: 821px) {
  .navi_ul > li.toggle:hover .megamenu {
    max-height: 9999px;
    opacity: 1;
  }
}
@media (min-width: 821px) {
  .navi_ul > li:hover::after {
    transform: scale(1, 1);
    transform-origin: center bottom;
  }
}
@media (min-width: 821px) {
  .fixed .navi_ul > li::after {
    background: #358AAC;
  }
}

.header-nav-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  gap: 0.4rem;
}
@media (min-width: 821px) {
  .header-nav-item {
    width: 100%;
    height: 100%;
    position: relative;
    font-weight: bold;
    padding: 0 0.3rem;
    cursor: pointer;
    color: #1B1B1B;
  }
  .header-nav-item:hover {
    color: #1B1B1B;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 820.9px) {
  .header-nav-item {
    padding: 10px 0;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: white;
    position: relative;
  }
}
@media (max-width: 559.9px) {
  .header-nav-item {
    font-size: 1.7rem;
  }
}
@media (min-width: 821px) {
  .fixed .header-nav-item {
    color: #1B1B1B;
  }
}

@media (min-width: 821px) {
  .megamenu {
    transition: all 0.6s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    padding: 1.6rem 2.4rem;
    background-color: #444444;
    border-radius: 0.4rem;
  }
}
@media (max-width: 820.9px) {
  .megamenu {
    display: none;
    background-color: #FFFFFF;
    border-radius: 0.4rem;
  }
}
@media (min-width: 821px) {
  .megamenu .inner_ul {
    padding: 0.3rem 0 0;
    width: 12rem;
  }
}
@media (min-width: 821px) {
  .megamenu .inner_ul.w16 {
    width: 16rem;
  }
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul {
    padding: 1.6rem 2.4rem;
  }
}
.megamenu .inner_ul li {
  padding: 0.3rem 0 0;
}
.megamenu .inner_ul li a {
  letter-spacing: 0.04em;
  padding-bottom: 0.4rem;
}
@media (min-width: 821px) {
  .megamenu .inner_ul li a {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFFFFF;
  }
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul li a {
    display: block;
    position: relative;
    font-size: 1.3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    padding: 0.5rem 0;
    color: #1B1B1B;
  }
}
@media (max-width: 559.9px) {
  .megamenu .inner_ul li a {
    font-size: 1.5rem;
    padding: 0.3rem 0;
  }
}
.megamenu .inner_ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center bottom;
  transition: all 0.3s ease;
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul li a::after {
    background-color: #1B1B1B;
  }
}
.megamenu .inner_ul li a:hover::after {
  transform: scale(1, 1);
  transform-origin: center bottom;
}

@media (min-width: 821px) {
  .menuBtn {
    display: none;
  }
}
@media (max-width: 820.9px) {
  .menuBtn {
    width: 7rem;
    height: 7rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 11;
    transition: all 0.3s ease-in-out 0.2s;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open span,
.menuBtn .nav-open span:before,
.menuBtn .nav-open span:after {
    position: absolute;
    background: #1B1B1B;
    display: block;
    content: "";
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 0.1rem;
    width: 3.2rem;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open span::before {
    bottom: 8px;
  }
}
@media (max-width: 820.9px) {
  .menuBtn .nav-open span::after {
    bottom: -8px;
  }
}
.menuBtn.menu-open {
  -webkit-animation: menuClose 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: menuClose 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@media (max-width: 820.9px) {
  .menuBtn.menu-open .nav-open span {
    background-color: transparent;
  }
}
@media (max-width: 820.9px) {
  .menuBtn.menu-open .nav-open span::before, .menuBtn.menu-open .nav-open span::after {
    height: 0.1rem;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    top: 0px;
    left: 0;
    content: "";
    background-color: white;
  }
}
.menuBtn.menu-open .nav-open span::before {
  transform: rotate(45deg);
}
.menuBtn.menu-open .nav-open span::after {
  transform: rotate(-45deg);
}

@-webkit-keyframes menuClose {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes menuClose {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.header_buttons {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 820.9px) {
  .header_buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
  }
}
.header_buttons a {
  display: block;
  width: 16rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 20rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .header_buttons a {
    width: 24rem;
  }
}
@media (max-width: 559.9px) {
  .header_buttons a {
    width: 80%;
    height: 6rem;
    font-size: 1.8rem;
  }
}
.header_buttons .header_button-recruit {
  background-color: #1B1B1B;
  color: white;
}
@media (max-width: 820.9px) {
  .header_buttons .header_button-recruit {
    border: 0.1rem white solid;
  }
}
.header_buttons .header_button-recruit:hover {
  background-color: #4557A4;
}
.header_buttons .header_button-contact {
  color: white;
  background: linear-gradient(90deg, #368DAF 0%, #163B49 50%, #0b5876 100%);
  background-size: 200% 100%;
  background-position: left center;
  transition: background-position 0.5s ease;
}
.header_buttons .header_button-contact:hover {
  background-position: right center;
}

/**************
WordPressログイン時
**************/
@media (min-width: 560px) {
  .admin-bar #header {
    top: 32px;
  }
}

/**************
Footer
**************/
.foot_cta {
  background: url(../images/common/contact_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 12rem 16rem 16rem;
}
@media (max-width: 820.9px) {
  .foot_cta {
    padding: 5rem 0;
  }
}
.foot_cta .cta_title {
  text-align: center;
}
.foot_cta .cta_title .eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}
@media (max-width: 820.9px) {
  .foot_cta .cta_title .eng {
    font-size: 1.8rem;
  }
}
.foot_cta .cta_title .jp {
  font-size: 4rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 820.9px) {
  .foot_cta .cta_title .jp {
    font-size: 2.4rem;
  }
}
.foot_cta .title_under_text {
  text-align: center;
  font-weight: 500;
  color: white;
  margin-top: 4rem;
  font-size: 1.8rem;
}
@media (max-width: 820.9px) {
  .foot_cta .title_under_text {
    font-size: 1.7rem;
    margin-top: 3rem;
    padding: 0 4rem;
  }
}

.cta_columns {
  display: flex;
  width: 100%;
  margin: 5rem auto 0;
}
@media (max-width: 820.9px) {
  .cta_columns {
    margin-top: 3rem;
  }
}
.cta_columns .column {
  text-align: center;
  padding: 0 5rem 1rem;
  position: relative;
  width: 33.3333333333%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column {
    padding: 0 3rem 1rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column {
    padding: 0 1.2rem 0.31rem;
  }
}
.cta_columns .column:not(:last-child)::after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: white;
}
@media (max-width: 820.9px) {
  .cta_columns .column:not(:last-child)::after {
    width: 0.1rem;
  }
}
.cta_columns .column .icon {
  display: block;
  width: 4.8rem;
  margin: 0 auto 1.2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .icon {
    width: 4rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .icon {
    width: 3.2rem;
  }
}
.cta_columns .column .jp_title {
  color: white;
  font-size: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .jp_title {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .jp_title {
    font-size: 1.2rem;
  }
}
.cta_columns .column .cta_text {
  color: white;
  padding: 2rem 0;
}
@media (max-width: 820.9px) {
  .cta_columns .column .cta_text {
    display: none;
  }
}
.cta_columns .column .action_area {
  width: 100%;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .cta_columns .column .action_area {
    height: 5rem;
    margin-top: 1.5rem;
  }
}
.cta_columns .column .action_area .button {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #1B1B1B;
  position: relative;
  transition: all 0.3s ease;
}
.cta_columns .column .action_area .button:hover {
  background-color: #358AAC;
}
.cta_columns .column .action_area .button .icon-arrow-black {
  position: absolute;
  right: 2.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .action_area .button .icon-arrow-black {
    right: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .action_area .button .icon-arrow-black {
    display: none;
  }
}
.cta_columns .column .action_area .tel {
  color: white;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .cta_columns .column .action_area .tel {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .cta_columns .column .action_area .tel {
    font-size: 2.2rem;
    letter-spacing: 0.05rem;
  }
}

#footer {
  background-color: #2abee3;
}

.footer_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 821px) {
  .footer_inner {
    padding: 8rem 20rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 820.9px) {
  .footer_inner {
    height: auto;
    padding: 40px 0;
  }
}
@media (max-width: 559.9px) {
  .footer_inner {
    padding-bottom: 0;
  }
}
@media (min-width: 821px) {
  .footer_inner .footer_info_side {
    width: 40rem;
  }
}
.footer_inner .footer_info_side .footer_logo {
  display: block;
  width: 16rem;
}
@media (max-width: 820.9px) {
  .footer_inner .footer_info_side .footer_logo {
    margin: 0 auto;
  }
}
.footer_inner .footer_info_side .footer_c_name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2rem;
}
@media (max-width: 820.9px) {
  .footer_inner .footer_info_side .footer_c_name {
    text-align: center;
  }
}
.footer_inner .footer_info_side .footer_info {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .footer_inner .footer_info_side .footer_info {
    justify-content: center;
    gap: 2rem;
  }
}
.footer_inner .footer_info_side .footer_info .emidas {
  width: 12rem;
  display: block;
  margin-top: 1rem;
}
.footer_inner .footer_info_side .footer_info .emidas img {
  display: block;
  width: 100%;
}
@media (min-width: 821px) {
  .footer_inner .footer_navi_side {
    width: 40rem;
  }
}

.footer_navi {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi .footer_navi_column .head {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.footer_navi .footer_navi_column .head a {
  color: #1B1B1B;
  transition: all 0.3s ease;
}
.footer_navi .footer_navi_column .head a:hover {
  color: white;
}
.footer_navi .footer_navi_column ul li {
  padding-left: 1rem;
  margin-left: 0.5rem;
  position: relative;
}
.footer_navi .footer_navi_column ul li:not(:last-child) {
  margin-bottom: 0.2rem;
}
.footer_navi .footer_navi_column ul li a {
  display: flex;
  font-size: 1.4rem;
  color: #1B1B1B;
  font-weight: bold;
  transition: all 0.3s ease;
}
.footer_navi .footer_navi_column ul li a:hover {
  color: white;
}
.footer_navi .footer_navi_column ul li::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  background-color: #1B1B1B;
  position: absolute;
  left: 0;
  top: 41%;
}
.footer_navi .footer_navi_column ul + p {
  margin-top: 1rem;
}

.footer_bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 48px;
  padding-bottom: 40px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_bottom {
    margin: 40px auto 0;
    max-width: 480px;
  }
}
@media (max-width: 559.9px) {
  .footer_bottom {
    margin-top: 32px;
    flex-direction: column;
  }
}
.footer_bottom .nc-logo {
  display: block;
  width: 200px;
}
@media (max-width: 559.9px) {
  .footer_bottom .nc-logo {
    width: 180px;
  }
}

.copyright {
  text-align: center;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #1B1B1B;
  padding: 24px 0;
}
@media (max-width: 820.9px) {
  .copyright {
    font-size: 1.2rem;
  }
}

/**************
Common Parts
**************/
/* Titles */
.kuroda-title {
  margin-bottom: 5rem;
}
.kuroda-title .head {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #358AAC;
  font-weight: bold;
  font-size: 2.4rem;
  position: relative;
  padding-left: 1.8rem;
}
@media (max-width: 559.9px) {
  .kuroda-title .head {
    font-size: 2rem;
    padding-left: 1.2rem;
  }
}
.kuroda-title .head::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 70%;
  position: absolute;
  left: 0;
  top: 15%;
  background: linear-gradient(180deg, #163B49 14.42%, #368DAF 90.87%);
}
.kuroda-title .head .text-eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .kuroda-title .head .text-eng {
    font-size: 2.4rem;
  }
}
.kuroda-title .eng_big {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: #1B1B1B;
  line-height: 7.8rem;
  margin-left: -0.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .kuroda-title .eng_big {
    font-size: 6rem;
    line-height: 5.8rem;
  }
}
@media (max-width: 559.9px) {
  .kuroda-title .eng_big {
    font-size: 4.4rem;
    line-height: 4.4rem;
    margin-top: 0.6rem;
    margin-left: -0.3rem;
  }
}
.kuroda-title .eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .kuroda-title .eng {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .kuroda-title .eng {
    font-size: 3rem;
  }
}
.kuroda-title .jp {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 3rem;
  color: white;
  margin-top: 1.6rem;
}
@media (max-width: 559.9px) {
  .kuroda-title .jp {
    padding: 0.4rem 2rem;
  }
}

.center-title {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .center-title {
    font-size: 3rem;
  }
}

.je-title .jp {
  font-size: 3rem;
  text-align: center;
}
.je-title .eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #95a9bb;
}

.title1 {
  display: block;
  color: #1B1B1B;
  font-weight: bold;
  font-size: 4rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .title1 {
    font-size: 2.8rem;
  }
}

.title2 {
  display: block;
  color: #1B1B1B;
  font-weight: bold;
  font-size: 3.2rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .title2 {
    font-size: 2.4rem;
  }
}

.tit_404 {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #358AAC;
}

.category_title {
  color: white;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 4rem;
  border-bottom: 0.1rem #c3eaf2 solid;
  padding-bottom: 0.8rem;
}

/* Buttons */
.btn-black {
  width: 20rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
  border: 0.16rem solid #FFF;
  position: relative;
  background: linear-gradient(90deg, #231815 0%, #3F3F3F 50%, #828284 100%);
  background-size: 200% 100%;
  background-position: left center;
  transition: background-position 0.5s ease;
}
.btn-black:hover {
  background-position: right center;
}
.btn-black .txt {
  color: white;
  font-weight: bold;
}
.btn-black .txt.eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.btn-black .arrow {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon/icon-arrow-white.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 6rem;
  background-color: #358AAC;
  position: relative;
  padding-right: 2rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}
.btn-blue:hover {
  background-color: #1A9FBA;
}
.btn-blue.w30 {
  width: 30rem;
}
.btn-blue .txt {
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
}
.btn-blue .txt.eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.btn-blue .arrow {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon/icon-arrow-white.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-white-small {
  font-size: 1.2rem;
  padding: 0.3rem 2rem;
  background-color: #fff;
  position: relative;
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  color: #1B1B1B;
  border: 2px #1B1B1B solid;
  line-height: 1.5;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 559.9px) {
  .btn-white-small {
    font-size: 1.3rem;
  }
}
.btn-white-small:hover {
  background-color: #eee;
  color: #1B1B1B;
}
.btn-white-small.mauto {
  margin-left: auto;
  margin-right: auto;
}
.btn-white-small.eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

/* Icons */
.icon-mail-white {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/icon/icon-mail-white.png) no-repeat;
  background-size: cover;
}

.icon-arrow-black {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  background: url(../images/icon/icon-arrow-black.png) no-repeat;
  background-size: cover;
}

.icon-arrow-down-white {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/icon/icon-arrow-down-white.png) no-repeat;
  background-size: cover;
}

/* Tables */
.equip_wrapper {
  max-height: 20rem;
  overflow-y: hidden;
  position: relative;
}
.equip_wrapper .fadeout {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}
.equip_wrapper + .toggle-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #358AAC;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  width: 20rem;
  height: 5rem;
  padding: 0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0;
}
.equip_wrapper + .toggle-btn.opened {
  margin: 3rem auto 0;
}

.equip_table {
  width: 100%;
}
@media (max-width: 820.9px) {
  .equip_table {
    width: 120rem;
  }
}
.equip_table thead tr th {
  background-color: #95a9bb;
  padding: 1rem;
  border: 0.2rem solid #ddd;
  text-align: left;
}
@media (max-width: 559.9px) {
  .equip_table thead tr th {
    font-size: 1.5rem;
  }
}
.equip_table thead tr th:first-child {
  width: 20%;
}
.equip_table thead tr th:nth-child(2) {
  width: 20%;
}
.equip_table thead tr th:nth-child(3) {
  width: 20%;
}
.equip_table thead tr th:nth-child(4) {
  width: 35%;
}
.equip_table thead tr th:last-child {
  width: 5%;
}
.equip_table tbody tr td {
  background-color: white;
  padding: 1rem;
  border: 0.2rem solid #ddd;
}
@media (max-width: 559.9px) {
  .equip_table tbody tr td {
    font-size: 1.5rem;
  }
}
.equip_table tbody tr td:first-child {
  width: 20%;
}
.equip_table tbody tr td:nth-child(2) {
  width: 20%;
}
.equip_table tbody tr td:nth-child(3) {
  width: 20%;
}
.equip_table tbody tr td:nth-child(4) {
  width: 35%;
}
.equip_table tbody tr td:last-child {
  width: 5%;
  text-align: center;
}

.toggle-guide {
  color: white;
  font-size: 1.4rem;
  margin-left: 2rem;
}
.toggle-guide i {
  display: inline-block;
  margin-left: 0.6rem;
}

/* Parts */
.sq_black {
  padding-left: 1.5rem;
  position: relative;
}
.sq_black::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  background-color: #1B1B1B;
  position: absolute;
  left: 0;
  top: 0.8rem;
}

/* Lists */
.list-disc {
  margin-left: 15px;
}
.list-disc li {
  list-style: square;
}
.list-disc li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal {
  margin-left: 20px;
}
.list-decimal li {
  list-style: decimal;
}
.list-decimal li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal2 {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.5em;
}
.list-decimal2 li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}
.list-decimal2 li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5c9ee7;
  color: white;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.list-check li {
  position: relative;
  padding: 2px 0 2px 28px;
}
.list-check li::before {
  content: "";
  display: block;
  background: url(../images/common/icon_check_black.png) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}
.list-check li span {
  font-weight: bold;
  color: #358AAC;
}

/* Boxes */
.borderBox {
  background-color: #fff6f9;
  border: #ccc solid 1px;
  padding: 24px 40px;
}
@media (max-width: 820.9px) {
  .borderBox {
    padding: 16px;
  }
}

/* Texts */
.grad_text {
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1200px) {
  .strong_text {
    font-size: 1.8rem;
    text-align: center;
  }
}

/* Others */
.mauto {
  margin-left: auto;
  margin-right: auto;
}

.mright {
  margin-left: auto;
  margin-right: 0;
}

.anchor {
  padding-top: 80px;
  margin-top: -80px;
}
@media (max-width: 820.9px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.sp-scroll {
  width: 100%;
  overflow-x: auto;
}

.underconst {
  background-color: #fff;
  text-align: center;
  margin: 50px auto;
  padding: 80px 0;
  border: 1px #ddd solid;
  border-radius: 5px;
}

@media (max-width: 559.9px) {
  .sp_none {
    display: none;
  }
}

@media (max-width: 820.9px) {
  .pc_only {
    display: none;
  }
}

@media (min-width: 560px) {
  .sp_only {
    display: none;
  }
}

.float_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/* Animations */
@-webkit-keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
/**************
Layouts
**************/
#main_wrap {
  padding-top: 8rem;
}
@media (max-width: 820.9px) {
  #main_wrap {
    padding-top: 7rem;
  }
}

.flex_content {
  width: 100%;
  margin-bottom: 80px;
}
@media (min-width: 560px) {
  .flex_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_content.start {
    align-items: flex-start;
  }
  .flex_content.mt70 {
    margin-top: 70px;
  }
}
@media (min-width: 560px) and (max-width: 1199.9px) {
  .flex_content.mb40 {
    margin-bottom: 40px;
  }
}
@media (max-width: 559.9px) {
  .flex_content {
    margin-bottom: 40px;
  }
}
@media (min-width: 560px) {
  .flex_content_r {
    flex-direction: row-reverse;
  }
}
@media (max-width: 559.9px) {
  .flex_content > .item {
    width: 100%;
  }
  .flex_content > .item:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 560px) {
  .flex_content .item_1 {
    width: 12%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_2 {
    width: 21%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_3 {
    width: 33%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_35 {
    width: 38%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_4 {
    width: 47.5%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_45 {
    width: 56%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_5 {
    width: 62%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_6 {
    width: 73%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_7 {
    width: 84%;
  }
}

/**************
下層ページ Common
**************/
.page_title {
  width: 100%;
  height: 32rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .page_title {
    height: 28rem;
  }
}
.page_title.single_page {
  background-color: #95a9bb;
  height: 16rem;
}
.page_title .page_title_texts {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 6rem 12rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_title .page_title_texts {
    padding: 4rem 4rem 0;
  }
}
@media (max-width: 559.9px) {
  .page_title .page_title_texts {
    padding: 2rem 2.4rem 0;
  }
}
.page_title .page_title_texts .jp {
  color: white;
  font-size: 4rem;
}
@media (max-width: 559.9px) {
  .page_title .page_title_texts .jp {
    font-size: 3.2rem;
  }
}
.page_title .page_title_texts .eng {
  color: white;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_title .page_title_texts .eng {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .page_title .page_title_texts .eng {
    font-size: 1.4rem;
  }
}
.page_title .page_title_img {
  position: relative;
  width: 100%;
  height: 100%;
}
.page_title .page_title_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.page_title .eng_big {
  position: absolute;
  text-align: right;
  bottom: 1rem;
  right: 2.4rem;
  color: white;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2rem;
  opacity: 0.3;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_title .eng_big {
    font-size: 4.8rem;
  }
}
@media (max-width: 559.9px) {
  .page_title .eng_big {
    right: 1rem;
    font-size: 3.2rem;
    letter-spacing: 1.2rem;
  }
}

.breadcrumbs {
  padding: 1rem 0;
  font-size: 1.3rem;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 1.3rem;
}

/**************
HOME
**************/
#mainVisual {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 560px) {
  #mainVisual {
    aspect-ratio: 16/10;
  }
}
@media (max-width: 559.9px) {
  #mainVisual {
    height: 40rem;
  }
}

.main_movie {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.main_movie .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/pattern.png);
  z-index: 1;
}
.main_movie .main_video_box {
  width: 100%;
  height: 100%;
}
.main_movie .main_video_box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.mainVisual_inner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.3);
}

.mainCatch01 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: mainCatchPosition 0.8s ease-in-out 2.4s forwards;
          animation: mainCatchPosition 0.8s ease-in-out 2.4s forwards;
}
.mainCatch01 svg {
  width: 96%;
}
.mainCatch01 .main_catch-01 {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
.mainCatch01 .main_catch-01 span {
  position: relative;
  display: block;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 39rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainCatch01 .main_catch-01 span {
    font-size: 22rem;
  }
}
@media (max-width: 559.9px) {
  .mainCatch01 .main_catch-01 span {
    font-size: 13rem;
  }
}
.mainCatch01 .main_catch-01 span.white {
  color: white;
  opacity: 0.3;
}
.mainCatch01 .main_catch-01 span.tealBlue {
  color: #358AAC;
}

@-webkit-keyframes mainCatchPosition {
  0% {
    width: 100%;
    left: 0;
    top: 14%;
  }
  100% {
    width: 20%;
    left: 2vw;
    top: 2vw;
  }
}

@keyframes mainCatchPosition {
  0% {
    width: 100%;
    left: 0;
    top: 14%;
  }
  100% {
    width: 20%;
    left: 2vw;
    top: 2vw;
  }
}
.mainCatch02 {
  position: absolute;
  left: 20rem;
  top: 55%;
}
@media (max-width: 820.9px) {
  .mainCatch02 {
    left: 4rem;
  }
}
.mainCatch02 .main_catch-02 span {
  display: block;
  color: white;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 10rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainCatch02 .main_catch-02 span {
    font-size: 4rem;
    line-height: 5.6rem;
  }
}
@media (max-width: 559.9px) {
  .mainCatch02 .main_catch-02 span {
    font-size: 2.4rem;
    line-height: 4rem;
  }
}
.mainCatch02 .main_catch-02 + p {
  color: white;
  font-size: 2.4rem;
  margin-top: 3rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainCatch02 .main_catch-02 + p {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .mainCatch02 .main_catch-02 + p {
    font-size: 1.7rem;
    margin-top: 2rem;
    padding-right: 8rem;
  }
}

.top_news_section {
  padding: 12rem 0 12rem 16rem;
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_news_section {
    padding: 8rem 0 8rem 6rem;
  }
}
@media (max-width: 559.9px) {
  .top_news_section {
    padding: 6rem 2.4rem;
  }
}

.top_news_title {
  padding-left: 3rem;
  position: relative;
  padding-top: 1rem;
}
@media (max-width: 559.9px) {
  .top_news_title {
    padding-left: 2rem;
  }
}
.top_news_title::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #163B49 14.42%, #368DAF 90.87%);
}
.top_news_title .bg_grad {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 1.6rem;
  color: white;
  font-weight: bold;
  font-size: 2.4rem;
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_news_title .bg_grad {
    font-size: 2.1rem;
  }
}
@media (max-width: 559.9px) {
  .top_news_title .bg_grad {
    font-size: 1.6rem;
  }
}
.top_news_title .bg_grad .text-eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_news_title .bg_grad .text-eng {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .top_news_title .bg_grad .text-eng {
    font-size: 1.8rem;
  }
}
.top_news_title .big_eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  color: #1B1B1B;
  line-height: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_news_title .big_eng {
    font-size: 8rem;
  }
}
@media (max-width: 559.9px) {
  .top_news_title .big_eng {
    font-size: 6.4rem;
  }
}

.top_news_area {
  margin-top: 4rem;
  transform: translateX(100vw);
  transition: all 1s ease-in-out;
}
.top_news_area.moved {
  transform: translateX(0);
}
@media (min-width: 821px) {
  .top_news_area {
    padding-left: 20rem;
  }
}
.top_news_area .tab {
  width: 100%;
}
.top_news_area .tab .top_news_tab {
  display: flex;
  justify-content: flex-start;
  border-radius: 1.6rem 1.6rem 0 0;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top_news_area .tab .top_news_tab li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 4.8rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .top_news_area .tab .top_news_tab li {
    width: auto;
    padding: 0 2rem;
    font-size: 1.4rem;
  }
}
.top_news_area .tab .top_news_tab li:not(.top_news_area .tab .top_news_tab li.current) {
  background-color: #F5F5F5;
  cursor: pointer;
}
.top_news_area .tab .top_news_tab li:not(.top_news_area .tab .top_news_tab li.current) span {
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top_news_area .tab .top_news_tab li.current {
  color: white;
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
}

.top_news_side {
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  padding: 4.8rem 6.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_news_side {
    padding: 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_news_side {
    padding: 2.4rem 0;
  }
}
.top_news_side .btn-black {
  margin-top: 6.4rem;
}
.top_news_side .tab-target:not(.top_news_side .tab-target.current) {
  display: none;
}

.top_news_archs {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.5%;
}
@media (max-width: 559.9px) {
  .top_news_archs {
    overflow-x: scroll;
    scrollbar-width: none;
    padding: 0 2rem;
  }
  .top_news_archs::-webkit-scrollbar {
    display: none;
  }
}

.top_news_item {
  width: 31%;
  flex-shrink: 0;
}
@media (max-width: 559.9px) {
  .top_news_item {
    width: 28rem;
  }
}
.top_news_item .thumb {
  width: 100%;
  aspect-ratio: 3/2;
}
.top_news_item .thumb > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  overflow: hidden;
  position: relative;
}
.top_news_item .thumb > a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  transition: all 0.4s ease;
}
.top_news_item .thumb > a:hover img {
  transform: scale(1.05);
}
.top_news_item .top_news_info {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.8rem;
}
.top_news_item .top_news_info .date {
  color: white;
}
.top_news_item .top_news_info .news_cats {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  gap: 0.2rem;
}
.top_news_item .top_news_info .news_cats span {
  color: white;
  border: 0.16rem white solid;
  border-radius: 30rem;
  padding: 0.2rem 1rem;
  font-size: 1rem;
}
.top_news_item .news_title {
  margin-top: 1rem;
}
.top_news_item .news_title a {
  color: white;
}
.top_news_item .news_title a:hover {
  text-decoration: underline;
  text-underline-offset: 0.8rem;
}

.top_biz_section {
  width: 100%;
}
.top_biz_section .top_biz_header {
  background: url(../images/top/top_business.jpg) no-repeat;
  background-size: cover;
  height: 67rem;
  margin-bottom: 0.4rem;
  opacity: 0;
}
.top_biz_section .top_biz_header.moved {
  -webkit-animation: slideIn 0.6s ease forwards;
          animation: slideIn 0.6s ease forwards;
}
.top_biz_section .top_biz_header.moved .top_biz_header_inner {
  -webkit-animation: slideIn 0.3s ease 0.6s forwards;
          animation: slideIn 0.3s ease 0.6s forwards;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_section .top_biz_header {
    height: 56rem;
  }
}
@media (max-width: 559.9px) {
  .top_biz_section .top_biz_header {
    height: 50rem;
    background-position: center;
  }
}
.top_biz_section .top_biz_header .top_biz_header_inner {
  background: rgba(35, 24, 21, 0.78);
  padding: 10rem 8rem 8rem;
  width: 68rem;
  opacity: 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_section .top_biz_header .top_biz_header_inner {
    padding: 5rem;
    width: 62rem;
  }
}
@media (max-width: 559.9px) {
  .top_biz_section .top_biz_header .top_biz_header_inner {
    width: 36rem;
    padding: 3.2rem;
  }
}
.top_biz_section .title_under_jp {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 3.2rem;
  color: white;
  font-weight: 500;
  font-size: 1.8rem;
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  margin-bottom: 2.4rem;
}
@media (max-width: 559.9px) {
  .top_biz_section .title_under_jp {
    font-size: 1.6rem;
  }
}
.top_biz_section .title_under_txt {
  color: white;
  font-weight: 500;
  line-height: 3rem;
}
@media (max-width: 559.9px) {
  .top_biz_section .title_under_txt {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
}

.top_biz_title {
  margin-bottom: 2rem;
}
.top_biz_title .grad_bar {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-weight: bold;
  font-size: 2.4rem;
  position: relative;
  padding-left: 1.8rem;
}
@media (max-width: 559.9px) {
  .top_biz_title .grad_bar {
    font-size: 2rem;
  }
}
.top_biz_title .grad_bar::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 70%;
  position: absolute;
  left: 0;
  top: 15%;
  background: linear-gradient(180deg, #163B49 14.42%, #368DAF 90.87%);
}
.top_biz_title .grad_bar .text-eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .top_biz_title .grad_bar .text-eng {
    font-size: 2.4rem;
  }
}
.top_biz_title .big_eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  line-height: 1;
  margin-left: -0.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_title .big_eng {
    font-size: 8rem;
  }
}
@media (max-width: 559.9px) {
  .top_biz_title .big_eng {
    font-size: 6rem;
  }
}

.top_biz_two {
  display: flex;
  width: 100%;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 559.9px) {
  .top_biz_two {
    flex-direction: column;
  }
}
@media (min-width: 560px) {
  .top_biz_two .top_biz_item {
    width: calc(50% - 0.2rem);
    aspect-ratio: 720/377;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_two .top_biz_item {
    aspect-ratio: 7/4;
  }
}
@media (max-width: 559.9px) {
  .top_biz_two .top_biz_item {
    width: 100%;
  }
}

.top_biz_three {
  display: flex;
  width: 100%;
  gap: 0.4rem;
}
@media (max-width: 559.9px) {
  .top_biz_three {
    flex-direction: column;
  }
}
@media (min-width: 560px) {
  .top_biz_three .top_biz_item {
    width: calc(33.3333333333% - 0.2rem);
    aspect-ratio: 4/3;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_three .top_biz_item {
    aspect-ratio: 10/9;
  }
}
@media (max-width: 559.9px) {
  .top_biz_three .top_biz_item {
    width: 100%;
  }
}

.top_biz_item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 2.8rem 9rem;
}
@media (max-width: 820.9px) {
  .top_biz_item {
    padding: 2.4rem 8rem 2.4rem 3rem;
    justify-content: flex-start;
  }
}
@media (max-width: 559.9px) {
  .top_biz_item {
    padding: 2.4rem 8rem 2.4rem 4rem;
    aspect-ratio: 2/1;
  }
}
.top_biz_item .top_biz_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.top_biz_item .top_biz_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(280deg, #939393 18.84%, rgba(134, 134, 134, 0.4) 82.55%);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.top_biz_item .top_biz_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transition: all 0.3s ease;
}
.top_biz_item .text_area {
  position: relative;
  z-index: 1;
}
.top_biz_item .text_area h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_item .text_area h3 {
    font-size: 2rem;
  }
}
.top_biz_item .text_area p {
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
  opacity: 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_item .text_area p {
    font-size: 1.2rem;
  }
}
.top_biz_item .arrow {
  background-color: #1A9FBA;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 0.4rem;
  position: absolute;
  right: 1.8rem;
  bottom: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.top_biz_item .arrow img {
  display: block;
  width: 0.7rem;
}
.top_biz_item .eng_text {
  color: rgba(255, 255, 255, 0.49);
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2rem;
  position: absolute;
  right: 2.2rem;
  top: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_biz_item .eng_text {
    font-size: 1.7rem;
  }
}
.top_biz_item:hover .top_biz_img img {
  transform: scale(1.05);
}
.top_biz_item.moved .top_biz_img {
  -webkit-animation: slideIn 0.4s ease forwards;
          animation: slideIn 0.4s ease forwards;
}
.top_biz_item.moved .text_area h3 {
  -webkit-animation: slideIn 0.4s ease 0.3s forwards;
          animation: slideIn 0.4s ease 0.3s forwards;
}
.top_biz_item.moved .text_area p {
  -webkit-animation: slideIn 0.4s ease 0.5s forwards;
          animation: slideIn 0.4s ease 0.5s forwards;
}
.top_biz_item.moved .arrow {
  -webkit-animation: slideIn 0.4s ease 0.6s forwards;
          animation: slideIn 0.4s ease 0.6s forwards;
}
.top_biz_item.moved .eng_text {
  -webkit-animation: slideIn 0.4s ease 0.8s forwards;
          animation: slideIn 0.4s ease 0.8s forwards;
}

.top_link_section {
  width: 100%;
  padding: 12rem 0 6rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_link_section {
    padding: 3rem 0 5rem;
  }
}
@media (max-width: 559.9px) {
  .top_link_section {
    padding: 0;
  }
}
.top_link_section .link_column {
  width: 100%;
  position: relative;
}
@media (min-width: 821px) {
  .top_link_section .link_column {
    padding-bottom: 6rem;
    margin-bottom: 6rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_link_section .link_column {
    display: flex;
    margin: 2rem auto 0;
  }
}
@media (max-width: 559.9px) {
  .top_link_section .link_column {
    background-color: #1B1B1B;
    padding-bottom: 4rem;
    margin: 2.4rem auto 0;
  }
}
.top_link_section .link_column .text_side {
  background-color: #1B1B1B;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 821px) {
  .top_link_section .link_column .text_side {
    width: 71rem;
    padding: 5.6rem 5rem 4rem 8rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_link_section .link_column .text_side {
    width: 50rem;
    padding: 4rem 4rem 4rem 5rem;
  }
}
@media (max-width: 559.9px) {
  .top_link_section .link_column .text_side {
    padding: 4rem;
  }
}
.top_link_section .link_column .text_side .top_biz_title .big_eng {
  color: #1A9FBA;
}
.top_link_section .link_column .text_side .title_under_jp {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 3.2rem;
  color: white;
  font-weight: 500;
  font-size: 1.8rem;
  background-color: #358AAC;
  margin-bottom: 2.4rem;
}
.top_link_section .link_column .text_side .title_under_txt {
  color: white;
  line-height: 3rem;
}
.top_link_section .link_column .text_side .btn-black {
  margin-top: 4rem;
}
.top_link_section .link_column .img_side {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 560px) {
  .top_link_section .link_column .img_side {
    width: 62%;
    margin-left: auto;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_link_section .link_column .img_side {
    width: calc(100% - 50rem);
  }
}
@media (max-width: 559.9px) {
  .top_link_section .link_column .img_side {
    width: calc(100% - 8rem);
    margin: 0 auto;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_link_section .link_column .img_side img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
.top_link_section .link_column.moved .img_side {
  -webkit-animation: slideIn 0.3s ease forwards;
          animation: slideIn 0.3s ease forwards;
}
.top_link_section .link_column.moved .text_side {
  -webkit-animation: slideInR 0.3s ease 0.3s forwards;
          animation: slideInR 0.3s ease 0.3s forwards;
}

.top_about_section {
  width: 100%;
  padding: 10rem 10rem 16rem;
  background: linear-gradient(180deg, #368DAF 0%, #173B49 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section {
    padding: 8rem 0;
  }
}
@media (max-width: 559.9px) {
  .top_about_section {
    padding: 4rem 0;
  }
}
.top_about_section .title_under_txt {
  color: white;
  position: relative;
  z-index: 1;
}
@media (min-width: 821px) {
  .top_about_section .title_under_txt {
    padding: 2rem 2rem 0;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section .title_under_txt {
    padding: 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_section .title_under_txt {
    padding: 0 4rem;
  }
}
@media (max-width: 820.9px) {
  .top_about_section .title_under_txt {
    margin-top: 2rem;
  }
}
.top_about_section .img_mountain {
  position: absolute;
  right: -23vw;
  bottom: 0;
  display: block;
  width: 106vw;
  max-width: 140vw;
  opacity: 0.7;
  mix-blend-mode: overlay;
  transform: translateY(100rem);
  transition: all 2s ease;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section .img_mountain {
    max-width: 140vw;
    width: 140vw;
    right: -53vw;
  }
}
@media (max-width: 559.9px) {
  .top_about_section .img_mountain {
    max-width: 160vw;
    width: 160vw;
    right: -53vw;
  }
}
.top_about_section.moved .img_mountain {
  transform: translateY(0);
}

.top_about_title {
  position: relative;
  z-index: 1;
}
@media (min-width: 821px) {
  .top_about_title {
    padding: 0 2rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_title {
    padding: 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_title {
    padding: 0 4rem;
  }
}
.top_about_title .eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .top_about_title .eng {
    font-size: 6rem;
  }
}
.top_about_title .jp {
  font-size: 4rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 559.9px) {
  .top_about_title .jp {
    font-size: 2.2rem;
  }
}

.top_about_contents {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_contents {
    padding: 0 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_contents {
    margin-top: 4rem;
    padding: 0 1.6rem;
  }
}
.top_about_contents .content {
  width: 30%;
  position: relative;
}
@media (max-width: 820.9px) {
  .top_about_contents .content {
    width: 32%;
  }
}
.top_about_contents .content .img {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.top_about_contents .content .img img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}
.top_about_contents .content .img .inner_title {
  background: linear-gradient(90deg, rgba(54, 141, 175, 0.6) 0%, rgba(22, 59, 73, 0.6) 100%);
}
@media (min-width: 560px) {
  .top_about_contents .content .img .inner_title {
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem 2rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_contents .content .img .inner_title {
    width: 90%;
    padding: 1rem;
  }
}
.top_about_contents .content .img .inner_title .content_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
@media (min-width: 560px) {
  .top_about_contents .content .img .inner_title .content_title {
    border: 0.1rem solid #FFF;
    background: linear-gradient(90deg, rgba(54, 141, 175, 0.65) 0%, rgba(22, 59, 73, 0.65) 100%);
    font-weight: bold;
    padding: 3rem 0;
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_contents .content .img .inner_title .content_title {
    font-size: 1.3rem;
    padding: 1rem 0 0;
    background: linear-gradient(90deg, #368DAF 0%, #173B49 100%);
    font-weight: bold;
  }
}
.top_about_contents .content .eng_title {
  width: 100%;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(90deg, #368DAF 0%, #173B49 100%);
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_contents .content .eng_title {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_contents .content .eng_title {
    font-size: 1.3rem;
    height: auto;
    padding-bottom: 1rem;
  }
}
.top_about_contents .content:hover .img img {
  transform: scale(1.05);
}

.top_recruit_panel {
  background: url(../images/top/recruit_bg.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding: 24rem 10rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 820.9px) {
  .top_recruit_panel {
    padding: 10rem 8rem;
    gap: 1rem;
  }
}
@media (max-width: 559.9px) {
  .top_recruit_panel {
    padding: 10rem 2.4rem;
  }
}
.top_recruit_panel .top_recruit_message {
  position: relative;
}
.top_recruit_panel .top_recruit_message img {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.top_recruit_panel .top_recruit_message::before {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  position: absolute;
  background-color: #7ABA1A;
  left: 39rem;
  transform: scale(0);
}
@media (max-width: 820.9px) {
  .top_recruit_panel .top_recruit_message::before {
    width: 4rem;
    height: 4rem;
    left: 15.1rem;
  }
}
.top_recruit_panel .top_recruit_message.top_recruit_message-01 {
  width: 80rem;
  padding-right: 8rem;
}
@media (max-width: 820.9px) {
  .top_recruit_panel .top_recruit_message.top_recruit_message-01 {
    width: 32rem;
    padding-right: 4rem;
  }
}
.top_recruit_panel .top_recruit_message.top_recruit_message-01::before {
  transition: all 0.7s ease 0.3s;
}
.top_recruit_panel .top_recruit_message.top_recruit_message-02 {
  width: 83rem;
  padding-left: 8rem;
}
@media (max-width: 820.9px) {
  .top_recruit_panel .top_recruit_message.top_recruit_message-02 {
    width: 33.2rem;
    padding-left: 2rem;
  }
}
.top_recruit_panel .top_recruit_message.top_recruit_message-02::before {
  background-color: #358AAC;
  left: 45.3rem;
  transition: all 0.7s ease 1.3s;
}
@media (max-width: 820.9px) {
  .top_recruit_panel .top_recruit_message.top_recruit_message-02::before {
    left: 17.6rem;
  }
}
.top_recruit_panel.moved .top_recruit_message-01 img {
  -webkit-animation: slideIn 0.3s ease forwards;
          animation: slideIn 0.3s ease forwards;
}
.top_recruit_panel.moved .top_recruit_message-01::before {
  transform: scale(1);
}
.top_recruit_panel.moved .top_recruit_message-02 img {
  -webkit-animation: slideIn 0.3s ease 1s forwards;
          animation: slideIn 0.3s ease 1s forwards;
}
.top_recruit_panel.moved .top_recruit_message-02::before {
  transform: scale(1);
}

.top_recruit_section {
  padding: 6.4rem 16rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_recruit_section {
    padding: 5rem 8rem;
  }
}
@media (max-width: 559.9px) {
  .top_recruit_section {
    padding: 4rem;
  }
}
.top_recruit_section .title_under_text {
  font-size: 2rem;
  line-height: 4rem;
}
@media (max-width: 820.9px) {
  .top_recruit_section .title_under_text {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
.top_recruit_section .end_link {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

.bg_grad_text {
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 3rem;
  color: white;
}

.top_recruit_eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin: 2rem 0;
}

/**************
プレス金型設計・製作
**************/
.pd_section {
  position: relative;
  padding-bottom: 16rem;
}
@media (max-width: 559.9px) {
  .pd_section {
    padding-bottom: 10rem;
  }
}
@media (min-width: 560px) {
  .pd_section::before {
    content: "";
    display: block;
    width: 45%;
    height: calc(100% - 75rem);
    background: linear-gradient(180deg, #368DAF 0%, #173B49 100%);
    position: absolute;
    left: 0;
    top: 50rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pd_section::before {
    width: 50%;
  }
}
.pd_section .wrap {
  position: relative;
}

.press_die_contents .pd_content {
  width: 100%;
  position: relative;
}
@media (min-width: 560px) {
  .press_die_contents .pd_content {
    display: flex;
    justify-content: space-between;
  }
}
.press_die_contents .pd_content:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 559.9px) {
  .press_die_contents .pd_content:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.press_die_contents .pd_content .img_side {
  position: relative;
}
@media (min-width: 560px) {
  .press_die_contents .pd_content .img_side {
    width: 54%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .press_die_contents .pd_content .img_side {
    width: 47%;
  }
  .press_die_contents .pd_content .img_side img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
.press_die_contents .pd_content .text_side {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 560px) {
  .press_die_contents .pd_content .text_side {
    width: 44%;
    padding: 0 5rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .press_die_contents .pd_content .text_side {
    width: 52%;
    padding: 0 3rem 0 5rem;
  }
}
@media (max-width: 559.9px) {
  .press_die_contents .pd_content .text_side {
    margin-top: 2rem;
  }
}
.press_die_contents .pd_content .pd_title {
  font-size: 2.6rem;
  line-height: 4rem;
  border-bottom: 0.2rem #1B1B1B solid;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 559.9px) {
  .press_die_contents .pd_content .pd_title {
    font-size: 2.4rem;
    line-height: 3.7rem;
    padding-bottom: 1.4rem;
    margin-bottom: 3rem;
  }
}
.press_die_contents .pd_content .pd_text {
  font-size: 1.8rem;
  line-height: 3.2rem;
}
.press_die_contents .pd_content .pd_num {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 0;
}
.press_die_contents .pd_content .pd_num::after {
  content: "";
  display: block;
  width: 20rem;
  height: 0.2rem;
  flex: 1;
}
@media (max-width: 559.9px) {
  .press_die_contents .pd_content .pd_num::after {
    width: 12rem;
  }
}
@media (max-width: 559.9px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(odd) .text_side {
    padding-right: 5rem;
  }
}
.press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(odd) .pd_num {
  right: 0;
  transform: rotate(90deg) translate(50%, -16rem);
}
@media (max-width: 559.9px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(odd) .pd_num {
    transform: rotate(90deg) translate(50%, -10.5rem);
  }
}
.press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(odd) .pd_num::after {
  background-color: #1B1B1B;
}
@media (max-width: 559.9px) and (max-width: 559.9px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even)::before {
    content: "";
    display: block;
    width: calc(100% + 11.2vw);
    height: 80%;
    background: linear-gradient(180deg, #368DAF 0%, #173B49 100%);
    position: absolute;
    left: -5.6vw;
    top: 20%;
  }
}
@media (min-width: 560px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .text_side {
    width: 52%;
    padding: 0 5rem 0 3rem;
  }
}
@media (max-width: 559.9px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .text_side {
    padding-left: 4.8rem;
  }
}
.press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .pd_title {
  border-bottom: 0.2rem white solid;
  color: white;
}
.press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .pd_text {
  color: white;
}
@media (max-width: 559.9px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .pd_text {
    padding-bottom: 3rem;
  }
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .pd_text + .btn-blue {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
.press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .pd_num {
  left: 0;
  transform: rotate(90deg) translate(50%, 16rem);
  color: white;
}
@media (max-width: 559.9px) {
  .press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .pd_num {
    transform: rotate(90deg) translate(50%, 10.5rem);
  }
}
.press_die_contents:not(.press_die_contents.sheetmetal_contents) .pd_content:nth-child(even) .pd_num::after {
  background-color: white;
}
@media (max-width: 559.9px) and (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd)::before {
    content: "";
    display: block;
    width: calc(100% + 11.2vw);
    height: 80%;
    background: linear-gradient(180deg, #368DAF 0%, #173B49 100%);
    position: absolute;
    left: -5.6vw;
    top: 20%;
  }
}
@media (min-width: 560px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .text_side {
    width: 52%;
    padding: 0 5rem 0 3rem;
  }
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .text_side {
    padding-left: 4.8rem;
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_title {
  border-bottom: 0.2rem black solid;
  color: black;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_title {
    border-bottom-color: white;
    color: white;
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_text {
  color: black;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_text {
    padding-bottom: 3rem;
    color: white;
  }
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_text + .btn-blue {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_num {
  left: 0;
  transform: rotate(90deg) translate(50%, 16rem);
  color: black;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_num {
    transform: rotate(90deg) translate(50%, 10.5rem);
    color: white;
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_num::after {
  background-color: #1B1B1B;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(odd) .pd_num::after {
    background-color: white;
  }
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .text_side {
    padding-right: 5rem;
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_title {
  border-bottom: 0.2rem white solid;
  color: white;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_title {
    border-bottom-color: #1B1B1B;
    color: #1B1B1B;
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_text {
  color: white;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_text {
    color: #1B1B1B;
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_num {
  right: 0;
  transform: rotate(90deg) translate(50%, -16rem);
  color: white;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_num {
    color: #1B1B1B;
  }
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_num {
    transform: rotate(90deg) translate(50%, -10.5rem);
  }
}
.press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_num::after {
  background-color: white;
}
@media (max-width: 559.9px) {
  .press_die_contents.sheetmetal_contents .pd_content:nth-child(even) .pd_num::after {
    background-color: #1B1B1B;
  }
}

/**************
プレス加工
**************/
.press_content {
  padding: 5rem;
  background-color: #F5F5F5;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .press_content {
    padding: 2.4rem;
    flex-direction: column;
  }
}
.press_content .img_side {
  width: 44%;
}
@media (max-width: 559.9px) {
  .press_content .img_side {
    width: 100%;
  }
}
.press_content .text_side {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 559.9px) {
  .press_content .text_side {
    width: 100%;
    margin-top: 3rem;
  }
}
.press_content .text_side .pd_title {
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  padding: 1.5rem 2rem;
  color: white;
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  line-height: 3rem;
}
.press_content .text_side .pd_text {
  padding: 0 1rem;
}
@media (min-width: 821px) {
  .press_content .text_side .pd_text {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}
.press_content .text_side .num {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  transform: translateY(2.4rem);
}
@media (max-width: 559.9px) {
  .press_content .text_side .num {
    position: absolute;
    left: 0;
    top: -4rem;
  }
}
.press_content .text_side .num .numText {
  font-size: 2.4rem;
  padding-left: 10rem;
  position: relative;
  margin-left: 1rem;
}
.press_content .text_side .num .numText::before {
  content: "";
  display: block;
  width: 9rem;
  height: 0.1rem;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #1B1B1B;
}

/**************
板金加工
**************/
.sm_section {
  position: relative;
  padding-bottom: 16rem;
}
@media (max-width: 559.9px) {
  .sm_section {
    padding-bottom: 10rem;
  }
}
@media (min-width: 560px) {
  .sm_section::before {
    content: "";
    display: block;
    width: 45%;
    height: calc(100% - 56rem);
    background: linear-gradient(180deg, #368DAF 0%, #173B49 100%);
    position: absolute;
    right: 0;
    top: 50rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .sm_section::before {
    width: 50%;
  }
}
.sm_section .wrap {
  position: relative;
}

.sheetmetal_content .sm_content {
  width: 100%;
  position: relative;
}
@media (min-width: 560px) {
  .sheetmetal_content .sm_content {
    display: flex;
    justify-content: space-between;
  }
}
.sheetmetal_content .sm_content:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.sheetmetal_content .sm_content .img_side {
  position: relative;
}
@media (min-width: 560px) {
  .sheetmetal_content .sm_content .img_side {
    width: 60%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .sheetmetal_content .sm_content .img_side {
    width: 47%;
  }
  .sheetmetal_content .sm_content .img_side img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
.sheetmetal_content .sm_content .text_side {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 560px) {
  .sheetmetal_content .sm_content .text_side {
    width: 40%;
    padding: 0 5rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .sheetmetal_content .sm_content .text_side {
    width: 52%;
    padding: 0 3rem 0 5rem;
  }
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content .text_side {
    margin-top: 2rem;
  }
}
.sheetmetal_content .sm_content .pd_title {
  font-size: 2.8rem;
  line-height: 4rem;
  border-bottom: 0.2rem #1B1B1B solid;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content .pd_title {
    font-size: 2.4rem;
    line-height: 3.7rem;
    padding-bottom: 1.4rem;
    margin-bottom: 3rem;
  }
}
.sheetmetal_content .sm_content .pd_text {
  font-size: 1.8rem;
}
.sheetmetal_content .sm_content .pd_num {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 0;
}
.sheetmetal_content .sm_content .pd_num::after {
  content: "";
  display: block;
  width: 20rem;
  height: 0.2rem;
  flex: 1;
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content .pd_num::after {
    width: 12rem;
  }
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content:nth-child(odd) .text_side {
    padding-right: 5rem;
  }
}
.sheetmetal_content .sm_content:nth-child(odd) .pd_num {
  right: 0;
  transform: rotate(90deg) translate(50%, -16rem);
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content:nth-child(odd) .pd_num {
    transform: rotate(90deg) translate(50%, -10.5rem);
  }
}
.sheetmetal_content .sm_content:nth-child(odd) .pd_num::after {
  background-color: #1B1B1B;
}
@media (max-width: 559.9px) and (max-width: 559.9px) {
  .sheetmetal_content .sm_content:nth-child(even)::before {
    content: "";
    display: block;
    width: calc(100% + 11.2vw);
    height: 80%;
    background: linear-gradient(180deg, #368DAF 0%, #173B49 100%);
    position: absolute;
    left: -5.6vw;
    top: 20%;
  }
}
@media (min-width: 560px) {
  .sheetmetal_content .sm_content:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .sheetmetal_content .sm_content:nth-child(even) .text_side {
    width: 52%;
    padding: 0 5rem 0 3rem;
  }
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content:nth-child(even) .text_side {
    padding-left: 4.8rem;
  }
}
.sheetmetal_content .sm_content:nth-child(even) .pd_title {
  border-bottom: 0.2rem white solid;
  color: white;
}
.sheetmetal_content .sm_content:nth-child(even) .pd_text {
  color: white;
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content:nth-child(even) .pd_text {
    padding-bottom: 3rem;
  }
  .sheetmetal_content .sm_content:nth-child(even) .pd_text + .btn-blue {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
.sheetmetal_content .sm_content:nth-child(even) .pd_num {
  left: 0;
  transform: rotate(90deg) translate(50%, 16rem);
  color: white;
}
@media (max-width: 559.9px) {
  .sheetmetal_content .sm_content:nth-child(even) .pd_num {
    transform: rotate(90deg) translate(50%, 10.5rem);
  }
}
.sheetmetal_content .sm_content:nth-child(even) .pd_num::after {
  background-color: white;
}

/**************
二次加工・組立
**************/
.assy_section {
  position: relative;
  padding-bottom: 16rem;
}
.assy_section .wrap {
  position: relative;
  z-index: 1;
}

.assy_mountain {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.assy_mountain svg {
  width: 100%;
  height: auto;
}

.assy_contents {
  width: 100%;
}
.assy_contents > li {
  width: 100%;
  position: relative;
}
.assy_contents > li:not(:last-child) {
  margin-bottom: 6.4rem;
}
.assy_contents > li .img_side {
  width: 60%;
}
@media (max-width: 559.9px) {
  .assy_contents > li .img_side {
    width: 100%;
  }
}
.assy_contents > li .text_side {
  background: rgba(75, 72, 72, 0.84);
}
@media (min-width: 560px) {
  .assy_contents > li .text_side {
    width: 45%;
    position: absolute;
    right: 0;
    top: 50%;
    padding: 2rem 6.4rem 4rem;
    transform: translateY(-50%);
  }
}
@media (max-width: 559.9px) {
  .assy_contents > li .text_side {
    width: 100%;
  }
}
.assy_contents > li .text_side .heading {
  color: white;
  position: relative;
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.02rem;
}
@media (max-width: 559.9px) {
  .assy_contents > li .text_side .heading {
    padding: 2rem;
  }
}
.assy_contents > li .text_side .heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: white;
  position: absolute;
  left: 0;
  bottom: 0;
}
.assy_contents > li .text_side .txt {
  padding: 2rem 2rem 0;
  color: white;
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: 0.02rem;
}
@media (max-width: 559.9px) {
  .assy_contents > li .text_side .txt {
    padding: 3rem;
  }
}

/**************
品質管理
**************/
.ql_content {
  padding: 5rem;
  background-color: #F5F5F5;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media (max-width: 559.9px) {
  .ql_content {
    padding: 2.4rem;
    flex-direction: column;
  }
}
.ql_content.sus {
  flex-direction: row-reverse;
}
@media (max-width: 559.9px) {
  .ql_content.sus {
    flex-direction: column;
  }
}
.ql_content .img_side {
  width: 44%;
}
@media (max-width: 559.9px) {
  .ql_content .img_side {
    width: 100%;
  }
}
.ql_content .text_side {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 559.9px) {
  .ql_content .text_side {
    width: 100%;
    margin-top: 3rem;
  }
}
.ql_content .text_side .ql_title {
  padding: 0.3rem 0 0.3rem 3rem;
  color: black;
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  line-height: 3rem;
  color: #358AAC;
  position: relative;
}
@media (max-width: 559.9px) {
  .ql_content .text_side .ql_title {
    padding-left: 2rem;
  }
}
.ql_content .text_side .ql_title::before {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
}
.ql_content .text_side .ql_text {
  padding: 0 1rem;
  line-height: 3rem;
}

.quality_policies {
  width: 100%;
  max-width: 80rem;
  margin: 4rem auto 0;
}
.quality_policies > li {
  border: 0.4rem solid #358AAC;
}
.quality_policies > li:not(:last-child) {
  margin-bottom: 4rem;
}
.quality_policies > li header {
  background-color: #358AAC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9rem;
  padding: 0 2rem;
}
.quality_policies > li header .num {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  color: white;
  text-shadow: 0.2rem 0.2rem 0 #4557A4;
}
.quality_policies > li header .policy_heading {
  flex: 1;
  text-align: center;
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  padding-right: 3rem;
}
@media (max-width: 559.9px) {
  .quality_policies > li header .policy_heading {
    padding: 0 3rem;
    line-height: 3.2rem;
  }
}
.quality_policies > li .inner_text {
  background-color: white;
  padding: 3rem 4.8rem;
}
@media (max-width: 559.9px) {
  .quality_policies > li .inner_text {
    padding: 2.4rem;
  }
}
.quality_policies > li .inner_text p {
  font-size: 1.8rem;
  line-height: 3.2rem;
}

/**************
設備情報
**************/
.equip_navi {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
@media (max-width: 559.9px) {
  .equip_navi {
    justify-content: flex-start;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0 2rem;
    scrollbar-width: none;
  }
  .equip_navi::-webkit-scrollbar {
    display: none;
  }
}
.equip_navi > li {
  flex-shrink: 0;
}
.equip_navi > li > a {
  background: linear-gradient(90deg, #368DAF 0%, #163B49 50%, #0b5876 100%);
  background-size: 200% 100%;
  background-position: left center;
  transition: background-position 0.5s ease;
  width: 20rem;
  height: 6rem;
  padding: 0 3rem 0 1.6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 0.5rem;
  font-size: 1.5rem;
}
.equip_navi > li > a:hover {
  background-position: right center;
}
@media (max-width: 559.9px) {
  .equip_navi > li > a {
    width: 14rem;
    height: 4.8rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
.equip_navi > li > a::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/icon/icon-arrow-down-white.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.equip_section {
  width: 100%;
  padding: 0 16rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .equip_section {
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .equip_section {
    padding: 0;
  }
}
.equip_section .equip_wrap {
  margin-top: 8rem;
}
@media (max-width: 559.9px) {
  .equip_section .equip_wrap {
    margin-top: 6.4rem;
  }
}
@media (max-width: 559.9px) {
  .equip_section .equip_wrap .title2 {
    padding: 0 2rem;
  }
}
@media (max-width: 559.9px) {
  .equip_section .equip_wrap .imgList {
    padding: 0 2rem;
  }
}
@media (max-width: 559.9px) {
  .equip_section .equip_wrap .equip_table {
    margin: 0 2rem;
  }
}

.imgList {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem 2.4rem;
}
@media (max-width: 559.9px) {
  .imgList {
    gap: 1.6rem 1.6rem;
  }
}
.imgList > li {
  width: calc(33.3333333333% - 1.6rem);
}
@media (max-width: 559.9px) {
  .imgList > li {
    width: calc(50% - 0.8rem);
  }
}
.imgList > li .caption1 {
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}
@media (max-width: 559.9px) {
  .imgList > li .caption1 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}
.imgList > li .caption2 {
  color: #95a9bb;
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 559.9px) {
  .imgList > li .caption2 {
    font-size: 1.3rem;
  }
}

/**************
製作実績
**************/
.processing_range {
  background-color: #F4F2F0;
  padding: 3rem 12rem;
  margin-bottom: 5rem;
  border-radius: 0.8rem;
}
@media (max-width: 559.9px) {
  .processing_range {
    padding: 3rem 3rem 1rem;
  }
}
.processing_range dl {
  display: flex;
  gap: 1rem;
}
.processing_range dl:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 559.9px) {
  .processing_range dl {
    flex-direction: column;
  }
}
.processing_range dl dt {
  color: #1B1B1B;
  font-weight: 700;
  padding: 0.8rem 2.8rem;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 40rem;
  width: 15rem;
}
@media (max-width: 559.9px) {
  .processing_range dl dt {
    margin-bottom: 0.6rem;
  }
}
.processing_range dl dd {
  padding: 0.8rem 2.8rem;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 40rem;
  background-color: #FF9650;
  color: white;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .processing_range dl dd {
    background-color: transparent;
    color: #1B1B1B;
    font-weight: normal;
    padding: 0rem 1rem 2.4rem;
  }
}

.product_item .img {
  width: 100%;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  overflow: hidden;
}
.product_item .img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s ease;
}
.product_item .img img:hover {
  transform: scale(1.1);
}
.product_item .product_table {
  margin-top: 1rem;
}
.product_item .product_table tr th, .product_item .product_table tr td {
  font-size: 1.4rem;
}
.product_item .caption1 a {
  color: #1B1B1B;
  font-weight: 500;
}

.product_tags {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.4rem;
}
.product_tags span {
  color: #358AAC;
  border: 0.2rem solid #358AAC;
  font-size: 1.2rem;
  padding: 0 1rem;
  border-radius: 0.4rem;
  font-weight: bold;
}

.product_table {
  width: 100%;
}
.product_table tr th {
  border-bottom: 0.14rem solid #358AAC;
  padding: 0.5rem 0.4rem;
}
.product_table tr td {
  border-bottom: 0.1rem solid #ddd;
  padding: 0.5rem 0.4rem;
}

.product_single_wrap {
  width: 100%;
  padding: 0 24rem 8rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .product_single_wrap {
    padding: 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .product_single_wrap {
    padding: 0 5.6vw;
  }
}

.product_single_title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.product_single_table {
  margin-top: 2rem;
}
.product_single_table tr th {
  color: #358AAC;
  text-align: left;
  width: 10rem;
  padding: 0.3rem 0;
}
.product_single_table tr td {
  padding: 0.3rem 0;
}

.product_single_tags {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3rem 0.3rem;
  margin-top: 2rem;
}
.product_single_tags span {
  color: #B3B1B9;
  background-color: white;
  padding: 0.7rem 2.8rem;
  border-radius: 10rem;
  font-weight: bold;
  border: 0.2rem solid #B3B1B9;
}

.product_single_table {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}
.product_single_table tr th {
  border-bottom: 0.14rem solid #358AAC;
  padding: 1rem 1.2rem;
}
.product_single_table tr td {
  border-bottom: 0.1rem solid #ddd;
  padding: 1rem 1.2rem;
}

.product_single_img {
  width: 100%;
  height: auto;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem auto;
}
.product_single_img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/**************
企業情報
**************/
.greet_section {
  position: relative;
}
@media (max-width: 559.9px) {
  .greet_section {
    padding-bottom: 33rem;
  }
}
.greet_section .company_greet {
  position: absolute;
  right: -36vw;
  bottom: 0;
  display: block;
  width: 90vw;
  transition: all 2s ease;
}
@media (max-width: 559.9px) {
  .greet_section .company_greet {
    right: -12rem;
  }
}

.greet_texts {
  position: relative;
  z-index: 1;
}
@media (min-width: 560px) {
  .greet_texts {
    padding-right: 44rem;
  }
}
.greet_texts .head {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 3rem;
}
@media (max-width: 559.9px) {
  .greet_texts .head {
    font-size: 3rem;
  }
}
.greet_texts p {
  line-height: 3rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
@media (min-width: 560px) {
  .greet_texts p {
    padding-right: 10rem;
  }
}
.greet_texts p.p_name {
  display: flex;
  font-weight: bold;
  margin-top: 4rem;
  padding-right: 2rem;
}

.overview {
  width: 100%;
}
@media (max-width: 559.9px) {
  .overview tbody tr {
    border-bottom: 0.6rem solid #F1F6FA;
  }
}
.overview tbody tr th {
  padding: 3rem 5rem;
  border: 0.3rem solid #F1F6FA;
  background-color: #c3eaf2;
  text-align: left;
}
@media (max-width: 559.9px) {
  .overview tbody tr th {
    display: block;
    width: 100%;
    padding: 2rem 2rem 0.8rem;
    background-color: white;
    border: none;
    color: #358AAC;
  }
}
.overview tbody tr td {
  padding: 3rem 5rem;
  border: 0.3rem solid #F1F6FA;
  background-color: white;
}
@media (max-width: 559.9px) {
  .overview tbody tr td {
    display: block;
    width: 100%;
    padding: 0 2rem 2rem;
    border: none;
  }
}
@media (min-width: 560px) {
  .overview tbody tr td .btn-white-small {
    position: relative;
    top: -0.2rem;
    left: 2rem;
  }
}
@media (max-width: 559.9px) {
  .overview tbody tr td .btn-white-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0.4rem 0 0.8rem;
  }
}
@media (max-width: 559.9px) {
  .overview tbody tr td .btn-white-small + br {
    display: none;
  }
}

.history {
  width: 100%;
}
@media (max-width: 559.9px) {
  .history tbody tr {
    border-bottom: 0.6rem solid #F1F6FA;
  }
}
.history tbody tr th {
  padding: 3rem 5rem;
  border-bottom: 0.3rem solid #F1F6FA;
  text-align: left;
  color: #358AAC;
  width: 24rem;
}
@media (min-width: 560px) {
  .history tbody tr th {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .history tbody tr th {
    display: block;
    width: 100%;
    padding: 2rem 2rem 0.8rem;
    background-color: white;
    border: none;
  }
}
.history tbody tr td {
  padding: 3rem 5rem;
  border-bottom: 0.3rem solid #F1F6FA;
  background-color: white;
}
@media (min-width: 560px) {
  .history tbody tr td {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .history tbody tr td {
    display: block;
    width: 100%;
    padding: 0 2rem 2rem;
    border: none;
  }
}

.access_wrap {
  margin-bottom: 15rem;
}

.access_img {
  border-radius: 1rem;
  overflow: hidden;
}

.access_texts {
  margin: 3rem auto;
}
.access_texts .address {
  margin-bottom: 2rem;
  text-align: center;
}
.access_texts dl dt {
  color: #358AAC;
  text-align: center;
  font-weight: bold;
}
.access_texts dl dd {
  padding: 0.2rem 0 1rem;
  text-align: center;
}

.access_gmap {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/1;
}
@media (max-width: 559.9px) {
  .access_gmap {
    aspect-ratio: 4/3;
  }
}
.access_gmap iframe {
  width: 100%;
  height: 100%;
}

/**************
サスティナビリティ
**************/
.environmental_mark {
  display: block;
  width: 12rem;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .environmental_mark {
    width: 8rem;
  }
}

.quality_content_second {
  background-color: #F5F5F5;
  padding: 6rem 8rem;
}
@media (max-width: 559.9px) {
  .quality_content_second {
    padding: 3rem;
  }
}

.sub_taitle_sus {
  font-size: 2.4rem;
  padding-bottom: 9.4rem;
}
@media (max-width: 559.9px) {
  .sub_taitle_sus {
    font-size: 1.8rem;
    padding-bottom: 6rem;
  }
}

.iso_text {
  font-size: 1.9rem;
  font-weight: 700;
  font-feature-settings: "palt";
  margin-top: 1rem;
}

.environmental_title {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  padding-bottom: 3.8rem;
}

.environmental_text {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 559.9px) {
  .environmental_text {
    text-align: left;
  }
  .environmental_text br {
    display: none;
  }
}

.environmental_boxes {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.environmental_box {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  align-items: center;
}
.environmental_box:not(:last-child) {
  margin-bottom: 2rem;
}
.environmental_box .environmental_img {
  width: 13rem;
}
.environmental_box .environmental_img img {
  display: block;
  width: 100%;
}
.environmental_box .environmental_right_box {
  flex: 1;
}
.environmental_box .environmental_box_title {
  font-size: 2.2rem;
  font-weight: 700;
}
.environmental_box .environmental_box_text {
  font-size: 1.9rem;
  line-height: 3rem;
  margin-top: 0.5rem;
}

.e_policy_end {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}

/**************
環境への取り組み
**************/
.kuroda-center-title {
  text-align: center;
}
.kuroda-center-title .title_line {
  display: block;
  margin: 2rem auto 0;
}
@media (max-width: 559.9px) {
  .kuroda-center-title .title_line {
    width: 5rem;
    margin: 1.4rem auto 0.6rem;
  }
}
.kuroda-center-title .sml_en_title {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #358AAC;
  margin-top: 1rem;
}
.kuroda-center-title .big_jp_title {
  font-size: 4rem;
  text-align: center;
  padding-bottom: 6rem;
}
@media (max-width: 559.9px) {
  .kuroda-center-title .big_jp_title {
    font-size: 3rem;
    padding-bottom: 4rem;
  }
}

.forest_box {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
}
@media (max-width: 559.9px) {
  .forest_box {
    flex-wrap: wrap;
    padding: 1.6rem 2.4rem;
  }
}
.forest_box .forest_box_line {
  height: 0.1rem;
  width: 7.5rem;
  background-color: white;
}
.forest_box .forest_box_en {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.forest_box .forest_box_right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.forest_box .forest_box_jp {
  font-size: 2rem;
  color: white;
}
@media (max-width: 559.9px) {
  .forest_box .forest_box_jp {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}

.forest_text {
  padding: 4rem 1rem 0;
}
@media (max-width: 559.9px) {
  .forest_text {
    padding: 3rem 1rem 1rem;
  }
}

.page_news_archs {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.5%;
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .page_news_archs {
    overflow-x: scroll;
    scrollbar-width: none;
    padding: 0 2rem;
  }
  .page_news_archs::-webkit-scrollbar {
    display: none;
  }
}
.page_news_archs .top_news_item .top_news_info .date {
  color: #B3B1B9;
}
.page_news_archs .top_news_item .top_news_info .news_cats span {
  color: #B3B1B9;
  border: 0.16rem #B3B1B9 solid;
}
.page_news_archs .top_news_item .news_title a {
  color: #1B1B1B;
}

/**************
新着情報
**************/
.page_news_section {
  padding: 6rem 0 12rem 16rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_section {
    padding: 5rem 0 8rem 6rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_section {
    padding: 4rem 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_section .top_news_title {
    margin-left: 3rem;
  }
}

.page_news_wrap {
  margin-top: 4rem;
  position: relative;
}
@media (min-width: 560px) {
  .page_news_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.page_news_wrap .page_news_side {
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  padding: 4.8rem 6.4rem;
}
@media (min-width: 560px) {
  .page_news_wrap .page_news_side {
    width: calc(100% - 28rem);
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_wrap .page_news_side {
    padding: 4rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_wrap .page_news_side {
    padding: 3rem 0;
  }
}
@media (min-width: 560px) {
  .page_news_wrap .sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 9rem;
    left: 0;
    width: 24rem;
  }
}

@media (min-width: 560px) {
  .side_navi {
    border-right: 0.2rem solid #1B1B1B;
  }
}
@media (max-width: 559.9px) {
  .side_navi {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0 3rem;
  }
}
.side_navi li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0;
  color: #1B1B1B;
  position: relative;
  transition: all 0.3s ease;
}
.side_navi li a::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: #358AAC;
  margin-left: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.side_navi li a:hover {
  color: #358AAC;
}
.side_navi li a:hover::after {
  opacity: 1;
}

.news_archs {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4rem 3.5%;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .news_archs {
    padding: 0 3rem;
  }
}
@media (max-width: 559.9px) {
  .news_archs .top_news_item {
    width: 100%;
  }
}

.single_title {
  font-size: 4rem;
  line-height: 5rem;
  margin-bottom: 3rem;
  border-bottom: 0.1rem #B3B1B9 solid;
  padding-bottom: 2rem;
}
@media (max-width: 820.9px) {
  .single_title {
    font-size: 2.3rem;
    line-height: 3.5rem;
  }
}

.post_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post_data .news_date {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .post_data .news_date {
    font-family: "Afacad", Arial, Helvetica, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
  }
}
.post_data .single_news_cats {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.2rem 0.2rem;
}
.post_data .single_news_cats span {
  background-color: white;
  border: 0.1rem #358AAC solid;
  border-radius: 10rem;
  padding: 0.2rem 2rem;
  color: #358AAC;
  font-size: 1.2rem;
}

.cat_tag_item {
  background-color: #BE241F;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 4px;
  padding: 0 16px;
  height: 27px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single_content {
  padding: 6rem 0;
}
@media (max-width: 559.9px) {
  .single_content {
    padding: 4rem 0;
  }
}
.single_content *:first-child {
  margin-top: 0;
}
.single_content img {
  max-width: 100% !important;
  height: auto;
}
.single_content .auto {
  margin: 15px 0;
}
.single_content h1 {
  font-size: 3rem;
  margin-top: 5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 820.9px) {
  .single_content h1 {
    font-size: 2.1rem;
    margin: 30px 0 12px;
  }
}
.single_content h2 {
  font-size: 2.4rem;
  font-weight: 700 !important;
  margin: 4rem 0 2rem;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .single_content h2 {
    font-size: 1.9rem;
    margin: 30px 0 12px;
  }
}
.single_content h3 {
  font-size: 2rem;
  color: #444;
  margin: 4rem 0 2rem;
  font-weight: 700 !important;
}
@media (max-width: 820.9px) {
  .single_content h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
  }
}
.single_content h4 {
  font-size: 1.8rem;
  margin: 4rem 0 2rem;
}
@media (max-width: 820.9px) {
  .single_content h4 {
    font-size: 1.7rem;
    margin: 20px 0 16px;
  }
}
.single_content h5 {
  position: relative;
  margin: 4rem 0 2rem;
  font-size: 1.7rem;
  padding-left: 1.5rem;
}
@media (max-width: 820.9px) {
  .single_content h5 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
  }
}
.single_content h5::before {
  width: 0.5rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #07afbf;
  content: "";
  display: block;
}
.single_content h6 {
  font-size: 1.6rem;
  color: #666;
  position: relative;
  padding-left: 16px;
  margin: 40px 0 16px;
}
@media (max-width: 820.9px) {
  .single_content h6 {
    margin: 32px 0 16px;
  }
}
.single_content h6::before {
  background: #3875a1;
  width: 5px;
  height: 90%;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
}
.single_content table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
.single_content table th,
.single_content table td {
  vertical-align: middle;
  padding: 15px 10px;
  border: 1px solid #ddd;
  margin: 0;
}
.single_content table th {
  text-align: center;
  background: #eee;
  font-weight: bold;
}
.single_content blockquote {
  position: relative;
  box-sizing: border-box;
  padding: 45px 20px 45px 30px;
  margin: 0 0 30px;
  font-weight: 400;
  color: #444;
  background-color: #f3f3f3;
  border: 1px #ddd solid;
}
@media (max-width: 820.9px) {
  .single_content blockquote {
    padding: 20px 5%;
  }
}
.single_content pre {
  padding: 20px;
  margin: 20px;
  background: #eee;
  border-radius: 5px;
  font-size: 1.5rem;
  white-space: pre-line;
}
.single_content code {
  word-wrap: break-word;
  font-size: 1.5rem;
}
.single_content .word-set {
  display: inline-table;
  position: relative;
  vertical-align: baseline;
  white-space: initial;
}
.single_content .aligncenter {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}
.single_content .alignright {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
}
.single_content img {
  height: auto;
}
.single_content ul {
  list-style: inherit;
}
.single_content ul li {
  list-style-type: inherit;
  list-style-position: inside;
}
.single_content ol {
  list-style: inherit;
}
.single_content ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

.news_single_bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 12rem;
}
@media (max-width: 559.9px) {
  .news_single_bottom {
    margin-top: 64px;
  }
}
.news_single_bottom .link_center {
  color: #756758;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .news_single_bottom .link_center {
    font-size: 13px;
  }
}
.news_single_bottom .arrow_column {
  width: 16rem;
}
@media (max-width: 559.9px) {
  .news_single_bottom .arrow_column {
    width: 80px;
  }
}
@media (max-width: 559.9px) {
  .news_single_bottom .arrow_column .link_with_arrow {
    font-size: 13px;
  }
}
.news_single_bottom .arrow_column .ico_arrow_pc {
  width: 3.2rem;
}

/* ------------
PAGENATION
------------- */
.wp-pagenavi {
  padding: 12px 5px;
  background: #f3f3f3;
  border-radius: 4px;
  font-size: 100%;
  text-align: center;
  border: 1px #ddd solid;
  margin-top: 30px;
}

.all_seminar .wp-pagenavi {
  margin: 0 auto;
}

.wp-pagenavi span,
.wp-pagenavi a {
  padding: 5px 7px !important;
  border-radius: 3px;
}

.wp-pagenavi .page,
.wp-pagenavi .pages,
.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  background: #fff;
}

.wp-pagenavi .current {
  background: #1eb0d6;
  color: #fff;
}

/**************
採用情報
**************/
.recruit_top_eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4rem;
}
.recruit_top_eng .t_blue {
  color: #358AAC;
}

.recruit_message {
  background-color: #1B1B1B;
  padding: 5rem 8rem 4rem;
}
@media (max-width: 559.9px) {
  .recruit_message {
    padding: 3rem;
  }
}
.recruit_message h3 {
  color: white;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4rem;
}
.recruit_message p {
  margin-top: 2rem;
  color: white;
  font-size: 1.9rem;
  line-height: 3.3rem;
}
.recruit_message p.p_name {
  text-align: right;
  font-weight: bold;
}

.work_styles {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4.5rem;
}
@media (max-width: 559.9px) {
  .work_styles {
    flex-direction: column;
  }
}
.work_styles > li {
  position: relative;
  padding-top: 2.4rem;
}
@media (min-width: 560px) {
  .work_styles > li {
    width: calc(33.3333333333% - 3rem);
  }
  .work_styles > li:nth-child(2) {
    transform: translateY(-3rem);
  }
  .work_styles > li:nth-child(3) {
    transform: translateY(-6rem);
  }
}
.work_styles > li .head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #368DAF 0%, #163B49 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 3rem;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  border-radius: 10rem;
  border: 0.2rem white solid;
}
.work_styles > li .img {
  border-radius: 4rem 0 4rem 0;
  overflow: hidden;
}
.work_styles > li .desc {
  color: #444444;
  margin-top: 1rem;
  padding: 0 1rem;
}

.w_eng_title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-weight: bold;
  font-size: 2.2rem;
  position: relative;
  padding-left: 1.8rem;
}
@media (max-width: 559.9px) {
  .w_eng_title {
    font-size: 2rem;
    padding-left: 1.2rem;
  }
}
.w_eng_title::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 80%;
  position: absolute;
  left: 0;
  top: 10%;
  background: white;
}
.w_eng_title .text-eng {
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media (min-width: 560px) {
  .w_eng_title .text-eng {
    top: 0.1rem;
  }
}
@media (max-width: 559.9px) {
  .w_eng_title .text-eng {
    font-size: 2.4rem;
  }
}
.w_eng_title .bg_line {
  background: linear-gradient(transparent 50%, #1B1B1B 50%);
}

.kuroda_systems {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4.5rem;
  margin-top: 3rem;
}
@media (max-width: 559.9px) {
  .kuroda_systems {
    flex-direction: column;
    gap: 3rem;
  }
}
.kuroda_systems > li {
  position: relative;
  padding-top: 2.4rem;
}
@media (min-width: 560px) {
  .kuroda_systems > li {
    width: calc(33.3333333333% - 3rem);
  }
}
.kuroda_systems > li .head {
  background-color: white;
  width: 86%;
  height: 8rem;
  padding: 0.4rem;
  font-weight: bold;
  border-radius: 10rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
  margin: 0 auto 1.6rem;
}
@media (max-width: 559.9px) {
  .kuroda_systems > li .head {
    width: 72%;
  }
}
.kuroda_systems > li .head .num {
  width: 7.2rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c3eaf2;
  color: #1B1B1B;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
}
.kuroda_systems > li .head .txt {
  font-size: 1.8rem;
  font-weight: bold;
}
.kuroda_systems > li .img {
  border-radius: 4rem 0 4rem 0;
  overflow: hidden;
}

.recruit_datas {
  margin-top: 4rem;
}
.recruit_datas > li {
  border: 0.1rem #ddd solid;
  padding: 0 3rem 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 559.9px) {
  .recruit_datas > li {
    padding: 0 2rem 2rem;
  }
}
.recruit_datas > li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.recruit_datas > li header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.recruit_datas > li header .head {
  font-size: 2rem;
  padding-top: 3rem;
}
@media (max-width: 559.9px) {
  .recruit_datas > li header .head {
    padding-top: 2rem;
  }
}
.recruit_datas > li header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #358AAC;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 3rem;
  transition: all 0.4s ease;
}
@media (max-width: 559.9px) {
  .recruit_datas > li header .icon {
    top: 2rem;
  }
}
.recruit_datas > li header .icon.open {
  background-color: #B3B1B9;
  transform: rotate(45deg);
}
.recruit_datas > li header .icon::before {
  content: "";
  display: block;
  background-color: white;
  width: 1.6rem;
  height: 0.3rem;
}
.recruit_datas > li header .icon::after {
  content: "";
  display: block;
  background-color: white;
  height: 1.6rem;
  width: 0.3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.recruit_datas > li .data_inner {
  margin-top: 3rem;
  display: none;
}

/**************
お問い合わせ
**************/
.byphone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80rem;
  margin: 3.2rem auto 3rem;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 559.9px) {
  .byphone {
    width: 100%;
  }
}
.byphone .box {
  height: 8rem;
  border: 0.3rem #358AAC solid;
  border-radius: 0.6rem;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .byphone .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.byphone .box p.blue {
  width: 12rem;
  padding-right: 0.4rem;
  height: 100%;
  background-color: #358AAC;
  font-family: "Afacad", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
@media (max-width: 559.9px) {
  .byphone .box p.blue {
    width: 88px;
  }
}
.byphone .box p.num {
  width: calc(100% - 12rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 900;
}
@media (max-width: 559.9px) {
  .byphone .box p.num {
    width: calc(100% - 88px);
  }
}

.contact_table,
.wpcf7 table {
  width: 100%;
}
.contact_table tr th,
.wpcf7 table tr th {
  border: 0.1rem solid #d3d3d3;
  padding: 1.8rem 2.4rem;
  width: 32%;
  vertical-align: middle;
  text-align: left;
  background-color: #f3f3f3;
}
@media (max-width: 820.9px) {
  .contact_table tr th,
.wpcf7 table tr th {
    display: block;
    width: 100%;
    padding: 0.5rem 1.2rem;
    border: none;
  }
}
.contact_table tr th .hissu_cell,
.wpcf7 table tr th .hissu_cell {
  position: relative;
}
.contact_table tr th .hissu_cell .hissu,
.wpcf7 table tr th .hissu_cell .hissu {
  background-color: #30479e;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 0.4rem 1.1rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1.3rem;
}
@media (max-width: 1199.9px) {
  .contact_table tr th .hissu_cell .hissu,
.wpcf7 table tr th .hissu_cell .hissu {
    padding: 0 0.7rem 0.1rem;
    margin-top: -1rem;
  }
}
.contact_table tr td,
.wpcf7 table tr td {
  padding: 1.8rem 2.4rem;
  border: 0.1rem solid #d3d3d3;
  width: 68%;
}
@media (max-width: 820.9px) {
  .contact_table tr td,
.wpcf7 table tr td {
    display: block;
    width: 100%;
    padding: 0.8rem 0 1.6rem;
    border: none;
  }
}
@media (min-width: 560px) {
  .contact_table tr:last-child th,
.wpcf7 table tr:last-child th {
    border-bottom: 0.1rem solid #d3d3d3;
  }
}
.contact_table tr:last-child td,
.wpcf7 table tr:last-child td {
  border-bottom: 0.1rem solid #d3d3d3;
}

.privacy_box {
  margin-top: 10px;
  height: 400px;
  padding: 2.4rem;
  border: 0.1rem #95a9bb solid;
  overflow-y: scroll;
}
@media (max-width: 559.9px) {
  .privacy_box {
    width: 100%;
    padding: 2rem;
    font-size: 1.5rem;
    height: 30rem;
  }
}
.privacy_box .privacy_policy_box *:first-child {
  margin-top: 0;
}
.privacy_box .privacy_policy_box ul {
  margin-top: 10px;
}
.privacy_box .privacy_policy_box p {
  margin-top: 10px;
}
.privacy_box .privacy_policy_box h3 {
  font-size: 110%;
  margin-top: 24px;
  margin-bottom: 8px;
}
.privacy_box .privacy_policy_box h4 {
  font-size: 105%;
  margin-top: 20px;
}
.privacy_box .privacy_policy_box h5 {
  margin-top: 15px;
}

.privacyCheck {
  margin: 2rem 0 1rem;
}
.privacyCheck p {
  margin: 1rem 0 0;
}
.privacyCheck .accept {
  margin-top: 2rem;
}
.privacyCheck .accept label {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

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

.c-input,
.c-select,
.c-textarea {
  background: #fff;
  border: 1px solid #d3d3d3;
  transition: background-color 100ms, border-color 100ms;
  width: 100%;
  box-sizing: border-box;
}

.c-select {
  padding: 5px 10px;
}

.c-input {
  height: 40px;
  padding: 2px 10px;
}
@media (max-width: 1199.9px) {
  .c-input {
    height: auto;
    padding: 8px 4%;
    box-sizing: border-box;
  }
}

@media (min-width: 560px) {
  .c-select-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.c-select-list__item {
  display: flex;
  align-items: center;
}
@media (min-width: 560px) {
  .c-select-list__item {
    width: 32%;
  }
}
@media (max-width: 820.9px) {
  .c-select-list__item {
    width: 80%;
    margin-bottom: 4px;
  }
}

.c-radio-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px -5px 0;
  width: 100%;
}
.c-radio-list__item {
  margin: 0 0 5px 0;
}
@media (max-width: 1199.9px) {
  .c-radio-list__item {
    text-align: left;
  }
}
.c-radio-list__item label {
  cursor: pointer;
  margin-right: 20px;
}
@media (max-width: 1199.9px) {
  .c-radio-list__item label {
    margin-right: 10px;
  }
}

.c-radio {
  position: relative;
  top: -3px;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

.c-textarea {
  height: 200px;
  width: 100%;
  padding: 8px 10px;
}
@media (max-width: 1199.9px) {
  .c-textarea {
    box-sizing: border-box;
    width: 100%;
    height: 120px;
  }
}

.form-btn {
  margin-top: 50px;
  text-align: center;
}

.c-submit,
.c-confirm,
.c-back {
  padding: 18px 0;
  text-align: center;
  width: 280px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .c-submit,
.c-confirm,
.c-back {
    transition: all 0.3s ease 0s;
  }
}
@media (max-width: 1199.9px) {
  .c-submit,
.c-confirm,
.c-back {
    width: 48%;
    padding: 15px 0;
  }
}

.c-submit {
  border: 2px #358AAC solid;
  color: #fff;
  background-color: #358AAC;
  font-weight: bold;
  font-size: 1.8rem;
}

.c-submit:hover {
  opacity: 0.8;
}

.c-confirm,
.c-back {
  border: 2px #777 solid;
  color: #777;
  background-color: #fff;
}

.c-confirm:hover,
.c-back:hover {
  background-color: #eee;
}

.btn-confirm, #btn_confirm {
  display: block;
  border-radius: 0.5rem;
  max-width: 40rem;
  width: 90%;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto;
  transition: all 0.3s ease 0s;
  font-weight: bold;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.btn-confirm.hoverOn, .hoverOn#btn_confirm {
  border: 0.2rem solid #358AAC;
  background-color: #358AAC;
  color: white;
  cursor: pointer;
}
.btn-confirm:disabled, #btn_confirm:disabled {
  border: 0.2rem #c7c3c3 solid;
  background-color: #c7c3c3;
  cursor: not-allowed;
  color: white;
}

.btns .btn {
  color: white;
  font-size: 22px;
  font-weight: 600;
  height: auto;
  width: 370px;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 18px 0;
  margin: 0 5px 20px;
}
@media (max-width: 1199.9px) {
  .btns .btn {
    font-size: 18px;
    width: 90%;
    margin: 0 auto 20px;
  }
}

.wpcf7cp-btns {
  margin-top: 30px;
  text-align: center;
}
.wpcf7cp-btns button {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  height: auto;
  width: 370px;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 18px 0;
  margin: 0 5px 20px;
}
@media (max-width: 1199.9px) {
  .wpcf7cp-btns button {
    font-size: 18px;
    width: 90%;
    margin: 0 auto 20px;
  }
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background-color: #81c320;
  border-bottom: 3px solid #679b1b;
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn:hover {
  background-color: #a2d400;
  border-color: #a2d400;
}
.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn {
  background-color: #21b2c1;
  border-bottom: 3px solid #1d8691;
  border-color: #21b2c1 #21b2c1 #1d8691;
}
.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn:hover {
  background-color: #2fccdc;
  border-bottom: 3px solid #1d8691;
  border-color: #2fccdc #2fccdc #2fccdc;
}

input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  border-radius: 50%;
  position: relative;
  top: -2px;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  border-radius: 50%;
}

.c-radio,
.c-checkbox {
  margin-right: 5px;
  position: relative;
  top: -0.1em;
}

.alert-block {
  border: 2px tomato solid;
  padding: 24px;
  color: red;
  font-weight: bold;
}

.help-block {
  display: block;
  color: tomato;
  font-size: 12px;
  font-weight: bold;
  margin-top: 3px;
}

.wpcf7-response-output {
  background-color: #fff0f0;
  text-align: center;
  color: red;
  padding: 24px !important;
  border-radius: 4px;
  border: none !important;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.3rem !important;
  font-weight: bold !important;
  margin-top: 3px !important;
}

/**************
プライバシーポリシー
**************/
.privacy {
  background-color: #fff;
}
@media (min-width: 560px) {
  .privacy {
    padding: 0 24px;
  }
}
.privacy *:first-child {
  margin-top: 0;
}
.privacy ul {
  margin-top: 10px;
}
.privacy ul li {
  margin-top: 5px;
}
.privacy p {
  margin-top: 24px;
}
.privacy h3 {
  font-size: 110%;
  margin-top: 24px;
  margin-bottom: 8px;
}
.privacy h4 {
  font-size: 105%;
  margin-top: 20px;
}
.privacy h5 {
  margin-top: 15px;
}
/*# sourceMappingURL=styles.css.map */