@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://eishin-japan.works/
File name:style.css
Summary:base styles
Created:2023-06-26
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  text-decoration: none;
}

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

/* Animation */
/* ------------------------------------------------------------ */
img,
.alpha {
  transition: all 0.5s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

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

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

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

/* Clear */
/* ------------------------------------------------------------ */
.clfx:after {
  content: "";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

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

.sp_mode {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_mode {
    display: none !important;
  }
  .sp_mode {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html body {
  font-size: 16px;
}
html body::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  html body {
    font-size: 14px;
  }
}
html body header {
  position: relative;
  z-index: 2;
}
html body header .inner {
  width: 100%;
  position: fixed;
}
html body header .inner .header_area {
  background: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  transition: all 0.5s ease;
}
html body header .inner .header_area > div {
  height: 100px;
  display: flex;
  align-items: center;
}
html body header .inner .header_area > div > h1 {
  background: url(../img/logo_white.svg) no-repeat center center;
  width: 222px;
  height: 52px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode {
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  height: 62px;
  padding-right: 25px;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li {
  border-left: 1px #DBDBDB solid;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:first-child, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:last-child {
  border: none;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(1) a, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) a, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(3) a, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(4) a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  height: 40px;
  padding: 0 25px;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(1) a span, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) a span, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(3) a span, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(4) a span {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(1) a span::after, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) a span::after, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(3) a span::after, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(4) a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(1) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(3) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(4) a:hover span::after {
  background: #000;
  bottom: -5px;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) {
  background: #fff url(../img/arrow_down.svg) no-repeat right 10px center;
  background-size: 7px 4px;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) > ul.child {
  display: none;
  position: absolute;
  z-index: 99;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) > ul.child > li {
  border-bottom: 1px #fff solid;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) > ul.child > li:last-child {
  border-bottom: none;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) > ul.child > li a {
  background: #2E9CC7 url(../img/arrow5.svg) no-repeat right 15px center;
  background-size: 4px 7px;
  justify-content: flex-start;
  color: #fff;
  padding: 0 35px 0 25px;
  transition: all 0.3s ease;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) > ul.child > li a:hover {
  background: #227493 url(../img/arrow5.svg) no-repeat right 15px center;
  background-size: 4px 7px;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(2) > ul.child > li a:hover span::after {
  content: none;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(5) {
  width: 210px;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(5) a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2E9CC7 url(../img/arrow5.svg) no-repeat right 15px center;
  background-size: 4px 7px;
  border-radius: 20px;
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(5) a span {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
html body header .inner .header_area > nav#global_nav > ul.pc_mode > li:nth-of-type(5) a:hover {
  background: #227493 url(../img/arrow5.svg) no-repeat right 15px center;
  background-size: 4px 7px;
}
html body header .inner.fixed .header_area {
  background: rgb(255, 255, 255) !important;
}
html body header .inner.fixed .header_area > div > h1 {
  background: url(../img/logo.svg) no-repeat center center;
}
@media screen and (max-width: 1024px) {
  html body header .inner .header_area {
    padding: 0 4vw;
  }
  html body header .inner .header_area > div {
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 55px;
    z-index: 5;
  }
  html body header .inner .header_area > div > h1 {
    background: url(../img/logo_white.svg) no-repeat center center;
    width: 151px;
    height: 35px;
  }
  html body header .inner .header_area > div #nav_toggle {
    cursor: pointer;
  }
  html body header .inner .header_area > div #nav_toggle > div {
    position: relative;
    background: #fff;
    border-radius: 31px;
    width: 31px;
    height: 31px;
  }
  html body header .inner .header_area > div #nav_toggle > div span {
    width: 21px;
    height: 1px;
    left: 5px;
    display: block;
    background: #2E9CC7;
    position: absolute;
    transition: transform 0.3s ease-in-out, top 0.2s ease;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(1) {
    top: 10px;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(2) {
    top: 15px;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(3) {
    top: 20px;
  }
  html body header .inner .header_area > nav#global_nav {
    background: rgb(255, 255, 255);
    color: #fff;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  html body header .inner .header_area > nav#global_nav > h2 {
    color: #2E9CC7;
    font-size: 18px;
    font-weight: 700;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode {
    display: block;
    width: 100%;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li {
    text-align: center;
    margin: 30px auto 0;
    display: block;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.1s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(1) {
    transition-delay: 0.1s;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(5) {
    transition-delay: 0.5s;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(1) a, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(2) a, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(3) a, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(4) a {
    color: #000;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(1) a span, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(2) a span, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(3) a span, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(4) a span {
    font-size: 16px;
    font-weight: 700;
    position: relative;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(1) a span::after, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(2) a span::after, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(3) a span::after, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(4) a span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all 0.3s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(1) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(2) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(3) a:hover span::after, html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(4) a:hover span::after {
    background: #000;
    bottom: -5px;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(5) {
    width: 230px;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(5) a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2E9CC7 url(../img/arrow5.svg) no-repeat right 15px center;
    background-size: 4px 7px;
    border-radius: 20px;
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(5) a span {
    font-size: 16px;
    font-weight: 700;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li:nth-of-type(5) a:hover {
    background: #227493 url(../img/arrow5.svg) no-repeat right 15px center;
    background-size: 4px 7px;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child {
    display: block;
    margin-left: 1em;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child > li {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child > li {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child > li a {
    color: #898989;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child > li a span {
    font-size: 14px;
    font-weight: 700;
    position: relative;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child > li a span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all 0.3s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul.sp_mode > li > ul.child > li a:hover span::after {
    background: #898989;
    bottom: -5px;
  }
  html body header .inner.open {
    position: fixed !important;
    top: 0px !important;
    margin-top: 0 !important;
    z-index: 3;
  }
  html body header .inner.open .header_area h1 {
    background: url(../img/logo.svg) no-repeat center center;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }
  html body header .inner.open .header_area > nav#global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open .header_area > nav#global_nav > ul > li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease, opacity 0.9s ease;
  }
}
html body main section:not(#swiper-wrap) {
  margin: 120px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#swiper-wrap) {
    margin: 60px 0 0;
  }
}
html body main section:not(#swiper-wrap) .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#swiper-wrap) .inner {
    box-sizing: border-box;
    padding: 0 4vw;
  }
}
html body main section#philosophy .inner > div:nth-of-type(1) {
  text-align: center;
}
html body main section#philosophy .inner > div:nth-of-type(1) h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#philosophy .inner > div:nth-of-type(1) h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
html body main section#philosophy .inner > div:nth-of-type(1) h3::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #2E9CC7;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#philosophy .inner > div:nth-of-type(1) h3::before {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
html body main section#philosophy .inner > div:nth-of-type(1) h3::after {
  content: "";
  background: #2E9CC7;
  width: 96px;
  height: 2px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#philosophy .inner > div:nth-of-type(1) h3::after {
    height: 1px;
    margin-top: 15px;
  }
}
html body main section#philosophy .inner > div:nth-of-type(1) strong {
  text-align: center;
  line-height: 1.8;
  font-size: 24px;
  font-weight: 700;
  color: #2E9CC7;
}
@media screen and (max-width: 1024px) {
  html body main section#philosophy .inner > div:nth-of-type(1) strong {
    text-align: left;
    font-size: 16px;
  }
}
html body main section#philosophy .inner > div:nth-of-type(1) p {
  text-align: center;
  line-height: 1.8;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#philosophy .inner > div:nth-of-type(1) p {
    text-align: left;
    margin-top: 20px;
  }
}
html body main section#recruit .inner > div:nth-of-type(1) {
  text-align: center;
}
html body main section#recruit .inner > div:nth-of-type(1) h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(1) h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
html body main section#recruit .inner > div:nth-of-type(1) h3::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #2E9CC7;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(1) h3::before {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
html body main section#recruit .inner > div:nth-of-type(1) h3::after {
  content: "";
  background: #2E9CC7;
  width: 96px;
  height: 2px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(1) h3::after {
    height: 1px;
    margin-top: 15px;
  }
}
html body main section#recruit .inner > div:nth-of-type(1) strong {
  text-align: center;
  line-height: 1.8;
  font-size: 24px;
  font-weight: 700;
  color: #2E9CC7;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(1) strong {
    text-align: left;
    font-size: 16px;
  }
}
html body main section#recruit .inner > div:nth-of-type(1) p {
  text-align: center;
  line-height: 1.8;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(1) p {
    text-align: left;
    margin-top: 20px;
  }
}
html body main section#contact .inner > div:nth-of-type(1) {
  text-align: center;
}
html body main section#contact .inner > div:nth-of-type(1) h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
html body main section#contact .inner > div:nth-of-type(1) h3::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #2E9CC7;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) h3::before {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
html body main section#contact .inner > div:nth-of-type(1) h3::after {
  content: "";
  background: #2E9CC7;
  width: 96px;
  height: 2px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) h3::after {
    height: 1px;
    margin-top: 15px;
  }
}
html body main section#contact .inner > div:nth-of-type(1) strong {
  text-align: center;
  line-height: 1.8;
  font-size: 24px;
  font-weight: 700;
  color: #2E9CC7;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) strong {
    text-align: left;
    font-size: 16px;
  }
}
html body main section#contact .inner > div:nth-of-type(1) p {
  text-align: center;
  line-height: 1.8;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner > div:nth-of-type(1) p {
    text-align: left;
    margin-top: 20px;
  }
}
html body main section#greeting .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > div:nth-of-type(1) {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
html body main section#greeting .inner > div:nth-of-type(1) h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 2px #2E9CC7 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > div:nth-of-type(1) h3 {
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 1px #2E9CC7 solid;
  }
}
html body main section#greeting .inner > div:nth-of-type(1) h3::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #2E9CC7;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > div:nth-of-type(1) h3::after {
    font-size: 12px;
    margin: 0 0 0 10px;
  }
}
html body main section#greeting .inner > div:nth-of-type(1) p {
  line-height: 1.8;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > div:nth-of-type(1) p {
    margin: 30px 0 0 0;
  }
}
html body main section#business .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div:nth-of-type(1) {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
html body main section#business .inner > div:nth-of-type(1) h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 2px #2E9CC7 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div:nth-of-type(1) h3 {
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 1px #2E9CC7 solid;
  }
}
html body main section#business .inner > div:nth-of-type(1) h3::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #2E9CC7;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div:nth-of-type(1) h3::after {
    font-size: 12px;
    margin: 0 0 0 10px;
  }
}
html body main section#business .inner > div:nth-of-type(1) p {
  line-height: 1.8;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > div:nth-of-type(1) p {
    margin: 30px 0 0 0;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(1) {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(1) h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 2px #2E9CC7 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(1) h3 {
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 1px #2E9CC7 solid;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(1) h3::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #2E9CC7;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(1) h3::after {
    font-size: 12px;
    margin: 0 0 0 10px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(1) p {
  line-height: 1.8;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(1) p {
    margin: 30px 0 0 0;
  }
}
html body main section#swiper-wrap {
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
html body main section#swiper-wrap .swiper-slide .slide-img > h2 {
  position: absolute;
  z-index: 1;
}
html body main section#swiper-wrap .swiper-slide .slide-img > h2.left {
  top: calc(50% - 300px);
  left: 10%;
}
@media screen and (max-width: 1024px) {
  html body main section#swiper-wrap .swiper-slide .slide-img > h2.left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 40%;
    max-width: 516px;
    top: 22%;
    left: 10%;
  }
}
html body main section#swiper-wrap .swiper-slide .slide-img > h2.right {
  top: calc(50% - 146px);
  right: 5%;
}
@media screen and (max-width: 1024px) {
  html body main section#swiper-wrap .swiper-slide .slide-img > h2.right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 90%;
    max-width: 516px;
    margin: 0 auto;
    top: 0;
    right: 0;
    bottom: 14%;
    left: 0;
  }
}
html body main section#swiper-wrap .swiper-slide .slide-img > img {
  width: 100vw;
}
html body main section#greeting .inner {
  background: url(../img/greeting_bg.png) no-repeat;
  background-position: 100% center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner {
    background-position: calc(50% + 250px) center;
    background-size: cover;
  }
}
html body main section#greeting .inner > p:nth-of-type(1) {
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > p:nth-of-type(1) {
    text-align: left;
  }
}
html body main section#greeting .inner > p:nth-of-type(2) {
  width: 288px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#greeting .inner > p:nth-of-type(2) {
    width: 144px;
    margin: 20px 0 0 auto;
  }
}
html body main section#business .inner {
  max-width: 100%;
}
html body main section#business .inner > div:nth-of-type(1) {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
html body main section#business .inner > div:nth-of-type(2) {
  background: url(../img/arrow1.svg) no-repeat;
  background-position: right center;
  background-size: 20px;
  padding: 60px 0;
}
html body main section#business .inner > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > ul {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px auto 0;
  }
}
html body main section#business .inner > ul li {
  margin: 0 50px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > ul li {
    margin: 10px 0 0;
  }
}
html body main section#business .inner > ul li a {
  background: url(../img/arrow1.svg) no-repeat;
  background-position: right center;
  background-size: 20px;
  display: flex;
  padding: 0 30px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > ul li a {
    background-size: 10px;
    padding: 0 15px 0 0;
  }
}
html body main section#business .inner > ul li a span {
  white-space: nowrap;
  position: relative;
  color: #2E9CC7;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner > ul li a span {
    font-size: 14px;
  }
}
html body main section#business .inner > ul li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body main section#business .inner > ul li a:hover span::after {
  background: #2E9CC7;
  bottom: -5px;
}
html body main section#business .inner article {
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article {
    margin: 30px auto 0;
  }
}
html body main section#business .inner article:last-child {
  padding: 0;
  border-bottom: none;
}
html body main section#business .inner article > div:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article > div:nth-of-type(1) {
    display: block;
  }
}
html body main section#business .inner article > div:nth-of-type(1) figure {
  flex-shrink: 0;
  border-radius: 12px;
  width: 100%;
  max-width: 415px;
  margin-right: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article > div:nth-of-type(1) figure {
    margin: 0 auto 30px;
  }
}
html body main section#business .inner article > div:nth-of-type(1) figcaption {
  width: 100%;
}
html body main section#business .inner article > div:nth-of-type(1) figcaption > h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article > div:nth-of-type(1) figcaption > h4 {
    font-size: 16px;
  }
}
html body main section#business .inner article > div:nth-of-type(1) figcaption > h4::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 9px;
  background-image: url(../img/arrow2.svg);
  background-size: contain;
  margin-right: 10px;
}
html body main section#business .inner article > div:nth-of-type(1) figcaption > h4::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #2E9CC7;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article > div:nth-of-type(1) figcaption > h4::after {
    font-size: 10px;
  }
}
html body main section#business .inner article > div:nth-of-type(1) figcaption > p {
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article > div:nth-of-type(1) figcaption > p {
    margin-top: 10px;
  }
}
html body main section#business .inner article > div:nth-of-type(1) figcaption aside {
  border-radius: 12px;
  background: #F7F7F7;
  margin-top: 20px;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article > div:nth-of-type(1) figcaption aside {
    margin-top: 10px;
  }
}
html body main section#business .inner article > div:nth-of-type(1) figcaption aside h5 {
  color: #2E9CC7;
}
html body main section#business .inner article > div:nth-of-type(1) figcaption aside p {
  line-height: 1.8;
  margin-top: 10px;
}
html body main section#business .inner article > div:nth-of-type(1) figcaption aside p span {
  display: block;
}
html body main section#business .inner article#fitness > h6 {
  color: #2E9CC7;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > h6 {
    font-size: 16px;
    margin: 30px auto 20px;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(2), html body main section#business .inner article#fitness > div:nth-of-type(3), html body main section#business .inner article#fitness > div:nth-of-type(4) {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(2), html body main section#business .inner article#fitness > div:nth-of-type(3), html body main section#business .inner article#fitness > div:nth-of-type(4) {
    display: block;
    margin: 20px auto 0;
    padding: 0 0 20px;
    border-bottom: 1px #DBDBDB solid;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(2) figure, html body main section#business .inner article#fitness > div:nth-of-type(3) figure, html body main section#business .inner article#fitness > div:nth-of-type(4) figure {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 114px;
  margin: 0 30px 0 0;
  padding: 0 30px 0 0;
  border-right: 2px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(2) figure, html body main section#business .inner article#fitness > div:nth-of-type(3) figure, html body main section#business .inner article#fitness > div:nth-of-type(4) figure {
    display: block;
    margin: 0 auto 15px;
    padding: 0;
    border: none;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption {
    display: block;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption strong, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption strong, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption strong, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption strong, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption strong {
    font-size: 16px;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption strong span, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption strong span, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption strong span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption strong span, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption strong span, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption strong span {
    font-size: 12px;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption strong:nth-of-type(n+2), html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption strong:nth-of-type(n+2), html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption strong:nth-of-type(n+2) {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption strong:nth-of-type(n+2), html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption strong:nth-of-type(n+2), html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption strong:nth-of-type(n+2) {
    margin-top: 10px;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption p, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption p, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption p {
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(2) figcaption p, html body main section#business .inner article#fitness > div:nth-of-type(3) figcaption p, html body main section#business .inner article#fitness > div:nth-of-type(4) figcaption p {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(4) {
    padding: 0;
    border: none;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(5) {
  background: url(../img/price_list_bg.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 60px 0 0;
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(5) {
    margin: 30px -4vw 0;
    padding: 60px 4vw;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(5) h6 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(5) h6 {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  html body main section#business .inner article#fitness > div:nth-of-type(5) h6 + p {
    line-height: 1.8;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(5) figure {
  margin: 40px auto;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(5) figure {
    margin: 20px auto;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(5) figcaption {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 780px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(5) figcaption {
    justify-content: flex-start;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(5) figcaption div p {
  line-height: 1.8;
}
html body main section#business .inner article#fitness > div:nth-of-type(5) .btn {
  width: 100%;
  max-width: 600px;
}
html body main section#business .inner article#fitness > div:nth-of-type(5) .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff url(../img/arrow3.svg) no-repeat right 30px center;
  background-size: 20px;
  border-radius: 4px;
  width: 100%;
  height: 78px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(5) .btn a {
    background: #fff url(../img/arrow3.svg) no-repeat right 10px center;
    background-size: 14px;
    height: 40px;
    font-size: 14px;
  }
}
html body main section#business .inner article#fitness > div:nth-of-type(5) .btn a:hover {
  background: #227493 url(../img/arrow3.svg) no-repeat right 30px center;
  background-size: 20px;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner article#fitness > div:nth-of-type(5) .btn a:hover {
    background: #227493 url(../img/arrow3.svg) no-repeat right 10px center;
    background-size: 14px;
  }
}
html body main section#business .inner hr {
  width: 100%;
  max-width: 1200px;
  height: 2px;
  margin: 60px auto;
  padding: 0;
  display: block;
  border: 0;
  border-top: 2px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#business .inner hr {
    height: 1px;
    margin: 30px auto;
    border-top: 1px #DBDBDB solid;
  }
}
html body main section#companyprofile {
  background: #FFFDFA;
  margin-top: 0;
  padding: 120px 0 120px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile {
    margin-top: 0;
    padding: 60px 0 60px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(2) > dl {
    display: block;
    padding: 20px 0;
    border-bottom: 1px #DBDBDB solid;
  }
  html body main section#companyprofile .inner > div:nth-of-type(2) > dl:first-of-type {
    border-top: 1px #DBDBDB solid;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl:nth-of-type(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(2) > dl:nth-of-type(n+2) {
    margin-top: 0;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dt {
  flex-shrink: 0;
  display: block;
  text-align: left;
  width: 6.6em;
  font-weight: 700;
  margin: 0 25px 0 0;
  padding: 0 25px 0 0;
  border-right: 1px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dt {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dd {
  display: block;
  text-align: left;
  width: 100%;
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dd a {
  color: #000;
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dd .btn a {
  background: url(../img/arrow3.svg) no-repeat right 6px;
  background-size: 15px;
  padding-right: 25px;
  color: #2E9CC7;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dd .btn a {
    background: url(../img/arrow3.svg) no-repeat right center;
    background-size: 14px;
    padding-right: 25px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dd .btn a span {
  position: relative;
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dd .btn a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body main section#companyprofile .inner > div:nth-of-type(2) > dl > dd .btn a:hover span::after {
  background: #2E9CC7;
  bottom: -5px;
}
html body main section#companyprofile .inner > div:nth-of-type(3) {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) {
    display: block;
    margin-top: 30px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div {
  width: 48%;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div {
    width: 100%;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div > h4 {
    font-size: 16px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > h4::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 9px;
  background-image: url(../img/arrow2.svg);
  background-size: contain;
  margin-right: 10px;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > h4::after {
  content: attr(data-subtitle);
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #2E9CC7;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div > h4::after {
    font-size: 10px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl {
    display: block;
    margin-top: 20px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dt {
  flex-shrink: 0;
  display: block;
  text-align: left;
  width: 3.3em;
  font-weight: 700;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dt {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd {
  display: block;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd {
    line-height: 1.4;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd a {
  color: #000;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd .btn a {
  background: url(../img/arrow3.svg) no-repeat right 6px;
  background-size: 15px;
  padding-right: 25px;
  color: #2E9CC7;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd .btn a {
    background: url(../img/arrow3.svg) no-repeat right center;
    background-size: 14px;
    padding-right: 25px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd .btn a span {
  position: relative;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd .btn a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div > dl > dd .btn a:hover span::after {
  background: #2E9CC7;
  bottom: -5px;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div ul {
    margin-top: 20px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div ul li {
  width: 48%;
  position: relative;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div ul li::before {
  content: "";
  display: block;
  padding-top: 75%;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div ul li:nth-of-type(n+3) {
  margin-top: 4%;
}
@media screen and (max-width: 1024px) {
  html body main section#companyprofile .inner > div:nth-of-type(3) > div:nth-of-type(2) {
    margin-top: 30px;
  }
}
html body main section#companyprofile .inner > div:nth-of-type(3) > div:nth-of-type(2) ul li::before {
  padding-top: 133.333%;
}
html body main section#recruit {
  background: #EBF8FF url(../img/recruit_bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 0 0 120px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit {
    background-size: contain;
    padding: 0 0 60px;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) {
  border-radius: 58px;
  background: #fff;
  margin-top: 60px;
  padding: 80px 100px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) {
    border-radius: 29px;
    margin-top: 30px;
    padding: 4vw 4vw 8vw;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) dl {
    display: block;
    padding-bottom: 20px;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) dl:nth-of-type(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) dl:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) dl:last-child {
  padding-bottom: 0;
  border: none;
}
html body main section#recruit .inner > div:nth-of-type(2) dl > dt {
  display: block;
  text-align: left;
  width: 180px;
  flex-shrink: 0;
  color: #2E9CC7;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) dl > dt {
    width: 100%;
    font-size: 16px;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) dl > dd {
  display: block;
  text-align: left;
  width: 100%;
  line-height: 1.8;
}
html body main section#recruit .inner > div:nth-of-type(2) dl > dd strong {
  display: block;
  font-weight: 700;
}
html body main section#recruit .inner > div:nth-of-type(2) dl > dd a {
  color: #000;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) dl > dd {
    width: 100%;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) .btn {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) .btn {
    margin: 20px auto 0;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) .btn a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff url(../img/arrow4.svg) no-repeat right 30px center;
  background-size: 8px 14px;
  border-radius: 4px;
  width: 100%;
  height: 78px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: 1px #DBDBDB solid;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) .btn a {
    background: #fff url(../img/arrow4.svg) no-repeat right 10px center;
    background-size: 4px 7px;
    height: 40px;
    font-size: 14px;
  }
}
html body main section#recruit .inner > div:nth-of-type(2) .btn a:hover {
  background: #227493 url(../img/arrow4.svg) no-repeat right 30px center;
  background-size: 8px 14px;
}
@media screen and (max-width: 1024px) {
  html body main section#recruit .inner > div:nth-of-type(2) .btn a:hover {
    background: #227493 url(../img/arrow4.svg) no-repeat right 10px center;
    background-size: 4px 7px;
  }
}
html body main section#contact .inner .must {
  color: #E60012;
}
html body main section#contact .inner form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form {
    margin: 30px auto 0;
  }
}
html body main section#contact .inner form > p:nth-of-type(1) {
  line-height: 1.8;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(1) {
    margin-bottom: 30px;
  }
}
html body main section#contact .inner form > p:nth-of-type(2) {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(2) {
    text-align: left;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
html body main section#contact .inner form > p:nth-of-type(3) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(3) {
    margin-top: 20px;
  }
}
html body main section#contact .inner form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
}
html body main section#contact .inner form dl:nth-of-type(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl {
    display: block;
    width: 100%;
  }
}
html body main section#contact .inner form dl dt {
  display: block;
  text-align: left;
  width: 300px;
  margin-right: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dt {
    width: 100%;
    margin: 0;
    padding: 0 0 5px;
  }
}
html body main section#contact .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
html body main section#contact .inner form dl dd {
  display: block;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dd {
    padding: 0;
  }
}
html body main section#contact .inner form dl dd .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.8;
}
html body main section#contact .inner form span.error {
  text-align: center;
  margin-top: 5px;
}
html body main section#contact .inner form input[type=text],
html body main section#contact .inner form input[type=tel],
html body main section#contact .inner form input[type=email],
html body main section#contact .inner form input[type=password],
html body main section#contact .inner form input[type=date],
html body main section#contact .inner form input[type=number] {
  border-radius: 6px;
  border: 1px #DBDBDB solid;
  background: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text],
  html body main section#contact .inner form input[type=tel],
  html body main section#contact .inner form input[type=email],
  html body main section#contact .inner form input[type=password],
  html body main section#contact .inner form input[type=date],
  html body main section#contact .inner form input[type=number] {
    font-size: 14px;
  }
}
html body main section#contact .inner form input[type=file] {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=file] {
    font-size: 14px;
  }
}
html body main section#contact .inner form select {
  border-radius: 6px;
  border: 1px #DBDBDB solid;
  background: #fff;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form select {
    font-size: 14px;
  }
}
html body main section#contact .inner form textarea {
  border-radius: 6px;
  border: 1px #DBDBDB solid;
  background: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form textarea {
    font-size: 14px;
  }
}
html body main section#contact .inner form input[type=text].input_number {
  text-align: right;
  width: 5.4em;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].input_number {
    width: 3.8em;
  }
}
html body main section#contact .inner form input[type=text].zip {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].zip {
    width: 40%;
  }
}
html body main section#contact .inner form select.prefecture {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form select.prefecture {
    width: 40%;
  }
}
html body main section#contact .inner form .mwform-zip-field {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main section#contact .inner form .mwform-zip-field input {
  margin: 0 10px;
}
html body main section#contact .inner form .select {
  width: 100%;
  position: relative;
}
html body main section#contact .inner form .select::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-color: #727171;
  border-style: solid;
  position: absolute;
  right: 20px;
  top: 15px;
  transform-origin: center;
  transform: rotate(45deg);
}
html body main section#contact .inner form .radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main section#contact .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main section#contact .inner form .radio .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
}
html body main section#contact .inner form .radio .mwform-radio-field-text::before {
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #DBDBDB;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #2E9CC7;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #2E9CC7;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main section#contact .inner form input[type=checkbox] {
  display: none;
}
html body main section#contact .inner form .mwform-checkbox-field {
  display: block;
  text-align: center;
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
  font-size: 16px;
  text-align: left;
  display: inline-block;
  position: relative;
  padding: 0 0 0 36px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
    font-size: 14px;
  }
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before, html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  display: block;
  content: "";
  position: absolute;
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before {
  background: #fff;
  border: 2px solid #DBDBDB;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  border-width: 3px;
  border-color: transparent transparent #2E9CC7 #2E9CC7;
  border-style: solid;
  width: 20px;
  height: 10px;
  margin-top: -0.2em;
  top: 30%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
html body main section#contact .inner form input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main section#contact .inner form .privacypolicy {
  box-sizing: border-box;
  border-radius: 6px;
  background: #fff;
  width: 100%;
  height: 360px;
  padding: 20px 30px;
  overflow-y: auto;
  border: 1px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .privacypolicy {
    padding: 2vw 4vw;
  }
}
html body main section#contact .inner form .privacypolicy strong {
  display: block;
  font-weight: 700;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .privacypolicy strong {
    margin-top: 30px;
  }
}
html body main section#contact .inner form .privacypolicy p {
  margin-top: 10px;
  line-height: 1.8;
}
html body main section#contact .inner form .btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .btn_area {
    margin: 20px auto 0;
  }
}
html body main section#contact .inner form .btn_area .btn_submit {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff url(../img/arrow4.svg) no-repeat right 30px center;
  background-size: 8px 14px;
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  height: 78px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: 1px #DBDBDB solid;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .btn_area .btn_submit {
    background: #fff url(../img/arrow4.svg) no-repeat right 10px center;
    background-size: 4px 7px;
    height: 40px;
    font-size: 14px;
  }
}
html body main section#contact .inner form .btn_area .btn_submit:hover {
  background: #227493 url(../img/arrow4.svg) no-repeat right 30px center;
  background-size: 8px 14px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .btn_area .btn_submit:hover {
    background: #227493 url(../img/arrow4.svg) no-repeat right 10px center;
    background-size: 4px 7px;
  }
}
html body main section#contact .inner .mw_wp_form_complete p {
  line-height: 1.8;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner .mw_wp_form_complete p {
    margin-top: 30px;
  }
}
html body footer {
  padding: 120px 0 60px;
  border-bottom: 10px #2E9CC7 solid;
}
@media screen and (max-width: 1024px) {
  html body footer {
    padding: 60px 0 30px;
  }
}
html body footer .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner {
    box-sizing: border-box;
    padding: 0 4vw;
  }
}
html body footer .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div {
    display: block;
  }
}
html body footer .inner > div a {
  color: #000;
}
html body footer .inner > div > div {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > div {
    display: block;
    width: 100%;
  }
}
html body footer .inner > div > div h1 {
  width: 248px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > div h1 {
    width: 124px;
    margin: 0 auto;
  }
}
html body footer .inner > div > div address {
  font-style: normal;
  line-height: 1.3;
  margin: 30px 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > div address {
    text-align: center;
    margin: 15px 0;
  }
}
html body footer .inner > div > div p {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > div p {
    text-align: center;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > nav {
    width: 100%;
    margin: 30px 0 0;
  }
}
html body footer .inner > div > nav > ul {
  display: flex;
  flex-wrap: wrap;
  width: 350px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > nav > ul {
    display: block;
    width: 100%;
  }
}
html body footer .inner > div > nav > ul > li {
  width: 50%;
}
html body footer .inner > div > nav > ul > li:nth-of-type(n+3) {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > nav > ul > li {
    text-align: center;
    width: 100%;
  }
  html body footer .inner > div > nav > ul > li:nth-of-type(n+2) {
    margin-top: 15px;
  }
}
html body footer .inner > div > nav > ul > li a span {
  font-weight: 700;
  position: relative;
}
html body footer .inner > div > nav > ul > li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body footer .inner > div > nav > ul > li a:hover span::after {
  background: #000;
  bottom: -5px;
}
html body footer .inner > div > nav > ul > li > ul.child {
  display: block;
  margin-left: 1em;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > nav > ul > li > ul.child {
    margin: 0;
  }
}
html body footer .inner > div > nav > ul > li > ul.child > li {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div > nav > ul > li > ul.child > li {
    margin-top: 15px;
  }
}
html body footer .inner > div > nav > ul > li > ul.child > li a {
  color: #898989;
}
html body footer .inner > div > nav > ul > li > ul.child > li a span {
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
html body footer .inner > div > nav > ul > li > ul.child > li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body footer .inner > div > nav > ul > li > ul.child > li a:hover span::after {
  background: #898989;
  bottom: -5px;
}
html body footer .inner > div .btn {
  width: 210px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div .btn {
    margin: 30px auto 0;
  }
}
html body footer .inner > div .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2E9CC7 url(../img/arrow5.svg) no-repeat right 15px center;
  background-size: 4px 7px;
  border-radius: 20px;
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
html body footer .inner > div .btn a:hover {
  background: #227493 url(../img/arrow5.svg) no-repeat right 15px center;
  background-size: 4px 7px;
}
html body footer .inner .copyright {
  text-align: center;
  font-size: 16px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner .copyright {
    line-height: 1.3;
    font-size: 10px;
    margin-top: 30px;
  }
}

/* fadein */
/* ------------------------------------------------------------ */
.fadein {
  transform: translate(0, 40px);
  transition: all 700ms;
  opacity: 0;
}

/* scrollin */
/* ------------------------------------------------------------ */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* トップページに戻るボタン */
/* ------------------------------------------------------------ */
.pagetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 72px;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    width: 36px;
  }
}
.pagetop a {
  display: block;
}
.pagetop a img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */