@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@font-face {
  font-family: "akrobat";
  src: url("../fonts/Akrobat-Black.woff2") format("woff2"), url("../fonts/Akrobat-Black.woff") format("woff");
  font-weight: 900;
  font-style: 900;
}
@font-face {
  font-family: "akrobat";
  src: url("../fonts/Akrobat-Bold.woff2") format("woff2"), url("../fonts/Akrobat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: bold;
}
@font-face {
  font-family: "akrobat";
  src: url("../fonts/Akrobat-Regular.woff2") format("woff2"), url("../fonts/Akrobat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/**************
Sass Mixin
**************/
/**************
Basic Setting
**************/
html {
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  font-size: 1.5em;
  background: #FFF;
  font-family: "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;
}
body.preload {
  transition: 0 !important;
}

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

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

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

img {
  max-width: 100%;
}

#pagetop {
  background: url(../images/common/pagetop2.png);
  background-size: contain;
  position: fixed;
  right: 8px;
  text-indent: -9999px;
  outline: none;
  opacity: 0.7;
  z-index: 3;
}
@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;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/**************
Layout Set
**************/
.wrap {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1160px) {
  .wrap {
    max-width: 1120px;
  }
}
@media (max-width: 559.9px) {
  .wrap {
    width: 88%;
  }
}

.middlewrap {
  width: 92%;
  max-width: 960px;
  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: 80px 0;
}
@media (max-width: 820.9px) {
  .page_section {
    padding: 40px 0 40px;
  }
}
.page_section__white {
  background-color: #fff;
}
.page_section__gray {
  background-color: #f3f3f3;
}
.page_section__blue {
  background-color: #0d6fb8;
}
.page_section__grad {
  background: linear-gradient(to right, #b60a0a, #4b1b1b);
}

.page_top_section {
  padding: 64px 0 120px;
}
@media (max-width: 820.9px) {
  .page_top_section {
    padding: 40px 0 40px;
  }
}

/**************
Header
**************/
#header {
  background-color: #fff;
  z-index: 10;
  width: 100%;
  height: 100px;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  #header {
    height: 80px;
  }
}
@media (max-width: 820.9px) {
  #header {
    height: 64px;
  }
}
#header .header_inner {
  max-width: 1200px;
}
@media (min-width: 1160px) {
  #header .header_right {
    width: 700px;
  }
}
@media (min-width: 1160px) {
  #header .header_right .header_right_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  #header .header_right .header_right_top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}
@media (max-width: 1159.9px) {
  #header .header_right .header_right_top .head_address {
    display: none;
  }
}

.header_inner {
  position: relative;
  width: 94%;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1159.9px) {
  .header_inner {
    width: 100%;
    padding-left: 16px;
    overflow: hidden;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .header_inner {
    padding-right: 96px;
  }
}

.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: 280px;
  }
  .header_logo img {
    max-width: 100%;
  }
}
@media (max-width: 820.9px) {
  .header_logo {
    width: 184px;
    position: relative;
    z-index: 4;
  }
}

.head_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 32px 0 auto;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .head_tel {
    margin: 0;
  }
}
@media (max-width: 820.9px) {
  .head_tel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 48px;
    background-color: #1b2794;
    z-index: 10;
  }
}
.head_tel span {
  font-weight: bold;
  color: #1b1b1b;
  letter-spacing: 0.03em;
}
@media (max-width: 820.9px) {
  .head_tel span {
    color: white;
  }
}
.head_tel span.alpha {
  font-family: "akrobat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  top: 3px;
}
@media (max-width: 820.9px) {
  .head_tel span.alpha {
    font-size: 1.3rem;
  }
}
.head_tel span.num {
  font-family: "akrobat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  line-height: 1;
}
@media (max-width: 820.9px) {
  .head_tel span.num {
    font-size: 2rem;
  }
}

.head_contact {
  background-color: #0d6fb8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  box-shadow: 0 3px 0 #2B99E8;
  color: white;
}
@media (min-width: 560px) {
  .head_contact {
    width: 176px;
  }
  .head_contact:hover {
    color: white;
    background-color: #2B99E8;
  }
}
@media (max-width: 820.9px) {
  .head_contact {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 48px;
    z-index: 10;
  }
}

@media (min-width: 1160px) {
  .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;
  }
  .fixed .global_navi {
    height: 75px;
  }
}
@media (max-width: 1159.9px) {
  .global_navi {
    height: 100%;
    position: fixed;
    top: 0;
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    background-color: #1b1b1b;
    overflow: auto;
    z-index: 11;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .global_navi {
    width: 400px;
    right: -400px;
  }
}
@media (max-width: 820.9px) {
  .global_navi {
    width: calc(100vw - 40px);
    left: 100%;
    top: 0;
    height: 100vh;
    padding-top: 96px;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .global_navi.opened {
    right: 0;
  }
}
@media (max-width: 820.9px) {
  .global_navi.opened {
    left: 40px;
  }
}

.navi_ul {
  position: relative;
}
@media (min-width: 1160px) {
  .navi_ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1159.9px) {
  .navi_ul {
    text-align: center;
    width: 92%;
    margin: 0 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .navi_ul {
    margin-top: 120px;
    background: #fff;
  }
}
@media (max-width: 820.9px) {
  .navi_ul {
    padding-bottom: 10px;
  }
}
@media (min-width: 1160px) {
  .navi_ul > li {
    position: relative;
    height: 100%;
  }
  .navi_ul > li::after {
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 0;
    height: 2px;
    background: #0d6fb8;
    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: 820.9px) {
  .navi_ul > li {
    background-color: #fff;
  }
}
.navi_ul > li.toggle {
  position: relative;
  font-weight: bold;
}
.navi_ul > li.toggle i {
  margin-left: 4px;
}
@media (min-width: 560px) {
  .navi_ul > li.toggle:hover {
    color: #0d6fb8;
  }
}
@media (min-width: 560px) {
  .navi_ul > li.toggle:hover .header-nav-item {
    color: #0d6fb8;
  }
}
@media (min-width: 560px) {
  .navi_ul > li.toggle:hover .megamenu {
    max-height: 9999px;
    opacity: 1;
  }
}

.header-nav-item {
  text-decoration: none;
}
@media (min-width: 1160px) {
  .header-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    color: #1b1b1b;
    font-weight: bold;
    padding: 0 8px;
  }
  .header-nav-item:hover {
    color: #0d6fb8;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .header-nav-item {
    color: #333;
    border-bottom: 1px #D9D9D9 solid;
    text-align: center;
    padding: 13px 0;
    display: block;
    width: 100%;
  }
}
@media (max-width: 820.9px) {
  .header-nav-item {
    background-color: #fff;
    color: #444;
    border-bottom: 1px #777 solid;
    text-align: center;
    padding: 12px 0;
    display: block;
    width: 100%;
    line-height: 1.3;
  }
}

@media (min-width: 1160px) {
  .megamenu {
    transition: all 0.2s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: 240px;
    left: -80px;
    top: 100%;
    position: absolute;
    background: #fff;
    z-index: 4;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 1159.9px) {
  .megamenu {
    display: none;
    border-bottom: 1px #777 solid;
  }
}
.megamenu .inner_ul {
  width: 100%;
}
.megamenu .inner_ul li.line::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ddd;
}
.megamenu .inner_ul li:not(:last-child) {
  border-bottom: 1px #ccc dashed;
}
.megamenu .inner_ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.6;
  height: 48px;
  transition: all 0.3s ease;
  text-align: center;
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul li a {
    height: 40px;
  }
}
.megamenu .inner_ul li a:hover {
  background-color: #eee;
}
@media (max-width: 820.9px) {
  .megamenu .inner_ul li a {
    padding: 5px 0;
    color: #555;
  }
}

.fixed-header {
  width: 100%;
  height: 76px;
  position: fixed;
  left: 0;
  top: -120px;
  border-bottom: 1px #ddd solid;
  background-color: #fff;
  z-index: 10;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .fixed-header {
    height: 106px;
  }
}
@media (max-width: 820.9px) {
  .fixed-header {
    height: 64px;
  }
}
@media (min-width: 560px) {
  .fixed-header .header_inner {
    width: 100%;
    padding: 0 24px;
  }
}
.fixed-header .header_inner .header_logo {
  width: 240px;
}
@media (max-width: 820.9px) {
  .fixed-header .header_inner .header_logo {
    width: 184px;
    position: relative;
    z-index: 4;
  }
}
@media (min-width: 560px) {
  .fixed-header .header_inner .head_contact {
    margin-left: 24px;
  }
}

@media (min-width: 1160px) {
  .menuBtn {
    display: none;
  }
}
@media (max-width: 1159.9px) {
  .menuBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    z-index: 12;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .menuBtn {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
}
@media (max-width: 820.9px) {
  .menuBtn {
    width: 80px;
    height: 72px;
  }
}

@media (max-width: 1159.9px) {
  .nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    z-index: 12;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .nav-open {
    left: 19px;
    margin-top: -14px;
  }
}
@media (max-width: 820.9px) {
  .nav-open {
    left: 31px;
  }
}

@media (max-width: 1159.9px) {
  .nav-open span,
.nav-open span:before,
.nav-open span:after {
    position: absolute;
    background: #333;
    display: block;
    content: "";
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .nav-open span,
.nav-open span:before,
.nav-open span:after {
    height: 3px;
    width: 30px;
    border-radius: 5px;
  }
}
@media (max-width: 820.9px) {
  .nav-open span,
.nav-open span:before,
.nav-open span:after {
    height: 2px;
    width: 20px;
    border-radius: 3px;
  }
}

@media (min-width: 821px) and (max-width: 1159.9px) {
  .nav-open span:before {
    bottom: -11px;
  }
}
@media (max-width: 820.9px) {
  .nav-open span:before {
    bottom: -8px;
  }
}

@media (min-width: 821px) and (max-width: 1159.9px) {
  .nav-open span:after {
    bottom: -22px;
  }
}
@media (max-width: 820.9px) {
  .nav-open span:after {
    bottom: -16px;
  }
}

@media (max-width: 1159.9px) {
  .menu-open .nav-open span {
    background-color: transparent;
  }
}

@media (max-width: 1159.9px) {
  .menu-open .nav-open span::before,
.menu-open .nav-open span::after {
    height: 2px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    top: 6px;
    left: 0;
    content: "";
    background-color: #fff;
  }
}

.menu-open .nav-open span::before {
  transform: rotate(45deg);
}

.menu-open .nav-open span::after {
  transform: rotate(-45deg);
}

/**************
Footer
**************/
.cta {
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(to right, #b60a0a, #4b1b1b);
  position: relative;
}
@media (min-width: 560px) {
  .cta {
    height: 168px;
  }
}
.cta .inner {
  width: 90%;
  height: 100%;
  max-width: 776px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .cta .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 820.9px) {
  .cta .inner {
    padding: 24px 0;
  }
}
.cta .inner .icon_document {
  display: block;
  width: 44px;
}
@media (max-width: 820.9px) {
  .cta .inner .icon_document {
    margin: 0 auto 8px;
  }
}
.cta .inner .big-title {
  color: white;
  margin: 0;
}
@media (min-width: 560px) {
  .cta .inner .big-title {
    transform: translateY(-8px);
  }
}
.cta .inner .txt {
  color: white;
}
@media (max-width: 820.9px) {
  .cta .inner .txt {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 12px;
  }
}
.cta .inner .arrow_black {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #1b1b1b;
  transition: all 0.2s ease-in;
}
@media (max-width: 820.9px) {
  .cta .inner .arrow_black {
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -24px;
  }
}
.cta .inner .arrow_black i {
  color: white;
  transition: all 0.2s ease-in;
}
.cta:hover .inner .arrow_black {
  transform: scale(1.1);
  background-color: white;
}
.cta:hover .inner .arrow_black i {
  color: #e41115;
}

#footer {
  bottom: 0;
  box-sizing: border-box;
  background-color: #1b1b1b;
}

.footer_inner {
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 0;
}
@media (min-width: 1160px) {
  .footer_inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 820.9px) {
  .footer_inner {
    padding-bottom: 16px;
  }
}
.footer_inner .footer_logo {
  display: block;
  width: 240px;
}
@media (max-width: 820.9px) {
  .footer_inner .footer_logo {
    width: 240px;
    margin: 0 auto;
  }
}
.footer_inner .footer_info {
  color: white;
  margin-top: 24px;
}
@media (max-width: 820.9px) {
  .footer_inner .footer_info {
    text-align: center;
  }
}

@media (min-width: 560px) {
  .footer_left {
    width: 360px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .footer_left {
    margin: 0 auto;
  }
}

.footer_btns {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 24px;
}
@media (max-width: 820.9px) {
  .footer_btns {
    justify-content: center;
  }
}
.footer_btns .foot_map {
  border: 1px white solid;
  color: white;
  width: 120px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "akrobat", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.5;
}
.footer_btns .emidas {
  display: block;
  width: 120px;
  margin-left: 16px;
}

.footer_sitemap {
  width: calc(100% - 500px);
}
@media (min-width: 1160px) {
  .footer_sitemap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 820.9px) {
  .footer_sitemap {
    display: none;
  }
}
.footer_sitemap .foot_nav {
  width: 31%;
}
.footer_sitemap .foot_nav:nth-child(2) {
  width: 40%;
}
.footer_sitemap .foot_nav:last-child {
  width: 24%;
}
.footer_sitemap .foot_nav .arrow {
  position: relative;
  margin-bottom: 4px;
}
.footer_sitemap .foot_nav .arrow a {
  color: white;
  transition: all 0.2s ease-in;
}
.footer_sitemap .foot_nav .arrow a:hover {
  color: #0d6fb8;
}
.footer_sitemap .foot_nav ul {
  margin-left: 16px;
}
.footer_sitemap .foot_nav ul li a {
  color: white;
  font-size: 1.3rem;
  transition: all 0.2s ease-in;
}
.footer_sitemap .foot_nav ul li a:hover {
  color: #0d6fb8;
}

.copyright_section {
  width: 100%;
  height: 64px;
  background-color: white;
}
@media (max-width: 820.9px) {
  .copyright_section {
    height: 152px;
  }
}
.copyright_section .inner {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .copyright_section .inner {
    flex-direction: column;
    height: auto;
    padding: 24px 24px 80px;
  }
}
.copyright_section .footer_bottom_links {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 560px) {
  .copyright_section .footer_bottom_links {
    margin-right: 24px;
  }
}
@media (max-width: 820.9px) {
  .copyright_section .footer_bottom_links {
    margin-bottom: 8px;
  }
}
.copyright_section .footer_bottom_links a {
  display: block;
  padding: 0 16px;
  position: relative;
  color: #1b1b1b;
}
@media (max-width: 559.9px) {
  .copyright_section .footer_bottom_links a {
    font-size: 1.3rem;
  }
}
.copyright_section .footer_bottom_links a:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 20%;
}

.copyright {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1b1b1b;
}
@media (max-width: 820.9px) {
  .copyright {
    font-size: 1.2rem;
  }
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  left: 0;
  top: 0;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  display: block;
  width: 120px;
  transform: scale(0);
  opacity: 0;
  -webkit-animation: logo_anim 0.6s ease-in-out forwards;
          animation: logo_anim 0.6s ease-in-out forwards;
}
@media (max-width: 559.9px) {
  #splash_logo img {
    width: 100px;
  }
}

@-webkit-keyframes logo_anim {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes logo_anim {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/**************
Common Parts
**************/
/* Titles */
.title1, .single_content h1 {
  font-size: 3.2rem;
  position: relative;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .title1, .single_content h1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

.title_h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
  position: relative;
  border-bottom: 1px #ccc solid;
  padding: 8px;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .title_h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
}

.title_h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 32px;
  position: relative;
  padding: 6px 0 6px 20px;
  line-height: 1.5;
  color: #595757;
  margin-top: 20px;
}
@media (max-width: 820.9px) {
  .title_h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}
.title_h3::before {
  display: block;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #595757;
  margin-right: 13px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 820.9px) {
  .title_h3::before {
    top: 0;
    height: 100%;
  }
}

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

.title_h5 {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.title_h5::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #cfd114;
  position: absolute;
  left: 0;
  top: 7px;
}

.big-title {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .big-title {
    margin-bottom: 20px;
  }
}
.big-title.animation {
  opacity: 0;
}
.big-title.moved {
  -webkit-animation: fadeIn 0.2s ease-in forwards;
          animation: fadeIn 0.2s ease-in forwards;
}
.big-title.flex {
  display: flex;
  flex-direction: column-reverse;
}
.big-title.row {
  display: flex;
  flex-direction: row-reverse;
}
.big-title.row .jp_small {
  margin-left: 16px;
  position: relative;
  top: 4px;
}
@media (max-width: 820.9px) {
  .big-title.row .jp_small {
    top: 1px;
  }
}
.big-title.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.big-title.center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.big-title.white {
  color: white;
}
.big-title.white .eng {
  color: white;
}
.big-title .eng {
  font-family: "akrobat", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
  font-style: italic;
  color: #0d6fb8;
}
@media (max-width: 820.9px) {
  .big-title .eng {
    font-size: 1.2rem;
  }
}
.big-title .eng_big {
  font-family: "akrobat", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.5;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  font-style: italic;
  color: #0d6fb8;
}
@media (max-width: 820.9px) {
  .big-title .eng_big {
    font-size: 3.2rem;
  }
}
.big-title .jp {
  font-weight: 700;
  line-height: 1.5;
  font-size: 4rem;
  margin-bottom: 4px;
}
@media (max-width: 820.9px) {
  .big-title .jp {
    font-size: 2.2rem;
  }
}
.big-title .jp_small {
  font-weight: 700;
  line-height: 1.5;
  font-size: 2rem;
}
@media (max-width: 820.9px) {
  .big-title .jp_small {
    font-size: 1.6rem;
  }
}
.big-title.column {
  flex-direction: column;
  align-items: flex-start;
}
.big-title.column .jp {
  margin-left: 0;
}

.horizontal_tit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
@media (min-width: 560px) {
  .horizontal_tit {
    margin-bottom: 40px;
  }
}
@media (max-width: 820.9px) {
  .horizontal_tit {
    margin-bottom: 32px;
  }
}
.horizontal_tit .eng {
  font-family: "akrobat", sans-serif;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.5;
  color: #0d6fb8;
  text-transform: uppercase;
  font-style: italic;
  margin-right: 40px;
  line-height: 1;
}
@media (max-width: 820.9px) {
  .horizontal_tit .eng {
    font-size: 4rem;
    margin-right: 16px;
  }
}
.horizontal_tit .jp {
  display: inline-block;
  padding-top: 14px;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .horizontal_tit .jp {
    padding-top: 12px;
    font-size: 1.6rem;
  }
}

.center-title {
  font-size: 3.3rem;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 900;
}
.center-title span {
  color: #0d6fb8;
}
@media (max-width: 820.9px) {
  .center-title {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
.center-title.white {
  color: #fff;
}

.blue-title {
  background-color: #0d6fb8;
  padding: 16px;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .blue-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 820.9px) {
  .blue-title {
    font-size: 2rem;
  }
}

/* Buttons */
.btn-s1 {
  color: #0d6fb8;
  font-size: 1.6rem;
  padding: 0 25px;
  background-color: #fff;
  position: relative;
  text-align: center;
  border: 2px #0d6fb8 solid;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 560px) {
  .btn-s1 {
    width: 250px;
  }
}
@media (max-width: 820.9px) {
  .btn-s1 {
    padding: 10px 30px;
  }
}
.btn-s1:hover {
  background-color: #0d6fb8;
  color: #fff;
}
.btn-s1 i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -9px;
}
@media (max-width: 820.9px) {
  .btn-s1 i {
    margin-top: -7px;
  }
}
.btn-s1.mauto {
  margin-left: auto;
  margin-right: auto;
}

.btn-pink {
  background-color: #F0219D;
  color: white;
  width: 424px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  border-radius: 8px;
  margin: 24px auto 0;
  transition: all 0.3s ease;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .btn-pink {
    width: 92%;
    height: 72px;
    margin: 16px auto 0;
  }
}
.btn-pink i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
}
.btn-pink:hover {
  background-color: #0cc96f;
  color: white;
}

.btn-black-circle {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #1b1b1b;
}
@media (max-width: 559.9px) {
  .btn-black-circle {
    height: 32px;
    font-size: 1.5rem;
  }
}
.btn-black-circle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #1b1b1b;
  margin-left: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .btn-black-circle span {
    width: 32px;
    height: 32px;
  }
}
.btn-black-circle span .arrow_right_white {
  color: white;
  width: 13px;
  height: 6px;
  display: block;
  background: url(../images/common/arrow_white_right.png) no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.btn-black-circle:hover {
  color: #1b1b1b;
}
.btn-black-circle:hover span {
  transform: scale(1.1);
  background-color: #0d6fb8;
}
.btn-black-circle:hover span .arrow_right_white {
  transform: translateX(10px);
}

.btn-block {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) {
  .btn-block {
    width: 464px;
    height: 80px;
    font-size: 2rem;
  }
}

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

.table-s2, .recruit_flow {
  width: 100%;
}
.table-s2 th, .recruit_flow th {
  padding: 12px 24px;
  text-align: left;
  background-color: #eee;
}
@media (min-width: 560px) {
  .table-s2 th, .recruit_flow th {
    border: 1px #ccc solid;
    width: 128px;
  }
}
@media (max-width: 820.9px) {
  .table-s2 th, .recruit_flow th {
    width: 100%;
    display: block;
    background-color: #f3f3f3;
    padding: 8px;
  }
}
.table-s2 td, .recruit_flow td {
  background-color: #fff;
  padding: 12px 24px;
}
@media (min-width: 560px) {
  .table-s2 td, .recruit_flow td {
    border: 1px #ccc solid;
  }
}
@media (max-width: 820.9px) {
  .table-s2 td, .recruit_flow td {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
}

.table-wh, .mekki_table {
  width: 100%;
}
.table-wh thead tr th, .mekki_table thead tr th {
  background-color: #eee;
  border: 1px #ddd solid;
  padding: 10px;
}
.table-wh tbody tr th, .mekki_table tbody tr th {
  background-color: #eee;
  border: 1px #ddd solid;
  padding: 10px;
}
.table-wh tbody tr td, .mekki_table tbody tr td {
  background-color: #fff;
  border: 1px #ddd solid;
  padding: 10px;
}

/* Parts */
.sq1 {
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
}
.sq1::before {
  width: 10px;
  height: 10px;
  background-color: #cfd114;
  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: disc;
}
.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-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: #0d6fb8;
}

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

.borderTitleBox {
  background-color: #fff6f9;
}
.borderTitleBox .title {
  background-color: #1b2794;
  color: white;
  padding: 10px 40px;
  font-size: 2rem;
  line-height: 1.6;
}
.borderTitleBox .inner {
  padding: 24px 40px;
}
@media (max-width: 820.9px) {
  .borderTitleBox .inner {
    padding: 16px;
  }
}

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

.page_top_text {
  text-align: center;
  font-size: 2.2rem;
}
@media (max-width: 820.9px) {
  .page_top_text {
    text-align: left;
    font-size: 1.7rem;
  }
}

.white_text {
  color: white;
}

.blue_text {
  color: #0d6fb8;
  font-weight: bold;
}

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

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

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

/* Tags */
.emidas-tag {
  position: absolute;
  left: 0;
  top: 0;
}

/**************
HOME
**************/
.index_wrapper {
  opacity: 0;
  -webkit-animation: indexBody 0.3s ease 1s forwards;
          animation: indexBody 0.3s ease 1s forwards;
  overflow: hidden;
}

#main_wrap {
  width: 100%;
  overflow: hidden;
}

#mainVisual {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 560px) {
  #mainVisual {
    height: calc(100vh - 100px);
    max-height: 960px;
  }
}
@media (max-width: 559.9px) {
  #mainVisual {
    height: 72vh;
    margin-top: 64px;
  }
}
#mainVisual .main_inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}
#mainVisual .main_inner .textArea {
  width: 92%;
  height: 100%;
  margin: 0 auto;
  max-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 559.9px) {
  #mainVisual .main_inner .textArea {
    width: 88%;
  }
}
#mainVisual .main_inner .textArea .main_catch {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  line-height: 1.2;
  color: white;
  letter-spacing: 0.1em;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #mainVisual .main_inner .textArea .main_catch {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  #mainVisual .main_inner .textArea .main_catch {
    font-size: 3.2rem;
  }
}
#mainVisual .main_inner .textArea .main_catch_jp {
  color: white;
  margin-top: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (max-width: 559.9px) {
  #mainVisual .main_inner .textArea .main_catch_jp {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

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

.main_text_area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}
.main_text_area .main_text_eng {
  width: 64%;
  position: absolute;
  left: 18%;
  top: 24%;
}
.main_text_area .main_text {
  width: 54%;
  position: absolute;
  left: 23%;
  top: 37%;
}
.main_text_area .main_text_jp {
  color: white;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.04em;
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 8%;
}

@-webkit-keyframes main_bg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes main_bg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(340px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(340px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes indexBody {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes indexBody {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blurIn {
  0% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(1.5rem);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes blurIn {
  0% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(1.5rem);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scaleX(0);
  }
  49% {
    transform-origin: left top;
    transform: scale(1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1);
  }
  to {
    transform-origin: right top;
    transform: scaleX(0);
  }
}
@keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scaleX(0);
  }
  49% {
    transform-origin: left top;
    transform: scale(1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1);
  }
  to {
    transform-origin: right top;
    transform: scaleX(0);
  }
}
@-webkit-keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}
.top_plating {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  flex-wrap: wrap;
}
.top_plating.moved {
  -webkit-animation: fadeIn 0.2s ease-in forwards;
          animation: fadeIn 0.2s ease-in forwards;
}
.top_plating .item {
  display: block;
  width: 25%;
  height: 320px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 560px) {
  .top_plating .item:not(:last-child)::after {
    width: 2px;
    height: 100%;
    content: "";
    display: block;
    right: 0;
    top: 0;
    background-color: white;
    position: absolute;
  }
}
@media (max-width: 820.9px) {
  .top_plating .item {
    width: 50%;
    height: 24vh;
    margin-bottom: 2px;
  }
  .top_plating .item:nth-child(odd)::after {
    width: 2px;
    height: 100%;
    content: "";
    display: block;
    right: 0;
    top: 0;
    background-color: white;
    position: absolute;
  }
}
.top_plating .item .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: white;
  position: relative;
  z-index: 1;
}
.top_plating .item .inner .jp {
  font-size: 2rem;
}
@media (max-width: 559.9px) {
  .top_plating .item .inner .jp {
    font-size: 1.5rem;
  }
}
.top_plating .item .inner .eng {
  font-family: "akrobat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .top_plating .item .inner .eng {
    font-size: 1.2rem;
  }
}
.top_plating .item .inner .circle_arrow {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
  border: 2px white solid;
  margin-top: 40px;
}
@media (max-width: 559.9px) {
  .top_plating .item .inner .circle_arrow {
    width: 40px;
    height: 40px;
    margin-top: 24px;
  }
}
.top_plating .item .inner .circle_arrow img {
  display: block;
  width: 19px;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .top_plating .item .inner .circle_arrow img {
    width: 12px;
  }
}
.top_plating .item .top_plate_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.3s ease;
}
.top_plating .item:hover .top_plate_img {
  transform: scale(1.05);
}
.top_plating .item:hover .inner .circle_arrow img {
  transform: translateX(20px);
}

.top_news_section {
  width: 100%;
  background-color: #f3f3f3;
  position: relative;
  padding: 80px 0;
  opacity: 0;
}
.top_news_section.moved {
  -webkit-animation: fadeIn 0.2s ease-in forwards;
          animation: fadeIn 0.2s ease-in forwards;
}
@media (max-width: 820.9px) {
  .top_news_section {
    padding: 40px 0;
  }
}
.top_news_section .middlewrap {
  position: relative;
}
@media (min-width: 560px) {
  .top_news_section .btn-black-circle {
    position: absolute;
    right: 0;
    top: 8px;
  }
}
@media (max-width: 820.9px) {
  .top_news_section .btn-black-circle {
    margin-top: 32px;
  }
}

.top_news_wrap .item {
  width: 100%;
  padding: 16px 24px;
  position: relative;
  background-color: white;
  margin-bottom: 12px;
}
@media (min-width: 560px) {
  .top_news_wrap .item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.top_news_wrap .item .date {
  font-family: "akrobat", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.5;
  padding-top: 3px;
}
@media (min-width: 560px) {
  .top_news_wrap .item .date {
    width: 78px;
  }
}
.top_news_wrap .item .category {
  width: 120px;
  text-align: center;
}
@media (max-width: 559.9px) {
  .top_news_wrap .item .category {
    position: absolute;
    right: 16px;
    top: 12px;
  }
}
.top_news_wrap .item .category span {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px #ccc solid;
  height: 24px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #777;
  position: relative;
  top: 3px;
}
@media (min-width: 560px) {
  .top_news_wrap .item .texts {
    width: calc(100% - 280px);
  }
}
@media (max-width: 559.9px) {
  .top_news_wrap .item .texts {
    width: 100%;
    margin-top: 4px;
  }
}
.top_news_wrap .item .texts h3 a {
  color: #1b1b1b;
  font-weight: normal;
}
.top_news_wrap .item .texts h3 a:hover {
  text-decoration: underline;
}
.top_news_wrap .item.check {
  background-color: #fae7e8;
}
.top_news_wrap .item.check .alert {
  width: 120px;
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 559.9px) {
  .top_news_wrap .item.check .alert {
    padding: 0 24px;
  }
}
.top_news_wrap .item.check .alert span {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e41115;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  position: relative;
  top: 3px;
}
@media (min-width: 560px) {
  .top_news_wrap .item.check .texts {
    width: calc(100% - 200px);
  }
}
@media (max-width: 559.9px) {
  .top_news_wrap .item.check .texts {
    width: 100%;
    padding: 16px 24px 0;
  }
}
.top_news_wrap .item.check .texts h3 a {
  color: #e41115;
  font-weight: bold;
}
.top_news_wrap .item.check .texts h3 a:hover {
  text-decoration: underline;
}
@media (max-width: 559.9px) {
  .top_news_wrap .item.check .texts h3 a {
    display: block;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.top_feature_section {
  width: 100%;
}

.top_features {
  width: 100%;
  opacity: 0;
}
.top_features.moved {
  -webkit-animation: fadeIn 0.2s ease-in forwards;
          animation: fadeIn 0.2s ease-in forwards;
}
@media (min-width: 560px) {
  .top_features {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.top_features .item {
  width: 48%;
  position: relative;
  opacity: 0;
  margin-bottom: 40px;
}
@media (min-width: 560px) {
  .top_features .item {
    width: 48%;
  }
  .top_features .item:nth-child(odd) {
    margin-right: 4%;
  }
}
@media (max-width: 820.9px) {
  .top_features .item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top_features .item.moved {
  -webkit-animation: fadeIn 0.4s ease-in forwards;
          animation: fadeIn 0.4s ease-in forwards;
}
.top_features .item .tit {
  background-color: #1b2794;
  color: white;
  padding: 0 16px;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_features .item .tit {
    height: auto;
    padding: 12px 30px 12px 16px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.top_features .item .tit i {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -10px;
  color: white;
  font-size: 2rem;
}
@media (min-width: 560px) {
  .top_features .item .tit i {
    display: none;
  }
}
.top_features .item .img {
  width: 100%;
  height: 184px;
  position: relative;
  overflow: hidden;
}
.top_features .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s ease;
}
.top_features .item .inner {
  padding: 16px 0;
  background-color: white;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.top_features .item .inner .num {
  width: 72px;
  height: 72px;
  font-family: "akrobat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cfd114;
  border-radius: 90px;
}
@media (max-width: 559.9px) {
  .top_features .item .inner .num {
    width: 56px;
    height: 56px;
    font-size: 3rem;
  }
}
.top_features .item .inner .text {
  width: calc(100% - 96px);
}
@media (max-width: 559.9px) {
  .top_features .item .inner .text {
    width: calc(100% - 72px);
  }
}
.top_features .item:hover .img img {
  transform: scale(1.1);
}

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

.top_links {
  width: 90%;
  max-width: 1280px;
  margin: 64px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  flex-wrap: wrap;
}
.top_links.moved {
  -webkit-animation: fadeIn 0.2s ease-in forwards;
          animation: fadeIn 0.2s ease-in forwards;
}
.top_links a {
  display: block;
}
@media (min-width: 560px) {
  .top_links a {
    width: 23.5%;
  }
}
@media (max-width: 820.9px) {
  .top_links a {
    width: 49%;
    margin-bottom: 12px;
  }
}

/**************
下層共通
**************/
/**************
Under PageTitle
**************/
#pageTitle {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #0d6fb8;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle {
    height: 250px;
  }
}
@media (max-width: 559.9px) {
  #pageTitle {
    height: 144px;
  }
}
#pageTitle .title_inner {
  position: relative;
}
@media (min-width: 560px) {
  #pageTitle .title_inner {
    height: 360px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle .title_inner {
    height: 250px;
  }
}
@media (max-width: 559.9px) {
  #pageTitle .title_inner {
    height: 144px;
  }
}
#pageTitle .title_inner::after {
  content: "";
  position: absolute;
  top: 0;
  transform: translateX(-100vw);
  -webkit-animation: title_animation01 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
          animation: title_animation01 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
  width: 36vw;
  background-color: #0d6fb8;
}
@media (min-width: 560px) {
  #pageTitle .title_inner::after {
    height: 360px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle .title_inner::after {
    height: 250px;
  }
}
@media (max-width: 559.9px) {
  #pageTitle .title_inner::after {
    width: 144px;
    height: 144px;
  }
}
#pageTitle .title_inner .text-area {
  position: relative;
  height: 100%;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}
#pageTitle .title_inner .text-area .jp {
  color: #fff;
  font-size: 4rem;
  opacity: 0;
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.3s forwards;
          animation: fadeIn 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.3s forwards;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #pageTitle .title_inner .text-area .jp {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  #pageTitle .title_inner .text-area .jp {
    font-size: 2rem;
    font-weight: 700;
  }
}
#pageTitle .title_inner .text-area .eng {
  color: #fff;
  font-family: "akrobat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  font-style: italic;
  opacity: 0;
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.5s forwards;
          animation: fadeIn 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.5s forwards;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  #pageTitle .title_inner .text-area .eng {
    letter-spacing: 0;
    font-size: 1.3rem;
    font-weight: normal;
  }
}
#pageTitle .title_img_view {
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 0;
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
          animation: fadeIn 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}
#pageTitle .title_img_view .title_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.breadcrumbs {
  background-color: #f3f3f3;
  padding: 12px 0;
  font-size: 1.2rem;
  box-sizing: border-box;
}
.breadcrumbs a {
  display: inline-block;
  font-weight: normal;
  color: #666;
}

.flex_content {
  width: 100%;
}
@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;
  }
}
@media (min-width: 560px) {
  .flex_content_r {
    flex-direction: row-reverse;
  }
}
@media (max-width: 820.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_4 {
    width: 47.5%;
  }
}
@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: 560px) {
  .leftColumn {
    width: 22%;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .leftColumn {
    width: 24%;
  }
}
@media (max-width: 820.9px) {
  .leftColumn {
    margin-top: 32px;
    border-top: 1px #ccc solid;
    padding-top: 32px;
  }
}

@media (min-width: 560px) {
  .rightColumn {
    width: 70%;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .rightColumn {
    width: 72%;
  }
}

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

/**************
めっき
**************/
.two_images {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.two_images img, .two_images .item {
  width: 49%;
  display: block;
}

@media (max-width: 820.9px) {
  .mekki_table {
    width: 800px;
  }
}

/**************
特徴
**************/
.feature_title {
  position: relative;
  padding-left: 80px;
  font-size: 2.4rem;
  padding-bottom: 16px;
  padding-top: 32px;
  margin-bottom: 40px;
}
.feature_title::before {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: rgba(63, 193, 201, 0.3);
  font-family: "akrobat", sans-serif;
  font-size: 10.4rem;
  font-weight: 900;
  line-height: 1.5;
  font-style: italic;
}
.feature_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}

.long_img {
  display: block;
  margin: 24px auto;
}
@media (min-width: 560px) {
  .long_img {
    width: 640px;
  }
}

.feat_exp {
  font-size: 1.8rem;
  border: 2px #1b2794 solid;
  border-radius: 4px;
  padding: 24px 40px;
  line-height: 2;
  background-color: #f2fcff;
}

.faqBox {
  margin-bottom: 16px;
}

.q_box {
  border: 2px #1b2794 solid;
  border-radius: 4px;
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background-color: white;
}
.q_box h4 {
  color: #1b2794;
  transition: color 0.3s ease;
  font-size: 1.8rem;
}
.q_box .icon_plus {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -8px;
}
.q_box.opened {
  background-color: #1b2794;
}
.q_box.opened h4 {
  color: white;
}

.a_box {
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
  display: none;
  margin-top: 8px;
  font-size: 1.8rem;
}

.icon_plus {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
}
.icon_plus::before, .icon_plus::after {
  content: "";
  display: block;
  width: 15px;
  height: 3px;
  border-radius: 5px;
  background: #1b2794;
  position: absolute;
  right: 0;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}
.icon_plus::after {
  transform: translateY(-50%) rotate(90deg);
}
.opened .icon_plus::before {
  background: white;
}
.opened .icon_plus::after {
  background: white;
  transform: rotate(0);
  margin-top: -1px;
}

.feat_bottom {
  padding: 48px 0 64px;
  background-color: white;
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.feat_bottom .feat_bottom_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  text-align: center;
  margin-bottom: 32px;
}
.feat_bottom .feat_bottom_title::before, .feat_bottom .feat_bottom_title::after {
  content: "";
  width: 70px;
  height: 3px;
  background-color: #333;
}
.feat_bottom .feat_bottom_title::before {
  margin-right: 20px;
}
.feat_bottom .feat_bottom_title::after {
  margin-left: 20px;
}
.feat_bottom .feat_bottom_features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.feat_bottom .feat_bottom_features .item {
  width: 23.5%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .feat_bottom .feat_bottom_features .item {
    width: 49%;
    margin-bottom: 12px;
  }
}
.feat_bottom .feat_bottom_features .item::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.feat_bottom .feat_bottom_features .item .tit {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  z-index: 1;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
@media (max-width: 559.9px) {
  .feat_bottom .feat_bottom_features .item .tit {
    padding: 0 16px;
    font-size: 1.3rem;
  }
}
.feat_bottom .feat_bottom_features .item .tit .num {
  font-family: "akrobat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  font-style: italic;
}
.feat_bottom .feat_bottom_features .item .img {
  width: 100%;
  height: 100%;
}
.feat_bottom .feat_bottom_features .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.feat_bottom .feat_bottom_features .item:hover .tit {
  background: rgba(0, 0, 0, 0.1);
}
.feat_bottom .feat_bottom_features .item:hover .img img {
  transform: scale(1.1);
}
.feat_bottom .feat_bottom_features .item.hidden {
  display: none;
}

.integ_flow {
  background-color: #e41115;
  padding: 24px;
  border-radius: 8px;
}
@media (min-width: 560px) {
  .integ_flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.integ_flow .item {
  position: relative;
  width: 23%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e41115;
  font-weight: bold;
  background-color: white;
  border-radius: 8px;
}
.integ_flow .item:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  color: white;
  font-weight: 900;
  position: absolute;
  right: -17px;
  top: 50%;
  margin-top: -16px;
  font-size: 2rem;
}

@media (min-width: 560px) {
  .integ_flow2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.integ_flow2 .item {
  position: relative;
  width: 23%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.integ_flow2 .item:not(:last-child)::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #6a6a6a;
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -48px;
  font-size: 4rem;
}

.list-withNum li {
  position: relative;
  padding-left: 56px;
  padding-top: 8px;
  font-size: 2rem;
  line-height: 1.6;
}
.list-withNum li:not(:last-child) {
  margin-bottom: 18px;
}
.list-withNum li .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #0d6fb8;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 0;
}

.title-withNum_02 {
  position: relative;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.title-withNum_02::before {
  content: attr(data-number);
  display: inline-block;
  margin-right: 20px;
  color: #7a7a7a;
  font-family: "akrobat", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  border-bottom: 1px solid #7a7a7a;
}

.total_images {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.total_images .item {
  width: 48%;
}
.total_images .item .txt {
  margin-top: 16px;
  border: 3px #0d6fb8 solid;
  padding: 24px;
  text-align: center;
  color: #0d6fb8;
  font-weight: bold;
}
@media (min-width: 560px) {
  .total_images .item .txt {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}

/**************
会社概要
**************/
.p_name {
  width: 100%;
  margin-top: 24px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.6;
}

@media (min-width: 560px) {
  .message_item {
    width: 41.5%;
  }
}
@media (max-width: 820.9px) {
  .message_item {
    margin-top: 32px;
  }
}

@media (min-width: 560px) {
  .message_text {
    width: 51%;
  }
}

.message02 {
  display: block;
  width: 100%;
  margin: 64px auto 40px;
}

.g_title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 6.4rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 820.9px) {
  .g_title {
    font-size: 3.2rem;
  }
}

.member {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 560px) {
  .member .item {
    width: 31%;
  }
}
@media (max-width: 820.9px) {
  .member .item {
    width: 32%;
  }
}
.member .item .img {
  width: 100%;
  position: relative;
  border-radius: 240px;
  overflow: hidden;
}
.member .item .img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.member .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.member .item:hover .img img {
  transform: scale(1.1);
}

.s_position {
  font-size: 1.3rem;
  font-weight: normal;
  color: #777;
  margin-top: 10px;
  letter-spacing: 0.1em;
  text-align: center;
}

.s_name {
  color: #333;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 820.9px) {
  .s_name {
    line-height: 1.5;
  }
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 11;
  overflow-y: auto;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  position: fixed;
  width: 100%;
}
@media (max-width: 559.9px) {
  .modal__bg {
    overflow: auto;
  }
}

.prof_info {
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media (max-width: 559.9px) {
  .prof_info {
    position: relative;
    width: 86%;
    padding: 20px 24px;
  }
}
.prof_info .js-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.prof_top {
  width: 100%;
}
@media (min-width: 560px) {
  .prof_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.prof_top .comment {
  text-align: left;
}
@media (min-width: 560px) {
  .prof_top .comment {
    width: calc(100% - 240px);
  }
}
@media (max-width: 559.9px) {
  .prof_top .comment {
    margin-top: 24px;
  }
}
.prof_top .comment .inner {
  font-size: 1.4rem;
  color: #676767;
}

.prof_img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
}
.prof_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.prof_img_w {
  width: 280px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 559.9px) {
  .prof_img_w {
    width: 120px;
  }
}
.prof_img_w img {
  display: block;
  width: 100%;
}

.prof_side {
  margin-top: 10px;
  letter-spacing: 0.1em;
}
.prof_side .s_name2 {
  text-align: center;
}
.prof_side .s_name2 span {
  font-family: "akrobat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  color: #2B99E8;
}
.prof_side .s_position {
  margin: 5px 0 0;
}
.prof_side .zayuu {
  background-color: #dceef2;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  margin: 10px auto;
}

.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 #ddd solid;
    padding: 20px 0;
  }
}
@media (max-width: 820.9px) {
  .overview th, .overview td.head {
    display: block;
    width: 100%;
    padding: 8px 0 0;
    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 8px;
  }
}

.history {
  width: 100%;
  position: relative;
}
.history tr {
  width: 100%;
}
.history tr th {
  padding: 12px 0 12px 24px;
  vertical-align: top;
  width: 160px;
  color: #666;
  font-weight: normal;
  text-align: left;
  position: relative;
  border-bottom: 1px #ddd solid;
}
.history tr th::before {
  width: 7px;
  height: 7px;
  content: "";
  display: block;
  background-color: #cfd114;
  border-radius: 6px;
  position: absolute;
  left: 6px;
  top: 22px;
}
.history tr td {
  padding: 12px 0;
  width: calc(100% - 160px);
  border-bottom: 1px #ddd solid;
}

@media (min-width: 560px) {
  .access_section {
    width: 100%;
    display: flex;
    height: 496px;
  }
}
@media (min-width: 560px) {
  .access_section .box {
    width: 50%;
    height: 100%;
  }
}
.access_section .box.access {
  background: linear-gradient(to right, #b60a0a, #4b1b1b);
}
@media (min-width: 560px) {
  .access_section .box.access {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 559.9px) {
  .access_section .box.access {
    padding: 40px;
  }
}
.access_section .box.access .access_text {
  color: white;
  width: 264px;
}
.access_section .box.access .img {
  width: 240px;
}
@media (max-width: 559.9px) {
  .access_section .box.access .img {
    margin: 32px auto 0;
  }
}

.gmap {
  width: 100%;
  height: 400px;
}
@media (max-width: 559.9px) {
  .gmap {
    height: 320px;
  }
}
.gmap iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 820.9px) {
  .gmap iframe {
    height: 300px;
  }
}

.borderLink span {
  display: inline-block;
  padding: 8px 4px;
  position: relative;
  color: #0d6fb8;
}
.borderLink span::after {
  width: 100%;
  height: 2px;
  display: block;
  content: "";
  background-color: #0d6fb8;
  position: absolute;
  bottom: 0;
  left: 0;
}
.borderLink.white span {
  color: white;
}
.borderLink.white span::after {
  background-color: white;
}

/**************
強み
**************/
.str_top_text {
  font-size: 2.8rem;
  font-weight: bold;
}
@media (min-width: 560px) {
  .str_top_text {
    text-align: center;
    margin-bottom: 24px;
  }
}
@media (max-width: 820.9px) {
  .str_top_text {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
@media (min-width: 560px) {
  .str_top_text + p {
    text-align: center;
  }
}
@media (max-width: 820.9px) {
  .str_top_text + p br {
    display: none;
  }
}

.str_navi_wrap {
  width: 100%;
  padding: 64px 0;
  background: linear-gradient(to right, #b60a0a, #4b1b1b);
}
@media (max-width: 820.9px) {
  .str_navi_wrap {
    padding: 32px 0;
  }
}
.str_navi_wrap .wrap {
  position: relative;
}

.str_navi {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .str_navi {
    justify-content: center;
  }
}
.str_navi li {
  width: 18%;
}
@media (max-width: 820.9px) {
  .str_navi li {
    width: 31%;
    margin: 0 1%;
  }
}
@media (min-width: 560px) {
  .str_navi li:first-child {
    transform: translateY(-24px);
  }
}
@media (min-width: 560px) {
  .str_navi li:nth-child(3) {
    transform: translateY(18px);
  }
}
@media (min-width: 560px) {
  .str_navi li:nth-child(5) {
    transform: translateY(-20px);
  }
}

.str_lines {
  position: absolute;
  left: 80px;
  width: calc(100% - 160px);
  top: 50%;
  margin-top: -136px;
}
@media (max-width: 820.9px) {
  .str_lines {
    width: 90%;
    left: 5%;
    margin-top: -40px;
  }
}
.str_lines img {
  display: block;
  width: 100%;
}

.strBox {
  width: 100%;
  position: relative;
  margin-top: 120px;
}
@media (max-width: 820.9px) {
  .strBox {
    margin-top: 64px;
  }
}
.strBox .str_tit {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
}
@media (min-width: 1160px) {
  .strBox .str_tit {
    width: 400px;
    height: 400px;
  }
}
.strBox .str_tit .eng {
  font-family: "akrobat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2B99E8;
  line-height: 1;
}
.strBox .str_tit .num {
  font-family: "akrobat", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2B99E8;
  line-height: 1;
  margin-bottom: 32px;
}
@media (max-width: 820.9px) {
  .strBox .str_tit .num {
    font-size: 4rem;
  }
}
.strBox .str_tit h2 {
  display: block;
}
@media (max-width: 820.9px) {
  .strBox .str_tit h2 {
    margin: 0 auto 32px;
  }
}
.strBox .str_tit h2.str_tit01, .strBox .str_tit h2.str_tit02, .strBox .str_tit h2.str_tit04, .strBox .str_tit h2.str_tit05 {
  width: 240px;
}
@media (max-width: 820.9px) {
  .strBox .str_tit h2.str_tit01, .strBox .str_tit h2.str_tit02, .strBox .str_tit h2.str_tit04, .strBox .str_tit h2.str_tit05 {
    width: 120px;
  }
}
.strBox .str_tit h2.str_tit03 {
  width: 290px;
}
@media (max-width: 820.9px) {
  .strBox .str_tit h2.str_tit03 {
    width: 145px;
  }
}
.strBox .str_text {
  background-color: #f3f3f3;
  padding: 48px 80px;
  position: relative;
  z-index: 4;
  opacity: 0;
}
@media (min-width: 1160px) {
  .strBox .str_text {
    width: 720px;
  }
}
@media (max-width: 820.9px) {
  .strBox .str_text {
    padding: 24px;
  }
}
.strBox .str_text h3 {
  font-size: 3.2rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 820.9px) {
  .strBox .str_text h3 {
    font-size: 1.8rem;
  }
}
.strBox .str_img {
  overflow: hidden;
  opacity: 0;
}
@media (min-width: 1160px) {
  .strBox .str_img {
    position: absolute;
    top: 0;
    width: 720px;
  }
}
@media (max-width: 1159.9px) {
  .strBox .str_img {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
}
.strBox .str_img .str_img__inner::after {
  content: "";
  background: #1b2794;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transform-origin: left top;
  transform: scaleX(0);
  transition: all 0.3s cubic-bezier(0, 0, 0, 1) 0s;
  visibility: visible;
}
.strBox.moved .str_img {
  opacity: 1;
}
.strBox.moved .str_img .str_img__inner {
  -webkit-animation: animate-content 1s cubic-bezier(0, 0, 0, 1) both;
          animation: animate-content 1s cubic-bezier(0, 0, 0, 1) both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.strBox.moved .str_img .str_img__inner::after {
  -webkit-animation: animate-panel 1s cubic-bezier(0, 0, 0, 1) both;
          animation: animate-panel 1s cubic-bezier(0, 0, 0, 1) both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.strBox.moved .str_tit {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.5s forwards;
          animation: fadeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.5s forwards;
}
.strBox.moved .str_text {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.7s forwards;
          animation: fadeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.7s forwards;
}
@media (min-width: 1160px) {
  .strBox:nth-child(odd) .str_img {
    right: 0;
  }
}
@media (min-width: 1160px) {
  .strBox:nth-child(even) .str_img {
    left: 0;
  }
}
@media (min-width: 1160px) {
  .strBox:nth-child(even) .str_tit {
    margin-left: 720px;
  }
}
@media (min-width: 1160px) {
  .strBox:nth-child(even) .str_text {
    margin-left: 400px;
  }
}

@keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scaleX(0);
  }
  49% {
    transform-origin: left top;
    transform: scale(1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1);
  }
  to {
    transform-origin: right top;
    transform: scaleX(0);
  }
}
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}
/**************
加工事例
**************/
.c_range {
  border-top: 1px #333 solid;
  border-bottom: 1px #333 solid;
  padding: 40px 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 559.9px) {
  .c_range {
    padding: 24px 0;
  }
}
.c_range dl {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.c_range dl dt {
  width: 140px;
  padding: 8px 0 8px 18px;
  position: relative;
  line-height: 1.5;
  font-weight: bold;
}
.c_range dl dt::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 13px;
  background-color: #2B99E8;
}
.c_range dl dd {
  width: calc(100% - 140px);
  line-height: 1.5;
  padding: 8px 0;
}

.product_panels {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_panels .item {
  width: 50%;
  position: relative;
}
.product_panels .item .p_typeimg {
  display: block;
  width: 100%;
  opacity: 0;
}
.product_panels .item .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media (max-width: 559.9px) {
  .product_panels .item .inner .big-title {
    margin-bottom: 0;
  }
  .product_panels .item .inner .big-title .jp_big {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }
  .product_panels .item .inner .big-title .eng_small {
    font-size: 1.1rem;
  }
}
.product_panels.moved .item .p_typeimg {
  -webkit-animation: fadeIn 0.3s ease-in forwards;
          animation: fadeIn 0.3s ease-in forwards;
}
.product_panels.moved .item .inner {
  -webkit-animation: fadeIn 0.3s ease-in 0.5s forwards;
          animation: fadeIn 0.3s ease-in 0.5s forwards;
}
.product_panels.moved .item:nth-child(2) .p_typeimg {
  -webkit-animation: fadeIn 0.3s ease-in 0.6s forwards;
          animation: fadeIn 0.3s ease-in 0.6s forwards;
}
.product_panels.moved .item:nth-child(2) .inner {
  -webkit-animation: fadeIn 0.3s ease-in 0.8s forwards;
          animation: fadeIn 0.3s ease-in 0.8s forwards;
}

.imgList {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.imgList li {
  margin-bottom: 20px;
}
@media (min-width: 1160px) {
  .imgList li {
    width: 32%;
    margin-right: 2%;
  }
  .imgList li:nth-child(3n) {
    margin-right: 0;
  }
}
.imgList li .product_img {
  margin-bottom: 8px;
}
.imgList li .product_img a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #f3f3f3;
}
.imgList li .product_img a::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.imgList li .product_img 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.3s ease;
}
.imgList li .product_img a:hover img {
  transform: scale(1.1);
}
.imgList li .name a {
  display: block;
  background-color: #eee;
  padding: 8px;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.4rem;
  color: #525a66;
}
@media (max-width: 820.9px) {
  .imgList li .name a {
    font-size: 1.3rem;
  }
}
.imgList li img {
  width: 100%;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .imgList li {
    width: 49%;
  }
  .imgList li:nth-child(odd) {
    margin-right: 2%;
  }
}
@media (max-width: 820.9px) {
  .imgList li {
    width: 100%;
  }
}
.imgList li .caption {
  text-align: center;
  margin-top: 3px;
  font-size: 1.3rem;
}
.imgList li .p_table {
  margin-top: 10px;
  font-size: 1.3rem;
}
@media (max-width: 820.9px) {
  .imgList li .p_table {
    font-size: 1.2rem;
  }
}

.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: 1159.9px) {
  .p_table td {
    padding: 3px 5px;
  }
}

/**************
品質保証
**************/
.iso_cert {
  border: 1px #333 solid;
  display: block;
  max-width: 560px;
  margin: 30px auto 0;
}

/**************
設備情報
**************/
.equip {
  width: 100%;
}
@media (max-width: 820.9px) {
  .equip {
    width: 720px;
  }
}
.equip thead th {
  background-color: #eee;
  padding: 5px;
  text-align: center;
  border: 1px #ddd solid;
}
@media (max-width: 820.9px) {
  .equip thead th {
    font-size: 1.2rem;
  }
}
.equip tbody tr td {
  background-color: #fff;
  padding: 5px;
  border: 1px #ddd solid;
}
@media (max-width: 820.9px) {
  .equip tbody tr td {
    font-size: 1.2rem;
  }
}

.youtube-iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.youtube-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/**************
新着情報
**************/
.news_archive {
  width: 100%;
}
.news_archive .news_item {
  padding: 24px 0;
  border-bottom: 1px #ddd solid;
  position: relative;
}
.news_archive .news_item:first-child {
  border-top: 1px #ddd solid;
}
@media (min-width: 560px) {
  .news_archive .news_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.news_archive .news_item .thumb {
  width: 280px;
  height: 192px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .news_archive .news_item .thumb {
    width: 100%;
    height: 160px;
    margin-bottom: 16px;
  }
}
.news_archive .news_item .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;
}
@media (min-width: 560px) {
  .news_archive .news_item .inner {
    width: calc(100% - 320px);
  }
}
.news_archive .news_item .inner .cat_tag {
  background-color: #1b1b1b;
  font-size: 1.2rem;
  color: white;
  width: 160px;
  text-align: center;
  padding: 5px 0;
  line-height: 1;
  border-radius: 4px;
  margin-bottom: 10px;
}
.news_archive .news_item .inner .date {
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.news_archive .news_item .inner .tit {
  color: #0d6fb8;
  font-size: 1.8rem;
  line-height: 1.6;
}
.news_archive .news_item .inner .excerpt {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #666;
  font-weight: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.single_title {
  font-size: 2.4rem;
  border-bottom: 1px #333 solid;
  padding-bottom: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .single_title {
    font-size: 1.6rem;
  }
}

.post_data {
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 820.9px) {
  .post_data {
    justify-content: space-between;
  }
}
.post_data .single_cat_tag {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 560px) {
  .post_data .single_cat_tag {
    margin-left: 16px;
  }
}
.post_data .single_cat_tag span {
  background-color: white;
  border: 1px #0d6fb8 solid;
  color: #0d6fb8;
  display: inline-block;
  margin-right: 2px;
  font-size: 1.2rem;
  padding: 1px 10px;
}
.post_data p:last-child {
  margin-right: 0;
}
.post_data p.news_date {
  display: inline-block;
  background-color: #eee;
  padding: 0 15px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 3px;
}
.post_data p a {
  color: #777;
}
@media (min-width: 560px) {
  .post_data p a:hover, .post_data p a:active {
    color: #27b3bb;
  }
}

.single_icatch {
  width: 100%;
  margin-top: 64px;
  background-color: #eee;
  overflow: hidden;
  position: relative;
}
@media (min-width: 560px) {
  .single_icatch {
    height: 48vh;
  }
}
@media (max-width: 559.9px) {
  .single_icatch {
    max-height: 64vh;
  }
}
@media (max-width: 820.9px) {
  .single_icatch {
    margin-top: 32px;
  }
}
.single_icatch img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100% !important;
  max-height: 100% !important;
}
@media (min-width: 560px) {
  .single_icatch img {
    position: absolute;
    max-height: 130% !important;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
}

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

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

.single_cat_tag span {
  background-color: #bbb;
  display: inline-block;
  margin-right: 2px;
  font-size: 1.2rem;
  color: #fff;
  padding: 1px 10px;
}

.single_page_navi {
  background-color: white;
  padding: 24px;
  margin: 72px auto;
  border: 5px #eee solid;
  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: #0d6fb8;
}
.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;
}

.side_title {
  background-color: #0d6fb8;
  padding: 8px;
  color: #fff;
  font-weight: bold;
}

.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_list.side_reason_list li a {
  position: relative;
  padding-left: 40px;
  font-size: 1.4rem;
}
.side_list.side_reason_list li a .num {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background-color: #0d6fb8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -12px;
}

.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: 1159.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, #0d6fb8 0 50%, #0b39af 50% 100%);
  color: #fff;
  margin-top: 8px;
  line-height: 1.6;
}
@media (min-width: 821px) and (max-width: 1159.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: 1159.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: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #666;
}

/* ------------
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;
}

.news_item {
  border-bottom: 1px #333 solid;
  padding: 20px 10px;
  width: 100%;
}
@media (min-width: 560px) {
  .news_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 560px) {
  .news_item .news_item_left {
    width: 30%;
  }
}
@media (min-width: 560px) {
  .news_item .news_item_right {
    width: 65%;
  }
}
.news_item .news_item_right h3 {
  font-size: 2rem;
  color: #333;
}
.news_item .news_item_right .excerpt {
  line-height: 1, 6;
  color: #555;
  margin-top: 10px;
}

/**************
お問い合わせ
**************/
.conta_box {
  padding: 24px;
  width: 100%;
  max-width: 800px;
  margin: 32px auto 40px;
  background-color: #0d6fb8;
  border-radius: 8px;
}
@media (max-width: 820.9px) {
  .conta_box {
    padding: 16px 20px;
  }
}
.conta_box .text {
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-top: 24px;
  line-height: 1.6;
}
.conta_box .tel {
  width: 100%;
}
@media (min-width: 560px) {
  .conta_box .tel {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.conta_box .tel .tel_box {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 560px) {
  .conta_box .tel .tel_box {
    width: 49%;
  }
}
@media (max-width: 820.9px) {
  .conta_box .tel .tel_box {
    margin-top: 20px;
    padding: 16px 8px 8px;
  }
}
.conta_box .tel .tel_box i {
  font-size: 4.8rem;
  color: #0d6fb8;
  display: block;
  margin-right: 10px;
}
@media (max-width: 820.9px) {
  .conta_box .tel .tel_box i {
    line-height: 1;
    font-size: 4rem;
  }
}
.conta_box .tel .tel_box .nums {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0d6fb8;
  line-height: 1;
}
.conta_box .tel .tel_box .nums span {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
}

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

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: 1159.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: 1159.9px) {
  .c-radio-list__item {
    text-align: left;
  }
}
.c-radio-list__item label {
  cursor: pointer;
  margin-right: 20px;
}
@media (max-width: 1159.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: 1159.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: 1160px) {
  .c-submit, .c-confirm, .c-back {
    transition: all 0.3s ease 0s;
  }
}
@media (max-width: 1159.9px) {
  .c-submit, .c-confirm, .c-back {
    width: 48%;
    padding: 15px 0;
  }
}

.c-submit {
  border: 2px #0d6fb8 solid;
  color: #fff;
  background-color: #0d6fb8;
  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 {
  font-size: 12px;
  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: 1159.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: 1159.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%;
}

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

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

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

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

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

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

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

/**************
採用情報
**************/
.rec_top {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #0d6fb8;
}
@media (max-width: 559.9px) {
  .rec_top {
    font-size: 2.3rem;
    line-height: 1.6;
  }
}

.ceo_message {
  margin-top: 40px;
}
@media (min-width: 560px) {
  .ceo_message {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.ceo_message .text {
  width: calc(100% - 400px);
}
@media (max-width: 559.9px) {
  .ceo_message .text {
    width: 100%;
  }
}
.ceo_message .text p:not(:last-child) {
  margin-bottom: 24px;
}
.ceo_message .text p.recruit_top_text {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2rem;
  font-weight: normal;
}
.ceo_message .text p.ceo_name {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 1.8rem;
  font-weight: normal;
  text-align: right;
}
.ceo_message .img {
  width: 320px;
}
@media (max-width: 559.9px) {
  .ceo_message .img {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 24px auto 0;
  }
}
.ceo_message .img img:last-child {
  margin-top: 20px;
}
@media (max-width: 559.9px) {
  .ceo_message .img img:last-child {
    margin-top: 0;
  }
}
@media (max-width: 559.9px) {
  .ceo_message .img img {
    width: 48%;
  }
}

.work_data {
  width: 100%;
}
@media (min-width: 560px) {
  .work_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 560px) {
  .work_data .item {
    width: 32%;
  }
}
.work_data .item .tit {
  font-size: 2rem;
  color: white;
  text-align: center;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.5;
}
.work_data .item .tit span {
  font-size: 1.5rem;
}
@media (max-width: 559.9px) {
  .work_data .item .tit {
    font-size: 1.8rem;
    height: auto;
    margin: 30px 0 10px;
  }
}
.work_data .item .inner {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .work_data .item .inner {
    height: 140px;
  }
}
.work_data .item .inner img {
  display: block;
}
.work_data .item .inner .txt .num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0d6fb8;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .work_data .item .inner .txt .num {
    font-size: 4rem;
  }
}
.work_data .item .inner .txt .jp {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .work_data .item .inner .txt .jp {
    font-size: 1.5rem;
  }
}
.work_data + .caption {
  text-align: center;
  color: white;
}

.rec_white_column {
  background-color: white;
  border-radius: 8px;
}
.rec_white_column .inner {
  padding: 30px 56px 40px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
@media (max-width: 559.9px) {
  .rec_white_column .inner {
    padding: 24px;
  }
}
.rec_white_column .inner .tit1 {
  font-size: 2rem;
  position: relative;
  padding-left: 17px;
  line-height: 1.6;
}
@media (max-width: 559.9px) {
  .rec_white_column .inner .tit1 {
    font-size: 1.8rem;
  }
}
.rec_white_column .inner .tit1::before {
  content: "";
  display: block;
  width: 5px;
  height: 80%;
  top: 14%;
  left: 0;
  position: absolute;
  background-color: #0d6fb8;
}
@media (max-width: 559.9px) {
  .rec_white_column .inner .tit1::before {
    height: 100%;
    top: 0;
  }
}
.rec_white_column .divider {
  width: 100%;
  height: 2px;
  background-color: #0d6fb8;
}

.rec_edubox {
  margin-top: 30px;
}
@media (min-width: 560px) {
  .rec_edubox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 560px) {
  .rec_edubox .imgSide {
    width: 240px;
  }
}
@media (max-width: 559.9px) {
  .rec_edubox .imgSide img {
    width: 100%;
  }
}
@media (min-width: 560px) {
  .rec_edubox .textSide {
    width: calc(100% - 280px);
  }
}
@media (max-width: 559.9px) {
  .rec_edubox .textSide {
    margin-top: 20px;
  }
}
.rec_edubox .textSide .sq1 {
  margin-bottom: 10px;
}

.work_images .item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
@media (min-width: 1160px) {
  .work_images .item {
    width: 90%;
  }
  .work_images .item:nth-child(odd) {
    margin-right: auto;
  }
  .work_images .item:nth-child(even) {
    margin-left: auto;
  }
}
@media (min-width: 560px) {
  .work_images .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.work_images .item img {
  width: 240px;
}
@media (max-width: 559.9px) {
  .work_images .item img {
    width: 100%;
  }
}
@media (min-width: 560px) {
  .work_images .item .inner {
    width: calc(100% - 280px);
    padding-right: 40px;
  }
}
@media (max-width: 559.9px) {
  .work_images .item .inner {
    padding: 32px;
  }
}

.h3_title {
  text-align: center;
  font-size: 3rem;
  color: #fff;
  margin-top: 50px;
}
.h3_title::after {
  content: "";
  width: 30px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  margin-bottom: 10px;
  margin-left: 10px;
}
.h3_title::before {
  content: "";
  width: 30px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  margin-bottom: 10px;
  margin-right: 10px;
}

.employee .item2 {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}
@media (min-width: 1160px) {
  .employee .item2 {
    width: 90%;
  }
  .employee .item2:nth-child(odd) {
    margin-right: auto;
  }
  .employee .item2:nth-child(even) {
    margin-left: auto;
  }
}
.employee .item2 .q {
  padding: 10px 50px;
  border-bottom: #0d6fb8 1px solid;
}
.employee .item2 .q::before {
  content: "Q";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.employee .item2 .a_box {
  display: flex;
}
.employee .item2 .a_box .answer {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 560px) {
  .recruit_flow th {
    width: 200px;
  }
}
.recruit_flow .color {
  display: inline-block;
  background-color: #0d6fb8;
  color: white;
  padding: 2px 15px 4px;
  border-radius: 30px;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
@media (max-width: 820.9px) {
  .recruit_flow td .p_table td {
    width: 100%;
    display: table-cell;
  }
}

.entry_flow li {
  background-color: #f3f3f3;
  padding: 14px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry_flow li .num {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0d6fb8;
}
.entry_flow li .inner {
  width: calc(100% - 80px);
}
@media (max-width: 559.9px) {
  .entry_flow li .inner {
    width: calc(100% - 65px);
  }
}
/*# sourceMappingURL=cmn.css.map */