@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  transform: rotate(-45deg);
}

.modaal-close:after {
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container>blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }

  .modaal-gallery-control:before,
  .modaal-gallery-control:after {
    background: #fff;
  }

  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }

  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .modaal-instagram iframe {
    width: 600px !important;
  }
}

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}

.modaal-loading-spinner>div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner>div>div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner>div:nth-of-type(1)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner>div:nth-of-type(2)>div,
.modaal-loading-spinner>div:nth-of-type(3)>div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(2)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner>div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(3)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner>div:nth-of-type(4)>div,
.modaal-loading-spinner>div:nth-of-type(5)>div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(4)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner>div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(5)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner>div:nth-of-type(6)>div,
.modaal-loading-spinner>div:nth-of-type(7)>div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(6)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner>div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(7)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner>div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(8)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner>div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* * Basic information:
* * - CSS guideline : FLOCSS
* *
* * Order of discription:
* * - Foundation [ reset / base ]
* * - Layout [ header / main / side / footer ]
* * - Object [ component / project / utility ]
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /

/* ==========================================================================
  Foundation  [ reset / base ]
  ========================================================================== */
/* Reset
  ----------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
}

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

html {
  overflow-y: scroll;
}

blockquote,
q {
  quotes: none;
}

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

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

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

img {
  display: block;
  max-width: 100%;
}

a:focus {
  outline: none;
}

.clearfix {
  min-height: 1px;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
}

.both {
  clear: both;
}

img.alignleft {
  float: left;
  padding: 0 15px 15px 0;
}

img.alignright {
  float: right;
  padding: 0 0 15px 15px;
}

/* Base
  ----------------------------------------------------------------- */
body {
  width: 100%;
  color: #555555;
  background-color: #fff;
  font-family: "Meiryo", sans-serif;
  font-size: 100%;
}

a {
  text-decoration: none;
}

a:hover img {
  opacity: 0.8;
}

img {
  display: block;
}

/* ==========================================================================
  Layout [ header / main / footer ]
  ========================================================================== */
/* Header
---------------------------------------------------------------*/
header {
  width: 100%;
}

.hd_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  position: relative;
}

p.inquiry-link {
  position: absolute;
  right: 108px;
  top: 6px;
}

p.inquiry-link>a {
  background: #014099;
  font-size: 12px;
  color: #fff;
  width: 185px;
  height: 26px;
  line-height: 26px;
  padding: 7px 23px 7px 45px;
  box-sizing: border-box;
  transition: opacity 0.1s linear;
  -webkit-transition: opacity 0.1s linear;
}

p.inquiry-link>a:hover {
  opacity: 0.7;
}

p.inquiry-link>a::before {
  content: "";
  width: 14px;
  height: 9px;
  background: url(../images/top/inquiry-icon.png);
  background-size: 100% 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -3px;
}

p.sitemap-link {
  position: absolute;
  right: 0;
  top: 6px;
}

p.sitemap-link>a {
  background: #dadddf;
  font-size: 12px;
  color: #666;
  width: 185px;
  height: 26px;
  line-height: 26px;
  padding: 7px 20px 7px 7px;
  box-sizing: border-box;
  transition: opacity 0.1s linear;
  -webkit-transition: opacity 0.1s linear;
}

p.sitemap-link>a:hover {
  opacity: 0.7;
}

p.sitemap-link>a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -3px;
  border-right: solid 1px #666;
  border-bottom: solid 1px #666;
  width: 5px;
  height: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.hd_logo_area {
  margin: 16px 0;
  max-width: 330px;
}

/*
nav {
  line-height: 60px;
  height: 95px;
  width: 100%;
  display: block;
  background: #fff;
  position: relative;
  margin-top: 2px;
  z-index: 2000;
  background-size: 100%;
}
nav ul li a {
  font-family: "meiryo";
}

nav > ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
  background: #ffffff;
  /* Old browsers */
/* FF3.6-15 */
/* Chrome10-25,Safari5.1-6 */
/*
background: linear-gradient(to bottom, #ffffff 80%, #f8f8f8 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* 
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#f8f8f8", GradientType=0);
/* IE6-9 */
/*
}
nav > ul > li {
  text-align: center;
  width: 100%;
  background: url(../images/top/navi_border.png) no-repeat left bottom;
  font-weight: bold;
}
nav > ul > li:last-child {
  background: none;
}
nav > ul > li > a {
  display: block;
  text-align: center;
  padding-top: 40px;
  font-size: 14px;
  color: #353535;
  font-weight: bold;
}
nav > ul > li.active, nav > ul > li:hover {
  color: #1E9B93;
  background: #014099;
}
nav > ul > li.active a, nav > ul > li:hover a {
  color: #fff;
  background: #014099;
}
nav > ul > li:nth-child(1) a {
  background: url(../images/top/nav_icon02.png) no-repeat 50% 15px;
}
nav > ul > li:nth-child(2) a {
  background: url(../images/top/nav_icon03.png) no-repeat 50% 15px;
}
nav > ul > li:nth-child(3) a {
  background: url(../images/top/nav_icon08.png) no-repeat 50% 15px;
}
nav > ul > li:nth-child(4) a {
  background: url(../images/top/nav_icon03.5.png) no-repeat 50% 15px;
}
nav > ul > li:nth-child(5) a {
  background: url(../images/top/nav_icon06.png) no-repeat 50% 15px;
}
nav > ul > li:nth-child(6) a {
  /*background: url(../images/top/nav_icon04.png) no-repeat 50% 15px;*/
/*
  background: url(../images/top/nav_icon07.png) no-repeat 50% 15px;
}
nav > ul > li:nth-child(7) a {
  /*background: url(../images/top/nav_icon05.png) no-repeat 50% 15px;*/
/* background: url(../images/top/nav_icon04.png) no-repeat 50% 15px;

/* Main
---------------------------------------------------------------*/
#main {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  margin-top: -64px;
}

/* footer
---------------------------------------------------------------*/
#footer {
  width: 100%;
  background: url(../images/top/ft_bg.png) no-repeat;
  background-size: cover;
  padding-top: 72px;
  position: relative;
}

.ft_inner {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: table;
  padding-bottom: 46px;
}

.ft_left_area,
.ft_right_area {
  display: table-cell;
  vertical-align: middle;
}

.ft_left_area {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.ft_left_area>ul {
  display: block;
  overflow: hidden;
}

.ft_left_area>ul:last-child {
  margin-right: 0;
}

.ft_left_area>ul>li {
  display: block;
  line-height: 2.1;
}

.ft_left_area>ul>li>a {
  font-size: 14px;
  color: #fff;
}

.ft_left_area>ul>li.ft_sm_txt {
  line-height: 1.4;
}

.ft_left_area>ul>li.ft_sm_txt>a {
  font-size: 12px;
}

.ft_right_area>a>img {
  display: block;
  float: right;
}

/* 20250423 footer SNS追加*/
#footer .ft_sns_area ul {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* #footer .ft_sns_area li{
  margin: 0 11px;
} */
.ft_sns_area img {
  height: 24px;
}

.ft_sns_space {
  margin-right: 30px;
}

.copyright_area {
  width: 100%;
  background: #fff;
}

.copyright_area .copy {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 35px;
  font-size: 68%;
}

.copyright_area_inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  max-width: 1100px;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  padding-top: 16px;
}

.cp_left,
.cp_right {
  width: 50%;
}

.cp_left ul {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 10px;
  padding-top: 20px;
}

.cp_left ul li {
  float: left;
  margin-right: 20px;
}

.cp_left ul li a {
  color: #353535;
  font-size: 68%;
  padding-left: 15px;
  position: relative;
}

.cp_left ul li a:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #194e92;
  box-sizing: border-box;
}

.cp_right .docomo_logo {
  width: 152px;
  display: block;
  margin-left: auto;
}

.cp_right img {
  display: block;
}

.cp_left .logo {
  display: block;
  max-width: 216px;
}

.cp_left>p {
  line-height: 1;
  font-size: 68%;
  color: #353535;
}

.content_wrap p {
  margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .ft_left_area {
    flex-wrap: wrap;
    /*margin-left: 40px;*/
  }

  .ft_left_area>ul {
    width: 50%;
    margin-bottom: 20px;
  }

  .ft_right_area a img {
    margin-right: 40px;
  }
}

/* ==========================================================================
  Object [ component / project / utility ]
  ========================================================================== */
/* Project
  ------------------------------------------------------------------- */
/*
*top
**/
.main_slider li {
  display: none;
}

.bx-viewport .main_slider li {
  display: block;
}

#slider {
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

#slider ul li {
  height: 540px;
}

#slider img {
  /* position:absolute;
  left:0;
  top:0;
  width: 100% !important;
  height:auto; */
}

#slider li>img,
#slider li>a>img {
  width: 100%;
}

#slider img.mv_img {
  /* position: absolute;
  left: 20.1%;
  top: 32%;
  width: 100%;
  max-width: 661px; */
}

#slider p.mv_img_tttl {
  position: absolute;
  left: 10%;
  top: 18%;
  color: #194e92;
  text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.6), -5px -5px 15px rgba(194, 214, 238, 0.6);
  font-size: 262%;
  font-weight: bold;
  width: 70%;
  /*    height: 510px;
  */
}

#slider p.mv_img_tttl img {
  /* width: auto!important;
  height: auto; */
}

#slider .mv_txt {
  position: absolute;
  left: 22.1%;
  top: 51%;
  font-size: 112%;
  text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
  color: #fff;
  font-weight: normal;
}

@media screen and (max-width: 1500px) {
  #slider {
    width: 100%;
    height: 540px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    bottom: 20px;
  }
}

@media screen and (max-width: 1250px) {
  #slider {
    width: 100%;
    height: 450px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

  #slider p.mv_img_tttl {
    position: absolute;
    left: 10%;
    color: #194e92;
    text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.6), -5px -5px 15px rgba(194, 214, 238, 0.6);
    font-size: 262%;
    font-weight: bold;
  }

  #slider .mv_txt {
    position: absolute;
    left: 22.1%;
    top: 45%;
    font-size: 112%;
    text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
    color: #fff;
    font-weight: normal;
  }

  #slider img.mv_img {
    position: absolute;
    left: 19.1%;
    top: 25%;
    width: 100%;
    max-width: 661px;
  }

  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 105px;
  }
}

@media screen and (max-width: 1150px) {
  #slider {
    width: 100%;
    height: 450px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 120px;
  }
}

@media screen and (max-width: 1100px) {
  #slider {
    width: 100%;
    height: 360px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 400px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

  #slider p.mv_img_tttl {
    position: absolute;
    left: 10%;
    color: #194e92;
    text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.6), -5px -5px 15px rgba(194, 214, 238, 0.6);
    font-size: 242%;
    font-weight: bold;
  }

  #slider .mv_txt {
    position: absolute;
    left: 16.1%;
    top: 38%;
    font-size: 112%;
    text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
    color: #fff;
    font-weight: normal;
  }

  #slider img.mv_img {
    position: absolute;
    left: 12.5%;
    top: 22%;
    width: 100%;
    max-width: 661px;
  }

  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 150px;
  }
}

@media screen and (max-width: 1050px) {
  #slider {
    width: 100%;
    height: 400px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }
}

@media screen and (max-width: 980px) {
  #slider {
    width: 100%;
    height: 360px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 190px;
  }
}

@media screen and (max-width: 930px) {
  #slider {
    width: 100%;
    height: 290px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 360px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 400px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

  #slider p.mv_img_tttl {
    position: absolute;
    left: 10%;
    color: #194e92;
    text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.6), -5px -5px 15px rgba(194, 214, 238, 0.6);
    font-size: 202%;
    font-weight: bold;
  }

  #slider .mv_txt {
    position: absolute;
    left: 10.1%;
    top: 33%;
    font-size: 112%;
    text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
    color: #fff;
    font-weight: normal;
  }

  #slider img.mv_img {
    position: absolute;
    left: 5.5%;
    top: 14%;
    width: 100%;
    max-width: 661px;
  }
}

@media screen and (max-width: 900px) {
  #slider {
    width: 100%;
    height: 320px !important;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 230px;
  }
}

.top_con01 {
  width: 100%;
  max-width: 1100px;
  display: block;
  position: relative;
  z-index: 100;
  margin: 0 auto;
  padding-top: 37px;
}

.top_con01:after {
  position: absolute;
  content: "";
  background: url(../images/top/wh_arrow.png);
  left: 50%;
  margin-left: -51px;
  width: 107px;
  bottom: -56px;
  height: 37px;
}

/*slider*/
/*.slider{
  background: url(../images/top/slider_bg.png) no-repeat left center;
  background-size: cover;
  padding: 85px 0;
}*/
.top_carousel .item {
  padding: 0 19px;
}

.top_carousel .item a span {
  display: block;
  text-align: center;
  line-height: 70px;
  color: #fff;
  font-size: 112%;
  background: #353535;
  max-width: 340px;
  box-sizing: border-box;
}

.top_carousel .item a img {
  width: 100%;
}

dl.inf_list {
  display: table;
  padding: 4px 0 8px;
  width: 100%;
  border-bottom: 1px dotted #aaa;
  box-sizing: border-box;
}

dl.inf_list>dt,
dl.inf_list>dd {
  display: table-cell;
  vertical-align: middle;
}

dl.inf_list>dt {
  width: 14%;
}

dl.inf_list>dt>a {
  font-size: 87%;
  color: #353535;
}

dl.inf_list>dd {
  padding-left: 5px;
  float: left;
}

dl.inf_list>dd>a {
  color: #fff;
  font-size: 56%;
  text-align: center;
  display: inline-block;
  line-height: 1;
  min-width: 55px;
  padding: 5px 6px;
}

dl.inf_list>dd>a.news {
  background: #194e92;
}

dl.inf_list>dd.dd_last {
  padding-left: 20px;
  text-align: left;
}

dl.inf_list>dd.dd_last>a {
  color: #555555;
  font-size: 87%;
  width: 100%;
  text-align: left;
}

.news_area {
  margin: 0 auto;
}

.news_area .inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  padding: 45px 20px 57px 20px;
  box-sizing: border-box;
  text-align: left;
}

.news_area .inner .news_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.news_area .inner .news_head p {
  font-family: "Lato", sans-serif;
  font-size: 300%;
  color: #000;
  margin: 0 50px 0 0;
  line-height: 1;
}

.news_area .inner .news_head .archive_link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.news_area .inner .news_head .archive_link li {
  position: relative;
  color: #194e92;
  vertical-align: middle;
  text-decoration: none;
  font-size: 12px;
  padding-right: 15px;
  margin-right: 20px;
}

.news_area .inner .news_head .archive_link li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 3px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #194e92;
  border-right: 2px solid #194e92;
  transform: rotate(45deg);
}

.news_area .inner .news_head .more_news {
  position: relative;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 12px;
  color: #353535;
  margin-left: auto;
  margin-top: 20px;
  padding-left: 17px;
  border-bottom: solid 1px #194e92;
}

.news_area .inner .news_head .more_news::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 0;
  width: 4px;
  height: 4px;
  border-top: 2px solid #194e92;
  border-right: 2px solid #194e92;
  transform: rotate(45deg);
}

/*スマホ対応*/
.pc {
  display: block;
}

.sp {
  display: none !important;
}

/*----------170817_s----------*/
.current_area {
  background-color: #f5f5f5;
  margin-bottom: 90px;
}

.current_area_inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
  max-width: 1120px;
  height: 130px;
}

#common_page nav>ul {
  box-shadow: 0px 8px 15px #d0d0d0;
}

p {
  line-height: 2;
}

.current_box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 13px;
}

.current_box li a {
  color: #888888;
  /*    padding: 0px 7.5px;*/
  color: #999;
}

.current_box a:last-of-type {
  color: #014099;
}

.bc_second.top {
  color: #014099;
}

.current_box ul li {
  float: left;
}

.bread_wrap li.arrow {
  position: relative;
  padding: 0 10px;
  top: 5px;
  color: #fff;
}

#content_area {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
}

h1.page_title01 {
  font-size: 36px;
  color: #014099;
  text-align: center;
  margin-bottom: 90px;
}

.page_title01 span {
  display: block;
  font-size: 15px;
  color: #333;
  font-weight: bold;
  padding-top: 10px;
  letter-spacing: 1.5px;
}

.cloud01_left {
  float: left;
  width: 43%;
  text-align: center;
}

.cloud01_left img {
  max-width: 100%;
  width: auto;
}

.cloud01_right {
  float: right;
  font-size: 16.4px;
  line-height: 35px;
  width: 55%;
}

.cloud_box01,
.cloud_box02,
.cloud_box03 {
  margin-bottom: 100px;
}

.cloud_box02 {
  position: relative;
}

.cloud02_text.bg_w .left_up_text {
  position: absolute;
  width: 45%;
  top: 140px;
  left: 30px;
}

.page_title02 {
  padding-bottom: 30px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #083e8e;
  color: #083e8e;
  margin-bottom: 50px;
  font-weight: bold;
}

.cloud02_img {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}

.cloud02_img img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.cloud02_text {
  padding: 25px;
  background-color: #f5f5f5;
}

.page_title03 {
  color: #014099;
  font-size: 20px;
  margin-bottom: 10px;
}

.cloud02_text p {
  line-height: 26px;
  color: #333333;
}

.cloud03_flow {
  width: calc(100% - 24px);
  margin-left: auto;
  margin-right: auto;
}

.cloud03_flow li {
  float: left;
  width: calc(25% - 18px);
  margin-right: 18px;
  background-color: #083d8e;
  color: #fff;
  padding: 20px 20px;
  box-sizing: border-box;
  height: 240px;
  position: relative;
  border-radius: 10px;
  font-size: 15px;
}

.cloud03_flow li:after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22.5px 0 22.5px 23px;
  border-color: transparent transparent transparent #083d8e;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -23px;
  content: "";
  margin: auto;
}

.cloud03_flow li:nth-of-type(4n) {
  margin-right: 0;
}

.cloud03_flow li:nth-of-type(4n):after {
  display: none;
}

.flow_title {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.cloud03_flow li h4+span {
  border: 1px solid #fff;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: -3px;
  font-size: 12px;
  padding: 7px 0px;
  margin-bottom: 3px;
}

.cloud04_left {
  width: 66.5%;
  max-width: calc(1100px - 321px);
  float: left;
  text-align: center;
}

.cloud04_left img {
  width: auto;
  max-width: 100%;
}

.cloud04_right {
  width: 29.5%;
  /*max-width: calc(1100px - 809px);*/
  max-width: calc(1100px - 775px);
  float: right;
  text-align: center;
}

.cloud04_right img {
  width: auto;
  max-width: 100%;
}

/*.cloud04_right img:first-of-type {
    margin-bottom: 33%;
}*/
.cloud04_photo {
  margin-bottom: 50px;
}

.cloud04_photo>img {
  margin-left: 18%;
  width: 100%;
  max-width: 658px;
}

.cloud04_photo p {
  /*font-size:13px;*/
  text-align: left;
  margin: 20px 0 10px;
}

/*.cloud04_photo + p{
  font-size:13px;
  margin-bottom: 50px;
}*/
.cloud03_flow_inner {
  display: table-cell;
  width: 0.1%;
  height: 200px;
  vertical-align: middle;
}

.voice_box01,
.voice_box02,
.voice_box03 {
  margin-bottom: 100px;
}

.voice04_photo {
  margin-bottom: 50px;
}

.voice04_photo>img {
  margin-left: 18%;
  width: 100%;
  max-width: 658px;
}

.voice04_photo p {
  /*font-size:13px;*/
  text-align: left;
  margin: 0 0 10px;
}

.voice04_left {
  width: 48%;
  float: left;
  text-align: center;
}

.voice04_left img {
  width: auto;
  max-width: 100%;
}

.voice04_right {
  width: 48%;
  float: right;
  text-align: center;
}

.bg_w {
  background-color: #fff;
}

.m0 {
  margin-bottom: 0 !important;
}

.m10 {
  margin-bottom: 10px !important;
}

.m20 {
  margin-bottom: 20px !important;
}

.m30 {
  margin-bottom: 30px !important;
}

.m40 {
  margin-bottom: 40px !important;
}

.m50 {
  margin-bottom: 50px !important;
}

.m60 {
  margin-bottom: 60px !important;
}

.m70 {
  margin-bottom: 70px !important;
}

.m80 {
  margin-bottom: 80px !important;
}

.m90 {
  margin-bottom: 90px !important;
}

.m100 {
  margin-bottom: 100px !important;
}

.m110 {
  margin-bottom: 110px !important;
}

.m120 {
  margin-bottom: 120px !important;
}

.m130 {
  margin-bottom: 130px !important;
}

.m140 {
  margin-bottom: 140px !important;
}

.m150 {
  margin-bottom: 150px !important;
}

.m160 {
  margin-bottom: 160px !important;
}

.cloud03_list_sub {
  margin-top: 25px;
}

.cloud03_list_sub>li {
  float: right;
  width: calc(25% - 18px);
  margin-right: 18px;
  padding: 15px;
  box-sizing: border-box;
  float: right;
  width: calc(24% - 18px);
  margin-right: 26px;
  padding: 15px;
  box-sizing: border-box;
  border: 2px solid #083d8e;
  border-radius: 3px;
  position: relative;
}

.cloud03_list_sub>li>ul>li {
  margin-bottom: 10px;
}

.cloud03_list_sub>li>ul>li:last-of-type {
  margin-bottom: 0;
}

.cloud03_list_sub>li>ul>li:before {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: #083d8e;
  content: "";
  display: inline-block;
  position: relative;
  top: -2px;
  bottom: 0;
  margin: auto 7px auto auto;
}

.list_sub_title {
  display: none;
}

.sub_script {
  font-size: 14px;
  line-height: 25px;
  margin-top: 25px;
}

.page_title02+.page_title03 {
  margin-bottom: 50px;
}

.software03_left img,
.software03_right img {
  width: 100%;
}

.software03_left {
  float: left;
  width: 50%;
}

.software03_right {
  float: right;
  width: 50%;
}

.software04_img {
  margin-bottom: 50px;
}

.software04_img img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.software04_list {
  margin-left: 30px;
  list-style: disc;
}

.software04_list li {
  margin-bottom: 10px;
}

.page_title04 {
  font-size: 24px;
  color: #083e8e;
  border-bottom: 1px solid #083e8e;
  padding-bottom: 10px;
  margin-bottom: 35px;
}

/* .corporation01_list {
  margin-bottom: 100px;
} */

/* .corporation01_list li {
  float: left;
  margin-right: 36px;
  width: calc(25% - 27px);
  text-align: center;
} */

/* .corporation01_list li:nth-of-type(4n) {
  margin-right: 0;
  width: calc(25% - 27px);
} */

/* .corporation01_list li img {
  width: 100%;
  margin-bottom: 20px;
} */

/* 20231215会社概要　目次部分追加修正 */
.corporation01_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.corporation01_list li {
  margin-right: 36px;
  margin-bottom: 10px;
  width: calc(25% - 27px);
  text-align: center;
}

.corporation01_list li img {
  width: 100%;
  margin-bottom: 5px;
}

.corporation_fontsize {
  font-size: 13.5px;
}

/*  ↑ここまで*/

.corporation_box02 {
  background-color: #f5f5f5;
  padding: 40px 0px;
  margin-bottom: 100px;
}

.corporation_box02 .page_title04 {
  padding-left: 15px;
}

.corporation_box02>table {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.corporation_box02>table>tbody>tr>th,
.corporation_box02>table>tbody>tr>td {
  padding: 10px 20px;
  font-size: 18px;
}

.corporation_box02>table>tbody>tr>th {
  color: #083e8e;
  font-weight: bold;
  text-align: right;
  vertical-align: top;
}

.corporation_box02>table>tbody>tr>td>table th,
.corporation_box02>table>tbody>tr>td>table td {
  padding: 10px 15px;
  vertical-align: top;
  line-height: 30px;
}

.corporation_box02>table>tbody>tr>td>table th {
  font-weight: bold;
}

.corporation_box02>table>tbody>tr:nth-child(6)>td {
  padding: 0;
}

.corporation_box03 {
  margin-bottom: 150px;
}

.corporation_box03 table {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.corporation_box03 table th {
  color: #083e8e;
  font-weight: bold;
  text-align: right;
  padding: 20px;
  vertical-align: top;
  font-size: 17px;
}

.corporation_box03 table td {
  padding: 20px;
  vertical-align: top;
  font-size: 17px;
}

.corporation_box03 table tr {
  border-bottom: 1px solid #ccc;
}

.corporation_box04,
.corporation_box05 {
  margin-bottom: 150px;
}

.corporation_box04 ul {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.corporation_box04 ul li {
  padding: 20px 40px;
  line-height: 2;
  border-bottom: 1px solid #ccc;
}

.corporation_box04 ul li:last-of-type {
  border-bottom: 0;
}

.corporation04_title {
  font-weight: bold;
  color: #083e8e;
}

.corporation05_img {
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

/* 20231218_会社概要財務状況下部余白追加 */
.corporation05_img {
  margin-bottom: 150px;
}

.corporation05_left {
  float: left;
  width: 48%;
}

.corporation05_left p {
  font-size: 12px;
}

.corporation05_right {
  float: right;
  width: 48%;
}

.corporation05_left img,
.corporation05_right img {
  width: auto;
  max-width: 100%;
}

.page_title05 {
  font-size: 20px;
  color: #083e8e;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.corporation05_list {
  width: 96%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
}

.corporation05_list li {
  /*float: left;
  width: 21%;
  margin-right: 5.333%;*/
  display: inline-block;
  width: 18%;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.corporation05_list li a {
  padding: 15px 5px;
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  text-align: center;
  color: #333;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.corporation05_list li:nth-of-type(4n) {
  margin-right: 0;
}

.corporation05_list li a:hover {
  background-color: #e5e5e5;
}

.corporation05_list li a img {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: 5px;
  width: auto;
  max-width: 100%;
}

.corporation05_btn {
  display: block;
  padding: 13px;
  width: 96%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 1px solid #083e8e;
  border-radius: 30px;
  color: #083e8e;
  transition: 0.3s ease;
  position: relative;
}

.corporation05_btn:hover {
  background-color: #083e8e;
  color: #fff;
}

.corporation05_btn:after {
  display: inline-block;
  margin: auto;
  transform: rotate(45deg);
  border-top: 2px solid #083e8e;
  border-right: 2px solid #083e8e;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  transition: 0.3s ease;
}

.corporation05_btn:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 30px;
}

.csr_text01 {
  margin-bottom: 50px;
}

.csr01_link_list {
  width: 96%;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}

.csr01_left {
  float: left;
  width: 15%;
  text-align: center;
  position: relative;
}

.csr01_left img {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.csr01_link_list li:nth-of-type(1) .csr01_left img {
  top: 15px;
}

.csr01_right {
  float: right;
  width: 80%;
  position: relative;
}

.csr01_right h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.csr01_link_list li {
  margin-bottom: 50px;
}

.csr01_link_list li:nth-of-type(1) .csr01_right h4,
.csr01_link_list li:nth-of-type(1) .csr01_right a {
  color: #208acc;
}

.csr01_link_list li:nth-of-type(2) .csr01_right h4,
.csr01_link_list li:nth-of-type(2) .csr01_right a {
  color: #009143;
}

.csr01_link_list li:nth-of-type(3) .csr01_right h4,
.csr01_link_list li:nth-of-type(3) .csr01_right a {
  color: #f08620;
}

.csr01_link_list li:nth-of-type(4) .csr01_right h4,
.csr01_link_list li:nth-of-type(4) .csr01_right a {
  color: #904091;
}

.csr01_right a {
  display: block;
  position: absolute;
  top: 5px;
  right: 25px;
  font-weight: bold;
  font-size: 15px;
}

.csr01_right a:after {
  display: inline-block;
  width: 7.5px;
  height: 7.5px;
  transform: rotate(45deg);
  content: "";
  position: relative;
  margin-left: 15px;
}

.csr01_link_list li:nth-of-type(1) .csr01_right a:after {
  border-top: 2px solid #208acc;
  border-right: 2px solid #208acc;
}

.csr01_link_list li:nth-of-type(2) .csr01_right a:after {
  border-top: 2px solid #009143;
  border-right: 2px solid #009143;
}

.csr01_link_list li:nth-of-type(3) .csr01_right a:after {
  border-top: 2px solid #f08620;
  border-right: 2px solid #f08620;
}

.csr01_link_list li:nth-of-type(4) .csr01_right a:after {
  border-top: 2px solid #904091;
  border-right: 2px solid #904091;
}

.csr01_bottom_text {
  background-color: #f5f5f5;
  margin-bottom: 50px;
  padding: 30px;
}

.csr01_bottom_text p {
  color: #333;
  font-size: 17px;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
}

.csr_box02>div {
  margin-bottom: 100px;
}

.csr02_left {
  float: left;
  width: 60%;
}

.csr02_right {
  float: right;
  width: 36%;
  text-align: center;
}

.csr02_right img {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page_title06 {
  border-left: 3px solid #083e8e;
  padding-left: 10px;
  font-size: 18px;
  color: #083e8e;
  padding-bottom: 2px;
  margin-bottom: 20px;
}

.csr_box05 {
  background-color: #eee;
  padding: 40px 30px;
  margin-bottom: 50px;
}

.csr05_inner {
  width: 96%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.csr05_title {
  font-size: 18px;
  font-weight: bold;
  color: #083e8e;
  margin-bottom: 30px;
}

.csr05_tel a,
.csr05_mail a {
  color: #083e8e;
}

.csr05_inner address {
  line-height: 1.5;
}

.csr05_mail {
  margin-bottom: 15px;
}

.infra01_left {
  float: left;
  width: 30%;
  text-align: center;
}

.infra01_left img {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.infra01_text {
  color: #0a2a68;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.infra01_right {
  float: right;
  width: 70%;
  text-align: center;
}

.infra01_right img {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.security01_list li {
  margin-bottom: 25px;
  margin-left: 20px;
  list-style: decimal;
}

.security_table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.security_table td,
.security_table th {
  padding: 15px;
}

.security_table td {
  border: 1px solid #cccccc;
}

.security_table th {
  color: #fff;
  background-color: #014099;
  border-left: 1px solid #fff;
}

.security_table tr th:nth-of-type(1) {
  width: 37%;
}

.security_table tr th:nth-of-type(2) {
  width: 63%;
}

.security_address {
  background-color: #eee;
  padding: 20px;
  max-width: 735px;
  margin-left: auto;
  margin-right: auto;
  width: 98%;
}

.sec_address_left {
  float: left;
  width: 30%;
  text-align: center;
}

.sec_address_right {
  float: right;
  width: 70%;
}

.sec_address_left p {
  display: table-cell;
  height: 70px;
  width: 0.1%;
  vertical-align: middle;
  font-weight: bold;
  font-size: 18px;
}

.security_btn {
  width: 460px;
  display: block;
  color: #333;
  padding: 15px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s ease;
}

.security_btn:hover {
  background-color: #eee;
}

.fw_bld {
  font-weight: bold;
}

.security_btn img {
  display: inline-block;
}

.security02_list {
  list-style: decimal;
  margin-left: 40px;
  margin-bottom: 25px;
}

.security02_list li {
  margin-bottom: 5px;
}

.security02_text {
  margin-bottom: 5px;
}

.security_inner {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  margin-bottom: 80px;
}

.security_inner strong {
  font-weight: bold;
  margin-bottom: 50px;
  display: block;
}

.security03_list {
  list-style: disc;
  margin-left: 20px;
}

.security_box01 address {
  margin-bottom: 25px;
}

.dis_b {
  display: block;
}

.text_c {
  text-align: center;
}

.text_r {
  text-align: right;
}

.fw_b {
  font-weight: bold;
}

.fs_15 {
  font-size: 15px;
}

.fs_16 {
  font-size: 16px;
}

.fs_17 {
  font-size: 17px;
}

.fs_18 {
  font-size: 18px;
}

.fs_19 {
  font-size: 19px;
}

.fs_20 {
  font-size: 20px;
}

.security_bottom_contact {
  padding: 20px;
  background-color: #eee;
}

.security_bottom_contact .inner {
  width: 96%;
  max-width: 890px;
  margin-left: auto;
  line-height: 2;
  margin-right: auto;
  font-size: 18px;
}

.security_bottom_contact strong {
  font-size: 18px;
  font-weight: bold;
  margin-right: 13px;
  display: inline-block;
}

.security_bottom_contact .inner a {
  color: #333;
}

.charter_list {
  margin-left: 20px;
}

.charter_list li {
  list-style: decimal;
  margin-bottom: 10px;
}

.text_r {
  text-align: right;
}

.access_left {
  float: left;
  width: 63%;
}

.access_left iframe {
  width: 100%;
}

.access_right {
  float: right;
  width: 33%;
}

.access_right .page_title05 {
  margin-bottom: 20px;
}

.access_right address {
  margin-bottom: 15px;
  line-height: 2;
}

.access_right a {
  color: #083e8e;
}

.access_right .print_btn,
.access_right .map_btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #666;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  max-width: 280px;
  box-sizing: border-box;
}

.access_right .print_btn {
  margin-bottom: 15px;
}

.access_right .print_btn:before {
  content: "";
  width: 25px;
  height: 23px;
  display: inline-block;
  background-image: url(../images/sub/print_icon.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
  left: -10px;
}

.access_right .map_btn:before {
  content: "";
  width: 18px;
  height: 23px;
  display: inline-block;
  background-image: url(../images/sub/map_icon.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
  left: -10px;
}

.organization_box01 {
  width: 100%;
}

.organization_box01 img {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.greeting_left {
  float: left;
  width: 65%;
}

.greeting_right {
  width: 33%;
  float: right;
}

.greeting_right img {
  margin-left: auto;
  width: auto;
  max-width: 100%;
  margin-bottom: 10px;
}

.corporation05_left a {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #194e92;
  text-align: center;
  padding: 8px;
  font-size: 18px;
  color: #ffdb00;
  width: 100%;
  box-sizing: border-box;
}

.corporation05_right a {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #ccc;
  text-align: center;
  padding: 8px;
  font-size: 18px;
  border: 1px solid #eee;
  color: #194e92;
  width: 100%;
  box-sizing: border-box;
}

/* .corporation01_list li:nth-of-type(5) {
  clear: both;
} */

a {
  color: #083e8e;
}

.current_box li {
  float: left;
  list-style: none;
  padding: 0px 6px;
}

.current_box li.arrow {
  position: relative;
  top: 6px;
}

.current_box li br {
  display: none;
}

.sitemap_list>li {
  padding-bottom: 5px;
  display: block;
  float: left;
  width: 48%;
  margin-bottom: 25px;
}

.sitemap_list>li:nth-of-type(2n) {
  float: right;
}

.sitemap_list>li:nth-of-type(6) {
  clear: both;
}

.sitemap_list>li>a {
  border-bottom: 1px solid #014099;
  font-size: 20px;
  padding-bottom: 10px;
  display: block;
  margin-bottom: 10px;
}

.sitemap_list>li>ul>li {
  margin-bottom: 10px;
}

.sitemap_list>li>ul>li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #014099;
  border-right: 2px solid #014099;
  transform: rotate(45deg);
  margin-right: 10px;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #014099;
  border-right: 2px solid #014099;
  transform: rotate(45deg);
  margin-right: 10px;
}

.sitemap_list>li>ul>li>ul {
  margin-bottom: 20px;
  margin-top: 10px;
}

.sitemap_list>li>ul>li>ul>li {
  margin-left: 40px;
}

.infra_list01 li {
  padding-left: 30px;
  background-image: url(../images/sub/infra_list.png);
  background-repeat: no-repeat;
  background-position: center left;
  margin-bottom: 10px;
}

.infra_list01:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 45px 0 45px;
  border-color: #8aa3c5 transparent transparent transparent;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1100px) and (min-width: 769px) {
  .cloud03_flow li {
    float: left;
    width: calc(25% - 18px);
    margin-right: 18px;
    background-color: #083d8e;
    color: #fff;
    padding: 12px 20px;
    box-sizing: border-box;
    min-height: 260px;
    position: relative;
    border-radius: 10px;
    font-size: 14px;
    height: auto;
  }

  .corporation_box02>table>tbody>tr>th {
    display: block;
    text-align: left;
  }

  .corporation_box02>table>tbody>tr>td {
    display: block;
    text-align: left;
    margin-bottom: 30px;
  }

  .corporation_box03 table th,
  .corporation_box03 table td {
    display: block;
    text-align: left;
    padding: 10px;
  }
}

/*----------170817_e----------*/
/*　170904　インフラimg　レイアウト変更　*/
.network_img img {
  width: auto;
  max-width: 100%;
  margin-left: 27%;
  padding-top: 5%;
}

.network_list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  align-items: stretch;
  justify-content: space-between;
}

.network_list li {
  width: 46%;
  text-align: center;
  margin-bottom: 30px;
}

.network_list li figure img {
  max-width: 100%;
  margin-bottom: 20px;
}

.network_list li figure figcaption {
  text-align: left;
}

/*----------170907----------*/
nav>ul {
  height: 95px;
}

.megamenu_outer {
  height: 0;
  width: 700%;
  transition: 0.3s ease;
  overflow: hidden;
  position: relative;
}

nav>ul>li:nth-of-type(2)>a+.megamenu_outer {
  left: -100%;
}

nav>ul>li:nth-of-type(4)>a+.megamenu_outer {
  left: -300%;
}

nav>ul>li:nth-of-type(5)>a+.megamenu_outer {
  left: -400%;
}

nav>ul>li:nth-of-type(6)>a+.megamenu_outer {
  left: -500%;
}

nav>ul>li:nth-of-type(7)>a+.megamenu_outer {
  left: -600%;
}

nav>ul>li>a:hover+.megamenu_outer {
  height: auto;
  background-color: #014099;
}

nav>ul>li>a+.megamenu_outer:hover {
  height: auto;
  background-color: #014099;
}

nav>ul>li>a+.megamenu_outer ul {
  padding: 10px;
  box-sizing: border-box;
}

nav>ul>li>a+.megamenu_outer ul li {
  float: left;
  width: 20%;
}

nav>ul>li>a+.megamenu_outer ul li a {
  color: #fff;
  line-height: 1;
  background: none;
  font-size: 14px;
  font-weight: bold;
  display: block;
  padding: 15px 0;
  width: 100%;
  transition: 0.15s ease;
}

nav>ul>li>a+.megamenu_outer ul li a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

nav>ul>li:nth-of-type(2)>a+.megamenu_outer ul li {
  width: 25%;
}

nav>ul>li:nth-of-type(4)>a+.megamenu_outer ul li {
  width: 33.3333%;
}

nav>ul>li:nth-of-type(5)>a+.megamenu_outer ul li {
  width: 50%;
}

nav>ul>li:nth-of-type(6)>a+.megamenu_outer ul li {
  width: 50%;
}

nav>ul>li:nth-of-type(7)>a+.megamenu_outer ul li {
  width: 33.3333%;
}

.top_con01:after {
  display: none;
}

.slider {
  /*background-size: cover;
  padding: 0 ;
    background-color: #dddddd;
    margin: 0 0 -7px;*/
  text-align: center;
}

.sp_disp {
  display: none;
}

/*#slider {
    margin-bottom: 50px;
}*/
.video-container {
  background: #f3fafb;
}

.video-container iframe {
  vertical-align: bottom;
}

.top_new_box {
  background-image: url(../images/top/top_new_box01_bg.jpg);
}

.top_new_box01 {
  padding: 80px 0 0 0;
  margin-bottom: 80px;
}

.top_new_box01 .top_new_box01_detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.top_new_box01 .top_new_box01_detail h2 {
  font-family: "Lato", sans-serif;
  font-size: 300%;
  color: #000;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
}

.top_new_box01 .top_new_box01_detail h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 2px #194e92;
  width: 55px;
  height: 2px;
}

.top_new_box01 .top_new_box01_detail span {
  font-family: "Meiryo", sans-serif;
  font-size: 16px;
  margin-left: 30px;
  font-weight: bold;
}

.top_new_box01 .top_new_box01_detail p {
  margin-bottom: 60px;
}

.top_new01_list {
  margin: 0 auto;
  display: flex;
}

.top_new01_list li {
  width: 25%;
  height: 530px;
  position: relative;
  margin-right: 2px;
  margin-bottom: 2px;
  background-repeat: no-repeat;
  background-size: cover;
}

.top_new01_list li:last-child {
  margin-right: 0;
}

.top_new01_list li a {
  display: block;
  height: 100%;
}

.top_new01_list li a:hover {
  background: rgba(0, 0, 0, 0.5);
}

.top_new01_list li.new01_list01 {
  background-image: url(../images/top/new01_list01_bg.jpg);
}

.top_new01_list li.new01_list02 {
  background-image: url(../images/top/new01_list02_bg.jpg);
}

.top_new01_list li.new01_list03 {
  background-image: url(../images/top/new01_list03_bg.jpg);
}

.top_new01_list li.new01_list04 {
  background-image: url(../images/top/new01_list04_bg.jpg);
}

.top_new01_list li.new01_list05 {
  background-image: url(../images/top/new01_list05_bg.jpg);
}

.top_new01_link_title {
  font-family: "Lato", sans-serif;
  font-size: 1.85vw;
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 20px;
  line-height: 1;
}

.top_new01_link_title_en {
  font-size: 1vw;
  font-weight: bold;
}

@media only screen and (max-width: 1100px) {
  .top_new01_list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top_new01_list li {
    width: 300px;
    height: 300px;
    margin-right: 2px;
  }

  .top_new01_list li a {
    background: rgba(0, 0, 0, 0.5);
  }

  .top_new01_list li a:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .top_new01_link_title {
    font-size: 2.8vw;
  }

  .top_new01_link_title_en {
    font-size: 1.8vw;
  }
}

.top_new_box02 {
  margin-bottom: 80px;
}

.top_new_box02 .top_new_box02_detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.top_new_box02 .top_new_box02_detail h2 {
  font-family: "Lato", sans-serif;
  font-size: 300%;
  color: #000;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
}

.top_new_box02 .top_new_box02_detail h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 2px #194e92;
  width: 55px;
  height: 2px;
}

.top_new_box02 .top_new_box02_detail span {
  font-family: "Meiryo", sans-serif;
  font-size: 16px;
  margin-left: 30px;
  font-weight: bold;
}

.top_new_box02 .top_new_box02_detail p {
  margin-bottom: 60px;
}

.top_new02_list {
  padding: 0 20px 40px 20px;
  margin: 0 auto;
  display: flex;
  background-image: url(../images/top/top_new02_bg.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

.top_new02_list li {
  width: 25%;
  text-align: center;
  width: 25%;
  text-align: center;
  margin-right: 2px;
}

.top_new02_list li:last-child {
  margin-right: 0;
}

.top_new02_list li a {
  color: #fff;
  display: block;
}

.top_new02_list li img {
  width: 100%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1100px) {
  .top_new02_list {
    flex-wrap: wrap;
    justify-content: center;
    background-position: right 10% bottom 10%;
    background-size: cover;
    padding-top: 60px;
  }

  .top_new02_list li {
    width: 300px;
    margin-left: 2px;
    margin-bottom: 20px;
  }
}

.recruit_area {
  padding-bottom: 80px;
}

.recruit_area_inner {
  display: flex;
  margin: 0 auto;
}

.recruit_area .recruit_area_detail {
  background: #194e92;
  color: #fff;
  padding: 70px 0 0 0;
  margin-bottom: 30px;
  width: 50%;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner {
  max-width: 550px;
  margin-left: auto;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner a {
  color: #fff;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner h2 {
  font-family: "Lato", sans-serif;
  font-size: 300%;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 2px #fff;
  width: 55px;
  height: 2px;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner h2 span {
  font-family: "Meiryo", sans-serif;
  font-size: 16px;
  margin-left: 30px;
  font-weight: bold;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner ul {
  margin-left: 20px;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner ul li {
  position: relative;
  vertical-align: middle;
  text-decoration: none;
  padding-left: 20px;
  margin-bottom: 5px;
}

.recruit_area .recruit_area_detail .recruit_area_detail_inner ul li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 0;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.recruit_area .recruit_image {
  width: 50%;
  margin-top: 30px;
}

@media only screen and (max-width: 1100px) {
  .recruit_area .recruit_area_detail {
    padding: 70px 20px 30px 20px;
  }
}

.title_square {
  position: relative;
  z-index: 15;
}

/*.title_square:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    width: 180px;
    height: 180px;
    right: 0;
    left: -10px;
    top: -90px;
    bottom: 0;
    margin: auto;
    z-index: -5;
    transform: rotate(55deg) skewY(-18deg) skewX(2deg);
}
*/
@media only screen and (max-width: 1025px) {
  nav>ul>li>a+.megamenu_outer ul li {
    float: left;
    width: 33.33% !important;
  }
}

@media only screen and (max-width: 920px) {
  nav>ul>li>a {
    font-size: 11px;
  }
}

/*----------170907_e----------*/
.business_link {
  display: block;
  padding: 13px 25px;
  background-color: #80a0cc;
  color: #fff;
  position: relative;
  margin-bottom: 25px;
  padding-right: 65px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  transition: 0.3s ease;
}

.business_link:hover {
  opacity: 0.7;
}

.business_link:after {
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.business_link:hover:after {
  right: 20px;
}

.business_link_title {
  font-size: 22px;
  margin-bottom: 0 !important;
}

.text_blue {
  color: #014099;
  font-weight: bold;
}

.business_link_title {
  font-size: 19px;
}

.business_link_text {
  font-size: 15px;
}

.news_btn {
  display: block;
  margin-left: auto;
  width: 300px;
  text-align: center;
  background-color: #fff;
  transition: 0.3s ease;
  padding: 8px;
  border: 1px solid #0c5497;
  margin-top: 50px;
  position: relative;
  box-sizing: border-box;
  font-size: 15px;
}

.news_btn:hover {
  color: #fff;
  background-color: #0c5497;
}

.news_btn:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #0c5497;
  border-right: 1px solid #0c5497;
  position: absolute;
  right: 20px;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s ease;
}

.news_btn:hover:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*20190228追加*/
.corporation05_img.d_inline_b {
  text-align: center;
  max-width: 100%;
}

.corporation05_img.d_inline_b img {
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}

/*20190319追加
*/
/* .main_slider li {
display: none;
}
.bx-viewport .main_slider li {
display: block !important;
} */
.video-container iframe {
  width: 889px;
  height: 500px;
}

/*20191120追加*/
.page_title05 {
  margin-bottom: 15px;
  padding-bottom: 0;
}

.csr_anc {
  margin: -24px -4px 96px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.csr_anc li {
  width: calc(33% - 8px);
  margin: 4px;
  font-size: 87.5%;
  text-align: center;
  border: 1px solid #154894;
  box-shadow: 0 6px 18px 0 rgba(53, 53, 53, 0.24);
}

.csr_anc li a {
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: #fff;
  background: #154894;
  padding: 9px 23px;
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.csr_anc li a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  display: inline-block;
  transform: rotate(-45deg);
}

.csr_anc li a:hover {
  color: #154894;
  background: #fff;
}

.csr_anc li a:hover:after {
  border-color: #154894;
}

.content_wrap p.csr01_title {
  font-size: 187.5%;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

.csr01_text {
  font-size: 112.5%;
}

.csr01_sign {
  font-size: 112.5%;
  font-weight: bold;
  text-align: right;
}

#sec02 .csr01_right h4 {
  width: 45%;
  margin-bottom: 15px;
}

#sec02 .csr01_right h4 a {
  width: 100%;
  font-size: 100%;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 2px 24px 0;
  position: relative;
  top: 0;
  right: 0;
  display: inline-block;
  box-sizing: border-box;
}

#sec02 .csr01_right h4 a:after {
  width: 7px;
  height: 7px;
  border-top: none;
  border-right: none;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  margin: auto 0;
  position: absolute;
  top: -4px;
  right: 14px;
  bottom: 0;
  display: inline-block;
  transform: rotate(-45deg);
}

#sec02 .csr01_link_list li:nth-child(1) .csr01_right h4 a {
  background: #208acc;
  border: 2px solid #208acc;
}

#sec02 .csr01_link_list li:nth-child(1) .csr01_right h4 a:hover {
  color: #208acc;
}

#sec02 .csr01_link_list li:nth-child(1) .csr01_right h4 a:hover:after {
  border-color: #208acc;
}

#sec02 .csr01_link_list li:nth-child(2) .csr01_right h4 a {
  background: #009143;
  border: 2px solid #009143;
}

#sec02 .csr01_link_list li:nth-child(2) .csr01_right h4 a:hover {
  color: #009143;
}

#sec02 .csr01_link_list li:nth-child(2) .csr01_right h4 a:hover:after {
  border-color: #009143;
}

#sec02 .csr01_link_list li:nth-child(3) .csr01_right h4 a {
  background: #f08620;
  border: 2px solid #f08620;
}

#sec02 .csr01_link_list li:nth-child(3) .csr01_right h4 a:hover {
  color: #f08620;
}

#sec02 .csr01_link_list li:nth-child(3) .csr01_right h4 a:hover:after {
  border-color: #f08620;
}

#sec02 .csr01_link_list li:nth-child(4) .csr01_right h4 a {
  background: #8e458d;
  border: 2px solid #8e458d;
}

#sec02 .csr01_link_list li:nth-child(4) .csr01_right h4 a:hover {
  color: #8e458d;
}

#sec02 .csr01_link_list li:nth-child(4) .csr01_right h4 a:hover:after {
  border-color: #8e458d;
}

#sec02 .csr01_right h4 a:hover {
  background: #fff !important;
}

.csr01_bottom_text {
  text-align: center;
}

.csr_box02>div.csr_sdgs_title {
  margin-bottom: 0;
}

.csr_sdgs_title {
  position: relative;
}

#sec03 .page_title04,
#sec04 .page_title04,
#sec05 .page_title04,
#sec06 .page_title04 {
  padding: 40px 0 20px;
}

.csr_sdgs_ico {
  position: absolute;
  top: 0;
  right: 0;
}

.csr05_sports p span {
  font-size: 125%;
  font-weight: bold;
}

.csr02_left {
  width: 61%;
}

.csr05_circle_list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  align-items: stretch;
  justify-content: space-between;
}

.csr05_circle_list li {
  width: 29.6%;
  text-align: center;
}

.csr05_circle_list li figure img {
  max-width: 100%;
  margin-bottom: 20px;
}

.csr05_circle_list li figure figcaption {
  font-weight: bold;
}

/* ウェブアクセシビリティページ */
.accessibility_table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.accessibility_table td,
.accessibility_table th {
  padding: 15px;
}

.accessibility_table td {
  border: 1px solid #cccccc;
}

.accessibility_table th {
  color: #fff;
  background-color: #014099;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #cccccc;
}

.accessibility_table tr th:nth-of-type(1) {
  width: 37%;
}

.accessibility_table tr th:nth-of-type(2) {
  width: 63%;
}

/* PROFESSIONALS */
.professionals_list_mv {
  height: 540px;
  text-align: center;
  color: #fff;
  background: url(../images/professionals/professionals_list_mv.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.professionals_list_mv_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 30, 70, 0.8);
  padding: 48px 32px 40px;
  width: 100%;
  max-width: 796px;
  box-sizing: border-box;
}

.professionals_list_mv_title {
  font-size: 312.5%;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 32px;
}

.professionals_list_mv_text {
  line-height: 1.7;
  font-size: 15px;
}

.professionals_list_mv_text br.spbr {
  display: none;
}

.professionals_mv {
  height: 540px;
  text-align: center;
  color: #fff;
  background: url(../images/professionals/professionals_mv.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.professionals_mv.engneer_mv {
  background: url(../images/professionals/expert_mv.jpg) center center no-repeat;
  background-size: cover;
}

.professionals_mv.global_mv {
  background: url(../images/professionals/GLOBAL_mv_pc.jpg) center center no-repeat;
  background-size: cover;
}

.professionals_mv_title {
  font-size: 312.5%;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0 0 18px #080808;
  margin-bottom: 32px;
}

.professionals_mv_text {
  line-height: 1.7;
  font-size: 15px;
}

.professionals_mv_lead {
  font-weight: bold;
  line-height: 1.6875;
  text-shadow: 0 0 18px #080808;
}

.professionals_list_content,
.professionals_content {
  position: relative;
}

.professionals_list_content .current_box,
.professionals_content .current_box {
  top: 24px;
  left: 50%;
  transform: translate(-50%);
  bottom: auto;
  width: 96%;
  max-width: 1100px;
}

.professionals_content {
  background: url(../images/professionals/professionals_bg.jpg) center top no-repeat;
  background-size: cover;
  padding: 134px 0 140px;
}

.professionals_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.professionals_list li {
  width: 46.3636%;
}

.professionals_list li:nth-child(2) {
  margin: 60px 0 0 7.2728%;
}

.professionals_list li:nth-child(2n+3) {
  margin-top: 80px;
}

.professionals_list li:nth-child(2n+4) {
  margin: 140px 0 0 7.2728%;
}

.professionals_list li a {
  width: 100%;
  color: #fff;
  display: inline-block;
}

.professionals_list_thumb {
  margin-bottom: 40px;
}

.professionals_list_thumb img {
  max-width: 100%;
  height: auto;
}

.professionals_list_title,
.professionals_list_intro,
.professionals_list_name {
  color: #333333;
}

.professionals_list_title {
  font-size: 137.5%;
  font-weight: bold;
  line-height: 1.4545;
}

.professionals_list_intro {
  font-size: 87.5%;
}

.professionals_list_name {
  font-size: 125%;
}

.professionals_detail_mv {
  position: relative;
}

.professionals_detail_mv_img img {
  width: 100%;
}

.professionals_detail_mv_inr {
  width: 1100px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.professionals_detail_mv_archive {
  font-size: 250%;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 16px rgba(8, 8, 8, 0.35);
}

.professionals_detail_mv_title {
  font-size: 250%;
  font-weight: bold;
  margin-bottom: 10px;
}

.professionals_detail_mv_title span {
  font-weight: bold;
  line-height: 1.8;
  color: #fff;
  background: #104099;
  padding: 6px 18px 0;
}

.professionals_detail_mv_name {
  font-size: 162.5%;
}

.professionals_detail_mv_name span {
  font-weight: bold;
  line-height: 1;
  color: #000;
  background: #fff;
  padding: 6px 15px 0;
  display: inline-block;
}

.professionals_detail_wrap {
  background: url(../images/professionals/professionals_detail_bg.jpg) center top no-repeat;
  background-size: cover;
  padding: 30px 0 130px;
}

.professionals_current {
  max-width: 1100px;
  margin: 0 auto;
}

.professionals_current .current_box {
  position: static;
}

.professionals_detail_cont01 strong,
.professionals_detail_cont02 strong {
  font-weight: bold;
}

.professionals_detail_cont01 {
  margin-top: 100px;
}

.professionals_detail_cont02+.professionals_detail_cont01 {
  margin-top: 270px;
}

.professionals_detail_cont01_img {
  width: 45.9259%;
  margin-right: 3.3333%;
}

.professionals_detail_cont01_img img {
  width: 100%;
  height: auto;
}

.professionals_detail_cont01_inr {
  max-width: 1350px;
  color: #000;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.professionals_detail_cont01_inr>div {
  flex: 1;
}

.professionals_detail_noimage_cont {
  max-width: 1100px;
  margin: 0 auto;
}

.professionals_detail_cont01_title,
.professionals_detail_cont02_title {
  font-size: 187.5%;
  line-height: 1.7333;
  font-weight: bold;
  margin-bottom: 20px;
}

.professionals_detail_cont01_text p,
.professionals_detail_cont02_text p {
  line-height: 1.875;
}

.professionals_detail_cont01_text p+p,
.professionals_detail_cont02_text p+p {
  margin-top: 1.875em;
}

.professionals_detail_cont02 {
  margin-top: 147px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}

.professionals_detail_cont02:after {
  content: "";
  width: 78.125%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
}

.professionals_detail_cont02:before {
  content: "";
  max-width: 1250px;
  height: 745px;
  background-color: #adc3e0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: -120px;
  left: 0;
  z-index: -1;
  display: inline-block;
}

.professionals_detail_cont02_inr {
  max-width: 1350px;
  color: #000;
  margin-left: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.professionals_detail_cont02_inr>div {
  margin-top: 70px;
  flex: 1;
}

.professionals_detail_cont02_img {
  width: 45.9259%;
  margin: -17px 0 0 3.3333%;
}

.professionals_detail_cont02_img img {
  width: 100%;
  height: auto;
}

.professionals_detail_profile {
  margin-top: 100px;
}

.professionals_detail_cont02+.professionals_detail_profile {
  margin-top: 220px;
}

.professionals_detail_profile_inr {
  max-width: 1100px;
  color: #000;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.professionals_detail_profile_img {
  width: 40.9091%;
  padding: 0 5.2727%;
  box-sizing: border-box;
}

.professionals_detail_profile_img img {
  max-width: 100%;
}

.professionals_detail_profile_inr>div {
  margin-top: 40px;
  flex: 1;
}

.professionals_detail_profile_title {
  font-size: 287.5%;
  font-weight: bold;
}

.professionals_detail_profile_name {
  font-size: 162.5%;
  font-weight: bold;
  color: #333;
}

.professionals_detail_profile_text {
  line-height: 1.875;
}

.professionals_detail_wrap .news_btn {
  margin-right: auto;
}

/* 人材紹介 */
main.member #content_area {
  width: auto;
  max-width: 100%;
  margin: 0;
}

main.member .content_wrap {
  margin-bottom: 0 !important;
}

.member .current_area {
  display: none;
}

.member_mv {
  height: 540px;
  background: url(../images/member/member_mv.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

main.member .member_mv #content_area {
  max-width: 800px;
  margin-top: 70px;
}

.member_mv_ttl {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.member_mv_txt {
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  color: #fff;
}

.member_inr {
  background: url(../images/member/member_bg01.jpg) center top no-repeat;
  background-size: cover;
  padding: 90px 0 140px;
}

.member_list {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}

.member_list li {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.member_list li>div {
  flex: 1;
}

.member_list li+li {
  margin-top: 80px;
}

.member_list_thumb {
  width: 48.1818%;
  margin-left: 3.6364%;
}

.member_list_thumb img {
  max-width: 100%;
  height: auto;
}

.member_list_ttl {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.5;
  color: #014099;
  display: inline-block;
}

.member_list_ttl02 {
  color: #eb6c64;
}

.member_list_txt {
  color: #000;
}

.member_list_btn a {
  margin: 20px 0 0;
}

/* 未来Working */
.professionals_mv.future_mv {
  height: 34.8125vw;
  text-align: left;
  background-image: url(../images/future/future_mv_202503.jpg);
}

.professionals_mv.future_mv #content_area {
  max-width: 800px;
  margin-top: 4.375vw;
}

.future_mv .professionals_mv_title {
  width: 39.5vw;
  max-width: 632px;
  text-align: center;
  margin: 0 auto;
}

.future_mv .professionals_mv_title:after {
  content: none;
}

.future_mv .professionals_mv_title img {
  max-width: 100%;
  height: auto;
}

.professionals_content.future_content {
  background-image: url(../images/future/future_bg01.jpg);
  padding: 60px 0 170px;
}

.future_lead {
  color: #000;
  margin-bottom: 60px;
  /* add by mdsgn */
  margin-top: 100px
}

.future_ttl {
  font-size: 200%;
  font-weight: bold;
  color: #eb6c64;
  margin-bottom: 20px;
  display: inline-block;
}

.future_ttl span {
  font-weight: bold;
  color: #333;
}

.future_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.future_list li {
  width: 30%;
  color: #4a4747;
  margin: 0 5% 60px 0;
}

.future_list li a {
  color: inherit;
}

.future_list_thumb {
  text-align: center;
  margin-bottom: 20px;
}

.future_list_thumb img {
  max-width: 100%;
  height: auto;
}

.future_list_title {
  font-size: 87.5%;
  font-weight: bold;
  margin-bottom: 10px;
}

.future_list_intro {
  font-size: 87.5%;
  line-height: 1.5;
  margin-bottom: 10px;
}

.future_list_name {
  font-size: 87.5%;
  line-height: 1.5;
}

.future_list li:nth-child(3n) {
  margin-right: 0;
}

.future_content_other {
  margin-top: 20px;
}

.future_list_inr {
  cursor: pointer;
}

.future_list_pop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.future_list_pop.is-pop {
  opacity: 1;
  visibility: visible;
}

#content_area.future_list_pop_inr {
  max-width: 1000px;
  background: #fff;
  padding: 80px 50px 50px;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.18);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
}

.future_list_pop_inr:before,
.future_list_pop_inr:after {
  content: "";
  width: 100%;
  height: 10px;
  background: url(../images/future/future_list_pop_bg.jpg) center top no-repeat;
  position: absolute;
  left: 0;
  display: inline-block;
}

.future_list_pop_inr:before {
  top: 0;
}

.future_list_pop_inr:after {
  bottom: 0;
}

.future_list_pop_close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  cursor: pointer;
}

.future_list_pop_close span {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  position: relative;
  display: inline-block;
}

.future_list_pop_close span:before {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  transform: rotate(45deg);
}

.future_list_pop_close span:after {
  content: "";
  width: 2px;
  height: 20px;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  transform: rotate(45deg);
}

.future_list_pop_thumb {
  width: 33%;
  margin-right: 4%;
}

.future_list_pop_thumb img {
  max-width: 100%;
  height: auto;
}

.future_list_pop_inr>div {
  flex: 1;
}

.future_list_pop_title {
  font-size: 150%;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 20px;
}

.future_list_pop_intro {
  font-size: 87.5%;
}

.future_list_pop_name {
  font-size: 125%;
  font-weight: bold;
  line-height: 1.5;
}

.future_list_pop_txt {
  margin-top: 10px;
}

.future_active {
  background: url(../images/future/future_active_bg.jpg) center top no-repeat;
  background-size: cover;
}

.future_active #content_area {
  padding: 80px 0;
  position: relative;
}

.future_active_ttl {
  font-size: 200%;
  font-weight: bold;
  position: absolute;
  top: -94px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.future_active_ttl br {
  display: none;
}

.future_active_ttl img {
  width: 276px;
  margin-right: 35px;
}

.future_active_list li {
  color: #333;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.future_active_list li>div {
  flex: 1;
}

.future_active_thumb {
  width: 48.1818%;
  text-align: center;
  margin-left: 6.7273%;
}

.future_active_thumb img {
  max-width: 100%;
  height: auto;
}

.future_active_list_ttl {
  font-size: 150%;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 15px;
}

.future_active_list_txt {
  line-height: 1.875;
}

.future_active_list li+li {
  margin-top: 40px;
}

.future_detail_mv {
  background: url(../images/future/future_detail_mv_bg02.jpg) center bottom no-repeat;
  background-size: 100% auto;
  padding-bottom: 1.0625vw;
}

.future_detail_mv:before {
  content: "";
  width: 100%;
  height: 4.5625vw;
  background: url(../images/future/future_detail_mv_bg01.jpg) center top no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

.future_detail_mv .professionals_detail_mv_archive {
  font-size: 225%;
  color: #eb6c64;
  text-shadow: none;
}

.future_detail_mv .professionals_detail_mv_name span {
  color: #fff;
  background: #e7b53d;
}

.future_detail_mv .professionals_detail_mv_title span {
  background: #70aade;
}

.future_detail_wrap {
  background-image: url(../images/future/future_detail_bg.jpg);
}

.future_detail_wrap .professionals_detail_cont02:before {
  background-image: url(../images/future/future_detail_cont02_bg.jpg);
}

/* NTTコムエンジニアリング憲章 */
.charter .current_area,
.charter2 .current_area {
  margin-bottom: 0;
}

.charter #content_area .content_wrap {
  margin-bottom: 0 !important;
}

.charter #content_area .content_wrap h1.page_title01 {
  margin-bottom: 150px;
}

.charter #content_area .content_wrap .page_title01 span {
  font-size: 16px;
  padding-top: 1.5em;
  font-weight: normal;
  color: #014099;
}

.charter_content {
  color: #000;
  background: url(../images/corporation/charter/charter_bg.jpg) right top no-repeat;
  background-size: cover;
  padding: 100px 0 140px;
}

.charter_sec {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.charter_sec_ttl {
  width: 21%;
  font-size: 42px;
  color: #104099;
}

.charter_sec_img img {
  max-width: 100%;
  height: auto;
}

.charter_sec_lead {
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
}

.charter_sec_list li {
  font-size: 16px;
  line-height: 2;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.charter_sec_list li:before {
  content: "■";
  font-size: 8px;
  vertical-align: 0.5em;
  margin-right: 1.5em;
}

.charter_sec_list li:nth-child(odd):before {
  color: #f0cf31;
}

.charter_sec_list li:nth-child(even):before {
  color: #a8edff;
}

.charter_btn .news_btn {
  margin-right: auto;
}

.charter2 #content_area .content_wrap {
  margin-bottom: 0 !important;
}

.charter2 .page_title01 span {
  font-size: 16px;
  padding-top: 24px;
}

.charter2 .charter_sec_lead {
  font-size: 16px;
  line-height: 2;
  font-size: 16px;
  line-height: 2;
}

.charter2 .charter_sec_list li {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
}

/**
 * Setting
 * ================================================== */
/**
 * Util
 * ================================================== */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1em {
  margin-bottom: 1em !important;
}

.mb05em {
  margin-bottom: 0.5em !important;
}

.max100 {
  max-width: 100%;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.bold {
  font-weight: bold !important;
}

/**
 * Button
 * ================================================== */
.btn_square_red {
  background-color: #ca2020;
  color: #fff;
  border-radius: 4px;
  position: relative;
  border: none;
  min-width: 250px;
  padding: 16px 40px;
  line-height: 1;
  cursor: pointer;
}

.btn_square_red::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid transparent;
  margin: auto 0;
  position: absolute;
  top: calc(50% - 1px);
  right: 22px;
  display: inline-block;
  transform: rotate(225deg) translate(-50%, -50%);
  transform-origin: 0% 0%;
}

.btn_square_red.arrow_none::after {
  content: none;
}

/**
 * zoomsl
 * ================================================== */
.zoomsl {
  max-width: 100%;
}

.round-loope,
.magnifier {
  border-radius: 20px;
  border: 5px solid #F0F0F0;
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 150px;
  left: 575.6px;
  top: 29.4px;
  visibility: visible;
  overflow: hidden;
  display: none;
  background-color: #fff;
}

.round-loope img,
.magnifier img {
  position: relative;
  left: -428.035px;
  top: -89.8439px;
  width: 1000px;
  height: 1500px;
}

/**
 * Internal Link
 * ================================================== */
.internal_link_list {
  display: flex;
  margin: -4px -4px 92px;
}

@media screen and (max-width: 768px) {
  .internal_link_list {
    flex-direction: column;
    margin-bottom: 52px;
  }
}

.internal_link_list .internal_link_item {
  background-color: #004496;
  flex: 1;
  margin: 4px;
}

.internal_link_list .internal_link_item .internal_link_anc {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 40px;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 18px;
  text-align: center;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  min-height: 70px;
}

.internal_link_list .internal_link_item .internal_link_anc::after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  margin: auto 0;
  position: absolute;
  top: calc(50% - 4px);
  right: 22px;
  display: inline-block;
  transform: rotate(-45deg) translateY(-50%);
}

/**
 * Intro
 * ================================================== */
.intro_area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 72px;
}

/* 1208イントロ部分微修正 */
#content_area .m150 .m100 #numbers .intro_area {
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .intro_area {
    flex-direction: column;
    margin-bottom: 48px;
  }
}

.intro_area .message_area,
.intro_area .img_area {
  flex: none;
}

.intro_area .message_area {
  width: 54%;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  .intro_area .message_area {
    width: 100%;
    margin-bottom: 24px;
    max-width: 100%;
  }
}

.intro_area .img_area {
  width: 43%;
  max-width: 470px;
}

@media screen and (max-width: 768px) {
  .intro_area .img_area {
    width: 100%;
    max-width: 100%;
  }
}

.intro_area .intro_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #004496;
  margin-bottom: 32px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .intro_area .intro_title {
    font-size: 20px;
    margin-bottom: 21px;
  }
}

.intro_area .intro_message {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 34px;
  font-weight: bold;
  color: #323232;
  line-height: 1.7777777778;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .intro_area .intro_message {
    font-size: 24px;
  }
}

.intro_area .intro_img_wrapper {
  margin: 0;
}

.intro_area .intro_img_wrapper .intro_img {
  display: block;
}

/**
 * Frame Purple
 * ================================================== */
.frame_purple {
  background-color: #eaeeff;
  padding: 48px;
}

@media screen and (max-width: 768px) {
  .frame_purple {
    padding: 16px;
  }
}

.frame_purple .frame_purple_inner {
  background-color: #fff;
  padding: 48px;
}

@media screen and (max-width: 768px) {
  .frame_purple .frame_purple_inner {
    padding: 16px;
  }
}

.frame_purple .frame_purple_inner .heading01 {
  margin-bottom: 0;
}

.frame_purple .frame_purple_inner .text:not(:last-of-type) {
  margin-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .frame_purple .frame_purple_inner .text:not(:last-of-type) {
    margin-bottom: 42px;
  }
}

/**
 * Frame Gray
 * ================================================== */
.frame_gray {
  position: relative;
  padding: 40px 0;
}

.frame_gray::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/**
 * Title
 * ================================================== */
.heading01 {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 22px;
  line-height: 1.9090909091;
  font-weight: bold;
  color: #004496;
}

@media screen and (max-width: 768px) {
  .heading01 {
    font-size: 20px;
    line-height: 1.6;
  }
}

.heading01+.heading01_sub {
  color: #004496;
}

@media screen and (max-width: 768px) {
  .heading01+.heading01_sub {
    margin-top: 4px;
  }
}

.heading01+.heading01_sub .heading01_sub_inner {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 22px;
  font-weight: bold;
  font-style: italic;
  position: relative;
  padding: 0 14px 0 12px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .heading01+.heading01_sub .heading01_sub_inner {
    font-size: 16px;
  }
}

.heading01+.heading01_sub .heading01_sub_inner::before,
.heading01+.heading01_sub .heading01_sub_inner::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: #004496;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.heading01+.heading01_sub .heading01_sub_inner::before {
  left: 0;
}

.heading01+.heading01_sub .heading01_sub_inner::after {
  right: 0;
}

.heading02 {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 28px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #004496;
  font-weight: bold;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .heading02 {
    font-size: 20px;
    margin-bottom: 21px;
  }
}

.heading03 {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #004496;
  padding-bottom: 24px;
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .heading03 {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
}

.heading03::before {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: #004496;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .heading03::before {
    height: 3px;
  }
}

/**
 * Text
 * ================================================== */
.text {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 20px;
  line-height: 2.1;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .text {
    font-size: 18px;
  }
}

.text+.heading02 {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .text+.heading02 {
    margin-top: 42px;
  }
}

.ast_text {
  text-indent: -1em;
  padding-left: 1em;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .ast_text {
    font-size: 14px;
  }
}

.ast_text:nth-of-type(n+2) {
  margin-top: 0.5em;
}

.content_wrap p {
  margin: 0;
}

/**
 * List
 * ================================================== */
.triangle_list .list_item {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 20px;
  padding-left: 1em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .triangle_list .list_item {
    font-size: 18px;
  }
}

.triangle_list .list_item:nth-of-type(n+2) {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .triangle_list .list_item:nth-of-type(n+2) {
    margin-top: 8px;
  }
}

.triangle_list .list_item::before {
  content: "";
  display: inline-block;
  height: 0.7em;
  width: calc(.7em * 0.86);
  background-color: #555555;
  position: absolute;
  top: calc(.7em + 1px);
  left: 0;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.long_arrow_list .list_item {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #004496;
}

@media screen and (max-width: 768px) {
  .long_arrow_list .list_item {
    font-size: 16px;
  }
}

.long_arrow_list .list_item::after {
  content: "";
  display: inline-block;
  width: 5.05em;
  height: 0.4em;
  background-image: url(../images/sub/long_arrow.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .long_arrow_list .list_item::after {
    width: 4.05em;
  }
}

.ast_list .ast_list_item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .ast_list .ast_list_item {
    font-size: 14px;
  }
}

.ast_list .ast_list_item:nth-of-type(n+2) {
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .ast_list .ast_list_item:nth-of-type(n+2) {
    margin-top: 8px;
  }
}

.ast_list .ast_list_item::before {
  content: "※";
}

/**
 * Arrow
 * ================================================== */
.arrow_right {
  position: relative;
  display: inline-block;
  width: 7.5px;
  height: 15px;
  margin-left: 8px;
}

.arrow_right::before,
.arrow_right::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #004496;
  position: absolute;
  transform-origin: 0 0;
  left: 0;
}

.arrow_right::before {
  transform: rotate(45deg);
  top: 0;
  left: 1px;
}

.arrow_right::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* 会社保有資格　右矢印位置変更 */

#numbers .numbers_arrow::before {
  transform: rotate(45deg);
  top: 2px;
  left: 1px;
}

#numbers .numbers_arrow::after {
  transform: rotate(-45deg);
  bottom: -2px;
}


/*  ↑ここまで*/

.content_wrap .with_illustration {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  .content_wrap .with_illustration {
    flex-direction: column;
  }
}

.content_wrap .with_illustration .text_area {
  width: 55%;
}

@media screen and (max-width: 480px) {
  .content_wrap .with_illustration .text_area {
    width: 100%;
  }
}

.content_wrap .with_illustration .img_area {
  width: 41%;
}

@media screen and (max-width: 480px) {
  .content_wrap .with_illustration .img_area {
    width: 100%;
    margin-top: 24px;
  }
}

.content_wrap .with_illustration .img_area img {
  width: 100%;
}

.content_wrap .sdgs_box01:not(:last-of-type) {
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .content_wrap .sdgs_box01:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.content_wrap .sdgs_box02:nth-of-type(n+2) {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .content_wrap .sdgs_box02:nth-of-type(n+2) {
    margin-top: 32px;
  }
}

.content_wrap .sdgs_box02 .heading01_sub {
  margin-bottom: 24px;
}

.content_wrap .modal_area {
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .content_wrap .modal_area {
    margin-bottom: 40px;
  }
}

.content_wrap .modal_area .modal_text {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .content_wrap .modal_area .modal_text {
    font-size: 14px;
  }
}

.content_wrap .modal_area .modal_text .modal_anc {
  color: #555555;
}

.content_wrap .modal_area .modal_text .icon_img {
  width: 27px;
  display: inline-block;
  margin-right: 4px;
  vertical-align: -6px;
}

@media screen and (max-width: 768px) {
  .content_wrap .modal_area .modal_text .icon_img {
    width: 18px;
    vertical-align: -4px;
    margin-right: 2px;
  }
}

.content_wrap .sec_end {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 768px) {
  .content_wrap .sec_end {
    flex-direction: column;
  }
}

.content_wrap .sec_end .left_area,
.content_wrap .sec_end .right_area {
  flex: none;
}

.content_wrap .sec_end .left_area {
  width: 48%;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .content_wrap .sec_end .left_area {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 24px;
  }
}

.content_wrap .sec_end .left_area::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eaeeff;
  z-index: -1;
}

.content_wrap .sec_end .right_area {
  width: 52%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .content_wrap .sec_end .right_area {
    width: 100%;
  }
}

.content_wrap .sec_end .right_area .end_img {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .content_wrap .sec_end .right_area .end_img {
    position: static;
  }
}

.content_wrap .sec_end .end_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #004496;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .content_wrap .sec_end .end_title {
    font-size: 18px;
  }
}

.content_wrap .ms_bc {
  margin-top: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .content_wrap .ms_bc {
    flex-direction: column;
  }
}

.content_wrap .ms_bc .left_area {
  width: 58.1818181818%;
}

@media screen and (max-width: 768px) {
  .content_wrap .ms_bc .left_area {
    width: 100%;
  }
}

.content_wrap .ms_bc .right_area {
  width: 33.8181818182%;
}

@media screen and (max-width: 768px) {
  .content_wrap .ms_bc .right_area {
    width: 100%;
    margin-top: 16px;
  }
}

.content_wrap .efforts_img02_wrapper {
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .content_wrap .efforts_img02_wrapper {
    margin-bottom: 48px;
  }
}

.content_wrap .efforts_img02 {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.content_wrap .efforts_sec01_challenge {
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .content_wrap .efforts_sec01_challenge {
    margin-bottom: 48px;
  }
}

.content_wrap .efforts_img04 {
  width: 100%;
  max-width: 926px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .content_wrap .efforts_img04 {
    margin-top: 0;
  }
}

.content_wrap .efforts_list_area .efforts_list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: -10px;
}

.content_wrap .efforts_list_area .efforts_list .efforts_list_item {
  width: calc(33.333333% - 20px);
  margin: 10px;
  box-sizing: border-box;
  border: 8px solid #c8ebed;
  padding: 24px;
  min-height: 450px;
}

@media screen and (max-width: 768px) {
  .content_wrap .efforts_list_area .efforts_list .efforts_list_item {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_list_area .efforts_list .efforts_list_item {
    width: calc(100% - 20px);
    min-height: 0;
  }
}

.content_wrap .efforts_list_area .efforts_list .efforts_list_item .list_img_area {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_list_area .efforts_list .efforts_list_item .list_img_area {
    margin-bottom: 16px;
  }
}

.content_wrap .efforts_list_area .efforts_list .efforts_list_item .list_img_area .list_img {
  width: auto;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.content_wrap .efforts_list_area .efforts_list .efforts_list_item .list_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.45;
  text-align: center;
  min-height: 2.9em;
  margin-bottom: 24px;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_list_area .efforts_list .efforts_list_item .list_title {
    min-height: 0;
    margin-bottom: 8px;
  }
}

.content_wrap .efforts_list_area .efforts_list .efforts_list_item a {
  font-size: 16px;
  color: #555555;
}

.content_wrap .efforts_list_area .efforts_list .efforts_list_item a .arrow_right {
  vertical-align: -2px;
  margin-left: 4px;
}

.content_wrap .efforts_list_area .efforts_list .efforts_list_item a .arrow_right::before,
.content_wrap .efforts_list_area .efforts_list .efforts_list_item a .arrow_right::after {
  background-color: #555555;
}

.content_wrap .efforts_sec01_challenge .with_illustration {
  align-items: center;
}

.content_wrap .efforts_sec01_challenge .with_illustration .text_area {
  width: 46.3%;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_sec01_challenge .with_illustration .text_area {
    width: 100%;
  }
}

.content_wrap .efforts_sec01_challenge .with_illustration .img_area {
  width: 42.3%;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_sec01_challenge .with_illustration .img_area {
    width: 100%;
  }
}

.content_wrap .efforts_sec01_challenge .with_illustration .link_icon {
  width: 1.4em;
  display: inline-block;
  margin-right: 4px;
  vertical-align: -3px;
}

.content_wrap .efforts_number_list {
  counter-reset: number;
}

.content_wrap .efforts_number_list .efforts_number_list_item {
  position: relative;
  padding-left: 88px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_number_list .efforts_number_list_item {
    padding-left: 64px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.content_wrap .efforts_number_list .efforts_number_list_item:nth-of-type(n+2) {
  border-top: 1px dashed #555555;
}

.content_wrap .efforts_number_list .efforts_number_list_item::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero) ".";
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 48px;
  font-style: italic;
  letter-spacing: -0.02em;
  position: absolute;
  top: 50%;
  left: 0;
  line-height: 1;
  transform: translateY(-50%);
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_number_list .efforts_number_list_item::before {
    font-size: 32px;
    top: calc(24px + .2em);
    transform: translateY(0);
  }
}

.content_wrap .efforts_info_area {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_info_area {
    flex-direction: column;
  }
}

.content_wrap .efforts_info_area .left_area,
.content_wrap .efforts_info_area .right_area {
  flex: none;
  width: 47.7%;
}

@media screen and (max-width: 480px) {

  .content_wrap .efforts_info_area .left_area,
  .content_wrap .efforts_info_area .right_area {
    width: 100%;
  }
}

.content_wrap .efforts_info_area .left_area dl {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.content_wrap .efforts_info_area .left_area dl dt,
.content_wrap .efforts_info_area .left_area dl dd {
  flex: none;
  padding: 48px 16px;
  box-sizing: border-box;
  line-height: 1.2;
}

@media screen and (max-width: 480px) {

  .content_wrap .efforts_info_area .left_area dl dt,
  .content_wrap .efforts_info_area .left_area dl dd {
    padding: 24px 8px;
  }
}

.content_wrap .efforts_info_area .left_area dl dt:first-of-type,
.content_wrap .efforts_info_area .left_area dl dd:first-of-type {
  padding-top: 0;
}

.content_wrap .efforts_info_area .left_area dl dt {
  width: 34.2857142857%;
  border-bottom: 1px solid #555;
  font-weight: bold;
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
}

.content_wrap .efforts_info_area .left_area dl dd {
  width: 65.7142857143%;
  border-bottom: 1px solid #b3b3b3;
  font-size: 20px;
  padding-top: 46px;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_info_area .left_area dl dd {
    padding-top: 24px;
  }
}

.content_wrap .efforts_info_area .right_area {
  border-bottom: 1px solid #b3b3b3;
}

@media screen and (max-width: 480px) {
  .content_wrap .efforts_info_area .right_area {
    padding: 24px 0;
  }
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .with_illustration {
    align-items: center;
  }
}

.work_styles .content_wrap .with_illustration .text_area {
  width: 69.4545454545%;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .with_illustration .text_area {
    width: 100%;
  }
}

.work_styles .content_wrap .with_illustration .img_area {
  width: 25.9090909091%;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .with_illustration .img_area {
    width: 80%;
  }
}

.work_styles .content_wrap .club_list {
  margin: 32px -8px -8px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .club_list {
    margin-top: 16px;
  }
}

.work_styles .content_wrap .club_list .club_list_item {
  width: calc(33.3333% - 16px);
  margin: 8px;
  background-color: #fff;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .club_list .club_list_item {
    width: calc(50% - 16px);
    padding-bottom: 24px;
  }
}

.work_styles .content_wrap .club_list .club_list_item .club_img_wrapper .club_img {
  max-width: 100%;
}

.work_styles .content_wrap .club_list .club_list_item .club_icon {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .club_list .club_list_item .club_icon {
    margin-top: 16px;
    text-align: center;
  }
}

.work_styles .content_wrap .club_list .club_list_item .club_icon .club_icon_img {
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .club_list .club_list_item .club_icon .club_icon_img {
    height: 40px;
  }
}

.work_styles .content_wrap .club_list .club_list_item .club_text {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-top: 16px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .club_list .club_list_item .club_text {
    font-size: 16px;
  }
}

.work_styles .content_wrap .mv_title {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .mv_title {
    margin-top: 24px;
  }
}

.work_styles .content_wrap .mv_area {
  text-align: center;
}

.work_styles .content_wrap .mv_area iframe,
.work_styles .content_wrap .mv_area video {
  width: 100%;
  max-width: 720px;
  height: auto;
  aspect-ratio: 16/9;
  vertical-align: middle;
}

.work_styles .content_wrap .works_style04_wrapper {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .works_style04_wrapper {
    margin-top: 16px;
  }
}

.work_styles .content_wrap .works_style04_wrapper .works_style04 {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.work_styles .content_wrap .works_style06_wrapper {
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .works_style06_wrapper {
    margin-top: 24px;
  }
}

.work_styles .content_wrap .works_style06_wrapper .works_style06 {
  width: 100%;
  max-width: 746px;
  margin-left: auto;
  margin-right: auto;
}

.work_styles .content_wrap .works_style09_wrapper .works_style09 {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.work_styles .content_wrap .shining_arcs .with_illustration .text_area {
  width: 61.6363636364%;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .shining_arcs .with_illustration .text_area {
    width: 100%;
  }
}

.work_styles .content_wrap .shining_arcs .with_illustration .img_area {
  width: 33%;
}

@media screen and (max-width: 768px) {
  .work_styles .content_wrap .shining_arcs .with_illustration .img_area {
    width: 100%;
  }
}

.recruit_sub_content {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
  max-width: 1100px;
  padding-top: 90px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .recruit_sub_content {
    width: 90%;
    padding-top: 40px;
    margin-bottom: 48px;
  }
}

.recruit_sub_content .current_box {
  top: 24px;
  left: 50%;
  transform: translate(-50%);
  bottom: auto;
  width: 100%;
  max-width: 1100px;
}

@media screen and (max-width: 768px) {
  .recruit_sub_content .current_box {
    display: none;
  }
}

.recruit_sub_content .message_area {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.recruit_sub_content .message_area .recruit_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  padding: 48px 0;
  background-image: url(../images/recruit/recruit_charm02.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .recruit_sub_content .message_area .recruit_title {
    font-size: 20px;
    padding: 24px 0;
  }
}

.recruit_sub_content .message_area .text {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .recruit_sub_content .message_area .text {
    text-align: left;
  }
}

.rec_sub_main_vis {
  position: relative;
}

.rec_sub_main_vis .rec_sub_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .rec_sub_main_vis .rec_sub_title {
    font-size: 24px;
    line-height: 1.3;
    width: 90%;
  }
}

.rec_sub_main_vis .rec_sub_main_vis_bg {
  width: 100%;
}

.recruit_top .text {
  font-size: 16px;
  line-height: 1.5;
}

.recruit_top .main_vis_slide {
  font-size: 0;
}

.recruit_top .main_vis_slide [style] {
  vertical-align: middle;
}

.recruit_top .main_vis_slide img {
  width: 100%;
  vertical-align: middle;
}

.recruit_top .recruit_top_content {
  position: relative;
  padding-top: 90px;
}

@media screen and (max-width: 768px) {
  .recruit_top .recruit_top_content {
    padding-top: 40px;
  }
}

.recruit_top .recruit_top_content .current_box {
  top: 24px;
  left: 50%;
  transform: translate(-50%);
  bottom: auto;
  width: 96%;
  max-width: 1100px;
}

@media screen and (max-width: 768px) {
  .recruit_top .recruit_top_content .current_box {
    display: none;
  }
}

.recruit_top .message_area {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
}

@media screen and (max-width: 768px) {
  .recruit_top .message_area {
    width: 90%;
  }
}

.recruit_top .message_area .recruit_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  padding: 48px 0;
  background-image: url(../images/recruit/recruit_top04.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .recruit_top .message_area .recruit_title {
    font-size: 20px;
    padding: 24px 0;
  }
}

.recruit_top .message_area .text {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .recruit_top .message_area .text {
    text-align: left;
  }
}

.recruit_top .rec_top_sec_wrapper {
  margin: 176px auto 100px;
  width: 96%;
  max-width: 1100px;
}

@media screen and (max-width: 768px) {
  .recruit_top .rec_top_sec_wrapper {
    width: 90%;
    margin: 72px auto 100px;
  }
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .recruit_top .rec_top_sec_wrapper .rec_top_sec {
    flex-direction: column;
  }
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec:nth-of-type(2n) .rec_top_sec_text_area {
  order: 2;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec:nth-of-type(2n) .rec_top_sec_img_area {
  order: 1;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec+.rec_top_sec {
  margin-top: 140px;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area {
  width: 41.8181818182%;
  position: relative;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area {
    order: 2;
    width: 100%;
    margin-top: 32px;
  }
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area::before,
.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area::after {
  content: "";
  display: block;
  width: calc(100% + 500px);
  height: calc(100% + 128px);
  position: absolute;
  transform: translate(-50%, -50%);
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area::before {
  top: calc(50% + 16px);
  left: calc(50% + 16px);
  background-color: #f5f5f5;
  z-index: -2;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area::after {
  top: 50%;
  left: 50%;
  background-color: #184e91;
  z-index: -1;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* more button design css */
.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area p.more {
  color: #184e91;
  padding-top: 17px;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area .more a {
  display: block;
  text-align: left;
  padding-left: 25px;
  color: #184e91;
  background: #fff;
  line-height: 30px;
  border: 1px solid #fff;
  font-size: 87.5%;
  position: relative;
  border-radius: 25px;
  box-sizing: border-box;
  text-decoration: none;
  width: 100px;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area .more a:after {
  content: '';
  position: absolute;
  right: 14px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #184e91;
  border-right: 1px solid #184e91;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area .more a:hover {
  color: #fff;
  background: #184e91;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area .more a:hover:after {
  content: '';
  position: absolute;
  right: 14px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* end */

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area .rec_heading01 {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.2857;
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area .rec_heading01 {
    font-size: 20px;
  }
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_text_area .rec_heading01::before {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_img_area {
  width: 52.2727272727%;
}

@media screen and (max-width: 768px) {
  .recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_img_area {
    order: 1;
    width: 100%;
  }
}

.recruit_top .rec_top_sec_wrapper .rec_top_sec .rec_top_sec_img_area .rec_top_sec_img {
  max-width: 100%;
}

.recruit_charm .rec_interview_list_wrapper {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .recruit_charm .rec_interview_list_wrapper {
    margin-top: 32px;
  }
}

.recruit_charm .rec_interview_list_wrapper .rec_interview_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -40px -8px;
}

@media screen and (max-width: 480px) {
  .recruit_charm .rec_interview_list_wrapper .rec_interview_list {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

.recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item {
  width: calc(33.333333% - 16px);
  margin: 40px 8px;
}

@media screen and (max-width: 768px) {
  .recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item {
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 480px) {
  .recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item {
    width: calc(100% - 16px);
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item .rec_interview_list_img_area {
  position: relative;
  margin-bottom: 24px;
}

.recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item .rec_interview_list_img_area .rec_interview_img {
  width: 100%;
}

.recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item .rec_interview_list_img_area .rec_interview_img_title {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: block;
  background-color: #184e91;
  color: #fff;
  border-radius: 9999px;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 14px;
  padding: 0 12px;
}

@media screen and (max-width: 768px) {
  .recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item .rec_interview_list_img_area .rec_interview_img_title {
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {
  .recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item .rec_interview_list_img_area .rec_interview_img_title {
    font-size: 12px;
  }
}

.recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item .rec_interview_list_text_area .rec_interview_list_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  padding-bottom: 16px;
  border-bottom: 1px solid #184e91;
  margin-bottom: 16px;
}

.recruit_charm .rec_interview_list_wrapper .rec_interview_list .rec_interview_list_item .rec_interview_list_text_area .rec_interview_list_name {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
}

.recruit_flow .message_area .recruit_title {
  background-image: url(../images/recruit/recruit_flow02.png);
}

.recruit_flow .select_step {
  counter-reset: section;
  margin-top: 56px;
}

.recruit_flow .select_step .step {
  counter-increment: section;
  background-color: #dee7f3;
  padding: 32px;
  position: relative;
  border-radius: 4px;
}

.recruit_flow .select_step .step:nth-of-type(n+2) {
  margin-top: 40px;
}

.recruit_flow .select_step .step::before {
  content: "";
  display: block;
  width: 73px;
  height: 29px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #dee7f3;
}

.recruit_flow .select_step .step.last {
  background-color: transparent;
  box-sizing: border-box;
  border: 3px solid #184e91;
  color: #184e91;
}

.recruit_flow .select_step .step.last::before {
  content: none;
}

.recruit_flow .select_step .step.last .step_inner {
  line-height: 1;
}

.recruit_flow .select_step .step .step_num {
  background-color: #184e91;
  border-radius: 99999px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 114px;
  height: 114px;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .recruit_flow .select_step .step .step_num {
    width: 72px;
    height: 72px;
    top: 16px;
    left: 24px;
    z-index: 1;
  }
}

.recruit_flow .select_step .step .step_num::before {
  content: "STEP";
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .recruit_flow .select_step .step .step_num::before {
    font-size: 13px;
    line-height: 1;
    vertical-align: middle;
  }
}

.recruit_flow .select_step .step .step_num::after {
  content: counter(section, decimal-leading-zero);
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .recruit_flow .select_step .step .step_num::after {
    font-size: 17px;
    line-height: 1;
    margin-top: 4px;
    vertical-align: middle;
  }
}

.recruit_flow .select_step .step .step_inner {
  text-align: center;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.1em;
}

.recruit_flow .select_step .step .entry_btn_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: calc(50% + 137px);
  transform: translateY(-50%);
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

@media screen and (max-width: 880px) {
  .recruit_flow .select_step .step .entry_btn_area {
    left: calc(50% + 100px);
  }
}

@media screen and (max-width: 768px) {
  .recruit_flow .select_step .step .entry_btn_area {
    position: static;
    transform: none;
    margin-top: 16px;
  }
}

.recruit_flow .recruit_status {
  margin-top: 114px;
}

.recruit_flow .recruit_status .status_table {
  margin-top: 64px;
  width: 100%;
}

.recruit_flow .recruit_status .status_table th,
.recruit_flow .recruit_status .status_table td {
  padding: 16px;
  border: 1px solid #adc3e0;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}

.recruit_flow .recruit_status .status_table th {
  background-color: #d1dce9;
  color: #184e91;
}

.recruit_flow .recruit_status .status_table td .big {
  font-size: 30px;
  display: inline-block;
  margin-right: 4px;
}

/* 20220620 */
.rec_top_sec_wrapper .recruit_status {
  margin-top: 114px;
}

.rec_top_sec_wrapper .recruit_status .status_table {
  margin-top: 64px;
  width: 100%;
}

.rec_top_sec_wrapper .recruit_status .status_table th,
.rec_top_sec_wrapper .recruit_status .status_table td {
  padding: 16px;
  border: 1px solid #adc3e0;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}

.rec_top_sec_wrapper .recruit_status .status_table th {
  background-color: #d1dce9;
  color: #184e91;
}

.rec_top_sec_wrapper .recruit_status .status_table td .big {
  font-size: 30px;
  display: inline-block;
  margin-right: 4px;
}

/* ---------- */
.recruit_top .message_area .recruit_title_nobg {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  padding: 48px 0;
  background-image: none;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .recruit_top .message_area .recruit_title_nobg {
    font-size: 20px;
    padding: 24px 0;
  }
}

/* 20220620 */

.recruit_flow .entry_area {
  margin-top: 80px;
  background-color: #f5f5f5;
  padding: 40px 56px;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

@media screen and (max-width: 768px) {
  .recruit_flow .entry_area {
    margin-top: 56px;
    padding: 24px;
    font-size: 14px;
  }
}

.recruit_flow .entry_area .entry_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 28px;
  color: #184e91;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .recruit_flow .entry_area .entry_title {
    font-size: 20px;
  }
}

.recruit_flow .entry_area .button_area {
  margin-top: 16px;
  text-align: center;
}

.recruit_flow .entry_area .button_area .btn_square_red {
  width: 100%;
  max-width: 840px;
  padding: 32px;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .recruit_flow .entry_area .button_area .btn_square_red {
    font-size: 20px;
    line-height: 1.4em;
    padding: 16px;
  }
}

.recruit_flow .entry_area .ast_list {
  margin: 24px auto 0;
  max-width: 840px;
}

.content_wrap .txt {
  margin-top: 1em;
}

.content_wrap .txt_center {
  text-align: center;
}

.content_wrap .txt_blue {
  color: #083e8e;
}

.content_wrap .title_blue {
  color: #083e8e;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .content_wrap .title_blue {
    font-size: 19px;
  }
}

.content_wrap .mt_1em {
  margin-top: 1em;
}

.content_wrap .mt_1_5em {
  margin-top: 1.5em;
}

.content_wrap .mt_2em {
  margin-top: 2em;
}

.content_wrap .mt_3em {
  margin-top: 3em;
}

.content_wrap .divisions_img {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .content_wrap .divisions_img {
    margin-top: 40px;
  }
}

.content_wrap .divisions_sec {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .content_wrap .divisions_sec {
    margin-top: 40px;
  }
}

.content_wrap .div_ttl {
  font-size: 22px;
  color: #083e8e;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .content_wrap .div_ttl {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.content_wrap .div_ttl .txt-sub {
  font-weight: normal;
  display: block;
}

.content_wrap .div_ttl .txt-sub2 {
  font-weight: normal;
  display: block;
  font-size: 16px;
}

.content_wrap .div_ttl_4 {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .content_wrap .business_link_title {
    font-size: 20px;
  }
}

.content_wrap .imgw {
  text-align: center;
}

.content_wrap .imgw .w90 {
  width: 90%;
}

.content_wrap .imgw img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content_wrap .imgw img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

.content_wrap .business_link {
  background: #004386;
  background: linear-gradient(90deg, #004386 0%, #1c84c9 100%);
}

@media screen and (max-width: 768px) {
  .content_wrap .business_link {
    background: #004386;
    background: linear-gradient(90deg, #004386 0%, #1c84c9 100%);
  }
}

.content_wrap .cloud_flex {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .content_wrap .cloud_flex {
    flex-wrap: wrap;
  }
}

.content_wrap .cloud_flex li {
  margin: 0 1em;
}

@media screen and (max-width: 480px) {
  .content_wrap .cloud_flex li {
    width: 48%;
    margin: 0 0 1em;
  }
}

.content_wrap .cloud_flex li img {
  max-width: 100%;
  height: auto;
}

.content_wrap .inrfra_sec {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .content_wrap .inrfra_sec {
    margin-bottom: 24px;
  }
}

.content_wrap .inrfra_sec .txt {
  margin-top: 0.5em;
}

.content_wrap .inrfra_sec.infra_arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 45px 0 45px;
  border-color: #8aa3c5 transparent transparent transparent;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
}

.content_wrap .managed_list li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 1em;
}

.content_wrap .managed_list li:last-of-type {
  margin-bottom: 0;
}

.content_wrap .managed_list li::before {
  content: "■";
}

/* トップページ追加　20220901 */
.top_new_box01 {
  margin-bottom: 0 !important;
}

.top_new_box03 {
  background: #fff;
  padding: 80px 0;
}

.top_new_box03 .top_new_box03_detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.top_new_box03 .top_new_box03_detail h2 {
  font-family: "Lato", sans-serif;
  font-size: 300%;
  color: #000;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
}

.top_new_box03 .top_new_box03_detail h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 2px #194e92;
  width: 55px;
  height: 2px;
}

.top_new_box03 .top_new_box03_detail span {
  font-family: "Meiryo", sans-serif;
  font-size: 16px;
  margin-left: 30px;
  font-weight: bold;
}

.top_new_box03 .top_new_box03_detail p {
  margin-bottom: 60px;
}

.top_new_box03 .link-youtube {
  display: flex;
  justify-content: center;
  background: #f2fbfb;
}


/*健康経営ページ追加 20220910*/
#health section {
  margin-bottom: 80px;
}

#health section h3 {
  margin-bottom: 20px;
}

#health .flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#health .frame_blue {
  background-color: #e6f7ff;
  padding: 48px;
}

#health .frame_blue_inner {
  background-color: #fff;
  padding: 48px;
}

#health .frame_gray {
  background-color: #f5f5f5;
  margin-bottom: 80px;
  padding: 40px 0 10px;
}

#health .health-box01 .flex-left {
  width: 66%;
}

#health .health-box01 .flex-right {
  width: 27%;
}

#health .fsize20 {
  font-size: 20px;
}

#health .health-box01 .flex-left .name {
  font-size: 20px;
  text-align: right;
  font-weight: bold;
  margin: 20px 0 10px;
}

#health .health-box03 {
  margin-bottom: 60px;
}

#health .health-box03 .sec03-box01 {
  background: #fff;
  padding: 45px 100px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .1);
}

#health .health-box03 .sec03-box01 .en-text {
  position: relative;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 22px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #004496;
  font-weight: bold;
  margin-bottom: 32px;
}

#health .health-box03 .sec03-box01 .en-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, #004496 0%, #fff 100%);
}

#health .health-box03 .sec03-box01 .catch {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 34px;
  font-weight: bold;
  color: #323232;
  line-height: 1.7777777778;
  margin-bottom: 32px;
}

#health .health-box03 .sec03-box01 .flex-left {
  width: 70%;
}

#health .health-box03 .sec03-box01 .flex-right {
  width: 26%;
}

#health .health-box03 .efforts_number_list .efforts_number_list_item:nth-of-type(1) {
  padding-top: 0;
}

#health .health-box03 .efforts_number_list .efforts_number_list_item:nth-of-type(1)::before {
  top: 44%;
}

#health .health-box03 .sec03-box01 .en-text {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 22px;
  font-weight: bold;
  font-style: italic;
}

#health .efforts_list_area .efforts_list {
  margin-bottom: 30px;
}

#health .efforts_list_area .efforts_list .efforts_list_item {
  text-align: center;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  min-height: inherit;
  padding: 23px 15px 25px;
  border: 8px solid #BEE5F3;
}

#health .health-box04 .list_img_area img {
  margin: 0 auto;
}

#health .efforts_list_area .efforts_list .efforts_list_item .list_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 0;
}

#health .efforts_list_area .efforts_list .efforts_list_item .text01 {
  font-size: 16px;
  line-height: 1.4;
}

#health .efforts_list_area .efforts_list .efforts_list_item .text02 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}

#health .efforts_list_area .efforts_list .efforts_list_item .text02 span {
  font-size: 22px;
}

#health .efforts_list_area .efforts_list .efforts_list_item .text03 {
  font-size: 12px;
  line-height: 1.4;
}

#health .health-box04 .intro_area {
  align-items: flex-end;
}

#health .health-box04 .intro_area .img_area {
  width: 50%;
  max-width: 535px;
}

#health .health-box05 h3 {
  margin-bottom: 0;
}

#health .health-box05 .with_illustration .text_area {
  width: 69.4545454545%;
}

#health .health-box05 .with_illustration .img_area {
  width: 27.909091%;
}


.youtube-container {
  background: #f3fafb;
  padding: 30px 0;
}

.youtube-container .swiper02 {
  padding-bottom: 30px;
}

.youtube-container .youtube-box {
  position: relative;
}

/* コンテナのサイズ調整 */
.swiper-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.swiper-slide h3 {
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
}

.swiper-slide-active h3 {
  opacity: 1;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}

.swiper01 .swiper-slide {
  position: relative;
  height: auto !important;
}

.swiper-slide iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 40px 0;
}

.swiper-slide-active iframe {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  margin: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;
  background: #194e92;
  padding: 15px;
  font-size: 40px !important;
}

@media(max-width:850px) {
  .swiper01 {
    height: 350px;
  }
}

/* ページネイションをinlineで中央に */
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: inline-block;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {

  .sip-slider,
  .swiper-container,
  .swiper-wrapper,
  .swiper-slide,
  .swiper-slide img {
    transition-duration: 100ms !important;
  }
}


#health .efforts_list_area .efforts_list .efforts_list_item a {
  display: block;
  color: #004496;
  text-align: center;
  margin-top: 10px;
}

#health .efforts_list_area .efforts_list .efforts_list_item a span {
  position: relative;
}

#health .efforts_list_area .efforts_list .efforts_list_item a span::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: -20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #004496;
  border-right: 1px solid #004496;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#esports .efforts_list_area .efforts_list {
  margin-bottom: 30px;
}

#esports .efforts_list_area .efforts_list .efforts_list_item {
  text-align: center;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  min-height: inherit;
  padding: 23px 15px 25px;
  border: 8px solid #e5e0fe;
}

#esports .esports-box01 .list_img_area img {
  width: 138px;
  height: auto;
  margin: 0 auto;
}

#esports .efforts_list_area .efforts_list .efforts_list_item .list_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 0;
}

#esports .efforts_list_area .efforts_list .efforts_list_item .text01 {
  font-size: 16px;
  line-height: 1.4;
}

#esports .efforts_list_area .text02 {
  position: relative;
  font-size: 13px;
  padding-left: 18px;
}

#esports .efforts_list_area .text02::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
}

#esports .esports-box01 .intro_area .message_area {
  width: 47%;
  max-width: 600px;
}

#esports .esports-box01 .intro_area {
  align-items: flex-end;
}

#esports .esports-box01 .intro_area .img_area {
  width: 50%;
  max-width: 535px;
}

#esports .esports-box01 .desc01 {
  margin-bottom: 40px;
}

#esports .esports-box01 .img-box {
  position: relative;
  padding: 40px;
  width: 800px;
  margin: 100px auto 0;
}

#esports .esports-box01 .img-box::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #e5e0fe;
  width: 150px;
  height: 150px;
  z-index: -1px;
}

#esports .esports-box01 .img-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #e5e0fe;
  width: 150px;
  height: 150px;
  z-index: -1px;
}

#esports .esports-box01 .img-box ul.flex-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

#esports .esports-box01 .img-box ul li {
  width: 48%;
}

/*------------数字で見るページ追加 20231128-------------*/

@media screen and (max-width: 768px) {
  #numbers .content_wrap .numbers_box {
    margin-bottom: 40px;
  }
}

/*社員保有資格*/
#numbers .numbers_box {
  margin-bottom: 90px;
}

#numbers .skills_list_item dl {
  margin: 0 auto;
  width: 250px;
}

#numbers .skills_list_item dl .lists_number {
  display: flex;
  width: 250px;
}

#numbers .lists_number dt {
  text-align: left;
  width: 200px;
}

#numbers .lists_number_2 {
  display: flex;
  width: 150px;
  margin: 0 auto;
}

#numbers .lists_number_2 dt {
  text-align: left;
  width: 100px;
}

#numbers .lists_number dd,
.lists_number_2 dd {
  text-align: right;
  width: 66px;
}

#numbers dt,
dd {
  font-size: 16px;
  line-height: 1.4;
}

#numbers .numbers_box .list_img_area img {
  margin: 0 auto;
}

/* ITIL文字縮小 */
#numbers dl .lists_number dt span {
  font-size: 13.5px;
}

/* 社員保有資格　注釈*/
#numbers .text_comments_blank .text_comments_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  font-weight: bold;
}

#numbers .text_comments_blank .text_comments_title::before {
  content: "※";
  font-size: 13px;
}

#numbers .text_comments_blank .text_comments {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;

}

#numbers .numbers_box .text_comments_blank {
  margin-bottom: 10px;
}

/* 社員限定　文字左よせ */
#numbers .text_comments_blank .text_comments::before {
  content: "\00a0";
}

/* 会社保有資格 */

#numbers .skills_list .skills_list_item_co {
  text-align: center;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  min-height: inherit;
  padding: 23px 15px 25px;
  width: calc(33.333333% - 20px);
  margin: 10px;
  box-sizing: border-box;
  padding: 24px;
  min-height: 450px;
}

#numbers .skills_list .skills_list_item_co p a {
  text-decoration: none;
}



/* 枠の色修正 */

#numbers .numbers_box .skills_list_area .skills_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -10px;
}

#numbers .skills_list_area .skills_list .skills_list_item {
  text-align: center;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  min-height: inherit;
  padding: 23px 15px 25px;
  border: 8px solid #caeff6;
}

@media screen and (max-width: 768px) {
  #numbers .skills_list_area .skills_list .skills_list_item {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  #numbers .skills_list_area .skills_list .skills_list_item {
    width: calc(100% - 20px);
    min-height: 0;
  }
}

#numbers .skills_list .skills_list_item .list_img_area {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  #numbers .skills_list .skills_list_item .list_img_area {
    margin-bottom: 16px;
  }
}

#numbers .skills_list .skills_list_item .list_title {
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.45;
  text-align: center;
  min-height: 2.9em;
  margin-bottom: 24px;
}

@media screen and (max-width: 480px) {
  #numbers .skills_list .skills_list_item .list_title {
    min-height: 0;
    margin-bottom: 8px;
  }
}


#numbers .skills_list_area .skills_list .skills_list_item .list_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 0;
}

#numbers .skills_list_area .skills_list .skills_list_item .text01 {
  font-size: 16px;
  line-height: 1.4;
}

#numbers .skills_list_area .skills_list .skills_list_item {
  text-align: center;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  min-height: inherit;
  padding: 23px 15px 25px;
  width: calc(33.333333% - 20px);
  margin: 10px;
  box-sizing: border-box;
}

/* 微修正 */

#numbers .skills_list .skills_list_item_co {
  text-align: center;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  min-height: inherit;
  padding: 23px 15px 25px;
  width: calc(33.333333% - 20px);
  margin: 10px;
  box-sizing: border-box;
  padding: 24px;
  padding-top: 0;
  min-height: 450px;
}

#numbers .text {
  margin-bottom: 50px;
}

/* ------レスポンシブ------ */

@media screen and (max-width: 768px) {
  #numbers .content_wrap .numbers_box {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  #numbers .skills_list_area .skills_list .skills_list_item {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  #numbers .skills_list_area .skills_list .skills_list_item {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  #numbers .skills_list_area .skills_list .skills_list_item {
    width: calc(100% - 20px);
    min-height: 0;
  }
}

@media screen and (max-width: 480px) {
  #numbers .skills_list_area .skills_list .skills_list_item .list_img_area {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 480px) {
  #numbers .skills_list_area .skills_list .skills_list_item .list_title {
    min-height: 0;
    margin-bottom: 8px;
  }
}

/*  アニメーション実験1204*/
/* アニメーション実験 */
.animation_1 {
  /* display: none; */
  position: absolute;
  top: 5%;
}

.animation_back2 {
  position: relative;
  width: 100%;
  height: 800px;
}

.animation_2 {
  position: absolute;
  top: 5%;
}


/* 1204 数字で見る在籍人数*/

.count_total {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  padding-bottom: 15px;
}

.count_area {
  position: absolute;
  width: 400px;
  height: 200px;
  left: 0;
  z-index: 1;
}

.count_font1 {
  font-size: 18px;
  font-weight: bold;
  width: 36px;
  line-height: 1.5;
  color: #000;
  text-align: right;
}

.count_font1_l {
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  line-height: 1.5;
  color: #000;
  text-align: left;
}

.count_font2 {
  font-size: 18px;
  font-weight: bold;
  width: 65px;
  line-height: 4.5;
  color: #09348b;
  text-align: right;
}

.count_font2_l {
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  line-height: 4.5;
  color: #09348b;
  text-align: left;
}

.count_box {
  display: flex;
  width: 240px;
  margin-bottom: 10px;
  width: 240px;
}

.count_number1 {
  font-size: 36px;
  color: #000;
  font-weight: bold;
  line-height: 0.5;
  font-style: italic;
  letter-spacing: 2.2px;
}

.count_number2 {
  font-size: 48px;
  color: #09348b;
  font-weight: bold;
  margin-top: 10px;
  line-height: 0.9;
  font-style: italic;
  letter-spacing: 2.2px;
}

.pointer_1 {
  position: absolute;
  /* display: none; */
  left: 94px;
  top: 160px;
  font-size: 30px;
  color: #09348b;
}

.count_box_border {
  display: flex;
  width: 240px;
  margin-bottom: 10px;
  border-top: 1px solid #09348b;
}

.mobile {
  display: none;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  #numbers .count_area {
    left: 6px;
    width: 350px;
  }

  #numbers .animation_1 {
    top: 153px;
  }

  #numbers .pointer_1 {
    left: 134px;
  }

  #numbers .mobile {
    display: block;
  }

  #numbers h1.page_title01 {
    line-height: 44px;
    font-size: 26px;
  }

  #numbers .text {
    font-size: 14px;
  }

  #numbers .skills_list_area .skills_list .skills_list_item .list_title {
    font-size: 18px;
  }

  #numbers .text_comments {
    font-size: 14px;
  }

  .text_comments_title,
  .text_comments {
    font-size: 14px;
  }

  #numbers .text_comments_blank .text_comments,
  #numbers .text_comments_blank .text_comments_title {
    font-size: 14px;
  }

  #numbers .skills_list .skills_list_item_co p {
    font-size: 18px;
  }

  #numbers .numbers_box {
    margin-bottom: 40px;
  }

  #numbers .text {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  #numbers .count_number1 {
    font-size: 22px;
  }

  #numbers .count_number2 {
    font-size: 30px;
  }

  #numbers .count_total {
    font-size: 18px;
  }

  #numbers .count_font1_l {
    font-size: 18px;
    width: 74px;
    line-height: 0.8;
  }

  #numbers .count_font1 {
    font-size: 18px;
    width: 21px;
    line-height: 0.9;
  }

  #numbers .count_font2_l {
    font-size: 18px;
    width: 47px;
    line-height: 3;
  }

  #numbers .count_font2 {
    font-size: 18px;
    width: 23px;
    line-height: 3;
  }

  #numbers .count_box_border {
    width: 176px;
    margin-bottom: 6px;
  }

  #numbers .pointer_1 {
    left: 66px;
    top: 128px;
  }

}


/* 1205微調整 */

.animation_back {
  position: relative;
  width: 100%;
  height: 650px;
}

.animation_1 {
  position: absolute;
  top: 100px;
}

/* style_sp.css */
@media screen and (max-width: 768px) {
  #numbers .animation_back {
    position: relative;
    height: 460px;
  }

  .animation_back2 {
    position: relative;
    height: 570px;
  }

  #numbers .animation_back {
    position: relative;
    height: 530px;
  }
}

@media screen and (max-width: 480px) {
  #numbers .animation_1 {
    position: absolute;
    top: 100px;
  }

  /*  人数情報文字位置調整*/
  #numbers .text {
    margin-bottom: 20px;
  }

  #numbers .animation_back {
    position: relative;
    height: 320px;
  }

  .animation_back2 {
    position: relative;
    height: 320px;
  }
}

#numbers .numbers_text1 {
  font-size: 16px;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Helvetica Neue", sans-serif;
  line-height: 2.1;
  margin: 0;
  position: absolute;
  top: 29.6%;
}

}

@media screen and (max-width: 768px) {
  #numbers .numbers_text1 {
    top: 24.7%;
  }
}

@media screen and (max-width: 480px) {
  #numbers .numbers_text1 {
    font-size: 14px;
    top: 20.4%;
  }
}

/* 社員限定文字位置修正 */
#numbers .text_comments_top {
  margin-top: 20px;
}

/* 会社保有資格　右矢印位置変更 */

.numbers_arrow::before {
  transform: rotate(45deg);
  top: 2px;
  left: 1px;
}

.numbers_arrow::after {
  transform: rotate(-45deg);
  bottom: -2px;
}

/* 会社概要　目次部分追加修正 */
/* .corporation01_list {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 100px;
}

.corporation01_list li {
  margin-right: 36px;
  width: calc(25% - 27px);
  text-align: center;
}

.corporation01_list li img {
  width: 100%;
  margin-bottom: 20px;
} */


/* 2024 0122 採用情報_追加項目 */
#recruit .recruit_contents {
  padding-top: 20px;
}

#recruit .recruit_contents a {
  color: #fff;
  display: block;
  text-align: center;
  background-color: #0e357f;
  line-height: 30px;
  border: 1px solid #0e357f;
  font-size: 60%;
  border-radius: 25px;
  box-sizing: border-box;
  text-decoration: none;
  width: 70%;
  /* height: 36px; */
  margin: 0 auto;
}

#recruit .recruit_contents a img {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

#recruit .recruit_contents_frame .recruit_contents a:hover {
  /* transition: .5s; */
  opacity: 0.8;
}

#recruit .recruit_contets_group {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  width: 90%;
  margin: 30px auto;
  flex-wrap: wrap;
  align-items: stretch;
}

#recruit .recruit_contents_title {
  margin: 0 auto;
}

#recruit .recruit_contents_frame p {
  line-height: 32px;
  font-weight: bold;
  color: #0e357f;
  font-size: 17px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}


#recruit .recruit_contents_frame {
  font-weight: bold;
  color: #0e357f;
  font-size: 24px;
  text-align: center;
  width: 25%;
  height: 150px;
  border: 1px solid #0e357f;
  padding: 15px;
  margin: 5px;
}

#recruit .contents_center {
  padding-top: 20px;
}


/*  2024 0122 アクセスページ追加　 */
#access .access_left {
  float: left;
  width: 33%;
}

#access .access_right iframe {
  width: 100%;
}


#access .access_right {
  float: right;
  width: 63%;
}

#access .access_left .page_title05 {
  margin-bottom: 20px;
}

#access .access_left address {
  margin-bottom: 15px;
  line-height: 2;
}

#access .access_left a {
  color: #083e8e;
}

#access .access_left .print_btn,
#access .access_left .map_btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #666;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  max-width: 280px;
  box-sizing: border-box;
}

#access .access_left .print_btn {
  margin-bottom: 15px;
}

#access .access_left .print_btn:before {
  content: "";
  width: 25px;
  height: 23px;
  display: inline-block;
  background-image: url(../images/sub/print_icon.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
  left: -10px;
}

#access .access_left .map_btn:before {
  content: "";
  width: 18px;
  height: 23px;
  display: inline-block;
  background-image: url(../images/sub/map_icon.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
  left: -10px;
}

/* アクセス　事業所一覧表 */
#access .sp_blank {
  display: none;
}

#access .office_lists {
  padding-top: 50px;
  clear: both;
}

#access .office_lists_layout {
  border: 1.5px solid #cccccc;
  border-left: none;
  border-right: none;
  width: 100%;
  margin-bottom: 50px;
}

#access .office_lists_layout colgroup .w25 {
  width: 20%;
}

#access .office_lists_layout colgroup .w75 {
  width: 80%;
}

#access .office_lists_layout tbody tr {
  width: 100%;
}

#access .office_lists_layout tbody tr th {
  background-color: #f1f1f1;
  text-align-last: left;
  vertical-align: middle;
  padding: 20px 30px;
  width: 20%;
}

#access .office_lists_layout tbody tr td {
  background-color: #fff;
  text-align-last: left;
  vertical-align: middle;
  padding: 20px 30px;
  width: 80%;
}

#access .office_lists_layout tbody tr td p {
  font-size: 18px;
  line-height: 60px;
  width: 80%;
}

#access .office_lists_layout tbody tr th {
  font-size: 18px;
  line-height: 60px;
}

#access .access_map {
  padding-bottom: 100px;
}

#access .access_map img {
  margin: 0 auto;
}

/* ボタンと住所を横並び */
#access .office_lists_address {
  display: flex;
}


/* 表内のグーグルボタン */

#access .google_map_button {
  padding: 15px 0;
  margin-left: 20px;
}

#access .google_map_button a {
  display: block;
  padding-left: 12px;
  color: #184e91;
  font-size: 60%;
  font-weight: bold;
  background: #fff;
  line-height: 34px;
  border: 1.6px solid #184e91;
  position: relative;
  border-radius: 25px;
  box-sizing: border-box;
  text-decoration: none;
  width: 125px;
  height: 34px;
}

#access .google_map_button a:hover {
  color: #fff;
  background: #184e91;
  border: 1.6px solid #184e91;
}

/*  20240122 CTOメッセージ ページ */

#cto_message .cto_text {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 100px;
}

#cto_message .cto_text h2 {
  font-size: 30px;
  margin-bottom: 30px;
  max-width: 650px;
}

/* 20240131 マネージドサービスページ　zabicom 追加修正*/
#zabicom .zabicom_images div img {
  margin: 2em auto;
}

#zabicom .zabicom_images p {
  margin-bottom: 30px;
}

#zabicom .zabicom_movie_link {
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 500px;
}

#zabicom .zabicom_movie_link p.movie_text {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, 0);
}

#zabicom .zm_image1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

#zabicom .zm_image2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
}

#zabicom .zabicom_movie_link .zm_image2:hover {
  opacity: 1;
}

#zabicom .sub_smalltext1 {
  font-size: 12px;
  vertical-align: top;
  color: #555;
}

#zabicom .sub_smalltext2 {
  font-size: 12px;
  margin-top: 10px;
}

#zabicom .zabicom_arrow::before {
  top: 2px;
}

#zabicom .zabicom_arrow::after {
  bottom: -2px;
}

#zabicom .movie_text .link_icon {
  width: 1.4em;
  display: inline-block;
  margin-right: 4px;
  vertical-align: -34px;
}

/* 20240117 フッター修正 */
#footer .ft_privacypolicy_area {
  width: 70%;
  margin: 0 auto;
}

#footer .ft_privacypolicy_area ul {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
}

#footer .ft_privacypolicy_area ul li a {
  color: #fff;
  font-size: 12px;
}

#footer .ft_left_area {
  padding-bottom: 40px;
  border-bottom: solid 0.5px #fff;
}

/* ---------0220 社員育成・研修ページ--------- */

#rec_training .training_list {
  max-width: 90%;
  margin: 0 auto;
}

#rec_training .training_step {
  font-size: 112%;
  font-weight: bold;
  color: #185c9b;
  width: 20%;
}

#rec_training .training_lists {
  /* display: flex;
justify-content: flex-start; */
  margin-bottom: 20px;
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 50px;
  position: relative;
  border-radius: 4px;
}

#rec_training .training_contents {
  padding: 30px 0px;
  padding-right: 10px;
  padding-left: 40px;
  width: 620px;
}

#rec_training .training_flex {
  display: flex;
}

#rec_training .training_contents2 {
  margin-left: 16px;
}

#rec_training .training_contents li {
  margin-bottom: 10px;
}

#rec_training .training_lists::before {
  content: "";
  position: absolute;
  border: 30px solid transparent;
  border-top: 25px solid #fff;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
}

#rec_training .training_lists:last-child::before {
  content: none;
}

#rec_training .training_img1,
#rec_training .training_img2,
#rec_training .training_img3 {
  margin: auto;
  width: 100%;
  max-width: 300px;
}

#rec_training .training_group {
  display: flex;
  justify-content: space-between;
}

#rec_training .training_flex {
  display: flex;
}

#rec_training .training_flex div {
  margin-right: 50px;
}

#rec_training .training_contents .training_flex li::before,
.training_contents_title::before {
  content: '⚫︎';
}

#rec_training .rec_skillup {
  margin: 0 auto;
  font-size: 112%;
  font-weight: bold;
  color: #185c9b;
  width: 30%;
  margin-top: 50px;
  text-align: center;
}

#rec_training .human_resources02_inner {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#rec_training .human_resources02_inner div.human_resources02_inner_div_new {
  width: 45%;
}

#rec_training .hm_ttl02_ft {
  margin-bottom: 15px;
}

#rec_training .sp_blank {
  display: none;
}

#rec_training .hm_ttl02_ft_new {
  max-width: 480px;
  background: #dfedf8;
  padding: 14px 10px 15px;
  box-sizing: border-box;
  height: 360px;
  margin: 0 3px;
}

#rec_training h3.hm_ttl02 {
  border-bottom: 2px solid #185c9b;
  font-size: 112%;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #185c9b;
}


/* 二段目修正 */
#rec_training .human_resources02_inner_div {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

#rec_training .hm_ttl02_ft {
  width: 100%;
  max-width: 330px;
  background: #dfedf8;
  padding: 14px 10px 15px;
  box-sizing: border-box;
  margin: 6px 3px
}

#rec_training .human_resources02_inner_2 {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

/*  ↑ここまで*/