@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&family=Nunito:wght@600;700;800&display=swap");
/**************
Sass Mixin
**************/
/**************
Basic Setting
**************/
html {
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  color: #191718;
  font-size: 1.6em;
  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: 1.8;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
body.admin-bar {
  position: relative;
}

select,
input,
button,
textarea {
  font: 99% "Nunito", "Noto Sans JP", 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: 8px;
  text-indent: -9999px;
  outline: none;
  opacity: 0.7;
  z-index: 10;
}
@media (min-width: 560px) {
  #pagetop {
    width: 60px;
    height: 60px;
    bottom: -60px;
  }
}
@media (max-width: 820.9px) {
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: -50px;
  }
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

a {
  text-decoration: none;
  color: #1d56c6;
  outline: none;
  font-weight: bold;
}
a:hover {
  color: #5f79ad;
}

/**************
Layout Set
**************/
.wrap {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .wrap {
    max-width: 1160px;
  }
  .wrap.w1300 {
    max-width: 1300px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .wrap {
    width: 92%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .wrap {
    width: 92%;
  }
}
@media (max-width: 559.9px) {
  .wrap {
    width: 88%;
  }
}

.middlewrap {
  width: 92%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .middlewrap {
    width: 88%;
  }
}

.shortwrap {
  width: 92%;
  max-width: 856px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .shortwrap {
    width: 88%;
  }
}

.page_section {
  padding: 48px 0 80px;
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .page_section {
    padding: 40px 0 40px;
  }
}
.page_section__black {
  background-color: #191718;
}
.page_section__white {
  background-color: #fff;
}
.page_section__gray {
  background-color: #C1C1C1;
}
.page_section__blue {
  background-color: #284B7D;
}
.page_section__red {
  background-color: #E45656;
}
.page_section__lightGray {
  background-color: #F5F5F5;
}
.page_section__lightBlue {
  background-color: #ACCFE7;
}

.page_section_l {
  padding: 80px 0 100px;
}
@media (max-width: 559.9px) {
  .page_section_l {
    padding: 64px 0 80px;
  }
}

/**************
Header
**************/
#header {
  z-index: 10;
  width: 100%;
  height: 80px;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  left: 0;
  top: 0;
}
@media (max-width: 559.9px) {
  #header {
    height: 53px;
  }
}
#header.fixed {
  background-color: rgba(0, 0, 0, 0.8);
}

.header_inner {
  position: relative;
  width: 96%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199.9px) {
  .header_inner {
    width: 100%;
    padding-left: 16px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .header_inner {
    padding-right: 128px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .header_inner {
    padding-right: 88px;
  }
}

.header_logo {
  text-align: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (min-width: 560px) {
  .header_logo {
    width: 216px;
  }
}
@media (max-width: 820.9px) {
  .header_logo {
    position: relative;
    z-index: 4;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .header_logo {
    width: 150px;
  }
}
@media (max-width: 559.9px) {
  .header_logo {
    width: 130px;
  }
}
.header_logo img {
  display: block;
  max-width: 100%;
  transition: opacity 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  opacity: 1;
}

@media (min-width: 1200px) {
  .global_navi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    margin-left: auto;
    margin-right: 40px;
  }
}
@media (max-width: 1199.9px) {
  .global_navi {
    height: 100vh;
    position: fixed;
    top: 0;
    transition: all 0.2s ease;
    overflow: auto;
    z-index: 11;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: -2px 0 3px rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .global_navi {
    width: 400px;
    right: -440px;
  }
}
@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: 105%;
    top: 0;
    height: 100vh;
    padding-top: 96px;
  }
}

@media (min-width: 821px) and (max-width: 1199.9px) {
  .opened .global_navi {
    right: 0;
  }
}
@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: 1200px) {
  .navi_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
@media (max-width: 1199.9px) {
  .navi_ul {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .navi_ul {
    margin-top: 120px;
  }
}
@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: 1200px) {
  .navi_ul > li {
    position: relative;
    height: 100%;
    margin: 0 6px;
  }
  .navi_ul > li::after {
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 0;
    height: 1px;
    background: white;
    content: "";
    transition: all 0.3s;
    z-index: 100;
  }
  .navi_ul > li:hover::after, .navi_ul > li.selected::after {
    left: 0;
    width: 100%;
  }
}
@media (max-width: 1199.9px) {
  .navi_ul > li {
    margin-bottom: 8px;
  }
}
.navi_ul > li.toggle {
  position: relative;
  font-weight: bold;
}
@media (max-width: 1199.9px) {
  .navi_ul > li.toggle::after {
    position: absolute;
    top: 26px;
    right: 10px;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    color: #191718;
  }
}
@media (min-width: 560px) {
  .navi_ul > li.toggle:hover .megamenu {
    max-height: 9999px;
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .navi_ul > li.recruit {
    display: none;
  }
}

.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;
}
@media (min-width: 1200px) {
  .header-nav-item {
    width: 100%;
    height: 100%;
    position: relative;
    font-weight: bold;
    padding: 0 4px;
    cursor: pointer;
    color: white;
  }
  .header-nav-item:hover {
    color: white;
  }
}
@media (max-width: 1199.9px) {
  .header-nav-item {
    color: #444;
    text-align: center;
    padding: 16px 0;
    display: block;
    width: 100%;
    line-height: 1.3;
    background-color: white;
    border-radius: 8px;
  }
}
.header-nav-item i {
  margin-right: 5px;
}
.header-nav-item i.icon-catalogue {
  width: 20px;
  height: 20px;
  background: url(../images/icon/icon-catalogue.png) no-repeat;
  background-size: cover;
}
.header-nav-item i.icon-mail {
  width: 20px;
  height: 20px;
  background: url(../images/icon/icon-mail-white.png) no-repeat;
  background-size: cover;
}

.megamenu {
  background-color: white;
  padding: 16px 24px;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .megamenu {
    transition: all 0.6s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: 160px;
    z-index: 4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .megamenu.w200 {
    width: 200px;
  }
}
@media (max-width: 1199.9px) {
  .megamenu {
    display: none;
    margin-top: 8px;
  }
}
@media (min-width: 1200px) {
  .megamenu .inner_ul {
    padding: 3px 0 0;
  }
}
@media (max-width: 1199.9px) {
  .megamenu .inner_ul {
    margin-top: 16px;
    padding: 0 4px 12px;
  }
}
.megamenu .inner_ul li {
  padding: 3px 0 0;
}
.megamenu .inner_ul li a {
  letter-spacing: 0.04em;
  color: #191718;
}
@media (min-width: 1200px) {
  .megamenu .inner_ul li a {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .megamenu .inner_ul li a:hover {
    color: #191718;
  }
}
@media (max-width: 1199.9px) {
  .megamenu .inner_ul li a {
    display: block;
    position: relative;
    font-size: 1.4rem;
    justify-content: flex-start;
    text-align: left;
    padding: 5px 0 5px 12px;
    color: #191718;
  }
}
.megamenu .inner_ul li a::after {
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: #191718;
  content: "";
  transition: all 0.3s;
  z-index: 100;
}
.megamenu .inner_ul li a:hover::after {
  left: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .megamenu .inner_ul li.pc-none {
    display: none;
  }
}
.fixed .megamenu .inner_ul li a {
  color: #191718;
}

@media (min-width: 560px) {
  .header_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 292px;
  }
}
@media (max-width: 559.9px) {
  .header_buttons {
    display: none;
  }
}
.header_buttons > a,
.header_buttons .recruit_btn > a {
  height: 40px;
  padding: 0 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  gap: 8px;
  transition: all 0.3s ease;
}
.header_buttons > a:hover,
.header_buttons .recruit_btn > a:hover {
  opacity: 0.8;
}
.header_buttons > a.header_button-recruit,
.header_buttons .recruit_btn > a.header_button-recruit {
  background-color: #FFD700;
  color: #191718;
}
.header_buttons > a.header_button-contact,
.header_buttons .recruit_btn > a.header_button-contact {
  background-color: #284B7D;
  color: white;
}
.header_buttons .recruit_btn {
  position: relative;
}
.header_buttons .recruit_btn a {
  position: relative;
  z-index: 5;
}
.header_buttons .recruit_btn .megamenu {
  background-color: #FFD700;
  width: 220px;
  top: 110%;
}
.header_buttons .recruit_btn .megamenu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-bottom: 10px solid #FFD700;
}
@media (min-width: 560px) {
  .header_buttons .recruit_btn:hover .megamenu {
    overflow: visible;
    max-height: 9999px;
    opacity: 1;
  }
}

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

.menuBtn {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 1001;
  display: block;
  width: 80px;
  height: 75px;
  background: transparent;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 1200px) {
  .menuBtn {
    display: none;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .menuBtn {
    width: 64px;
    height: 64px;
    top: 7px;
    right: 16px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .menuBtn {
    width: 64px;
    height: 64px;
    top: 7px;
    right: 16px;
  }
}
@media (max-width: 559.9px) {
  .menuBtn {
    width: 50px;
    height: 50px;
    background: transparent;
    top: 2px;
    right: 14px;
  }
}
.menuBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 35px;
  height: 2px;
  margin-left: -17px;
  background: white;
  transition: all 0.5s;
}
@media (max-width: 559.9px) {
  .menuBtn span {
    width: 25px;
    margin-left: -12px;
    top: 40%;
    height: 1px;
  }
}
.menuBtn span.top {
  transform: translateY(-4px);
}
@media (max-width: 559.9px) {
  .menuBtn span.top {
    transform: translateY(0);
  }
}
.menuBtn span.bottom {
  transform: translateY(10px);
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .menuBtn span.bottom {
    transform: translateY(4px);
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .menuBtn span.bottom {
    transform: translateY(4px);
  }
}
@media (max-width: 559.9px) {
  .menuBtn span.bottom {
    transform: translateY(6px);
  }
}
.menuBtn.menu-open span {
  background: white;
}
.menuBtn.menu-open span.top {
  transform: rotate(-45deg) translateY(0px);
}
.menuBtn.menu-open span.middle {
  background: rgba(255, 255, 255, 0);
  transform: translateX(30px);
}
.menuBtn.menu-open span.bottom {
  transform: rotate(45deg) translateY(0px);
}

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

/**************
Footer
**************/
.foot_cta {
  width: 100%;
  overflow: hidden;
  background: url(../images/common/cta_bg.jpg) no-repeat;
  background-size: cover;
  padding: 160px 0;
}
@media (max-width: 820.9px) {
  .foot_cta {
    padding: 80px 0;
  }
}
.foot_cta .wrap {
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 821px) {
  .foot_cta .wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4vw;
  }
}
.foot_cta .leftSide {
  color: white;
}
@media (min-width: 821px) {
  .foot_cta .leftSide {
    width: 450px;
  }
}
@media (max-width: 820.9px) {
  .foot_cta .leftSide .big-title {
    text-align: center;
  }
}
.foot_cta .leftSide .cta_left_text {
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 820.9px) {
  .foot_cta .leftSide .cta_left_text {
    font-size: 1.6rem;
    text-align: center;
  }
}
.foot_cta .leftSide .foot_cta_tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 820.9px) {
  .foot_cta .leftSide .foot_cta_tel {
    justify-content: center;
  }
}
.foot_cta .leftSide .foot_cta_tel .icon-phone {
  display: block;
  width: 48px;
}
.foot_cta .leftSide .foot_cta_tel .num {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
}
@media (max-width: 559.9px) {
  .foot_cta .leftSide .foot_cta_tel .num {
    font-size: 3rem;
  }
}
.foot_cta .leftSide .foot_cta_tel .num + p {
  color: white;
}
@media (max-width: 559.9px) {
  .foot_cta .leftSide .foot_cta_tel .num + p {
    font-size: 1.3rem;
  }
}
.foot_cta .fcta_column {
  width: 300px;
}
@media (max-width: 820.9px) {
  .foot_cta .fcta_column {
    margin: 30px auto 0;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .fcta_column {
    width: 600px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}
@media (max-width: 559.9px) {
  .foot_cta .fcta_column {
    width: 90%;
  }
}
.foot_cta .fcta_column .btn-white {
  width: 100%;
}
.foot_cta .fcta_column .fcta_set {
  color: white;
  text-align: center;
}
.foot_cta .fcta_column .fcta_set:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .fcta_column .fcta_set {
    width: 280px;
  }
}
.foot_cta .fcta_column .fcta_set .head {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.7rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .foot_cta .fcta_column .fcta_set .head {
    font-size: 1.5rem;
  }
}
.foot_cta .fcta_column .fcta_set .head + p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.foot_cta .fcta_column .fcta_set .icon-download {
  display: block;
  width: 24px;
  margin: 0 auto 12px;
}

#footer {
  bottom: 0;
  box-sizing: border-box;
  background-color: #284B7D;
  padding-top: 64px;
}
@media (max-width: 559.9px) {
  #footer {
    padding-top: 32px;
  }
}

.footer_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 821px) {
  .footer_inner {
    padding: 40px 0;
    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;
  }
}
.footer_inner .footlogo {
  display: block;
}
@media (min-width: 560px) {
  .footer_inner .footlogo {
    width: 270px;
  }
}
@media (max-width: 820.9px) {
  .footer_inner .footlogo {
    margin: 0 auto;
  }
}
@media (max-width: 559.9px) {
  .footer_inner .footlogo {
    width: 200px;
  }
}
@media (min-width: 821px) {
  .footer_inner .infoSide {
    width: 400px;
  }
}
.footer_inner .infoSide .footinfoArea {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 559.9px) {
  .footer_inner .infoSide .footinfoArea {
    font-size: 1.2rem;
  }
}
.footer_inner .infoSide .footinfoArea .footinfo {
  font-size: 1.5rem;
  color: white;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_inner .infoSide .footinfoArea .footinfo {
    text-align: center;
  }
}
.footer_inner .infoSide .footinfoArea .footinfo:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 821px) {
  .footer_inner .naviSide {
    width: calc(100% - 560px);
  }
}

.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 .foot_navi_column .head {
  margin-bottom: 8px;
}
.footer_navi .foot_navi_column .head a {
  color: white;
  font-weight: normal;
  transition: all 0.3s ease;
}
.footer_navi .foot_navi_column .head a:hover {
  color: #FFD700;
}
.footer_navi .foot_navi_column ul li {
  padding-left: 13px;
  margin-left: 8px;
  position: relative;
}
.footer_navi .foot_navi_column ul li:not(:last-child) {
  margin-bottom: 2px;
}
.footer_navi .foot_navi_column ul li a {
  display: flex;
  font-size: 1.4rem;
  color: white;
  font-weight: normal;
  transition: all 0.3s ease;
}
.footer_navi .foot_navi_column ul li a:hover {
  color: #FFD700;
}
.footer_navi .foot_navi_column ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 10px;
}
.footer_navi .foot_navi_column ul + p {
  margin-top: 10px;
}

.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: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  padding: 24px 0;
}
@media (max-width: 820.9px) {
  .copyright {
    font-size: 1.2rem;
  }
}

/**************
Common Parts
**************/
/* Titles */
.title1 {
  font-size: 3.2rem;
  position: relative;
  margin-bottom: 24px;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 820.9px) {
  .title1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

.title2 {
  font-size: 3.2rem;
  position: relative;
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  padding-bottom: 16px;
}
.title2::before, .title2::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.title2::before {
  width: 100%;
  background-color: #e5e5e5;
}
.title2::after {
  width: 160px;
  background-color: #284B7D;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .title2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 820.9px) {
  .title2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

.title3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding: 6px 0 6px 20px;
  border-bottom: 1px #ccc solid;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .title3 {
    font-size: 1.7rem;
  }
}
.title3::before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 90%;
  background-color: #284B7D;
  margin-right: 13px;
  position: absolute;
  left: 0;
  top: 5%;
}

.title4 {
  font-size: 1.7rem;
  font-weight: bold;
  color: #666;
  position: relative;
  padding: 4px 0 4px 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.title4::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 80%;
  background-color: #284B7D;
  position: absolute;
  left: 0;
  top: 10%;
}

.big-title {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .big-title {
    margin-bottom: 20px;
  }
}
.big-title .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.5;
  line-height: 1;
  text-transform: uppercase;
  color: #E45656;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .big-title .eng {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .big-title .eng {
    font-size: 1.6rem;
  }
}
.big-title .jp {
  font-weight: bold;
  font-size: 4.4rem;
  color: #191718;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .big-title .jp {
    font-size: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .big-title .jp {
    font-size: 2.2rem;
  }
}
.big-title.center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.big-title.white {
  color: white;
}
.big-title.white .jp,
.big-title.white .eng {
  color: white;
}

.small-title {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .small-title {
    margin-bottom: 20px;
  }
}
.small-title .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
  line-height: 1;
  text-transform: uppercase;
  color: #E45656;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .small-title .eng {
    font-size: 5.6rem;
  }
}
@media (max-width: 559.9px) {
  .small-title .eng {
    font-size: 3.6rem;
  }
}
.small-title .jp {
  font-weight: bold;
  font-size: 4.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .small-title .jp {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .small-title .jp {
    font-size: 1.5rem;
  }
}
.small-title.center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.small-title.white {
  color: white;
}
.small-title.white .jp,
.small-title.white .eng {
  color: white;
}

@media (min-width: 560px) {
  .horizontal_tit {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
@media (max-width: 559.9px) {
  .horizontal_tit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media (min-width: 560px) {
  .horizontal_tit.end {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row-reverse;
    margin-left: auto;
  }
}
.horizontal_tit .jp {
  position: relative;
  color: #191718;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: bold;
  top: 2px;
}
@media (max-width: 559.9px) {
  .horizontal_tit .jp {
    display: block;
    font-size: 1.9rem;
  }
}
.horizontal_tit .jp .red {
  color: #E45656;
}
.horizontal_tit .jp .blue {
  color: #284B7D;
}
.horizontal_tit .jp .yellow {
  color: #FAF32C;
}
.horizontal_tit .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #284B7D;
  position: relative;
}
@media (min-width: 560px) {
  .horizontal_tit .eng {
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 559.9px) {
  .horizontal_tit .eng {
    font-size: 1.5rem;
  }
}
@media (min-width: 560px) {
  .horizontal_tit .eng::before {
    width: 2px;
    height: 70%;
    content: "";
    display: block;
    background-color: #284B7D;
    position: absolute;
    left: 0;
    top: 12%;
  }
}
.horizontal_tit.white .jp {
  color: white;
}
.horizontal_tit.white .eng {
  color: #07afbf;
}
.horizontal_tit.white .eng::before {
  background-color: #07afbf;
}

.center-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.center-title.text28 {
  font-size: 2.8rem;
}
@media (max-width: 559.9px) {
  .center-title.text28 {
    font-size: 2.2rem;
  }
}
.center-title span {
  color: #284B7D;
}
@media (max-width: 820.9px) {
  .center-title {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}

.center-title2 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.center-title2.mb10 {
  margin-bottom: 10px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .center-title2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 559.9px) {
  .center-title2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 820.9px) {
  .center-title2 br {
    display: none;
  }
}

.blue-title {
  background-color: #284B7D;
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .blue-title {
    font-size: 2rem;
  }
}
@media (max-width: 820.9px) {
  .blue-title {
    font-size: 1.8rem;
  }
}

.lined_title {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .lined_title {
    margin-bottom: 24px;
  }
}
.lined_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: #C1C1C1;
}
.lined_title span {
  display: inline-block;
  padding: 0 1% 8px;
  font-size: 2.1rem;
  color: #284B7D;
  position: relative;
  z-index: 1;
  border-bottom: 3px solid #284B7D;
}
.lined_title.blue::after {
  background-color: white;
}
.lined_title.blue span {
  background-color: #284B7D;
  color: white;
  border-bottom: 3px solid #d6f223;
}
.lined_title.gblue::after {
  background-color: white;
}
.lined_title.gblue span {
  background-color: #284B7D;
  color: white;
}

.line_title2 {
  position: relative;
  padding-left: 26px;
}
.line_title2::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 80px;
  display: inline-block;
  background-color: #C1C1C1;
  left: 0;
}
@media (min-width: 560px) {
  .line_title2::before {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 559.9px) {
  .line_title2::before {
    height: 100%;
    top: 0;
  }
}
.line_title2 .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E45656;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  .line_title2 .eng {
    font-size: 1.4rem;
  }
}
.line_title2 .jp {
  font-size: 3.6rem;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .line_title2 .jp {
    font-size: 2.2rem;
  }
}

.line_title3 {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 559.9px) {
  .line_title3 {
    display: block;
  }
}
.line_title3 .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  color: #E45656;
  text-transform: uppercase;
  position: relative;
}
.line_title3 .eng::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4px;
  height: 40px;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #C1C1C1;
}
@media (max-width: 559.9px) {
  .line_title3 .eng::after {
    display: none;
  }
}
.line_title3 .jp {
  font-weight: 700;
  font-size: min(3.6rem, 3vw);
}
@media (max-width: 820.9px) {
  .line_title3 .jp {
    font-size: 2.2rem;
  }
}
@media (max-width: 559.9px) {
  .line_title3 .jp {
    font-size: 1.8rem;
  }
}

.title_with_num {
  position: relative;
  padding-left: 80px;
  padding-bottom: 16px;
  font-size: 2.4rem;
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .title_with_num {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 56px;
  }
}
.title_with_num::before {
  content: attr(data-number);
  position: absolute;
  top: -35px;
  left: 0;
  color: rgba(201, 63, 63, 0.3);
  font-size: 6rem;
}
@media (max-width: 559.9px) {
  .title_with_num::before {
    font-size: 3.2rem;
    top: -38%;
  }
}
.title_with_num::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, #d99e9e 0px, #b48383 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 10px 10px;
  z-index: 1;
}

.tit_404 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #284B7D;
}

/* Buttons */
.btn-black {
  width: 280px;
  height: 60px;
  border: 2px #191718 solid;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #191718;
  transition: all 0.4s ease;
}
.btn-black.w300 {
  width: 300px;
}
.btn-black.w350 {
  width: 350px;
}
@media (max-width: 559.9px) {
  .btn-black.w350 {
    width: 320px;
  }
}
.btn-black.bg_white {
  background-color: #fff;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .btn-black.bg_white {
    width: 200px;
    line-height: 1.2;
  }
}
.btn-black.qa {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 2px #191718 solid;
}
@media (min-width: 560px) {
  .btn-black.qa br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .btn-black.qa:nth-child(n+2) {
    margin-top: 10px;
  }
}
.btn-black.qa .txt {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 50px 10px 20px;
  line-height: 1.2;
}
@media (max-width: 559.9px) {
  .btn-black {
    height: 50px;
  }
}
.btn-black .txt {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 64px 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .btn-black .txt {
    font-size: 1.4rem;
    padding: 0 30px 0 15px;
  }
}
.btn-black i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .btn-black i {
    right: 12px;
  }
}
.btn-black:hover {
  background-color: #191718;
  color: white;
}

@-webkit-keyframes btn_anim {
  0% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
  20% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  100% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
}

@keyframes btn_anim {
  0% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
  20% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  100% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
}
@-webkit-keyframes btn_anim_out {
  0% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
  20% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  100% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
}
@keyframes btn_anim_out {
  0% {
    right: 0;
    max-width: 100%;
    max-height: 100%;
  }
  20% {
    right: 0;
    max-width: 100%;
    max-height: 70px;
  }
  50% {
    right: 0;
    max-width: 70px;
    max-height: 70px;
  }
  100% {
    max-width: 50px;
    max-height: 50px;
    right: 7px;
  }
}
.btn-white {
  width: 240px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.3019607843);
  border-radius: 4px;
  color: white;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
  padding-right: 16px;
}
@media (min-width: 560px) {
  .btn-white {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .btn-white {
    max-width: 100%;
  }
}
.btn-white.eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
}
.btn-white i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.btn-white:hover {
  color: white;
  background-color: rgba(255, 215, 0, 0.3019607843);
}

.btn-darkBlue {
  width: 240px;
  height: 54px;
  background-color: #284B7D;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
  padding-right: 16px;
}
.btn-darkBlue.red {
  background-color: #E45656;
}
.btn-darkBlue.w310 {
  width: 310px;
}
@media (min-width: 560px) {
  .btn-darkBlue {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .btn-darkBlue {
    max-width: 100%;
  }
}
.btn-darkBlue.eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
}
.btn-darkBlue i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.btn-darkBlue:hover {
  color: #191718;
  background-color: rgba(255, 215, 0, 0.3019607843);
}

.btn_mt50 {
  margin-top: 50px;
}

.btn-pink {
  width: 240px;
  height: 56px;
  background-color: #FF8DA2;
  border-radius: 4px;
  color: #191718;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
  padding-left: 16px;
}
@media (max-width: 559.9px) {
  .btn-pink {
    max-width: 100%;
  }
}
.btn-pink i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  z-index: 1;
}
.btn-pink:hover {
  color: #191718;
  background-color: #ffa3c3;
}

.btn-yellow {
  width: 240px;
  height: 56px;
  background-color: #FAF32C;
  border-radius: 4px;
  color: #191718;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  overflow: hidden;
  padding-left: 16px;
}
@media (max-width: 559.9px) {
  .btn-yellow {
    max-width: 100%;
  }
}
.btn-yellow i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  z-index: 1;
}
.btn-yellow:hover {
  color: #191718;
  background-color: #ffea83;
}

.lined_link {
  width: 280px;
  color: #284B7D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px #284B7D solid;
  height: 60px;
  padding: 0 32px 0 8px;
  position: relative;
}
.lined_link::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #ACCFE7;
  transition: all 0.4s ease-in-out;
}
.lined_link i {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -8px;
}
.lined_link:hover::after {
  max-width: 100%;
}

.btn-with-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.btn-with-arrow .arrow {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #284B7D;
  margin-right: 12px;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.btn-with-arrow .arrow i {
  color: white;
}
.btn-with-arrow .txt {
  display: inline-block;
  position: relative;
  padding: 10px 4px 8px;
  color: #191718;
}
.btn-with-arrow .txt::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #191718;
}
.btn-with-arrow:hover .arrow {
  transform: scale(1.1);
}
.btn-with-arrow.white .arrow {
  background-color: white;
}
.btn-with-arrow.white .arrow i {
  color: #284B7D;
}
.btn-with-arrow.white .txt {
  color: white;
}
.btn-with-arrow.white .txt::before {
  background-color: white;
}

/* Tables */
.table-s1 {
  width: 100%;
}
.table-s1 th {
  padding: 12px 24px;
  text-align: left;
}
@media (min-width: 560px) {
  .table-s1 th {
    border-bottom: 1px #E45656 solid;
    width: 200px;
  }
}
@media (max-width: 559.9px) {
  .table-s1 th {
    width: 100%;
    display: block;
    background-color: #f3f3f3;
    padding: 8px;
  }
}
.table-s1 td {
  padding: 12px 24px;
}
@media (min-width: 560px) {
  .table-s1 td {
    border-bottom: 1px #ddd solid;
  }
}
@media (max-width: 559.9px) {
  .table-s1 td {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
}

.table-s2 {
  width: 100%;
}
@media (max-width: 820.9px) {
  .table-s2 {
    font-size: 1.3rem;
  }
}
.table-s2 th {
  width: 180px;
  padding: 5px 0;
  border: 1px #ddd solid;
  text-align: center;
  background-color: #f3f3f3;
}
@media (min-width: 1200px) {
  .table-s2 th {
    text-align: left;
    padding: 8px 32px;
  }
}
@media (max-width: 1199.9px) {
  .table-s2 th {
    padding: 3px;
    width: 80px;
  }
}
.table-s2 td {
  border: 1px #ddd solid;
  background-color: white;
}
@media (min-width: 1200px) {
  .table-s2 td {
    text-align: left;
    padding: 8px 32px;
  }
}
@media (max-width: 1199.9px) {
  .table-s2 td {
    padding: 3px 5px;
  }
}

.table_facilty {
  width: 100%;
  min-width: 850px;
}
.table_facilty th {
  padding: 6px 15px;
  text-align: left;
  font-size: 1.8rem;
  border-bottom: 2px #E45656 solid;
}
@media (max-width: 820.9px) {
  .table_facilty th {
    font-size: 1.4rem;
    padding: 3px 15px;
  }
}
.table_facilty td {
  padding: 6px 15px;
  border-bottom: 1px #C1C1C1 solid;
}
@media (max-width: 820.9px) {
  .table_facilty td {
    font-size: 1.4rem;
    padding: 3px 15px;
  }
}
.table_facilty .center {
  text-align: center;
  padding: 2px 0;
}

.table-c1-box {
  /**background-colorあり**/
  padding: 30px 40px;
}
.table-c1-box .table-c1 {
  width: 100%;
}
.table-c1-box .table-c1 th {
  width: 28%;
  font-weight: 700;
  border-bottom: #284B7D 2px solid;
  padding: 20px 5px;
}
@media (max-width: 820.9px) {
  .table-c1-box .table-c1 th {
    padding: 20px 5px;
    width: 25%;
  }
}
@media (max-width: 559.9px) {
  .table-c1-box .table-c1 th {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 10px 0 2px;
    font-size: 1.4rem;
  }
}
.table-c1-box .table-c1 td {
  padding: 20px 24px;
  border-bottom: #C1C1C1 1px solid;
  gap: 0 60px;
}
.table-c1-box .table-c1 td.flex {
  display: flex;
  align-items: center;
}
@media (max-width: 559.9px) {
  .table-c1-box .table-c1 td.flex {
    display: block;
  }
}
.table-c1-box .table-c1 td.flex .table-img {
  width: 200px;
}
@media (max-width: 559.9px) {
  .table-c1-box .table-c1 td.flex .table-img {
    margin-top: 10px;
  }
}
@media (max-width: 820.9px) {
  .table-c1-box .table-c1 td {
    padding: 20px 24px;
  }
}
@media (max-width: 559.9px) {
  .table-c1-box .table-c1 td {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.4rem;
  }
}
.table-c1-box .table-c1 td dl {
  margin-bottom: 20px;
}
.table-c1-box .table-c1 td dl:last-child {
  margin-bottom: 0;
}
.table-c1-box .table-c1 td dl dt {
  display: flex;
  align-items: center;
}
@media (max-width: 820.9px) {
  .table-c1-box .table-c1 td dl dt {
    display: block;
  }
}
.table-c1-box .table-c1 td dl dt::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-flex;
  background-color: #FFF5F5;
  border-radius: 3px 3px 3px 0;
  margin-right: 8px;
}
@media (max-width: 820.9px) {
  .table-c1-box .table-c1 td dl dt::before {
    width: 10px;
    height: 10px;
  }
}

.table-c2 {
  /**background-colorなし**/
  width: 100%;
  margin-top: 30px;
}
.table-c2 tr:first-child th {
  border-top: #284B7D 2px solid;
}
.table-c2 tr:first-child td {
  border-top: #C1C1C1 1px solid;
}
.table-c2 tr th {
  width: 28%;
  font-weight: 700;
  border-bottom: #284B7D 2px solid;
  padding: 13px 5px;
}
@media (max-width: 820.9px) {
  .table-c2 tr th {
    padding: 20px 5px;
    width: 25%;
  }
}
@media (max-width: 559.9px) {
  .table-c2 tr th {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 10px 0 2px;
    font-size: 1.4rem;
  }
}
.table-c2 tr td {
  padding: 13px 24px;
  border-bottom: #C1C1C1 1px solid;
}
.table-c2 tr td.flex {
  display: flex;
  align-items: center;
}
@media (max-width: 559.9px) {
  .table-c2 tr td.flex {
    display: block;
  }
}
.table-c2 tr td.flex .table-img {
  width: 200px;
}
@media (max-width: 559.9px) {
  .table-c2 tr td.flex .table-img {
    margin-top: 10px;
  }
}
@media (max-width: 820.9px) {
  .table-c2 tr td {
    padding: 20px 24px;
  }
}
@media (max-width: 559.9px) {
  .table-c2 tr td {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.4rem;
  }
}
.table-c2 tr td dl {
  margin-bottom: 20px;
}
.table-c2 tr td dl:last-child {
  margin-bottom: 0;
}
.table-c2 tr td dl dd {
  padding-left: 1.5rem;
}

.table-a {
  width: 85%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 20px 15px;
}
@media (max-width: 820.9px) {
  .table-a {
    width: 100%;
    border-spacing: 10px 10px;
  }
}
.table-a tr th {
  padding: 8px 0;
}
.table-a tr td {
  padding: 8px 0;
}

/* Parts */
.sq1, .sq_black {
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
}
.sq1::before, .sq_black::before {
  width: 10px;
  height: 10px;
  background-color: #FAF32C;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
}

.sq_white {
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
  color: white;
}
.sq_white::before {
  width: 10px;
  height: 10px;
  background-color: white;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
}

/* 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: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  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: #284B7D;
}

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

.blueBox {
  background-color: #f3f6ff;
  padding: 40px;
  border-radius: 16px;
}
@media (max-width: 820.9px) {
  .blueBox {
    padding: 16px;
  }
}

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

.text-white {
  color: white;
}

.page_top_text {
  text-align: center;
  font-size: 2rem;
  width: 90%;
  margin: 0 auto 50px;
}
@media (max-width: 559.9px) {
  .page_top_text br {
    display: none;
  }
}
.page_top_text.lot {
  margin-top: 30px;
}
@media (max-width: 820.9px) {
  .page_top_text {
    font-size: 1.6rem;
    width: 100%;
    margin: 0 auto 30px;
  }
}

.white_text {
  color: white;
}

.blue_text {
  color: #284B7D;
  font-weight: bold;
}

.bold {
  font-weight: 700;
}

.text15 {
  font-size: 1.5rem;
}

.text16 {
  font-size: 1.6rem;
}

.text_center {
  text-align: center;
}

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

.anchor_low {
  padding-top: 48px;
  margin-top: -48px;
}
@media (max-width: 820.9px) {
  .anchor_low {
    padding-top: 40px;
    margin-top: -40px;
  }
}

.sp-scroll {
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 820.9px) {
  .sp-scroll {
    overflow-x: auto;
  }
}
.sp-scroll::-webkit-scrollbar {
  display: none;
}
.sp-scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.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 (min-width: 560px) and (max-width: 820.9px) {
  .pc_only {
    display: none;
  }
}
@media (max-width: 820.9px) {
  .pc_only {
    display: none;
  }
}

@media (min-width: 560px) {
  .sp_only {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .sp_only {
    display: block !important;
  }
}

.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;
  }
}
/**************
HOME
**************/
.contentBg {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: 0;
}
.contentBg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #acadb1;
  mix-blend-mode: multiply;
  z-index: 1;
}
.contentBg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.contentBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 1200px) {
  .contentBg.pageTitleHeight {
    height: 585px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .contentBg.pageTitleHeight {
    height: 413px;
  }
}
@media (max-width: 559.9px) {
  .contentBg.pageTitleHeight {
    height: 263px;
  }
}
@media (min-width: 1200px) {
  .admin-bar .contentBg.pageTitleHeight {
    height: 615px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .admin-bar .contentBg.pageTitleHeight {
    height: 443px;
  }
}
@media (max-width: 559.9px) {
  .admin-bar .contentBg.pageTitleHeight {
    height: 293px;
  }
}
.contentBg.pageTitleHeight::before {
  background: #fff;
}

#main_wrap {
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}
#main_wrap.scrolled {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

#main_wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}

#mainVisual {
  width: 100%;
  display: block;
  position: relative;
}
@media (min-width: 821px) {
  #mainVisual {
    height: 100vh;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #mainVisual {
    height: 720px;
  }
}
@media (max-width: 559.9px) {
  #mainVisual {
    height: 100vh;
    width: 100%;
    margin: 0 auto;
  }
}

.mainCatch {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
@media (min-width: 821px) {
  .mainCatch {
    padding: 50vh 0 0 6vw;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mainCatch {
    padding: 240px 0 0 6vw;
  }
}
@media (max-width: 559.9px) {
  .mainCatch {
    padding: 30vh 0 0 6vw;
  }
}
.mainCatch .main_catch_01 {
  display: block;
  width: 30vw;
}
@media (max-width: 559.9px) {
  .mainCatch .main_catch_01 {
    width: 50vw;
  }
}
.mainCatch .main_catch_02 {
  display: block;
  width: 33vw;
  margin-top: 24px;
}
@media (max-width: 559.9px) {
  .mainCatch .main_catch_02 {
    width: 54vw;
    margin-top: 12px;
  }
}
.mainCatch .main_catch_eng-01 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.5;
  color: white;
  margin-top: 30px;
}
@media (max-width: 559.9px) {
  .mainCatch .main_catch_eng-01 {
    line-height: 1.2;
  }
}
.mainCatch .main_catch_eng-02 {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  margin-top: 40px;
}
@media (max-width: 820.9px) {
  .mainCatch .main_catch_eng-02 {
    margin-top: 10px;
  }
}
@media (max-width: 559.9px) {
  .mainCatch .main_catch_eng-02 {
    font-size: 1.3rem;
  }
}

.main_recruit {
  width: 272px;
  height: auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: center;
  z-index: 3;
}
@media (max-width: 559.9px) {
  .main_recruit {
    width: 180px;
    padding: 18px;
    right: 15px;
    bottom: 15px;
  }
}
.main_recruit .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  margin: 16px auto;
}
@media (max-width: 559.9px) {
  .main_recruit .eng {
    font-size: 1.2rem;
  }
}
.main_recruit .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  gap: 20px;
  width: 100%;
  height: 53px;
  color: white;
  font-weight: bold;
  position: relative;
  padding-right: 16px;
  transition: all 0.4s ease;
}
@media (max-width: 559.9px) {
  .main_recruit .btn {
    font-size: 1.2rem;
    height: 44px;
  }
}
.main_recruit .btn i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .main_recruit .btn i {
    right: 8px;
  }
}
.main_recruit:hover .btn {
  background-color: rgba(255, 215, 0, 0.3019607843);
}

.mainContent {
  padding-bottom: 80px;
}
@media (max-width: 559.9px) {
  .mainContent {
    padding-bottom: 50px;
  }
}

.top_news_section {
  padding: 200px 0;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  transition: background-color 1s ease;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_news_section {
    padding: 100px 0;
  }
}
@media (max-width: 559.9px) {
  .top_news_section {
    padding: 48px 0;
  }
}
.top_news_section .middlewrap {
  position: relative;
}
@media (max-width: 820.9px) {
  .top_news_section .middlewrap {
    padding-bottom: 30px;
  }
}
.top_news_section .btn-white {
  margin-left: auto;
}

.top_column {
  width: 100%;
  position: relative;
}
@media (min-width: 560px) {
  .top_column {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_column {
    align-items: flex-start;
  }
}
@media (min-width: 821px) {
  .top_column .leftSide {
    width: 43%;
  }
}
.top_column .leftSide p {
  color: white;
  line-height: 2;
}
.top_column .leftSide p.top_service_text {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
  line-height: 1.8;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_column .leftSide p.top_service_text {
    width: 54%;
    min-height: 144px;
  }
}
@media (max-width: 559.9px) {
  .top_column .leftSide p.top_service_text {
    font-size: 1.7rem;
  }
}
@media (max-width: 820.9px) {
  .top_column .leftSide p.top_service_text br {
    display: none;
  }
}
.top_column .leftSide .btn-white {
  margin-top: 30px;
}
@media (min-width: 560px) {
  .top_column .rightSide {
    width: 50%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_column .rightSide {
    width: 300px;
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (max-width: 559.9px) {
  .top_column .rightSide {
    margin-top: 30px;
  }
}
.top_column .rightSide img {
  border-radius: 4px;
}

.top_service_section {
  padding: 120px 0;
  margin-bottom: 120px;
  transition: background-color 1s ease 0.8s;
}
.top_service_section.moved {
  background-color: #284B7D;
}

.service_lineup {
  width: 100%;
  margin-top: 80px;
}
@media (min-width: 560px) {
  .service_lineup {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .service_lineup {
    justify-content: center;
    gap: 2%;
  }
}
.service_lineup .item {
  position: relative;
}
@media (min-width: 821px) {
  .service_lineup .item {
    width: 18%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .service_lineup .item {
    width: 32%;
    margin-bottom: 30px;
  }
}
@media (max-width: 559.9px) {
  .service_lineup .item {
    margin-bottom: 30px;
  }
}
.service_lineup .item h3 {
  text-align: center;
  position: relative;
  padding-top: 16px;
  color: white;
  margin-bottom: 16px;
}
.service_lineup .item h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #FFD700;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.service_lineup .item .thumb {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.service_lineup .item .thumb img {
  transition: all 0.4s ease;
}
.service_lineup .item .txt_box {
  background-color: rgba(255, 255, 255, 0.3019607843);
  color: white;
  font-size: 1.4rem;
  padding: 18px 24px;
  border-radius: 0 0 4px 4px;
  transition: all 0.4s ease;
}
.service_lineup .item:hover h3::before {
  transform: scale(2);
}
.service_lineup .item:hover .thumb img {
  transform: scale(1.1);
}
.service_lineup .item:hover .txt_box {
  background-color: rgba(255, 215, 0, 0.3019607843);
}

.top_company_section {
  padding: 100px 0;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_company_section {
    padding-left: 48px;
  }
}
@media (max-width: 559.9px) {
  .top_company_section {
    padding: 56px 0 56px 32px;
  }
}
.top_company_section::before {
  content: "";
  display: block;
  width: calc(50% - 720px);
  min-width: 32px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #284B7D;
  transform: translateX(-100%);
  transition: all 0.8s ease;
  opacity: 0.9;
}
.top_company_section.moved::before {
  transform: translateX(0%);
}
.top_company_section .top_column {
  margin-bottom: 160px;
}

.top_companines {
  width: 100%;
}
@media (min-width: 560px) {
  .top_companines {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.top_companines .item {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 821px) {
  .top_companines .item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 559.9px) {
  .top_companines .item {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.top_companines .item .thumb {
  width: 267px;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .top_companines .item .thumb {
    width: 100%;
  }
}
.top_companines .item .thumb img {
  transition: all 0.4s ease;
}
.top_companines .item .inner {
  background-color: rgba(255, 255, 255, 0.3019607843);
  color: white;
  font-size: 1.4rem;
  padding: 0 40px 0 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  transition: all 0.4s ease;
}
@media (min-width: 560px) {
  .top_companines .item .inner {
    width: calc(100% - 267px);
  }
}
@media (max-width: 559.9px) {
  .top_companines .item .inner {
    padding: 20px;
  }
}
.top_companines .item .inner .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
.top_companines .item .inner .jp {
  font-size: 2rem;
  margin-bottom: 8px;
}
.top_companines .item .inner i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .top_companines .item .inner i {
    display: none;
  }
}
.top_companines .item:hover .thumb img {
  transform: scale(1.1);
}
.top_companines .item:hover .inner {
  background-color: rgba(255, 215, 0, 0.3019607843);
}

.top_recruit_section {
  padding: 160px 0 200px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .top_recruit_section {
    padding: 80px 32px 100px 0;
  }
}
.top_recruit_section::before {
  content: "";
  display: block;
  width: calc(50% - 320px);
  min-width: 32px;
  height: calc(100% - 160px);
  position: absolute;
  right: 0;
  top: 70px;
  background-color: #284B7D;
  transform: translateX(100%);
  transition: all 0.8s ease;
  opacity: 0.9;
}
.top_recruit_section .top_column {
  position: relative;
  z-index: 1;
}
.top_recruit_section .top_column .leftSide {
  position: relative;
}
.top_recruit_section .top_column .leftSide .top_hmap {
  display: block;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: -30px;
  opacity: 0.4;
  transition: all 0.8s ease;
  transform: scale(0);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_recruit_section .top_column .leftSide .top_hmap {
    width: 60%;
  }
}
.top_recruit_section.moved::before {
  transform: translateX(0%);
}
.top_recruit_section.moved .top_column .leftSide .top_hmap {
  transform: scale(1);
}

/**************
Under PageTitle
**************/
.pageTitle {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
@media (min-width: 1200px) {
  .pageTitle {
    height: 520px;
    padding-bottom: 20px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .pageTitle {
    height: 348px;
    padding-bottom: 20px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle {
    height: 270px;
    padding-bottom: 20px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle {
    height: 207px;
    padding-bottom: 15px;
  }
}
.pageTitle .title_inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.pageTitle .textArea {
  position: relative;
  height: 100%;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .pageTitle .textArea {
    max-width: 1160px;
    padding-top: 80px;
  }
  .pageTitle .textArea.w1300 {
    max-width: 1300px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .pageTitle .textArea {
    width: 92%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle .textArea {
    width: 92%;
  }
}
@media (max-width: 559.9px) {
  .pageTitle .textArea {
    width: 88%;
    padding-top: 56px;
  }
}
.pageTitle .textArea .jp {
  color: #fff;
  font-size: 4.4rem;
  font-weight: 700;
  opacity: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle .textArea .jp {
    font-size: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .pageTitle .textArea .jp {
    font-size: 2rem;
  }
}
.pageTitle .title_bg {
  width: 100%;
  height: 100%;
  position: relative;
  border-bottom-right-radius: 4vw;
  overflow: hidden;
}
.pageTitle .title_bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.53;
  background: linear-gradient(180deg, #08296B 0%, rgba(20, 34, 61, 0) 38%, #14223D 100%);
  mix-blend-mode: multiply;
}
@media (max-width: 559.9px) {
  .pageTitle .title_bg::after {
    opacity: 0.3;
  }
}
.pageTitle .title_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 560px) {
  .pageTitle.single_page {
    height: 200px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle.single_page {
    height: 200px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle.single_page {
    height: 120px;
  }
}
@media (min-width: 821px) {
  .pageTitle.single_page .textArea {
    opacity: 1;
    padding-top: 120px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pageTitle.single_page .textArea {
    padding-top: 64px;
  }
}
@media (max-width: 559.9px) {
  .pageTitle.single_page .textArea {
    padding-top: 48px;
  }
}
@media (min-width: 821px) {
  .pageTitle.single_page .textArea .jp {
    display: none;
  }
}

.breadcrumbs {
  height: 65px;
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  font-size: 1.2rem;
  box-sizing: border-box;
  font-weight: 500;
}
@media (max-width: 559.9px) {
  .breadcrumbs {
    height: 56px;
  }
}
.breadcrumbs a {
  display: inline-block;
  font-weight: normal;
  color: #191718;
  font-weight: 700;
}

.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) {
  .flex_content_r {
    flex-direction: row-reverse;
  }
}
.flex_content .text {
  margin-top: 20px;
}
.flex_content .text.mt0 {
  margin-top: 0;
}
@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%;
  }
}

@media (min-width: 1200px) {
  .leftColumn {
    width: 230px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .leftColumn {
    width: 22%;
  }
}

@media (min-width: 1200px) {
  .rightColumn {
    width: calc(100% - 340px);
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .rightColumn {
    width: 72%;
  }
}
@media (max-width: 820.9px) {
  .rightColumn {
    margin-top: 40px;
  }
}

.c_container {
  width: 100%;
}
@media (min-width: 560px) {
  .c_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 820.9px) {
  .c_container {
    padding: 0 4%;
  }
}
@media (min-width: 560px) {
  .c_container .leftColumn {
    background-color: #f3f3f3;
  }
}

.news_container {
  width: 100%;
}
@media (min-width: 560px) {
  .news_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1200px) {
  .news_container .rightColumn {
    width: calc(100% - 300px);
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .news_container .rightColumn {
    width: 72%;
  }
}
@media (max-width: 820.9px) {
  .news_container .rightColumn {
    width: 100%;
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .news_container .leftColumn {
    width: 220px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .news_container .leftColumn {
    width: 22%;
  }
}
@media (max-width: 820.9px) {
  .news_container .leftColumn {
    margin-top: 40px;
    width: 100%;
  }
}

.divider-full {
  margin: 35px 0;
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px #aaa dotted;
}
@media (max-width: 820.9px) {
  .divider-full {
    margin: 20px 0;
  }
}

.sticky_content {
  width: 100%;
}
@media (min-width: 821px) {
  .sticky_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.mt20 {
  margin-top: 20px;
}

.president_box {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-top: 50px;
  font-weight: 700;
  justify-content: flex-end;
}
.president_box .president {
  font-size: 1.6rem;
}
.president_box .name {
  font-size: 2rem;
}
@media (max-width: 820.9px) {
  .president_box {
    margin-top: 30px;
  }
}
@media (max-width: 559.9px) {
  .president_box {
    margin-top: 10px;
  }
}

/**************
Sidebar
**************/
@media (min-width: 821px) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-bottom: 35px;
  }
  .admin-bar .sidebar-sticky {
    top: 132px;
  }
}

.sidebar_title {
  background-color: #284B7D;
  padding: 12px 18px;
}
@media (max-width: 820.9px) {
  .sidebar_title {
    padding: 2px 16px;
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
}
.sidebar_title.mt35 {
  margin-top: 35px;
}
.sidebar_title .jp {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 820.9px) {
  .sidebar_title .jp {
    font-size: 1.2rem;
  }
  .sidebar_title .jp br {
    display: none;
  }
}

.side_title {
  background-color: #E45656;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 4px;
  color: #ffffff;
}
@media (max-width: 820.9px) {
  .side_title {
    margin-bottom: 12px;
  }
}

@media (max-width: 820.9px) {
  .side_links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 2%;
  }
}
@media (min-width: 821px) {
  .side_links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px #E45656 solid;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .side_links li {
    display: block;
    width: 32%;
    margin-bottom: 10px;
    justify-content: flex-start;
  }
}
@media (max-width: 559.9px) {
  .side_links li {
    display: block;
    width: 49.4%;
    margin-bottom: 4px;
  }
}
.side_links li a {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 12px 0 12px 30px;
  position: relative;
  color: #F5F5F5;
  font-size: 1.5rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
@media (max-width: 820.9px) {
  .side_links li a {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px 0 16px;
    line-height: 1.4;
    border-radius: 3px;
    background-color: #F5F5F5;
    color: #191718;
  }
}
.side_links li a::before {
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  display: block;
  position: absolute;
  left: 15px;
  top: 22px;
}
@media (max-width: 820.9px) {
  .side_links li a::before {
    top: 50%;
    left: 8px;
  }
}
.side_links li a:hover, .side_links li a :active {
  color: #b7b7b7;
}
@media (min-width: 560px) {
  .side_links li.active a {
    color: #333;
  }
  .side_links li.active a::before {
    background-color: #ACCFE7;
  }
}

.sidebar_title02 {
  line-height: 1.4;
  padding: 0 15px;
  border-left: #191718 4px solid;
  margin-bottom: 12px;
}
.sidebar_title02.mt35 {
  margin-top: 35px;
}
.sidebar_title02 .jp {
  font-size: 1.5rem;
  color: #191718;
  font-weight: 600;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .sidebar_title02 .jp {
    font-size: 1.8rem;
  }
}
@media (max-width: 820.9px) {
  .sidebar_title02 .jp {
    font-size: 1.6rem;
  }
  .sidebar_title02 .jp br {
    display: none;
  }
}
.sidebar_title02 .eng {
  color: #b2b2b2;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1;
}

@media (max-width: 820.9px) {
  .side_links02 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
  }
}
.side_links02 + .sidebar_title {
  margin-top: 10px;
}
.side_links02 li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
  background-color: #f3f3f3;
  margin-bottom: 1px;
}
@media (max-width: 820.9px) {
  .side_links02 li {
    display: block;
    width: calc(50% - 2px);
  }
}
.side_links02 li a {
  display: flex;
  align-items: center;
  padding: 12px 0 12px 18px;
  position: relative;
  color: #999;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .side_links02 li a {
    font-size: 1.2rem;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #284B7D;
  }
}
@media (min-width: 560px) {
  .side_links02 li a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: #ccc;
    position: absolute;
    left: 7px;
    top: 19px;
  }
}
@media (min-width: 560px) {
  .side_links02 li.active a {
    color: #333;
  }
  .side_links02 li.active a::before {
    background-color: #ACCFE7;
  }
}

/**************
事業内容
**************/
.pillars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 8%;
}
@media (max-width: 820.9px) {
  .pillars {
    display: block;
  }
}

.pillars_con {
  width: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 30px 50px;
}
.pillars_con.width100 {
  width: 100%;
  height: calc(100% - 70px);
}
@media (max-width: 1199.9px) {
  .pillars_con.width100 {
    height: calc(100% - 55px);
  }
}
@media (max-width: 820.9px) {
  .pillars_con.width100 {
    height: calc(100% - 45px);
  }
}
@media (max-width: 1199.9px) {
  .pillars_con {
    padding: 30px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .pillars_con {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 559.9px) {
  .pillars_con {
    width: 100%;
    padding: 20px 3px;
  }
}
.pillars_con .ul_flex_box {
  color: #ffffff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 0 2%;
  width: 85%;
  margin: 0 auto 15px;
}
.pillars_con .ul_flex_box:first-child {
  gap: 35px;
}
@media (min-width: 560px) {
  .pillars_con .ul_flex_box:first-child {
    padding-left: 30px;
  }
}
@media (max-width: 559.9px) {
  .pillars_con .ul_flex_box:first-child {
    gap: 25px;
  }
}
.pillars_con .ul_flex_box:first-child .pillars_list {
  width: auto;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .pillars_con .ul_flex_box:last-child .pillars_list:first-child {
    padding-left: 40px;
  }
}
@media (min-width: 560px) {
  .pillars_con .ul_flex_box:last-child .pillars_list:last-child {
    padding-left: 40px;
  }
}
@media (max-width: 559.9px) {
  .pillars_con .ul_flex_box:last-child .pillars_list:last-child {
    padding-left: 20px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .pillars_con .ul_flex_box {
    width: 100%;
  }
}
.pillars_con .ul_flex_box.mt20 {
  margin: 20px auto 0;
}
.pillars_con .ul_flex_box .pillars_list {
  width: 49%;
}
.pillars_con .ul_flex_box .pillars_list > li {
  list-style: disc;
}
@media (max-width: 559.9px) {
  .pillars_con .ul_flex_box .pillars_list > li {
    font-size: 1.2rem;
  }
}
.pillars_con .pillars_img {
  text-align: center;
}

.pillars_text_com {
  width: 42%;
}
@media (max-width: 820.9px) {
  .pillars_text_com {
    width: 100%;
    margin-top: 30px;
  }
}
.pillars_text_com .pillars_title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3rem;
}
@media (max-width: 820.9px) {
  .pillars_text_com .pillars_title {
    text-align: center;
  }
}
@media (max-width: 559.9px) {
  .pillars_text_com .pillars_title {
    font-size: 2.4rem;
  }
}
.pillars_text_com .pillars_text {
  color: #ffffff;
  font-size: 1.8rem;
  margin-top: 50px;
}
@media (max-width: 820.9px) {
  .pillars_text_com .pillars_text {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

.red-title {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
  width: 168px;
  height: 33px;
  background-color: #E45656;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-transform: uppercase;
}

.title-under_text {
  margin-top: 20px;
}
.title-under_text .title {
  font-size: 4.4rem;
  font-size: min(4.4rem, 4vw);
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .title-under_text .title {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .title-under_text .title {
    font-size: 2.2rem;
  }
}
.title-under_text .text {
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .title-under_text .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .title-under_text .text {
    font-size: 1.6rem;
  }
}

.service_text {
  margin: 35px 0;
}
@media (max-width: 559.9px) {
  .service_text {
    margin: 20px 0;
  }
}

.service_img {
  border-radius: 4px;
  overflow: hidden;
}

/**************
各種自動機設計・製作
**************/
.automation-img_list {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw 2%;
}
@media (max-width: 559.9px) {
  .automation-img_list {
    padding-top: 0;
  }
}
.automation-img_list .automation_inner {
  width: 18%;
}
@media (max-width: 559.9px) {
  .automation-img_list .automation_inner {
    width: 30%;
  }
}
.automation-img_list .automation_inner .automation_img {
  border-radius: 4px;
  overflow: hidden;
}
.automation-img_list .automation_inner .automation_img > img {
  width: 100%;
}
.automation-img_list .automation_inner .text {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
}

.top-border {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background-color: #C1C1C1;
  margin-bottom: 2px;
}

.needs {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 0 40px;
  margin-bottom: 40px;
  border-radius: 4px;
}
@media (max-width: 559.9px) {
  .needs {
    padding: 20px 30px;
  }
}
.needs:last-child {
  margin-bottom: 0;
}
.needs .codepen {
  text-align: center;
}
.needs .codepen > i {
  font-size: 32px;
  color: #284B7D;
}
.needs .sunrise {
  text-align: center;
  margin-bottom: 5px;
}
.needs .needs_list {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media (max-width: 559.9px) {
  .needs .needs_list {
    display: block;
  }
}
.needs .needs_list .needs_text_box {
  background-color: #F5F5F5;
  width: 120px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .needs .needs_list .needs_text_box {
    width: 80px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .needs .needs_list .needs_text_box {
    width: 60px;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px;
    margin-bottom: 12px;
  }
}
.needs .needs_list .needs_text_box .markText01 {
  writing-mode: vertical-lr;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
@media (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .markText01 {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .markText01 {
    display: none;
  }
}
.needs .needs_list .needs_text_box .markText01::before {
  position: absolute;
  top: 45px;
  left: 16px;
  content: "";
  display: block;
  background-color: #191718;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .markText01::before {
    top: 41px;
    left: 14px;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .markText01::before {
    top: 13px;
    left: 91px;
  }
}
.needs .needs_list .needs_text_box .markText01::after {
  position: absolute;
  top: 121px;
  left: 16px;
  content: "";
  display: block;
  background-color: #191718;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .markText01::after {
    top: 108px;
    left: 14px;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .markText01::after {
    top: 13px;
    left: 152px;
  }
}
.needs .needs_list .needs_text_box .markText02 {
  writing-mode: vertical-lr;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
@media (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .markText02 {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .markText02 {
    display: none;
  }
}
.needs .needs_list .needs_text_box .markText02::before {
  position: absolute;
  top: 45px;
  left: 16px;
  content: "";
  display: block;
  background-color: #191718;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .markText02::before {
    top: 41px;
    left: 14px;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .markText02::before {
    top: 13px;
    left: 129px;
  }
}
.needs .needs_list .needs_text_box .text-sp {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 560px) {
  .needs .needs_list .needs_text_box .text-sp {
    display: none;
  }
}
.needs .needs_list .needs_text_box .text {
  writing-mode: vertical-lr;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .text {
    writing-mode: inherit;
  }
}
.needs .needs_list .needs_text_box .arrow-circle-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  z-index: 3;
  height: 30px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .arrow-circle-right {
    right: -21px;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .arrow-circle-right {
    top: calc(100% - 6px);
    right: 50%;
    transform: translateX(50%);
  }
}
.needs .needs_list .needs_text_box .arrow-circle-right > i {
  font-size: 30px;
  color: #284B7D;
}
@media (max-width: 820.9px) {
  .needs .needs_list .needs_text_box .arrow-circle-right > i {
    font-size: 20px;
  }
}
@media (max-width: 559.9px) {
  .needs .needs_list .needs_text_box .arrow-circle-right > i {
    transform: rotate(90deg);
  }
}

.element {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .element {
    display: block;
  }
}
.element .element_list {
  width: 49%;
}
@media (max-width: 559.9px) {
  .element .element_list {
    width: 100%;
  }
}
.element .element_list .element_inner {
  display: flex;
  gap: 0 5px;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .element .element_list .element_inner:last-child {
    margin-bottom: 0;
  }
}
.element .element_list .element_inner .num_cont {
  width: 40px;
  height: 40px;
  background-color: #284B7D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.element .element_list .element_inner .num_cont .num {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
.element .element_list .element_inner .text_cont {
  width: calc(100% - 45px);
  border-bottom: 1px #D9D9D9 solid;
}
.element .element_list .element_inner .text_cont .text {
  padding-left: 10px;
}

.original_lineup {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 560px) {
  .original_lineup {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.original_lineup .item {
  width: 30%;
  position: relative;
}
@media (max-width: 559.9px) {
  .original_lineup .item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }
}
.original_lineup .item h3 {
  text-align: center;
  position: relative;
  padding-top: 16px;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (max-width: 820.9px) {
  .original_lineup .item h3 {
    font-size: 1.6rem;
  }
}
.original_lineup .item h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #FFD700;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.original_lineup .item p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 820.9px) {
  .original_lineup .item p {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .original_lineup .item p {
    margin-bottom: 0;
  }
}
.original_lineup .item .thumb {
  overflow: hidden;
  margin-top: 8px;
  border: 1px #ddd solid;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.original_lineup .item .thumb img {
  transition: all 0.4s ease;
  display: block;
  height: auto;
}
.original_lineup .item .txt_box {
  background-color: #284B7D;
  padding: 18px 24px;
  border-radius: 0 0 4px 4px;
  transition: all 0.4s ease;
}
.original_lineup .item .txt_box .inner_text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: white;
  font-size: 1.4rem;
}
.original_lineup .item:hover h3::before {
  transform: scale(2);
}
.original_lineup .item:hover .thumb img {
  transform: scale(1.1);
}

.case_cont {
  background-color: #F5F5F5;
  padding: 50px;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .case_cont {
    padding: 30px;
  }
}
@media (max-width: 559.9px) {
  .case_cont {
    padding: 20px;
  }
}
.case_cont:last-child {
  margin-bottom: 0;
}
.case_cont .case_title {
  width: 100%;
  display: flex;
  height: 68px;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .case_cont .case_title {
    height: 50px;
    margin-bottom: 30px;
  }
}
.case_cont .case_title .left_cont {
  background-color: #E45656;
  color: #ffffff;
  font-weight: 700;
  font-size: 2.4rem;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .case_cont .case_title .left_cont {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .case_cont .case_title .left_cont {
    width: 88px;
    font-size: 1.5rem;
  }
}
.case_cont .case_title .right_cont {
  width: calc(100% - 140px);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 559.9px) {
  .case_cont .case_title .right_cont {
    width: calc(100% - 88px);
  }
}
.case_cont .case_title .right_cont .text {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 30px;
}
@media (max-width: 820.9px) {
  .case_cont .case_title .right_cont .text {
    font-size: 1.7rem;
    line-height: 1.2;
    padding-left: 8px;
  }
}
@media (max-width: 559.9px) {
  .case_cont .case_title .right_cont .text {
    font-size: 1.5rem;
  }
}

.case_img {
  border-radius: 4px;
  overflow: hidden;
}

.kadai {
  background-color: #4C4E51;
  border-radius: 60px;
  color: #ffffff;
  padding: 3px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.solution_cont .solution {
  margin: 10px 0 0 20px;
}
.solution_cont .solution > li {
  font-size: 1.8rem;
  list-style-type: disc;
}
@media (max-width: 559.9px) {
  .solution_cont .solution > li {
    font-size: 1.6rem;
  }
}

.redline_head {
  padding-left: 15px;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
@media (max-width: 559.9px) {
  .redline_head {
    font-size: 1.8rem;
  }
}
.redline_head::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 30px;
  background-color: #E45656;
  display: inline-block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.redline_head.small {
  font-size: 1.7rem;
  padding-left: 10px;
}
.redline_head.small::before {
  width: 3px;
  height: 20px;
}

.solution_list {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw 0;
}
@media (max-width: 559.9px) {
  .solution_list {
    display: block;
  }
}
.solution_list .solution_inner {
  width: 30%;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .solution_list .solution_inner {
    display: block;
  }
}
@media (max-width: 559.9px) {
  .solution_list .solution_inner {
    width: 100%;
  }
}
.solution_list .solution_inner .num {
  background-color: #E45656;
  height: 100%;
  color: #ffffff;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  width: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15px;
}
@media (max-width: 820.9px) {
  .solution_list .solution_inner .num {
    height: 30px;
    width: 100%;
    padding-top: 0;
  }
}
.solution_list .solution_inner .text_box {
  background-color: #ffffff;
  width: calc(100% - 50px);
}
@media (max-width: 820.9px) {
  .solution_list .solution_inner .text_box {
    width: 100%;
    height: 100%;
  }
}
.solution_list .solution_inner .text_box .text {
  font-weight: 700;
  padding: 15px 10px;
  font-size: 1.5rem;
}
.solution_list .arrow-right {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .solution_list .arrow-right {
    transform: rotate(90deg);
    margin: 10px auto;
  }
}
.solution_list .arrow-right_sp {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  margin: 10px auto;
}
@media (min-width: 560px) {
  .solution_list .arrow-right_sp {
    display: none;
  }
}

.solution_list2 {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .solution_list2 {
    display: block;
    margin-top: 20px;
  }
}
.solution_list2 .solution_box {
  width: 49%;
}
@media (max-width: 559.9px) {
  .solution_list2 .solution_box {
    width: 100%;
  }
}

.solution_box_inner {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 4px;
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .solution_box_inner:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 559.9px) {
  .solution_box_inner {
    display: block;
  }
}
.solution_box_inner .left {
  width: 25%;
  text-align: center;
  position: relative;
}
@media (max-width: 559.9px) {
  .solution_box_inner .left br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .solution_box_inner .left {
    width: 100%;
  }
}
.solution_box_inner .left::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 30px;
  background-color: #E45656;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 559.9px) {
  .solution_box_inner .left::after {
    width: 60px;
    height: 2px;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
  }
}
.solution_box_inner .right {
  width: 75%;
  padding: 0 15px;
}
@media (max-width: 559.9px) {
  .solution_box_inner .right {
    width: 100%;
    padding: 10px;
    text-align: center;
  }
}
.solution_box_inner__h-ver {
  font-weight: 400;
}
.solution_box_inner__h-ver .left {
  width: 140px;
}
@media (max-width: 559.9px) {
  .solution_box_inner__h-ver .left {
    margin: 0 auto;
  }
}
.solution_box_inner__h-ver .left::after {
  background-color: lightgray;
}
@media (max-width: 559.9px) {
  .solution_box_inner__h-ver .right {
    text-align: left;
  }
}

.br4 {
  border-radius: 4px;
  overflow: hidden;
}

/**************
精密部品加工
**************/
.precision_img {
  border-radius: 4px;
  overflow: hidden;
}

.works_list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3vw 5%;
  flex-wrap: wrap;
}
.works_list .works_inner {
  width: 30%;
  position: relative;
}
@media (max-width: 559.9px) {
  .works_list .works_inner {
    width: 280px;
    margin: 0 auto;
  }
}
.works_list .works_inner .works_img {
  width: 100%;
  border: 1px #ddd solid;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  overflow: hidden;
}
.works_list .works_inner .works_img img {
  display: block;
  height: auto;
  transition: all 0.3s ease;
}
.works_list .works_inner .pro-name {
  margin-top: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .works_list .works_inner .pro-name {
    margin-top: 5px;
  }
}
.works_list .works_inner .pro-sub-name {
  font-size: 1.4rem;
  color: #4C4E51;
}
.works_list .works_inner:hover .works_img img,
.works_list .works_inner :active .works_img img {
  transform: scale(1.1);
}

/**************
各種機器販売
**************/
.line_head {
  font-size: 2.2rem;
  margin-top: 20px;
  padding-left: 40px;
  position: relative;
}
.line_head::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #191718;
  display: inline-block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.bg-lgray {
  background-color: #F5F5F5;
  padding: 40px;
}
@media (max-width: 820.9px) {
  .bg-lgray {
    padding: 20px;
  }
}

.tool_cont {
  width: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .tool_cont {
    padding: 20px 10px;
  }
}
.tool_cont .worker {
  position: absolute;
  bottom: -18px;
  right: 2%;
  width: 100px;
}
@media (max-width: 820.9px) {
  .tool_cont .worker {
    width: 80px;
    right: -2%;
  }
}

.darkblue_title {
  color: #284B7D;
}
.darkblue_title .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.darkblue_title .jp {
  font-size: 2.6rem;
  line-height: 1.2;
}

.tool_list {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw 2%;
}
.tool_list .tool_inner {
  width: 32%;
  background-color: #F5F5F5;
  border-radius: 4px;
  padding: 15px;
}
@media (max-width: 559.9px) {
  .tool_list .tool_inner {
    width: 100%;
  }
}
.tool_list .tool_inner .text {
  font-size: 1.5rem;
}

.kome {
  font-size: 1.4rem;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .kome {
    width: 75%;
    margin-left: 0;
    margin-right: auto;
  }
}

/**************
ロボットシステム構築
**************/
.robot_solution {
  background-color: #BAE3F9;
  padding: 30px 40px 0;
}
@media (max-width: 559.9px) {
  .robot_solution {
    padding: 24px 4vw 0;
  }
}
.robot_solution header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media (max-width: 559.9px) {
  .robot_solution header {
    padding-bottom: 24px;
  }
}
@media (max-width: 559.9px) {
  .robot_solution header {
    gap: 10px;
  }
}
.robot_solution header .ill-worker {
  display: block;
  width: 80px;
}
@media (max-width: 559.9px) {
  .robot_solution header .ill-worker {
    width: 56px;
  }
}
.robot_solution header .txt {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .robot_solution header .txt {
    font-size: 1.8rem;
  }
}
.robot_solution .inner {
  background-color: white;
  padding: 40px 32px;
}
@media (max-width: 559.9px) {
  .robot_solution .inner {
    padding: 4vw;
  }
}
.robot_solution .inner .robot_steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 559.9px) {
  .robot_solution .inner .robot_steps {
    flex-direction: column;
  }
}
.robot_solution .inner .robot_steps .robot_step_item {
  position: relative;
  width: calc(33.3333333333% - 24px);
  position: relative;
  background-color: #E45656;
  border-radius: 4px;
}
@media (min-width: 560px) {
  .robot_solution .inner .robot_steps .robot_step_item:not(:nth-child(3n))::after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url(../images/page/step-arrow.png) no-repeat;
    background-size: cover;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 559.9px) {
  .robot_solution .inner .robot_steps .robot_step_item {
    width: 100%;
  }
  .robot_solution .inner .robot_steps .robot_step_item:not(:last-child)::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/page/step-arrow.png) no-repeat;
    background-size: cover;
    transform: translateX(-50%) rotate(90deg);
    position: absolute;
    top: 100%;
    left: 50%;
  }
}
.robot_solution .inner .robot_steps .robot_step_item .robot_step_item_head {
  padding: 8px 24px 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.robot_solution .inner .robot_steps .robot_step_item .robot_step_item_head .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
}
.robot_solution .inner .robot_steps .robot_step_item .robot_step_item_head .num {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
}
.robot_solution .inner .robot_steps .robot_step_item .robot_step_item_inner {
  text-align: center;
  color: white;
  font-weight: bold;
  padding: 2px 10px 16px;
}
.robot_solution footer {
  width: 100%;
  padding-top: 30px;
}
@media (max-width: 559.9px) {
  .robot_solution footer {
    padding-top: 16px;
  }
}
.robot_solution footer .ill-meeting {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .robot_solution footer .ill-meeting {
    max-width: 500px;
  }
}

.solution_points {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .solution_points {
    padding: 0 4vw;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .solution_points {
    padding: 0 4vw;
  }
}
@media (max-width: 559.9px) {
  .solution_points {
    width: 880px;
    gap: 24px;
    padding: 0 4vw;
  }
}
.solution_points li {
  width: 32%;
}
.solution_points li .point_head {
  background-color: #E45656;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  width: 200px;
  border-radius: 4px 4px 0 0;
  height: 53px;
}
@media (max-width: 820.9px) {
  .solution_points li .point_head {
    width: 168px;
  }
}
.solution_points li .point_head .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  width: 80px;
  line-height: 1.3;
}
.solution_points li .point_head .num {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
}
.solution_points li .inner {
  background-color: #F5F5F5;
  padding: 24px;
  border-radius: 0 4px 4px 4px;
  height: calc(100% - 53px);
}
.solution_points li .inner h3 {
  border-bottom: 1px #E45656 solid;
  font-size: 1.8rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .solution_points li .inner h3 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media (max-width: 820.9px) {
  .solution_points li .inner .txt {
    font-size: 1.4rem;
  }
}

/**************
CAD/CAM
**************/
.cadcenter {
  width: 100%;
}
.cadcenter th {
  border-bottom: 1px #E45656 solid;
}
@media (max-width: 820.9px) {
  .cadcenter th {
    display: block;
    padding: 5px 10px;
  }
}
.cadcenter td {
  border-bottom: 1px #C1C1C1 solid;
  padding: 0 10px;
}
@media (max-width: 820.9px) {
  .cadcenter td {
    display: block;
    padding: 5px 10px;
  }
}

.support {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5vw 4%;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .support {
    row-gap: 6vw;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .support {
    row-gap: 9vw;
  }
}
@media (max-width: 559.9px) {
  .support {
    margin-top: 45px;
    row-gap: 11vw;
  }
}
.support .support_inner {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 30px;
  width: 48%;
  position: relative;
}
@media (max-width: 820.9px) {
  .support .support_inner {
    padding: 20px;
  }
}
@media (max-width: 559.9px) {
  .support .support_inner {
    width: 100%;
  }
}
.support .support_inner .support_head {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 3px #C1C1C1 solid;
  line-height: 2;
}
.support .support_inner .text {
  font-size: 1.5rem;
  padding: 15px 15px 0 15px;
}
.support .support_inner .support_num-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  background-color: #E45656;
  border-radius: 4px;
  padding: 0 18px;
}
@media (max-width: 559.9px) {
  .support .support_inner .support_num-box {
    top: -23px;
  }
}
.support .support_inner .support_num-box .num {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 820.9px) {
  .support .support_inner .support_num-box .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
@media (max-width: 559.9px) {
  .support .support_inner .support_num-box .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.support .support_inner .support_num-box .num > span {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-left: 20px;
}
@media (max-width: 820.9px) {
  .support .support_inner .support_num-box .num > span {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
@media (max-width: 559.9px) {
  .support .support_inner .support_num-box .num > span {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-left: 10px;
  }
}

/**************
グループシナジー
**************/
.bgc-black {
  width: 100%;
  background-color: #191718;
  padding: 48px 0 80px;
}
@media (max-width: 820.9px) {
  .bgc-black {
    padding: 40px 0 40px;
  }
}

.synergy_section {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .synergy_section {
    max-width: 1160px;
  }
  .synergy_section.w1300 {
    max-width: 1300px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .synergy_section {
    width: 96%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .synergy_section {
    width: 96%;
  }
}
@media (max-width: 559.9px) {
  .synergy_section {
    width: 88%;
  }
}

.group_img_cont {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 0 4%;
}
@media (max-width: 1199.9px) {
  .group_img_cont {
    padding-top: 0;
  }
}
@media (max-width: 820.9px) {
  .group_img_cont {
    display: block;
  }
}
.group_img_cont .group_img_inner {
  width: 48%;
}
@media (max-width: 820.9px) {
  .group_img_cont .group_img_inner {
    width: 100%;
    margin-top: 20px;
  }
}
.group_img_cont .group_img_inner .medec-group_head {
  height: 70px;
  color: #ffffff;
  font-size: 2.8rem;
  text-align: center;
}
@media (max-width: 1199.9px) {
  .group_img_cont .group_img_inner .medec-group_head {
    height: 55px;
    font-size: 2.2rem;
  }
}
@media (max-width: 820.9px) {
  .group_img_cont .group_img_inner .medec-group_head {
    height: 45px;
  }
}
@media (max-width: 559.9px) {
  .group_img_cont .group_img_inner .medec-group_head {
    font-size: min(2.2rem, 5vw);
  }
}

.medec_group_con {
  width: 100%;
  height: calc(100% - 70px);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 30px;
}
@media (max-width: 1199.9px) {
  .medec_group_con {
    height: calc(100% - 55px);
  }
}
@media (max-width: 820.9px) {
  .medec_group_con {
    height: calc(100% - 45px);
  }
}

.group_map_cont {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199.9px) {
  .group_map_cont {
    display: block;
  }
}
.group_map_cont .text_cont {
  width: calc(100% - 590px);
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .group_map_cont .text_cont {
    width: 400px;
    margin: 0 auto 30px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .group_map_cont .text_cont {
    width: 400px;
    margin: 0 auto 30px;
  }
}
@media (max-width: 559.9px) {
  .group_map_cont .text_cont {
    width: 100%;
  }
}
.group_map_cont .text_cont .medec_group {
  margin-top: 80px;
}
@media (max-width: 1199.9px) {
  .group_map_cont .text_cont .medec_group {
    margin-top: 40px;
  }
}
.group_map_cont .text_cont .medec_group .medec_group_inner {
  display: flex;
  width: 100%;
  gap: 0 50px;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 1199.9px) {
  .group_map_cont .text_cont .medec_group .medec_group_inner {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .group_map_cont .text_cont .medec_group .medec_group_inner {
    font-size: 1.6rem;
    gap: 0 31px;
  }
}
.group_map_cont .text_cont .medec_group .medec_group_inner::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background-color: #E45656;
  display: inline-block;
  left: 58px;
  top: 17px;
}
@media (max-width: 559.9px) {
  .group_map_cont .text_cont .medec_group .medec_group_inner::after {
    left: 47px;
  }
}
.group_map_cont .text_cont .medec_group .medec_group_inner.mb5 {
  margin-bottom: 5px;
}
.group_map_cont .text_cont .medec_group .medec_group_inner .place {
  font-weight: 700;
  letter-spacing: 0.5rem;
  width: 55px;
}
@media (max-width: 559.9px) {
  .group_map_cont .text_cont .medec_group .medec_group_inner .place {
    width: 47px;
  }
}
.group_map_cont .text_cont .medec_group .medec_group_inner .office {
  width: calc(100% - 105px);
}
@media (max-width: 559.9px) {
  .group_map_cont .text_cont .medec_group .medec_group_inner .office {
    width: calc(100% - 78px);
  }
}
.group_map_cont .text_cont .medec_group .medec_group_inner .office .office-name {
  display: inline-block;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}
.group_map_cont .text_cont .medec_group .medec_group_inner .office .office-name::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  display: inline-block;
  transform: scale(1, 1);
  transform-origin: center top;
  transition: all 0.3s ease;
}
.group_map_cont .text_cont .medec_group .medec_group_inner .office .office-name:hover::after,
.group_map_cont .text_cont .medec_group .medec_group_inner .office .office-name :active::after {
  transform: scale(0, 1);
}
.group_map_cont .map_cont {
  width: 590px;
}
@media (max-width: 1199.9px) {
  .group_map_cont .map_cont {
    margin: 0 auto;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .group_map_cont .map_cont {
    width: 100%;
    max-width: 640px;
    padding: 0 30px;
  }
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont {
    width: 100%;
  }
}
.group_map_cont .map_cont .access-map_img {
  width: 100%;
  position: relative;
}
.group_map_cont .map_cont .access-map_img .a-map_link {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
  position: absolute;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 4px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link {
    font-size: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link {
    font-size: 1.4rem;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  display: inline-block;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.3s ease;
}
.group_map_cont .map_cont .access-map_img .a-map_link.sapporo {
  top: 10px;
  left: 180px;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.sapporo {
    top: 2px;
    left: 20px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link.chitose {
  top: -33px;
  right: 25px;
}
.group_map_cont .map_cont .access-map_img .a-map_link.medec {
  top: 70px;
  left: 187px;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.medec {
    top: 40px;
    left: 27px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link.CAM {
  top: 124px;
  left: 130px;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.CAM {
    top: 78px;
    left: 20px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link.hakodate {
  top: 175px;
  right: -17px;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.hakodate {
    top: 85px;
    right: -11px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link.goryo {
  top: 257px;
  right: 27px;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.goryo {
    top: 157px;
    right: -4px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link.yamagata {
  top: 215px;
  left: 191px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.yamagata {
    top: 223px;
    left: 171px;
  }
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.yamagata {
    top: 117px;
    left: 65px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link.yoshimura {
  top: 310px;
  left: 95px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.yoshimura {
    top: 303px;
    left: 75px;
  }
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_link.yoshimura {
    top: 172px;
    left: 5px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_link:hover::after,
.group_map_cont .map_cont .access-map_img .a-map_link :active::after {
  transform: scale(1, 1);
}
.group_map_cont .map_cont .access-map_img .a-map_place {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
  position: absolute;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_place {
    font-size: 1.5rem;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_place.nagoya {
  bottom: 66px;
  left: 330px;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_place.nagoya {
    bottom: 26px;
    left: 200px;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_place.fukuoka {
  bottom: 187px;
  left: 0;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_place.fukuoka {
    bottom: 33%;
    left: 0;
  }
}
.group_map_cont .map_cont .access-map_img .a-map_place.kumamoto {
  bottom: 21px;
  left: 134px;
}
@media (max-width: 559.9px) {
  .group_map_cont .map_cont .access-map_img .a-map_place.kumamoto {
    bottom: 2%;
    left: 18%;
  }
}

.bcp_map_cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 80px;
}
.bcp_map_cont.mt80 {
  margin-top: 80px;
  align-items: flex-end;
}
@media (max-width: 559.9px) {
  .bcp_map_cont {
    display: block;
    margin-top: 30px;
  }
}
.bcp_map_cont .text_cont {
  width: 52%;
}
@media (max-width: 559.9px) {
  .bcp_map_cont .text_cont {
    width: 100%;
    margin-bottom: 32px;
  }
}
.bcp_map_cont .text_cont .bcp_cont {
  background-color: #F5F5F5;
  padding: 30px;
}
@media (max-width: 559.9px) {
  .bcp_map_cont .text_cont .bcp_cont {
    padding: 24px;
  }
}
.bcp_map_cont .map_cont {
  width: 40%;
}
@media (max-width: 559.9px) {
  .bcp_map_cont .map_cont {
    width: 100%;
  }
}
.bcp_map_cont .map_cont .map_img {
  text-align: center;
}

.bg-white {
  background-color: #ffffff;
  padding: 40px;
}
@media (max-width: 1199.9px) {
  .bg-white {
    padding: 20px;
  }
}

.bcp_map02 {
  margin-top: 80px;
}

/**************
新着情報
**************/
.news_archive {
  width: 100%;
}
.news_archive .news_item {
  position: relative;
  margin-bottom: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.5s ease;
}
.news_archive .news_item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.news_archive .news_item:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 560px) {
  .news_archive .news_item {
    padding: 30px 50px;
  }
}
@media (max-width: 559.9px) {
  .news_archive .news_item {
    padding: 20px 40px 20px 20px;
  }
}
.news_archive .news_item .news_item_head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.news_archive .news_item .news_item_head .date {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
}
.news_archive .news_item .news_item_head .news_item_cat_tags {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  margin-right: 24px;
}
.news_archive .news_item .news_item_head .news_item_cat_tags .cat_tag_item {
  background-color: #F5F5F5;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 20px;
  padding: 0 16px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_archive .news_item .inner {
  width: 100%;
  position: relative;
  margin-top: 15px;
}
@media (max-width: 559.9px) {
  .news_archive .news_item .inner {
    padding-bottom: 2px;
  }
}
.news_archive .news_item .inner .tit {
  font-size: 1.8rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: bold;
  color: white;
}
@media (max-width: 559.9px) {
  .news_archive .news_item .inner .tit {
    -webkit-line-clamp: 2;
    font-size: 1.4rem;
  }
}
.news_archive .news_item i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
@media (max-width: 559.9px) {
  .news_archive .news_item i {
    right: 12px;
  }
}

.news_single {
  background-color: #F5F5F5;
  border-radius: 4px;
}

.single_title {
  font-size: 2.4rem;
  padding: 30px 40px 30px 40px;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .single_title {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .single_title {
    padding: 20px;
  }
}

.post_data {
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e3e6ee;
}
@media (max-width: 559.9px) {
  .post_data {
    margin-bottom: 40px;
  }
}
.post_data .news_date {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.single_icatch {
  width: 80%;
  margin: 0 auto;
  background-color: #191718;
  position: relative;
}
.single_icatch img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.single_page_navi {
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 8px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .single_page_navi {
    padding: 16px;
    margin-top: 36px;
    border-radius: 8px;
  }
}
.single_page_navi a {
  color: #666;
}
.single_page_navi a:nth-child(2) {
  margin: 0 72px;
}
@media (max-width: 820.9px) {
  .single_page_navi a:nth-child(2) {
    margin: 0 24px;
  }
}
.single_page_navi a img {
  display: block;
  width: 22px;
}

@media (max-width: 820.9px) {
  .single_info {
    margin-top: 25px;
    padding-top: 15px;
  }
}

.single_cat_tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single_cat_tag .single_cat_tag_item {
  background-color: #E45656;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 20px;
  padding: 0 16px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.side_list li a {
  border-bottom: 1px #ccc solid;
  display: block;
  padding: 8px;
  color: #666;
  background-color: #fff;
  font-size: 1.4rem;
}
@media (min-width: 560px) {
  .side_list li a {
    transition: all 0.3s ease;
  }
  .side_list li a:hover {
    background-color: #f3f3f3;
  }
}
.side_list li a i {
  margin-right: 4px;
}

.side_column_list li {
  border-bottom: 1px #ddd solid;
}
.side_column_list li a {
  width: 100%;
  padding: 12px 0;
  display: block;
  transition: all 0.3s ease;
}
.side_column_list li a:hover {
  background-color: #f3f3f3;
}
.side_column_list li a .inner {
  width: 100%;
}
.side_column_list li a .inner .date {
  color: #666;
  font-size: 1.2rem;
}
.side_column_list li a .inner .tit {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .side_column_list li a .inner .tit {
    -webkit-line-clamp: 2;
  }
}

.side_btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  width: 100%;
  padding: 0 16px;
  background: linear-gradient(0deg, #284B7D 0 50%, #0b39af 50% 100%);
  color: #fff;
  margin-top: 8px;
  line-height: 1.6;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .side_btn {
    padding: 0 12px;
    font-size: 1.4rem;
  }
}
@media (min-width: 560px) {
  .side_btn {
    transition: all 0.3s ease;
  }
  .side_btn:hover {
    opacity: 0.8;
    color: white;
  }
}
.side_btn i {
  font-size: 2.4rem;
  margin-right: 16px;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .side_btn i {
    font-size: 1.8rem;
    margin-right: 12px;
  }
}

.single_info {
  padding-bottom: 16px;
  border-bottom: #ddd 1px solid;
  margin-bottom: 24px;
}
@media (min-width: 560px) {
  .single_info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.single_info .date {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
}

/**************
設備一覧
**************/
.facility_img_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 5%;
  padding-bottom: 40px;
}
.facility_img_cont .facility_inner {
  width: 30%;
  height: 100%;
}
@media (max-width: 820.9px) {
  .facility_img_cont .facility_inner {
    width: 47%;
  }
}
@media (max-width: 559.9px) {
  .facility_img_cont .facility_inner {
    width: 90%;
    margin: 0 auto;
    max-width: 400px;
  }
}
.facility_img_cont .facility_inner .name {
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  padding: 6px;
  font-size: min(1.5rem, 4vw);
  font-weight: 700;
  text-align: center;
}

.facility_list_cont {
  width: 100%;
  background-color: #F5F5F5;
  margin-top: 50px;
  padding: 30px 40px;
}

/**************
製作事例
**************/
.searchHead {
  background-color: #ACCFE7;
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.products_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .products_navi {
    gap: 16px 2%;
  }
}

.products_inner {
  width: 180px;
  border: 2px #284B7D solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px 0;
  color: #284B7D;
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 559.9px) {
  .products_inner {
    width: 32%;
    padding: 9px 0;
    height: 64px;
  }
}
.products_inner.w19 {
  width: 196px;
}
.products_inner::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 2px;
  display: block;
  background-color: #284B7D;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3 ease;
}
.products_inner .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .products_inner .eng {
    font-size: 0.9rem;
  }
}
.products_inner .jp {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .products_inner .jp {
    font-size: 1.4rem;
  }
}
.products_inner.active {
  background-color: #ACCFE7;
}
.products_inner:not(.products_inner.active):hover, .products_inner:not(.products_inner.active) :active {
  background-color: #284B7D;
  color: #ffffff;
}
.products_inner:not(.products_inner.active):hover::after, .products_inner:not(.products_inner.active) :active::after {
  background-color: #ffffff;
}

/**************
製作事詳細
**************/
.products_single {
  width: 100%;
}
.products_single .products_single_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5vw 5%;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.products_single .products_single_inner .products_single_inner_left {
  width: 50%;
}
@media (max-width: 559.9px) {
  .products_single .products_single_inner .products_single_inner_left {
    width: 100%;
  }
}
.products_single .products_single_inner .products_single_inner_left .works_img {
  width: 100%;
}
.products_single .products_single_inner .products_single_inner_left .works_img img {
  display: block;
  height: auto;
}
.products_single .products_single_inner .products_single_inner_right {
  width: 45%;
}
@media (max-width: 559.9px) {
  .products_single .products_single_inner .products_single_inner_right {
    width: 100%;
  }
}

.pro-title {
  font-size: 3rem;
}

.pro-title-eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.products_single_text {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .products_single_text {
    width: 100%;
    padding: 0;
  }
}

.products_link_cont {
  margin-top: 80px;
}

.product_info_table {
  display: flex;
  width: 100%;
  margin-top: 3px;
}
.product_info_table dt {
  width: 100px;
  background-color: #C1C1C1;
  padding: 5px 10px;
}
.product_info_table dd {
  flex: 1;
  padding: 5px 10px;
  background-color: #F5F5F5;
}

/**************
会社情報
**************/
.president_cont {
  width: 90%;
  margin: 0 auto;
}

.president_img {
  margin: 0 auto;
  width: 75%;
  position: relative;
}
.president_img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(228, 86, 86, 0.6);
  display: inline-block;
  position: absolute;
  top: 10%;
  left: 15%;
}
.president_img img {
  position: relative;
  z-index: 3;
}

.syaze_cont {
  margin-top: 100px;
}
.syaze_cont .syaze_img {
  text-align: center;
}

.overview_cont {
  width: 90%;
  margin: 120px auto 0;
}

.history_cont {
  width: 90%;
  margin: 80px auto 0;
}

.history_box {
  width: 100%;
  padding: 40px 50px;
  background-color: #F5F5F5;
}
@media (max-width: 559.9px) {
  .history_box {
    padding: 20px;
  }
}

/**************
拠点・アクセス
**************/
.access-map_img {
  width: 690px;
  margin: 70px auto 40px;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img {
    width: 425px;
    margin: 70px auto 50px 0;
  }
}
@media (max-width: 559.9px) {
  .access-map_img {
    width: 70%;
    margin: 70px auto 50px 0;
  }
}
.access-map_img img {
  width: 100%;
}
.access-map_img .a-map_link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #191718;
  position: absolute;
  line-height: 0.6;
  transition: all 0.3s ease;
}
@media (max-width: 820.9px) {
  .access-map_img .a-map_link {
    font-size: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link {
    font-size: 1.1rem;
  }
}
.access-map_img .a-map_link::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #191718;
  display: inline-block;
  bottom: 0;
  transform: scale(1, 1);
  transform-origin: center top;
  transition: all 0.3s ease;
}
.access-map_img .a-map_link.chitose {
  top: -27px;
  right: -27px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.chitose {
    top: -24px;
    right: -46px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.chitose {
    top: -11%;
    right: -39%;
  }
}
.access-map_img .a-map_link.sapporo {
  top: 25px;
  left: 212px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.sapporo {
    top: 0;
    left: 101px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.sapporo {
    top: -3%;
    left: 5%;
  }
}
.access-map_img .a-map_link.medec {
  top: 90px;
  left: 187px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.medec {
    top: 55px;
    left: 77px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.medec {
    top: 8%;
    left: 6%;
  }
}
.access-map_img .a-map_link.CAM {
  top: 144px;
  left: 163px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.CAM {
    top: 91px;
    left: 55px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.CAM {
    top: 22%;
    left: -6%;
  }
}
.access-map_img .a-map_link.yamagata {
  top: 251px;
  left: 171px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.yamagata {
    top: 158px;
    left: 53px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.yamagata {
    top: 35%;
    left: -1%;
  }
}
.access-map_img .a-map_link.hakodate {
  top: 185px;
  right: -47px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.hakodate {
    top: 117px;
    right: -86px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.hakodate {
    top: 32%;
    right: -48%;
  }
}
.access-map_img .a-map_link.goryo {
  top: 260px;
  right: -33px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.goryo {
    top: 159px;
    right: -67px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.goryo {
    top: 45%;
    right: -33%;
  }
}
.access-map_img .a-map_link.yoshimura {
  top: 334px;
  left: 95px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_link.yoshimura {
    top: 209px;
    left: 13px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_link.yoshimura {
    top: 50%;
    left: -7%;
  }
}
.access-map_img .a-map_link:hover,
.access-map_img .a-map_link :active {
  color: #E45656;
}
.access-map_img .a-map_link:hover::after,
.access-map_img .a-map_link :active::after {
  background-color: #E45656;
  transform: scale(0, 1);
}
.access-map_img .a-map_place {
  font-size: 1.4rem;
  color: #191718;
  font-weight: 700;
  position: absolute;
}
@media (max-width: 820.9px) {
  .access-map_img .a-map_place {
    font-size: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_place {
    font-size: 1.1rem;
  }
}
.access-map_img .a-map_place.nagoya {
  bottom: 71px;
  left: 425px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_place.nagoya {
    bottom: 39px;
    left: 272px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_place.nagoya {
    bottom: 7%;
    left: 64%;
  }
}
.access-map_img .a-map_place.fukuoka {
  bottom: 184px;
  left: 17px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_place.fukuoka {
    bottom: 118px;
    left: 0;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_place.fukuoka {
    bottom: 31%;
    left: -5%;
  }
}
.access-map_img .a-map_place.kumamoto {
  bottom: 0;
  left: -7px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .access-map_img .a-map_place.kumamoto {
    bottom: -22px;
    left: -3px;
  }
}
@media (max-width: 559.9px) {
  .access-map_img .a-map_place.kumamoto {
    bottom: -9%;
    left: -1%;
  }
}

.access_cont {
  padding: 40px;
}
@media (max-width: 820.9px) {
  .access_cont {
    padding: 20px 0;
  }
}
.access_cont .access_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 559.9px) {
  .access_cont .access_box {
    display: block;
    height: 100%;
  }
}
.access_cont .access_box:last-child {
  margin-bottom: 0;
}
.access_cont .access_box .text_cont {
  width: 48%;
}
@media (max-width: 559.9px) {
  .access_cont .access_box .text_cont {
    width: 100%;
    margin-bottom: 15px;
  }
}
.access_cont .access_box .text_cont .title {
  font-size: min(3.2rem, 3vw);
  font-weight: 700;
  margin-top: 20px;
}
@media (max-width: 559.9px) {
  .access_cont .access_box .text_cont .title {
    font-size: 1.8rem;
  }
}
.access_cont .access_box .text_cont .text {
  margin-top: 20px;
}
.access_cont .access_box .map_cont {
  height: 295px;
  width: 50%;
}
@media (max-width: 559.9px) {
  .access_cont .access_box .map_cont {
    width: 100%;
    height: 200px;
  }
}
.access_cont .access_box .map_cont .google-map {
  height: 100%;
}
.access_cont .access_box .map_cont .google-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/**************
サステナビリティ
**************/
.certificate_img {
  background-color: #FFEEEE;
}
.certificate_img img {
  width: 48%;
  display: block;
  margin: 0 auto;
}

.sustainability_cont {
  width: 90%;
  margin: 0 auto 80px;
}
@media (max-width: 820.9px) {
  .sustainability_cont {
    margin-bottom: 30px;
  }
}
@media (max-width: 559.9px) {
  .sustainability_cont {
    width: 100%;
  }
}
.sustainability_cont:last-child {
  margin-bottom: 0;
}
.sustainability_cont .sustainability_text {
  padding: 20px 50px;
}
@media (max-width: 820.9px) {
  .sustainability_cont .sustainability_text {
    padding: 20px 0;
  }
}
.sustainability_cont .sustainability_text .text {
  margin-top: 20px;
}
@media (max-width: 820.9px) {
  .sustainability_cont .sustainability_text .text {
    margin-top: 5px;
  }
}

/**************
プライバシーポリシー
**************/
.privacy_cont {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .privacy_cont {
    width: 100%;
  }
}
.privacy_cont .privacy_inner {
  margin-top: 20px;
}
@media (max-width: 559.9px) {
  .privacy_cont .privacy_inner {
    margin-top: 10px;
  }
}
.privacy_cont .privacy_inner .text15 {
  margin-top: 10px;
}
@media (max-width: 559.9px) {
  .privacy_cont .privacy_inner .text15 {
    font-size: 1.4rem;
    margin-top: 0;
  }
}
.privacy_cont .privacy_inner > ul {
  margin-left: 2rem;
}
.privacy_cont .privacy_inner > ul li {
  list-style-type: disc;
  font-size: 1.5rem;
}
@media (max-width: 559.9px) {
  .privacy_cont .privacy_inner > ul li {
    font-size: 1.4rem;
  }
}

.privacy_contact {
  margin-top: 10px;
}
.privacy_contact > dl {
  display: flex;
  align-items: center;
}
@media (max-width: 559.9px) {
  .privacy_contact > dl {
    font-size: 1.4rem;
    align-items: flex-start;
  }
}
.privacy_contact > dl dt {
  padding-right: 10px;
  position: relative;
}
.privacy_contact > dl dt::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  display: inline-block;
  background-color: #E45656;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.privacy_contact > dl dd {
  padding-left: 10px;
}
@media (min-width: 560px) {
  .privacy_contact > dl dd br {
    display: none;
  }
}

/**************
採用情報
**************/
.news_cont .btn-white {
  margin-left: auto;
}

.our-work_text {
  text-align: center;
}
.our-work_text > span {
  color: #E45656;
}

.our-work_list {
  margin-top: 70px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
@media (max-width: 559.9px) {
  .our-work_list {
    display: block;
    margin-top: 40px;
  }
}
.our-work_list .our-work_inner {
  width: 33.3333333333%;
  padding: 0 15px;
  border-right: 3px #284B7D solid;
  position: relative;
}
@media (min-width: 560px) {
  .our-work_list .our-work_inner:first-child {
    border-left: 3px #284B7D solid;
  }
}
@media (min-width: 821px) {
  .our-work_list .our-work_inner:last-child::before {
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background-color: #284B7D;
    position: absolute;
    left: -3px;
    top: 0;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .our-work_list .our-work_inner {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .our-work_list .our-work_inner:nth-child(odd) {
    border-left: 3px #284B7D solid;
  }
}
@media (max-width: 559.9px) {
  .our-work_list .our-work_inner {
    width: 300px;
    margin: 0 auto 30px;
    border-right: none;
  }
}
.our-work_list .our-work_inner .text-strok_img {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .our-work_list .our-work_inner .text-strok_img {
    width: 100%;
  }
}
.our-work_list .our-work_inner .head {
  font-size: min(2.4rem, 2.2vw);
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 820.9px) {
  .our-work_list .our-work_inner .head {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .our-work_list .our-work_inner .head {
    margin-top: 3px;
  }
}
.our-work_list .our-work_inner .text {
  font-size: 1.5rem;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .our-work_list .our-work_inner .text {
    min-height: 96px;
  }
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .our-work_list .our-work_inner .text {
    min-height: 150px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .our-work_list .our-work_inner .text {
    min-height: 128px;
  }
}
@media (max-width: 559.9px) {
  .our-work_list .our-work_inner .text {
    margin-top: 0;
  }
}
.our-work_list .our-work_inner .our-work_img {
  margin-top: 20px;
}
@media (max-width: 559.9px) {
  .our-work_list .our-work_inner .our-work_img {
    margin-top: 10px;
  }
}

.hokkaido_cont {
  margin-top: 120px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .hokkaido_cont {
    margin-top: 80px;
  }
}
@media (max-width: 559.9px) {
  .hokkaido_cont {
    margin-top: 40x;
  }
}
.hokkaido_cont .hokkaido_title_box {
  position: relative;
}
.hokkaido_cont .hokkaido_title_box .recruit_top_work {
  position: absolute;
}
.hokkaido_cont .hokkaido_title_box .recruit_top_work_1 {
  width: 20%;
  top: -24px;
  left: 90px;
  transform: rotate(-16deg);
}
@media (max-width: 1199.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_1 {
    top: 20%;
    left: 5%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_1 {
    top: 37%;
    left: 0;
  }
}
@media (max-width: 559.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_1 {
    width: 19%;
    top: 45%;
    left: -2%;
  }
}
.hokkaido_cont .hokkaido_title_box .recruit_top_work_2 {
  width: 9%;
  top: 69px;
  left: 334px;
}
@media (max-width: 1199.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_2 {
    top: 78%;
    left: 29%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_2 {
    top: 77%;
    left: 23%;
  }
}
@media (max-width: 559.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_2 {
    width: 11%;
    top: 89%;
    left: 23%;
  }
}
.hokkaido_cont .hokkaido_title_box .recruit_top_work_3 {
  width: 8%;
  top: 45px;
  right: 332px;
}
@media (max-width: 1199.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_3 {
    top: 62%;
    right: 28%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_3 {
    top: 62%;
    right: 22%;
  }
}
@media (max-width: 559.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_3 {
    width: 10%;
    top: 75%;
    right: 25%;
  }
}
.hokkaido_cont .hokkaido_title_box .recruit_top_work_4 {
  width: 19%;
  top: -24px;
  right: 90px;
  transform: rotate(10deg);
}
@media (max-width: 1199.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_4 {
    top: 20%;
    right: 5%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_4 {
    top: 37%;
    right: 0;
  }
}
@media (max-width: 559.9px) {
  .hokkaido_cont .hokkaido_title_box .recruit_top_work_4 {
    width: 20%;
    top: 43%;
    right: -2%;
  }
}
.hokkaido_cont .hokkaido_title_box .small-title {
  margin-bottom: 100px;
}
@media (max-width: 559.9px) {
  .hokkaido_cont .hokkaido_title_box .small-title {
    margin-bottom: 50px;
  }
}

.hokkaido_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2vw;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 559.9px) {
  .hokkaido_list {
    display: block;
  }
}
.hokkaido_list .hokkaido_list_inner {
  width: 47%;
}
@media (max-width: 559.9px) {
  .hokkaido_list .hokkaido_list_inner {
    width: 300px;
    margin: 0 auto 20px;
  }
  .hokkaido_list .hokkaido_list_inner:last-child {
    margin-bottom: 0;
  }
}
.hokkaido_list .hokkaido_list_inner .hokkaido_img {
  margin-top: 10px;
}
.hokkaido_list .hokkaido_list_inner .text {
  padding: 20px;
}

.hokkaido_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
.hokkaido_head i {
  font-size: 3rem;
  color: #E45656;
}
.hokkaido_head .jp {
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .hokkaido_head .jp {
    font-size: 1.6rem;
  }
}

.member_cont {
  margin-top: 80px;
}
@media (max-width: 559.9px) {
  .member_cont {
    margin-top: 40px;
  }
}

.member_navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 4%;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1200px) {
  .member_navi {
    padding: 0 1%;
  }
}
@media (max-width: 559.9px) {
  .member_navi {
    justify-content: flex-start;
  }
}
.member_navi .member_navi_inner {
  width: 22%;
  position: relative;
}
@media (max-width: 559.9px) {
  .member_navi .member_navi_inner {
    width: 48%;
  }
}
.member_navi .member_navi_inner .member_navi_img {
  position: relative;
  aspect-ratio: 1/1.6;
}
.member_navi .member_navi_inner .member_navi_img img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.member_navi .member_navi_inner .member_navi_img .member_navi_textbox {
  position: absolute;
  bottom: 8%;
  right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  background-color: #FFD700;
  gap: 0 22px;
  padding: 0 18px 0 28px;
  transition: all 0.3s ease;
}
.member_navi .member_navi_inner .member_navi_img .member_navi_textbox .dept {
  font-size: 1.8rem;
  font-weight: 700;
  color: #191718;
  position: relative;
}
.member_navi .member_navi_inner .member_navi_img .member_navi_textbox .dept::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background-color: #191718;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
}
.member_navi .member_navi_inner .member_navi_img .member_navi_textbox .initial {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  color: #191718;
}
.member_navi .member_navi_inner .dept02 {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #191718;
  transition: all 0.3s ease;
}
.member_navi .member_navi_inner .dept03 {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #4C4E51;
  transition: all 0.3s ease;
}
.member_navi .member_navi_inner:hover .member_navi_img img, .member_navi .member_navi_inner :active .member_navi_img img {
  transform: scale(1.05);
}
.member_navi .member_navi_inner:hover .member_navi_img .member_navi_textbox, .member_navi .member_navi_inner :active .member_navi_img .member_navi_textbox {
  background-color: rgba(255, 255, 255, 0.7);
}
.member_navi.bgblue .member_navi_inner .dept02 {
  color: #ffffff;
}
.member_navi.bgblue .member_navi_inner .dept03 {
  color: #C1C1C1;
}

.interview_slider {
  opacity: 0;
  transform: translate(20px);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: visible;
}
@media (min-width: 560px) {
  .interview_slider {
    margin-top: 40px;
  }
}
@media (max-width: 559.9px) {
  .interview_slider {
    margin-top: 30px;
  }
}
.interview_slider.moved {
  opacity: 1;
  transform: translate(0);
}
.interview_slider .swiper-slide {
  flex-shrink: 0;
  position: relative;
  transition-property: transform;
}
.interview_slider .swiper-slide .member_navi_inner {
  width: 100%;
  position: relative;
}
@media (max-width: 559.9px) {
  .interview_slider .swiper-slide .member_navi_inner {
    width: 100%;
  }
}
.interview_slider .swiper-slide .member_navi_inner .member_navi_img {
  position: relative;
  aspect-ratio: 1/1.6;
}
.interview_slider .swiper-slide .member_navi_inner .member_navi_img img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.interview_slider .swiper-slide .member_navi_inner .member_navi_img .member_navi_textbox {
  position: absolute;
  bottom: 8%;
  right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  background-color: #FFD700;
  gap: 0 22px;
  padding: 0 18px 0 28px;
  transition: all 0.3s ease;
}
.interview_slider .swiper-slide .member_navi_inner .member_navi_img .member_navi_textbox .dept {
  font-size: 1.8rem;
  font-weight: 700;
  color: #191718;
  position: relative;
}
.interview_slider .swiper-slide .member_navi_inner .member_navi_img .member_navi_textbox .dept::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background-color: #191718;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
}
.interview_slider .swiper-slide .member_navi_inner .member_navi_img .member_navi_textbox .initial {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  color: #191718;
}
.interview_slider .swiper-slide .member_navi_inner .dept02 {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #191718;
  transition: all 0.3s ease;
}
.interview_slider .swiper-slide .member_navi_inner .dept03 {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #4C4E51;
  transition: all 0.3s ease;
}
.interview_slider .swiper-slide .member_navi_inner:hover .member_navi_img img, .interview_slider .swiper-slide .member_navi_inner :active .member_navi_img img {
  transform: scale(1.05);
}
.interview_slider .swiper-slide .member_navi_inner:hover .member_navi_img .member_navi_textbox, .interview_slider .swiper-slide .member_navi_inner :active .member_navi_img .member_navi_textbox {
  background-color: rgba(255, 255, 255, 0.7);
}
.interview_slider .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  transform: translateZ(0);
}
.interview_slider .swiper-button-prev,
.interview_slider .swiper-button-next {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  background-color: #284B7D;
  border-radius: 8px;
}
.interview_slider .swiper-button-prev i,
.interview_slider .swiper-button-next i {
  color: white;
}
@media (min-width: 560px) {
  .interview_slider .swiper-button-prev,
.interview_slider .swiper-button-next {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 820.9px) {
  .interview_slider .swiper-button-prev,
.interview_slider .swiper-button-next {
    width: 32px;
    height: 32px;
    top: 40%;
  }
}
@media (max-width: 559.9px) {
  .interview_slider .swiper-button-prev,
.interview_slider .swiper-button-next {
    display: none;
  }
}
.interview_slider .swiper-button-prev::after,
.interview_slider .swiper-button-next::after {
  display: none;
}
@media (min-width: 821px) {
  .interview_slider .swiper-button-prev {
    left: auto;
    right: 76px;
    top: -88px;
    padding: 0;
  }
}
@media (max-width: 820.9px) {
  .interview_slider .swiper-button-prev {
    left: -10px;
  }
}
.interview_slider .swiper-button-prev.swiper-button-disabled {
  background-color: #ccc;
}
@media (min-width: 821px) {
  .interview_slider .swiper-button-next {
    right: 0;
    top: -88px;
    padding: 0;
  }
}
@media (max-width: 820.9px) {
  .interview_slider .swiper-button-next {
    right: -10px;
  }
}
.interview_slider .swiper-button-next.swiper-button-disabled {
  background-color: #ccc;
}

.recruit_member_cross-cont {
  margin-top: 80px;
}
@media (max-width: 559.9px) {
  .recruit_member_cross-cont {
    margin-top: 40px;
  }
}
.recruit_member_cross-cont .recruit_member_cross_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 820.9px) {
  .recruit_member_cross-cont .recruit_member_cross_box {
    display: block;
  }
}
.recruit_member_cross-cont .recruit_member_cross_box:last-child {
  margin-bottom: 0;
}
.recruit_member_cross-cont .recruit_member_cross_box .left_cont {
  width: 45%;
  position: relative;
}
@media (max-width: 820.9px) {
  .recruit_member_cross-cont .recruit_member_cross_box .left_cont {
    width: 330px;
    margin: 0 auto 20px;
  }
}
.recruit_member_cross-cont .recruit_member_cross_box .left_cont .grayline {
  width: 100%;
  height: 5px;
  background-color: #D7D8DD;
}
.recruit_member_cross-cont .recruit_member_cross_box .left_cont .cross_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.recruit_member_cross-cont .recruit_member_cross_box .left_cont .cross_img img {
  transition: all 0.3s ease;
}
.recruit_member_cross-cont .recruit_member_cross_box .left_cont .cross_img .text_box {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.recruit_member_cross-cont .recruit_member_cross_box .left_cont .cross_img .text_box .ct {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.recruit_member_cross-cont .recruit_member_cross_box .left_cont .cross_img .text_box .ct-name {
  font-size: 1.5rem;
  font-weight: 700;
}
.recruit_member_cross-cont .recruit_member_cross_box:hover .cross_img img, .recruit_member_cross-cont .recruit_member_cross_box :active .cross_img img {
  transform: scale(1.05);
}
.recruit_member_cross-cont .recruit_member_cross_box:hover .right_cont .head, .recruit_member_cross-cont .recruit_member_cross_box :active .right_cont .head {
  background-color: #2fccdc;
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont {
  width: 50%;
}
@media (max-width: 820.9px) {
  .recruit_member_cross-cont .recruit_member_cross_box .right_cont {
    width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 559.9px) {
  .recruit_member_cross-cont .recruit_member_cross_box .right_cont {
    width: 100%;
    min-width: 330px;
  }
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .head {
  width: 100%;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  text-align: center;
  transition: all 0.3s ease;
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .head .head_text {
  font-size: 1.5rem;
  font-weight: 700;
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2%;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 820.9px) {
  .recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member {
    margin-top: 20px;
  }
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member .cross-talk_member_inner {
  width: 30%;
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member .cross-talk_member_inner .base {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 559.9px) {
  .recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member .cross-talk_member_inner .base {
    font-size: 1.2rem;
  }
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member .cross-talk_member_inner .cross-talk_member_img {
  border-radius: 50%;
  overflow: hidden;
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member .cross-talk_member_inner .name {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 5px;
}
@media (max-width: 820.9px) {
  .recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member .cross-talk_member_inner .name {
    font-size: 1.6rem;
  }
}
.recruit_member_cross-cont .recruit_member_cross_box .right_cont .cross-talk_member .icon-cross {
  width: 5%;
}

.color-g {
  color: #4CB799;
}

.color-y {
  color: #E8A421;
}

.color-p {
  color: #D555C6;
}

.recruit-page-navi_cont {
  margin-top: 80px;
}
@media (max-width: 559.9px) {
  .recruit-page-navi_cont {
    margin-top: 40px;
  }
}
.recruit-page-navi_cont .recruit-page-navi {
  display: flex;
  width: 100%;
}
@media (max-width: 559.9px) {
  .recruit-page-navi_cont .recruit-page-navi {
    display: block;
  }
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox {
  width: 50%;
  position: relative;
}
@media (max-width: 559.9px) {
  .recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox .recruit-page-navi_textbox01 {
  aspect-ratio: 1/0.75;
  background: url(../images/page/recruit_top_data.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox .recruit-page-navi_textbox02 {
  aspect-ratio: 1/0.75;
  background: url(../images/page/recruit_top_data02.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox .white_box {
  border: #ffffff 7px solid;
  width: 60%;
  aspect-ratio: 1/0.45;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox .white_box .eng {
  color: #ffffff;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.5;
  font-size: min(4.4rem, 3.6vw);
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox .white_box .eng {
    font-size: 2rem;
  }
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox .white_box .jp {
  font-size: min(2rem, 2.3vw);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox .white_box .jp {
    font-size: 1.8rem;
  }
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox:hover .white_box, .recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox :active .white_box {
  border: #FFD700 7px solid;
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox:hover .white_box .eng, .recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox :active .white_box .eng {
  color: #FFD700;
}
.recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox:hover .white_box .jp, .recruit-page-navi_cont .recruit-page-navi .recruit-page-navi_textbox :active .white_box .jp {
  color: #FFD700;
}

.recruit-president_cont {
  margin-top: 80px;
}

.page_section_recruit_link {
  padding: 40px 0;
}

.recruit_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6vw 6%;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 559.9px) {
  .recruit_navi {
    gap: 4%;
  }
}
.recruit_navi .recruit_link {
  width: 300px;
  border: 2px #284B7D solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 0;
  color: #284B7D;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 4px;
}
@media (max-width: 559.9px) {
  .recruit_navi .recruit_link {
    width: 48%;
    padding: 32px 0;
  }
}
.recruit_navi .recruit_link::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 2px;
  display: block;
  background-color: #284B7D;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3 ease;
}
.recruit_navi .recruit_link .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  .recruit_navi .recruit_link .eng {
    font-size: 1.1rem;
  }
}
.recruit_navi .recruit_link .jp {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .recruit_navi .recruit_link .jp {
    font-size: 2rem;
  }
}
.recruit_navi .recruit_link:hover, .recruit_navi .recruit_link :active {
  background-color: #284B7D;
  color: #ffffff;
}
.recruit_navi .recruit_link:hover::after, .recruit_navi .recruit_link :active::after {
  background-color: #ffffff;
}

/**************
先輩社員紹介詳細
**************/
.individual_head {
  padding: 30px 30px 50px 30px;
  width: 100%;
  position: relative;
  border-bottom: 2px solid #C1C1C1;
}
@media (max-width: 820.9px) {
  .individual_head {
    padding: 30px 10px;
  }
}
@media (max-width: 559.9px) {
  .individual_head {
    padding: 30px 0;
  }
}
.individual_head .individual_img {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 559.9px) {
  .individual_head .individual_img {
    width: 100%;
  }
}
.individual_head .head_text_box {
  position: absolute;
  top: 0;
  left: 30px;
  width: 25%;
  height: 80%;
  background-color: #FFD700;
  color: #191718;
}
@media (max-width: 820.9px) {
  .individual_head .head_text_box {
    width: 28%;
  }
}
@media (max-width: 559.9px) {
  .individual_head .head_text_box {
    display: none;
  }
}
.individual_head .head_text_box .year {
  font-weight: 700;
  padding: 0 10px;
  border-bottom: 1px #191718 solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 2rem;
}
@media (max-width: 820.9px) {
  .individual_head .head_text_box .year {
    font-size: 1.4rem;
    left: 7%;
  }
}
.individual_head .head_text_box .dept {
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  top: 60%;
  left: 10%;
  font-size: 1.8rem;
}
@media (max-width: 820.9px) {
  .individual_head .head_text_box .dept {
    left: 7%;
  }
}
.individual_head .head_text_box .initial {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  top: 76%;
  left: 10%;
}
@media (max-width: 820.9px) {
  .individual_head .head_text_box .initial {
    left: 7%;
    top: 78%;
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.individual_head .head_text_box-sp {
  width: 100%;
  background-color: #FFD700;
  color: #ffffff;
  padding: 10px 20px;
}
@media (min-width: 560px) {
  .individual_head .head_text_box-sp {
    display: none;
  }
}
.individual_head .head_text_box-sp .year {
  font-weight: 700;
  border-bottom: 1px #ffffff solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.individual_head .head_text_box-sp .inner_flex {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 5px;
}
.individual_head .head_text_box-sp .inner_flex .dept {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.individual_head .head_text_box-sp .inner_flex .initial {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}

.qa_cont {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .qa_cont {
    width: 100%;
  }
}

.qa_box {
  margin-bottom: 30px;
}
@media (max-width: 559.9px) {
  .qa_box {
    margin-bottom: 20px;
  }
}
.qa_box:last-child {
  margin-bottom: 0;
}
.qa_box .q_box {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
.qa_box .q_box .icon_q {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  background-color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 10px;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .qa_box .q_box .icon_q {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    width: 30px;
    height: 30px;
  }
}
.qa_box .q_box .question {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .qa_box .q_box .question {
    font-size: 1.8rem;
  }
}
.qa_box .answer {
  margin-left: 43px;
  font-size: 1.5rem;
}
@media (max-width: 559.9px) {
  .qa_box .answer {
    font-size: 1.4rem;
  }
}

.individual_img02 {
  margin-bottom: 30px;
}

/**************
数字・働く環境を知る
**************/
.medec-numbers_cont {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 2px solid #C1C1C1;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw 2%;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .medec-numbers_cont {
    width: 740px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .medec-numbers_cont {
    width: 500px;
  }
}
.medec-numbers_cont .medec-numbers {
  position: relative;
}
.medec-numbers_cont .medec-numbers .num {
  color: #284B7D;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1.5;
  position: absolute;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .medec-numbers_cont .medec-numbers .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 5.8rem;
    font-weight: 800;
    line-height: 1.5;
  }
}
@media (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.5;
  }
}
.medec-numbers_cont .medec-numbers .text {
  color: #284B7D;
  font-size: 2.4rem;
  font-weight: 700;
  position: absolute;
}
@media (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers .text {
    font-size: 1.6rem;
  }
}
.medec-numbers_cont .medec-numbers .text.small {
  font-size: 1.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers .text.small {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers .text.small {
    font-size: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers .medec-numbers_img {
    display: none;
  }
}
@media (min-width: 560px) {
  .medec-numbers_cont .medec-numbers .medec-numbers_img-sp {
    display: none;
  }
}
.medec-numbers_cont .medec-numbers_01 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_01 .num {
  top: 49%;
  left: 36%;
}
.medec-numbers_cont .medec-numbers_01 .text {
  top: 73%;
  left: 86%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_01 .text {
    left: 84%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_01 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_02 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_02 .num {
  top: 35%;
  left: 23%;
}
.medec-numbers_cont .medec-numbers_02 .text {
  top: 61%;
  left: 30%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers_02 .text {
    left: 28%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_02 .text {
    left: 27%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_02 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_03 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_03 .num {
  top: 21%;
  left: 14%;
}
.medec-numbers_cont .medec-numbers_03 .text {
  top: 41%;
  left: 58%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_03 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_04 {
  width: 38%;
}
.medec-numbers_cont .medec-numbers_04 .num {
  top: 42%;
  left: 55%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_04 .num {
    left: 54%;
  }
}
.medec-numbers_cont .medec-numbers_04 .text {
  top: 65%;
  left: 85%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_04 .text {
    left: 84%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_04 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_05 {
  width: 60%;
}
.medec-numbers_cont .medec-numbers_05 .num {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.5;
  top: 38%;
}
@media (min-width: 821px) and (max-width: 1199.9px) {
  .medec-numbers_cont .medec-numbers_05 .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.5;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers_05 .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.5;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_05 .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.5;
  }
}
.medec-numbers_cont .medec-numbers_05 .num span {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers_05 .num span {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
  }
}
.medec-numbers_cont .medec-numbers_05 .num_01 {
  left: 15%;
}
.medec-numbers_cont .medec-numbers_05 .num_02 {
  left: 39%;
}
.medec-numbers_cont .medec-numbers_05 .num_03 {
  left: 68%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_05 {
    width: 100%;
  }
}
.medec-numbers_cont .medec-numbers_06 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_06 .num {
  top: 55%;
  left: 46%;
}
.medec-numbers_cont .medec-numbers_06 .num .colon {
  padding: 0 7px;
  color: #284B7D;
}
.medec-numbers_cont .medec-numbers_06 .num span {
  color: #D555C6;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_06 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_07 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_07 .num {
  top: 11%;
  left: 16%;
}
.medec-numbers_cont .medec-numbers_07 .text {
  top: 24%;
  left: 49%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_07 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_08 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_08 .num {
  top: 55%;
  left: 45%;
}
.medec-numbers_cont .medec-numbers_08 .text {
  top: 77%;
  left: 87%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers_08 .text {
    left: 85%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_08 .text {
    left: 84%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_08 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_09 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_09 .num {
  top: 10%;
  left: 15%;
}
.medec-numbers_cont .medec-numbers_09 .text {
  top: 23%;
  left: 62%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers_09 .text {
    left: 60%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_09 .text {
    top: 20%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_09 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_10 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_10 .num {
  top: 51%;
  left: 24%;
}
.medec-numbers_cont .medec-numbers_10 .text {
  top: 76%;
  left: 30%;
}
@media (max-width: 820.9px) {
  .medec-numbers_cont .medec-numbers_10 .text {
    left: 18%;
  }
}
.medec-numbers_cont .medec-numbers_10 .text_01 {
  top: 64%;
  left: 12%;
}
.medec-numbers_cont .medec-numbers_10 .text_02 {
  top: 64%;
  left: 82%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_10 .text_02 {
    left: 79%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_10 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_11 {
  width: 32%;
}
.medec-numbers_cont .medec-numbers_11 .num {
  top: 14%;
  left: 27%;
}
.medec-numbers_cont .medec-numbers_11 .text {
  top: 28%;
  left: 74%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_11 {
    width: 49%;
  }
}
.medec-numbers_cont .medec-numbers_12 .num {
  top: 46%;
  left: 49%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_12 .num {
    top: 40%;
    left: 41%;
  }
}
.medec-numbers_cont .medec-numbers_12 .text {
  top: 65%;
  left: 61%;
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_12 .text {
    left: 51%;
  }
}
@media (max-width: 559.9px) {
  .medec-numbers_cont .medec-numbers_12 {
    width: 100%;
  }
}

.space_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2vw;
}
.space_cont .space_inner {
  width: 47%;
}
@media (max-width: 559.9px) {
  .space_cont .space_inner {
    width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .space_cont .space_inner:last-child {
    margin-bottom: 0;
  }
}
.space_cont .space_inner .space_img {
  margin-bottom: 10px;
}

/**************
クロストーク
**************/
.crosstalk_head {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 15rem;
  font-weight: 600;
  line-height: 1.5;
  font-size: min(15rem, 10vw);
  color: #C1C1C1;
  text-align: center;
  line-height: 1;
}

.cross-talk_member02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2%;
  width: 70%;
  margin: 30px auto 50px;
}
@media (max-width: 559.9px) {
  .cross-talk_member02 {
    width: 100%;
    margin: 20px auto;
  }
}
.cross-talk_member02 .cross-talk_member_inner {
  width: 30%;
  position: relative;
}
.cross-talk_member02 .cross-talk_member_inner .inner_text_box {
  position: absolute;
  width: 100%;
  top: 70%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.cross-talk_member02 .cross-talk_member_inner .inner_text_box .dept {
  font-size: min(1.8rem, 1.8vw);
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .cross-talk_member02 .cross-talk_member_inner .inner_text_box .dept {
    font-size: 1.2rem;
  }
}
.cross-talk_member02 .cross-talk_member_inner .inner_text_box .name {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  font-size: min(3.6rem, 3vw);
}
@media (max-width: 559.9px) {
  .cross-talk_member02 .cross-talk_member_inner .inner_text_box .name {
    font-size: 1.2rem;
  }
}
.cross-talk_member02 .icon-cross {
  width: 5%;
}

.cross_t_top-text {
  font-size: min(2.8rem, 3vw);
  font-weight: 700;
  color: #284B7D;
  text-align: center;
}
@media (max-width: 559.9px) {
  .cross_t_top-text {
    font-size: 1.6rem;
  }
}

.cross-talk {
  margin-top: 40px;
  padding: 40px 60px;
  background-color: #ffffff;
}
@media (max-width: 559.9px) {
  .cross-talk {
    padding: 20px 10px;
  }
}
.cross-talk .theme {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 15px;
  position: relative;
  text-align: center;
}
.cross-talk .theme::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #191718;
  display: block;
}
.cross-talk .theme_head {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  color: #E45656;
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .cross-talk .theme_head {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
.cross-talk .cross-talk_inner {
  display: flex;
  gap: 0 30px;
  align-items: flex-start;
  margin-bottom: 16px;
}
@media (max-width: 559.9px) {
  .cross-talk .cross-talk_inner {
    gap: 0 15px;
    align-items: flex-start;
  }
}
.cross-talk .cross-talk_inner:last-child {
  margin-bottom: 0;
}
.cross-talk .cross-talk_inner .staff_img_cont {
  width: 100px;
}
@media (max-width: 559.9px) {
  .cross-talk .cross-talk_inner .staff_img_cont {
    width: 45px;
  }
}
.cross-talk .cross-talk_inner .staff_img_cont .staff_img {
  border-radius: 50%;
  overflow: hidden;
}
.cross-talk .cross-talk_inner .staff_img_cont .initial {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.cross-talk .cross-talk_inner .staff_ans_cont {
  width: calc(100% - 120px);
  font-size: 1.8rem;
  line-height: 2;
  padding-top: 10px;
}
@media (max-width: 559.9px) {
  .cross-talk .cross-talk_inner .staff_ans_cont {
    width: calc(100% - 60px);
    font-size: 1.3rem;
  }
}

.other_cross-t {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10%;
}
@media (max-width: 1199.9px) {
  .other_cross-t {
    gap: 0 4%;
  }
}
@media (max-width: 559.9px) {
  .other_cross-t {
    display: block;
  }
}
.other_cross-t .cross_cont {
  width: 45%;
  position: relative;
}
@media (max-width: 1199.9px) {
  .other_cross-t .cross_cont {
    width: 48%;
  }
}
@media (max-width: 559.9px) {
  .other_cross-t .cross_cont {
    width: 300px;
    margin: 0 auto;
  }
  .other_cross-t .cross_cont:first-child {
    margin-bottom: 20px;
  }
}
.other_cross-t .cross_cont .grayline {
  width: 100%;
  height: 5px;
  background-color: #D7D8DD;
}
.other_cross-t .cross_cont .cross_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.other_cross-t .cross_cont .cross_img img {
  transition: all 0.3s ease;
}
.other_cross-t .cross_cont .cross_img .text_box {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  transition: all 0.3s ease;
}
@media (max-width: 1199.9px) {
  .other_cross-t .cross_cont .cross_img .text_box {
    gap: 2%;
  }
}
.other_cross-t .cross_cont .cross_img .text_box .ct {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.other_cross-t .cross_cont .cross_img .text_box .ct-name {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 1199.9px) {
  .other_cross-t .cross_cont .cross_img .text_box .ct-name {
    font-size: 1.3rem;
  }
}
.other_cross-t .cross_cont:hover .cross_img img, .other_cross-t .cross_cont :active .cross_img img {
  transform: scale(1.1);
}
.other_cross-t .cross_cont:hover .cross_img .text_box, .other_cross-t .cross_cont :active .cross_img .text_box {
  background-color: rgba(255, 255, 255, 0.4);
}

/**************
募集要項
**************/
.requirement_list {
  margin-bottom: 60px;
}
.requirement_list .app_inner:not(:last-child) {
  margin-bottom: 48px;
}

/**************
お問い合わせ
**************/
.underline {
  margin: 0 5px;
  color: #E45656;
  border-bottom: 1px #E45656 solid;
  transition: all 0.3s ease;
}
.underline:hover, .underline :active {
  color: #FFD700;
  border-bottom: 1px #FFD700 solid;
}

.tel_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.tel_box .tel_box_inner {
  width: 330px;
  border: 1px #284B7D solid;
}
.tel_box .tel_box_inner .eng {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 5px 0;
  color: #284B7D;
}
@media (max-width: 559.9px) {
  .tel_box .tel_box_inner .eng {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.tel_box .tel_box_inner .num {
  background-color: #284B7D;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.5;
  font-size: min(2.6rem, 4vw);
}
@media (max-width: 559.9px) {
  .tel_box .tel_box_inner .num {
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.tel_box .tel_box_inner .num > span {
  font-family: initial;
  font-size: 1.8rem;
}

@media (max-width: 559.9px) {
  .con02_text {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.contact_cont {
  margin-top: 80px;
}

.contact_table {
  width: 100%;
}
.contact_table tr th {
  border: 1px solid #d3d3d3;
  padding: 18px 24px;
  width: 32%;
  vertical-align: middle;
  text-align: left;
  background-color: #F5F5F5;
}
@media (max-width: 1199.9px) {
  .contact_table tr th {
    display: block;
    padding: 16px 0;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr th {
    padding: 5px 12px;
    border: none;
  }
}
.contact_table tr th .hissu_cell {
  position: relative;
}
.contact_table tr th .hissu_cell .hissu {
  background-color: #E45656;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  padding: 4px 11px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -13px;
}
@media (max-width: 1199.9px) {
  .contact_table tr th .hissu_cell .hissu {
    padding: 0 7px 1px;
    margin-top: -10px;
  }
}
.contact_table tr td {
  padding: 18px 24px;
  border: 1px solid #d3d3d3;
  width: 68%;
}
@media (max-width: 1199.9px) {
  .contact_table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 20px;
    border-top: 0;
  }
}
@media (max-width: 559.9px) {
  .contact_table tr td {
    padding: 8px 0 16px;
    border: none;
  }
}
@media (min-width: 560px) {
  .contact_table tr:last-child th {
    border-bottom: 1px solid #d3d3d3;
  }
}
.contact_table tr:last-child td {
  border-bottom: 1px solid #d3d3d3;
}

.privacy_link {
  color: #284B7D;
  transition: all 0.3s ease;
}
.privacy_link:hover, .privacy_link :active {
  color: #FFD700;
}

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: 30px;
  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 #284B7D solid;
  color: #fff;
  background-color: #284B7D;
  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;
}

.privacyCheck {
  text-align: center;
  margin: 60px 0 40px;
}
.privacyCheck p {
  margin: 10px 0 20px;
}

.btn-confirm, #btn_confirm {
  display: block;
  border: 1px #999 solid;
  border-radius: 5px;
  max-width: 400px;
  width: 90%;
  padding: 15px 0;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto;
  background-color: #ddd;
  transition: all 0.3s ease 0s;
}
.btn-confirm.hoverOn, .hoverOn#btn_confirm {
  border: 1px solid #5d3fff;
  background-color: #fff;
  color: #5d3fff;
  cursor: pointer;
}

.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;
}

.btn-conta {
  color: white;
  font-size: 22px;
  font-weight: 600;
  height: 51px;
  width: 80%;
  text-rendering: optimizelegibility;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  text-align: center;
  padding-top: 18px;
  margin: 0 auto 20px;
  background-color: #333;
  border-bottom: 3px solid #888;
}
.btn-conta:hover {
  background-color: #555;
  border-bottom: 3px solid #999;
}

.btns .btn-primary {
  background-color: #81c320;
  border-color: #a2d400;
  border-bottom: 3px solid #679b1b;
}
.btns .btn-primary:hover {
  background-color: #a2d400;
  border-color: #a2d400;
}

.btn-info {
  background-color: #21b2c1;
  border-color: #21b2c1 #21b2c1 #1d8691;
  border-bottom: 3px solid #1d8691;
}
.btn-info: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;
}

/**************
先輩社員紹介
**************/
.staff_view_column {
  width: 100%;
}
@media (min-width: 1200px) {
  .staff_view_column {
    padding: 0 40px;
  }
}
@media (min-width: 560px) {
  .staff_view_column {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 560px) {
  .staff_view_column .title-side {
    width: 45%;
  }
}
@media (min-width: 560px) {
  .staff_view_column .img-side {
    width: 50%;
  }
}
@media (max-width: 559.9px) {
  .staff_view_column .img-side {
    margin-top: 24px;
  }
}

.interview_sub_title {
  font-size: 108%;
  font-weight: 500;
  color: #284B7D;
  margin: 32px 0 8px;
}
.interview_sub_title.white {
  color: #f6fade;
}

.interview_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw 2%;
  margin-bottom: 80px;
}

.interview_head {
  text-align: center;
  font-size: min(3.6rem, 3.4vw);
  font-weight: 700;
  color: #284B7D;
  margin-bottom: 40px;
}
@media (max-width: 559.9px) {
  .interview_head {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

/**************
企業情報
**************/
.overview {
  width: 100%;
  margin: 20px auto 0;
}
.overview th,
.overview td.head {
  text-align: left;
  font-weight: normal;
}
@media (min-width: 560px) {
  .overview th,
.overview td.head {
    width: 200px;
    border-bottom: 1px #E45656 solid;
    padding: 20px 0;
  }
}
@media (max-width: 820.9px) {
  .overview th,
.overview td.head {
    display: block;
    width: 100%;
    padding: 14px 0 4px;
    font-weight: bold;
  }
}
.overview td {
  border-bottom: 1px #ddd solid;
}
@media (min-width: 560px) {
  .overview td {
    padding: 20px 0;
  }
}
@media (max-width: 820.9px) {
  .overview td {
    display: block;
    width: 100%;
    padding: 0 0 14px;
  }
}

.history {
  width: 100%;
}
.history .timeline {
  position: relative;
  width: 100%;
  margin-left: 10px;
}
@media (max-width: 559.9px) {
  .history .timeline {
    margin-left: 3px;
  }
}
.history .timeline::before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  position: absolute;
  left: 3px;
  top: 0;
  background-color: #ddd;
}
.history .timeline dl {
  margin: 0 0 20px 40px;
  position: relative;
}
.history .timeline dl::before {
  width: 10px;
  height: 10px;
  content: "";
  display: block;
  background-color: #fff;
  border: #E45656 2px solid;
  border-radius: 50%;
  position: absolute;
  left: -41px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .history .timeline dl::before {
    top: 22%;
  }
}
@media (min-width: 560px) {
  .history .timeline dl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.history .timeline dl dt {
  padding: 8px 0;
  width: 155px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media (max-width: 559.9px) {
  .history .timeline dl dt {
    display: block;
    width: 90px;
    padding: 5px 0;
    font-size: 1.4rem;
  }
}
.history .timeline dl dd {
  margin-left: 40px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .history .timeline dl dd {
    width: calc(100% - 90px);
    margin-left: 30px;
  }
}
@media (max-width: 559.9px) {
  .history .timeline dl dd {
    display: block;
    width: 100%;
    margin-left: 0;
    font-size: 1.3rem;
  }
}

/**************
製品一覧
**************/
.tab_navi {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 560px) {
  .tab_navi {
    border-bottom: 4px #284B7D solid;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
@media (max-width: 559.9px) {
  .tab_navi {
    margin-bottom: 10px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.tab_navi li {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background-color: #f3f6ff;
  color: #191718;
  font-weight: bold;
  transition: all 0.4s ease;
  margin: 0 4px;
  border-radius: 8px 8px 0 0;
}
@media (min-width: 560px) {
  .tab_navi li {
    width: 240px;
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .tab_navi li {
    background-color: white;
    font-size: 1.2rem;
    height: 32px;
    padding: 8px;
    border: 2px #284B7D solid;
    border-radius: 4px;
    margin: 0 3px 3px 0;
  }
}
.tab_navi li:not(.current) {
  cursor: pointer;
}
.tab_navi li:not(.current):hover {
  background-color: #ddd;
}
.tab_navi li.current {
  background-color: #284B7D;
  color: white;
}

.tab-target {
  transition: all 0.4s ease;
  display: none;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.tab-target.current {
  display: block;
  opacity: 1;
  visibility: visible;
}
.tab-target .inner {
  background-color: white;
  padding: 40px;
}
@media (max-width: 559.9px) {
  .tab-target .inner {
    padding: 20px 16px;
  }
}

.imgList {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
@media (min-width: 821px) {
  .imgList > li {
    width: 32%;
    margin-right: 2%;
  }
  .imgList > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 560px) {
  .imgList > li {
    margin-bottom: 40px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .imgList > li {
    width: 48%;
  }
  .imgList > li:nth-child(odd) {
    margin-right: 4%;
  }
}
@media (max-width: 559.9px) {
  .imgList > li:not(:last-child) {
    margin-bottom: 24px;
  }
}
.imgList > li .thumb {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
}
.imgList > li .thumb a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.imgList > li .thumb a::before {
  content: "";
  display: block;
  padding-top: 66.25%;
}
.imgList > li .thumb a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s ease-out;
}
.imgList > li .thumb a:hover img {
  transform: scale(1.05);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .imgList > li {
    width: 49%;
  }
  .imgList > li:nth-child(odd) {
    margin-right: 2%;
  }
}
@media (max-width: 559.9px) {
  .imgList > li {
    width: 100%;
  }
}
.imgList > li .p_name {
  display: block;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: bold;
  color: #525a66;
}
@media (min-width: 1200px) {
  .imgList > li .p_name {
    font-size: 1.7rem;
  }
}
@media (max-width: 820.9px) {
  .imgList > li .p_name {
    font-size: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .imgList > li .p_name {
    font-size: 3.8vw;
  }
}
.imgList > li .cat_tag {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  margin-top: 8px;
}
@media (max-width: 559.9px) {
  .imgList > li .cat_tag {
    margin-top: 5px;
  }
}
.imgList > li .cat_tag .cat_tag_item {
  display: inline-block;
  padding: 1px 12px;
  background-color: white;
  color: #284B7D;
  font-size: 1.2rem;
  border: 1px #284B7D solid;
}
@media (max-width: 559.9px) {
  .imgList > li .cat_tag .cat_tag_item {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
.imgList > li .cat_tag .cat_tag_item:not(:last-child) {
  margin-right: 3px;
}

.caption {
  text-align: center;
  margin-top: 3px;
  font-size: 1.3rem;
}

.p_table {
  width: 100%;
}
@media (max-width: 820.9px) {
  .p_table {
    font-size: 1.3rem;
  }
}
.p_table th {
  width: 90px;
  padding: 5px 0;
  border: 1px #ddd solid;
  text-align: center;
  background-color: #f3f3f3;
}
@media (max-width: 820.9px) {
  .p_table th {
    padding: 3px;
    width: 80px;
  }
}
.p_table td {
  padding: 5px;
  border: 1px #ddd solid;
}
@media (max-width: 820.9px) {
  .p_table td {
    padding: 3px 5px;
  }
}

.imgList_2 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.imgList_2.sample {
  margin-bottom: 40px;
}
@media (min-width: 560px) {
  .imgList_2 {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
}
@media (min-width: 560px) {
  .imgList_2 li {
    width: 49%;
  }
  .imgList_2 li:nth-child(odd) {
    margin-right: 2%;
  }
  .imgList_2 li:nth-child(n+3) {
    margin-top: 32px;
  }
}
@media (max-width: 559.9px) {
  .imgList_2 li {
    margin-bottom: 20px;
  }
}
.imgList_2 li .thumb {
  width: 100%;
  aspect-ratio: 10/6.4;
  overflow: hidden;
  position: relative;
}
.imgList_2 li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.imgList_2 li .name {
  display: block;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: bold;
  color: #525a66;
  text-align: center;
}
@media (max-width: 820.9px) {
  .imgList_2 li .name {
    font-size: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .imgList_2 li .name {
    font-size: 3.8vw;
  }
}
.imgList_2 li .p_table {
  margin-top: 10px;
  font-size: 1.3rem;
}
@media (max-width: 820.9px) {
  .imgList_2 li .p_table {
    font-size: 1.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;
}

/**************
プライバシーポリシー
**************/
.sq_black::before {
  background-color: black;
}

.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 */