@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
 */
@import url(https://fonts.googleapis.com/css?family=Cinzel);

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

/* ==========================================================================
	Foundation - reset/base...
	========================================================================== */
/* Reset
   ----------------------------------------------------------------- */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
select,
textarea,
p,
pre,
blockquote,
span,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  text-align: left;
  height: 100%;
}

body {
  text-align: left;
  height: 100%;
  color: #000;
  background-color: #FFF;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-size: 100%;
  font-weight: normal;
}

dl,
ul,
ol {
  text-indent: 0;
}

li {
  list-style: none;
}

a {
  outline: none;
}

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

input,
textarea {
  background: #FFF;
  padding: 6px;
  border: 1px solid #CCC;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #666;
  margin-bottom: 7px;
}

select {
  background: #ffffff;
  padding: 2px;
}

input:focus,
textarea:focus {
  background-color: #f7f8f8;
  outline: none;
}

/*   [Link scheme]
	----------------------------------------------------------------- */
a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: underline;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

/*a:link, a:visited {	color: #;}
a:hover, a:active {	color: ;}*/
.nonhover a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha( opacity=100)";
}

.soon {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/* Base
	----------------------------------------------------------------- */
body {
  font-family: "Meiryo UI", "メイリオ", Meiryo, Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-size: 10.5pt;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  *font-size: 12pt;
  letter-spacing: 0.1em;
  *font-size: 9.2pt;
  letter-spacing: 0em;
  -webkit-text-size-adjust: 100%;
}

select,
input,
textarea,
button {
  font: 14px/1.5em "Meiryo UI", "メイリオ", Meiryo, Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  *font-size: 9.2pt;
}

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

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

address,
th {
  font-style: normal;
  font-weight: normal;
}

em,
strong {
  font-style: normal;
  font-weight: bold;
}

@-moz-document url-prefix() {
  body {
    font-style: normal;
    font-variant: normal;
    font-size: 12px;
    line-height: 1.8em;
    letter-spacing: 0.1em;
  }
}

body {
  width: 100%;
  background: #FFFFFF;
}

/* ==========================================================================
	Layout - header/main/sidebar/footer...
	========================================================================== */
/* Header
 ---------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  z-index: 100000;
  background: #fff;
  top: 0;
  left: 0;
}

.hd_inner {
  width: 100%;
  margin: -3px auto;
  display: block;
  line-height: 70px;
  position: relative;
}

.hd_logo_area {
  width: calc(100% - 71px);
  line-height: 70px;
}

.hd_logo_area a>img {
  display: inline;
  width: 100%;
  margin-left: 5px;
  vertical-align: middle;
  max-width: 300px;
}

.hd_logo_area p {
  display: none;
  font-family: Helvetica, Arial, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.hd_logo_area p>span {
  display: block;
  font-size: 11px;
  color: #555555;
  line-height: 1;
}

.hd_inf_area {
  position: absolute;
  top: 37px;
  right: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  display: none;
  justify-content: space-between;
}

.hd_inf_area>dl {
  display: table;
  width: auto;
}

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

.hd_inf_area>dl>dt>.hd_search {
  background: #e5e2dc;
  border-radius: 15px;
  font-size: 12px;
  color: #777777;
  border: none;
  width: 200px;
  height: 30px;
  line-height: 30px;
  padding-left: 20px;
  box-sizing: border-box;
}

.hd_inf_area>dl>dd {
  padding-left: 6px;
}

.hd_inf_area>dl>dd>a {
  display: block;
  color: #fff;
  padding: 0 18px;
  background: #1575b5;
  font-size: 12px;
  display: block;
  border-radius: 15px;
  line-height: 30px;
  box-sizing: border-box;
}

.hd_contact {
  display: block;
  margin-left: 19px;
}

.hd_contact>a {
  background: #333333;
  color: #fff;
  text-align: center;
  height: 30px;
  line-height: 30px;
  width: 136px;
  font-size: 14px;
  display: block;
  border-radius: 15px;
  box-sizing: border-box;
}

/* Main
 ---------------------------------------------------------------*/
#main {
  width: 100%;
  display: block;
  top: 70px;
  overflow: hidden;
  position: relative;
  padding-bottom: 104px;
}

.recruit_area .main_ttl a {
  color: #555;
  text-decoration: none;
}

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

.ft_inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 20px;
}

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

.ft_left_area {
  display: block;
  width: 100%;
}

.ft_left_area>ul {
  display: inline-block;
  overflow: hidden;
  width: auto;
  margin: 0 auto;
}

.ft_left_area>ul>li {
  float: left;
  padding: 0 20px;
}

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

.copyright_area {
  width: 100%;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.copyright_area .copy {
  text-align: center;
  margin-top: 16px;
  font-size: 80%;
}

.copyright_area_inner {
  display: block;
  max-width: 1100px;
  align-items: center;
  margin: 0 auto;
}

.cp_left,
.cp_right {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.cp_left {
  text-align: center;
}

.cp_left .logo {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.cp_left ul {
  display: inline-block;
  overflow: hidden;
}

.cp_left ul li {
  float: left;
  line-height: 1;
  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_left>p {
  line-height: 1;
  font-size: 68%;
  color: #353535;
}

.sp_copyright {
  font-size: 80%;
  text-align: center;
  padding: 20px 0;
}

.cp_right .docomo_logo {
  max-width: 120px;
  display: block;
  margin: 0 auto;
}

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

/* ==========================================================================
   Object [ component / project / utility ]
   ========================================================================== */
/* Component
   ----------------------------------------------------------------- */
/*ドロップダウンメニュー*/
nav>ul>li.hover>ul.hover {
  display: block;
}

nav>ul>li.hover>ul.hover>li {
  transition: 0.4s;
  border: 0;
}

nav ul li a {
  font-family: "meiryo";
}

.menu-trigger {
  padding-top: 12px;
  position: absolute;
  top: 0;
  right: 5px;
  width: 50px;
  box-sizing: border-box;
  text-align: center;
}

.menu-trigger img {
  /*margin: 36px auto 0;*/
  /*position: absolute;
  top: 12px;
  right: 11px;
  display: block;*/
  width: 30px;
  /*height: auto;*/
}

.menu-trigger.active+nav>ul {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.menu-trigger.active+nav>ul>li {
  width: 100%;
  line-height: 40px;
  box-sizing: border-box;
}

.menu-trigger.active+nav {
  display: block;
  position: fixed;
  width: 100%;
  top: 68px;
  z-index: 1000;
}

.menu-trigger.active+nav>ul {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.menu-trigger.active+nav>ul>li {
  width: 100%;
  line-height: 50px;
  position: relative;
  border-bottom: 1px solid #fff;
  background: rgba(25, 78, 146, 0.9);
  box-sizing: border-box;
}

.menu-trigger.active+nav>ul>li>a {
  color: #fff !important;
  width: 100%;
  padding-left: 25px;
  text-align: left;
  display: block;
  position: relative;
  box-sizing: border-box;
  font-family: "Meiryo UI", "Meiryo", "メイリオ", sans-serif;
}

.menu-trigger+nav {
  display: none;
}

nav>ul>li>ul {
  display: block;
  padding: 10px 0;
  background: #0a639d;
  position: relative;
}

nav>ul>li>ul>li {
  line-height: 28px;
  position: relative;
}

nav>ul>li>ul>li>a {
  color: #fff !important;
  width: 100%;
  line-height: 40px;
  display: block;
  position: relative;
  box-sizing: border-box;
}

.menu-trigger.active+nav>ul>li>ul,
.menu-trigger img.close_sp_menu {
  display: none;
}

.menu-trigger.active img.close_sp_menu {
  display: inline-block;
}

.menu-trigger.active img.open_sp_menu {
  display: none;
}

/*
.menu-trigger.active img {
    display: none;
}*/
/*
.menu-trigger.active:after {
    position: absolute;
    content: url(../images/top/menu_btn_close.png);
    width: 100%;
    height: auto;
    right: -10px;
    top: 9px;
}*/
nav {
  line-height: 60px;
  height: 95px;
  width: 100%;
  display: block;
  position: relative;
  margin-top: 2px;
  z-index: 2000;
}

nav>ul {
  display: block;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
}

nav>ul>li {
  text-align: center;
  width: 100%;
  background: url(../images/top/navi_border.png) no-repeat right bottom;
}

nav>ul>li:last-child {
  background: none;
}

nav>ul>li>a {
  display: block;
  text-align: center;
  font-size: 97%;
  color: #353535;
  font-weight: normal;
  position: relative;
}

nav>ul>li>a:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -6px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/* Project
  ------------------------------------------------------------------- */
/*
*top
**/
#slider {
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

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

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

  #slider ul li {
    height: 247px;
  }

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

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

  #slider p.mv_img_tttl {
    position: absolute;
    left: 4%;
    top: 16.5%;
    color: #194e92;
    line-height: 1.4;
    text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.8), -5px -5px 15px rgba(194, 214, 238, 0.8);
    font-size: 220%;
    font-weight: bold;
    width: 70%;
  }

  #slider .mv_txt {
    position: absolute;
    left: 4.1%;
    top: 25%;
    font-size: 87%;
    text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
    color: #fff;
    line-height: 1.4;
    font-weight: normal;
  }

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

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

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

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

  #slider p.mv_img_tttl {
    position: absolute;
    left: 4%;
    top: 10.5%;
    color: #194e92;
    line-height: 1.4;
    text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.8), -5px -5px 15px rgba(194, 214, 238, 0.8);
    font-size: 180%;
    font-weight: bold;
    width: 80%;
  }

  #slider .mv_txt {
    position: absolute;
    left: 4.1%;
    top: 19%;
    font-size: 87%;
    text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
    color: #fff;
    line-height: 1.4;
    font-weight: normal;
  }
}

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

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

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

  #slider p.mv_img_tttl {
    position: absolute;
    left: 4%;
    top: 7.5%;
    color: #194e92;
    line-height: 1.4;
    text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.8), -5px -5px 15px rgba(194, 214, 238, 0.8);
    font-size: 160%;
    font-weight: bold;
  }

  #slider .mv_txt {
    position: absolute;
    left: 4.1%;
    top: 14%;
    font-size: 87%;
    text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
    color: #fff;
    line-height: 1.4;
    font-weight: normal;
  }
}

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

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

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

  #slider p.mv_img_tttl {
    position: absolute;
    /*left: 4%;*/
    left: 0;
    width: 100%;
    /*top: 4.5%;*/
    top: 0;
    color: #194e92;
    text-shadow: 5px 5px 15px rgba(194, 214, 238, 0.8), -5px -5px 15px rgba(194, 214, 238, 0.8);
    font-size: 120%;
    font-weight: bold;
  }

  #slider .mv_txt {
    position: absolute;
    left: 4.1%;
    top: 9%;
    font-size: 87%;
    text-shadow: 3px 3px 10px rgba(116, 117, 116, 0.38);
    color: #fff;
    line-height: 1.4;
    font-weight: normal;
  }
}

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

.main_ttl {
  text-align: center;
  display: block;
  font-size: 131%;
  color: #555555;
  margin-bottom: 20px !important;
  padding-top: 20px;
}

.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;
  width: 100%;
  box-sizing: border-box;
}

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

.top_carousel .item a:hover {
  text-decoration: none;
}

.owl-buttons .owl-prev {
  background: url(../images/top/carousel_prev.gif) no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  left: 0px !important;
  z-index: 100000;
}

.owl-buttons .owl-next {
  background: url(../images/top/carousel_next.gif) no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 0 !important;
  z-index: 100000;
}

/*slider*/
.slider {
  /*background: url(../images/top/slider_bg.png) no-repeat left center;
  background-size: cover;
  text-align:center;*/
  padding: 0;
}

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

dl.inf_list.last {
  border-bottom: none;
}

dl.inf_list>dt,
dl.inf_list>dd {
  float: left;
}

dl.inf_list>dt {
  width: 50%;
  float: left;
  clear: left;
}

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

dl.inf_list>dd {
  float: right;
  clear: right;
}

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

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

dl.inf_list>dd.dd_last {
  float: left;
  clear: left;
  text-align: left;
}

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

/*
.top_con02{
	width: 100%;
	padding: 65px 0;
	background: url(../images/top/top_content02_bg.png) no-repeat left top;
	background-size: cover;
}
.top_con02_inner{
	display: block;
	max-width: 1100px;
	margin: 0 auto;
	background-size: cover;
}
.top_con02_inner p{
	font-size: 131%;
	color: #353535;
	margin-bottom: 10px;
}
.top_con02_inner .more_news{
	background: #D9D9D9;
	font-size: 120%;
	color: #353535;
	width: 140px;
	line-height: 36px;
	margin: 27px auto 0;
	display: block;
	text-align: center;
}
*/
.news_area {
  margin: 16vw 0;
}

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

.news_area .inner .news_head {
  margin-bottom: 30px;
}

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

.news_area .inner .news_head .archive_link {
  display: flex;
  flex-wrap: wrap;
  margin: 5vw 0;
}

.news_area .inner .news_head .archive_link li {
  position: relative;
  color: #194e92;
  vertical-align: middle;
  text-decoration: none;
  font-size: 3.5vw;
  padding-right: 4vw;
  margin-right: 5vw;
}

.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: 3.5vw;
  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: none !important;
}

/*----------
/* Utility
   ----------------------------------------------------------------- */
/**
 * Font & text
 */
/* フォントサイズ */
.u-text08 {
  font-size: 50%;
}

/*8px*/
.u-text09 {
  font-size: 68%;
}

/*9px 以下同様*/
.u-text10 {
  font-size: 77%;
}

.u-text11 {
  font-size: 85%;
}

.u-text12 {
  font-size: 93%;
}

.u-text13 {
  font-size: 100%;
}

.u-text14 {
  font-size: 108%;
}

.u-text15 {
  font-size: 116%;
}

.u-text16 {
  font-size: 123.1%;
}

.u-text17 {
  font-size: 131%;
}

.u-text18 {
  font-size: 138.5%;
}

.u-text19 {
  font-size: 146.5%;
}

.u-text20 {
  font-size: 153.9%;
}

.u-text21 {
  font-size: 161.6%;
}

.u-text22 {
  font-size: 167%;
}

.u-text23 {
  font-size: 174%;
}

.u-text24 {
  font-size: 182%;
}

.u-text25 {
  font-size: 189%;
}

.u-text26 {
  font-size: 197%;
}

/* フォントカラー */
.u-red {
  color: #8c0000;
}

.u-white {
  color: #fff;
}

.u-yellow {
  color: #ff0;
}

.u-green {
  color: #00664c;
}

.u-gray {
  color: #aaaaaa;
}

.u-ash {
  color: #20404f;
}

.u-orange {
  color: #f28762;
}

.u-blue {
  color: #002040;
}

.u-black {
  color: #000;
}

/* フォント太さ */
.u-bold {
  font-weight: bold;
}

/* テキスト配置 */
.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

/* 行間 */
.u-lh15 {
  line-height: 1.5;
}

.u-lh20 {
  line-height: 2;
}

/**
 * Margin $ Padding
 */
/* マージン */
.u-mt0 {
  margin-top: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr25 {
  margin-right: 25px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml25 {
  margin-left: 25px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-m0auto {
  margin: 0 auto;
}

/* パディング */
.u-pt10 {
  padding-top: 10px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl50 {
  padding-left: 50px;
}

/**
* Float
*/
.u-fll {
  float: left;
}

.u-flr {
  float: right;
}

/**
* Others
*/
.u-w100per {
  width: 100%;
}

.u-ofh {
  overflow: hidden;
}

.u-clear {
  clear: both;
}

.u-block {
  display: block;
}

.u-inlineblock {
  display: inline-block !important;
}

.u-bbox {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.current_area {
  background-color: #f5f5f5;
  margin-bottom: 50px;
}

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

#common_page nav>ul {
  box-shadow: none;
}

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

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

.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: 8px;
  color: #fff;
}

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

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

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

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

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

.cloud01_left {
  float: none;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

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

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

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

.page_title02 {
  padding-bottom: 16px;
  font-size: 19px;
  text-align: center;
  border-bottom: 1px solid #083e8e;
  color: #083e8e;
  margin-bottom: 24px;
}

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

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

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

.page_title03 {
  color: #014099;
  font-size: 19px;
  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: none;
  width: 100%;
  margin-right: 0;
  background-color: #083d8e;
  color: #fff;
  padding: 20px 40px;
  box-sizing: border-box;
  height: auto;
  position: relative;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 30px;
}

.cloud03_flow li:after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 22.5px 0 22.5px;
  border-color: #083d8e transparent transparent transparent;
  position: absolute;
  bottom: -27px;
  right: 0;
  left: 0;
  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;
}

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

.cloud04_left {
  width: 100%;
  max-width: 100%;
  float: none;
  text-align: center;
  margin-bottom: 15px;
}

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

.cloud04_right {
  width: 100%;
  max-width: 100%;
  float: none;
  text-align: center;
  margin-bottom: 15px;
}

.cloud04_right:after {
  display: block;
  content: "";
  clear: both;
}

.cloud04_right img {
  width: 48.5%;
  float: left;
}

.cloud04_right img:nth-of-type(2n) {
  float: right;
}

.cloud04_right img:first-of-type {
  /*margin-bottom: 22px;*/
  float: none;
}

.cloud04_photo {
  margin-bottom: 15px;
}

.cloud04_photo+p {
  font-size: 13px;
  margin-bottom: 50px;
}

.voice04_left,
.voice04_right {
  width: 100%;
  float: none;
  margin: 0 auto 20px;
}

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

.bg_w {
  background-color: #fff;
}

.m10 {
  margin-bottom: 10px;
}

.m20 {
  margin-bottom: 20px;
}

.m30 {
  margin-bottom: 30px;
}

.m40 {
  margin-bottom: 40px;
}

.m50 {
  margin-bottom: 50px;
}

.m60 {
  margin-bottom: 60px;
}

.m70 {
  margin-bottom: 70px;
}

.m80 {
  margin-bottom: 80px;
}

.m90 {
  margin-bottom: 90px;
}

.m100 {
  margin-bottom: 100px;
}

.m110 {
  margin-bottom: 110px;
}

.m120 {
  margin-bottom: 120px;
}

.m130 {
  margin-bottom: 130px;
}

.m140 {
  margin-bottom: 140px;
}

.m150 {
  margin-bottom: 150px;
}

.m160 {
  margin-bottom: 160px;
}

.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: left;
  width: 48.5%;
  margin-right: 3%;
  padding: 15px;
  box-sizing: border-box;
  border: 2px solid #083d8e;
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
}

.cloud03_list_sub>li:nth-of-type(2n) {
  margin-right: 0;
}

.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 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 19px;
  font-weight: bold;
}

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

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

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

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

.software03_left {
  float: none;
  width: 100%;
  margin-bottom: 25px;
}

.software03_right {
  float: none;
  width: 100%;
}

.software04_img {
  margin-bottom: 50px;
}

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

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

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

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

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

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

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

.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: left;
  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 table {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

/* .corporation01_list li {
  float: left;
  margin-right: 0;
  width: 48%;
  text-align: center;
} */

/* .corporation01_list li:nth-of-type(2n) {
  float: right;
  margin-right: 0;
  width: 48%;
} */

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

.corporation_box04 ul li {
  padding: 20px 20px;
  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;
  text-align: center;
}

.corporation05_img.d_inline_b img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 20px;
}

.corporation05_left {
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

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

.corporation05_right {
  float: none;
  width: 100%;
}

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

.corporation05_list li {
  float: left;
  width: 48%;
  /*margin-right: 5.333%;*/
  box-sizing: border-box;
  margin-bottom: 25px;
}

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

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

.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;
  box-sizing: border-box;
}

.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;
  display: none;
}

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

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

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

.csr_text01 {
  margin-bottom: 50px;
}

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

.csr01_left {
  float: none;
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}

.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: none;
  width: 100%;
  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: none;
  width: 100%;
  margin-bottom: 15px;
}

.csr02_right {
  float: none;
  width: 100%;
  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;
  display: block;
}

.csr05_inner address {
  line-height: 1.5;
}

.csr05_mail {
  margin-bottom: 15px;
}

.m25 {
  margin-bottom: 25px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.infra01_left {
  float: none;
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.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: none;
  width: 100%;
  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: 700px;
  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%;
  box-sizing: border-box;
}

.sec_address_left {
  float: none;
  width: 100%;
  text-align: center;
}

.sec_address_right {
  float: none;
  width: 100%;
}

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

.security_btn {
  width: 100%;
  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: 15px;
  margin-bottom: 25px;
}

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

.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: 15px;
}

.security03_list li {
  list-style: disc;
}

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

.dis_b {
  display: block;
}

.text_c {
  text-align: center;
}

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

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

.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: 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: none;
  width: 100%;
}

.access_left iframe {
  width: 100%;
}

.access_right {
  float: none;
  width: 100%;
  margin-bottom: 15px;
}

.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;
  margin-left: auto;
  margin-right: auto;
}

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

.greeting_left {
  width: 100%;
  float: none;
}

.greeting_right {
  width: 290px;
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.greeting_right img {
  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(3),
.corporation01_list li:nth-of-type(5) {
  clear: both;
} */

a {
  color: #083e8e;
}

.current_box li {
  float: left;
  list-style: none;
  padding: 0px 5px;
  color: #235697;
}

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

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

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

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

.current_box .arrow img {
  top: 7px;
  position: relative;
}

/*----------170907----------*/
.megamenu_outer,
.pc_disp {
  display: none;
}

/*----------190313----------*/
.sp_disp {
  display: block;
}

.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: 15vw 0 0 0;
  margin-bottom: 15vw;
}

.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: 10vw;
  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: 4vw;
  margin: 20px 0 0 0;
  font-weight: bold;
  display: block;
}

.top_new_box01 .top_new_box01_detail p {
  margin-bottom: 15vw;
}

.top_new01_list {
  width: 100%;
  margin: 0 auto;
}

.top_new01_list li {
  width: 100%;
  height: 40vw;
  position: relative;
  margin-right: 2px;
  margin-bottom: 2px;
}

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

.top_new01_list li a {
  display: block;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

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

.top_new01_list li.new01_list01 {
  background-image: url(../images/top/new01_list01_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

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

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

.top_new01_list li.new01_list04 {
  background-image: url(../images/top/new01_list04_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

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

.top_new01_link_title_en {
  font-size: 4vw;
}

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

.top_new_box02 {
  margin-bottom: 15vw;
}

.top_new_box02 .top_new_box02_detail {
  margin: 0 auto;
  padding: 0 20px;
}

.top_new_box02 .top_new_box02_detail h2 {
  font-family: "Lato", sans-serif;
  font-size: 10vw;
  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: 4vw;
  margin: 20px 0 0 0;
  font-weight: bold;
  display: block;
}

.top_new_box02 .top_new_box02_detail p {
  margin-bottom: 15vw;
}

.top_new02_list {
  padding: 20px 10px 0 10px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background-image: url(../images/top/top_new02_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.top_new02_list li {
  width: calc(50% - 10px);
  text-align: center;
  padding: 0 5px;
  margin-bottom: 5vw;
}

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

.top_new02_list li img {
  width: 100%;
  margin-bottom: 1vw;
}

.recruit_area {
  margin-bottom: 5vw;
}

.recruit_area .recruit_area_detail {
  background: #194e92;
  color: #fff;
  padding: 20px;
}

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

.recruit_area .recruit_area_detail 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 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 2px #fff;
  width: 55px;
  height: 2px;
}

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

.recruit_area ul {
  margin-top: 20px;
}

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

.recruit_area 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: 100%;
}

.recruit_area .recruit_image img {
  width: 100%;
}

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

.title_square:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  margin: auto;
  z-index: -5;
  transform: initial;
  width: 100%;
  height: 100px;
  top: 15px;
}

/*----------170907_e----------*/
.business_link {
  display: block;
  padding: 15px;
  background-color: #80a0cc;
  color: #fff;
  position: relative;
  margin-bottom: 25px;
  padding-right: 60px;
  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: 10px !important;
}

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

.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;
  margin-left: auto;
  margin-right: auto;
}

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

.video-container iframe {
  width: 100%;
  height: 300px;
}

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

.csr_anc {
  margin: -20px 0 80px;
  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;
}

.csr_anc li {
  width: 32%;
  font-size: 87.5%;
  line-height: 1.5;
  text-align: left;
  border: 1px solid #154894;
  box-shadow: 0 6px 18px 0 rgba(53, 53, 53, 0.24);
}

.csr_anc li:nth-child(n+4) {
  margin-top: 10px;
}

.csr_anc li a {
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: #fff;
  background: #154894;
  padding: 5px 12px;
  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: flex-start;
  box-sizing: border-box;
}

.csr_anc li a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 7px;
  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.3;
  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 {
  margin-bottom: 15px;
}

#sec02 .csr01_right h4 a {
  width: 100%;
  font-size: 100%;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 5px 0 3px;
  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: 1px 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: 1px 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: 1px 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: 1px 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;
}

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

#sec03 .page_title04,
#sec04 .page_title04,
#sec05 .page_title04,
#sec06 .page_title04 {
  margin-bottom: 15px;
}

.csr_sdgs_ico {
  height: 36px;
  margin-bottom: 35px;
}

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

.csr05_sports h4 {
  font-weight: bold;
}

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

.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: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.csr05_circle_list li figure {
  margin: 0;
  padding: 0;
}

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

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

[id^=sec0] {
  margin-top: -64px;
  padding-top: 64px;
}

.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: 100%;
  text-align: center;
}

.network_list li:not(:last-of-type) {
  margin-bottom: 25px;
}

.network_list li figure {
  margin: 0;
  padding: 0;
}

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

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

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

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

.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: 150vw;
  color: #fff;
  background: url(../images/professionals/professionals_list_mv_sp.jpg) center top no-repeat;
  background-size: cover;
  padding: 0 0 10vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
}

.professionals_list_mv_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 30, 70, 0.8);
  padding: 6.4vw 3.7333333333vw 8.5333333333vw;
  width: 74.6666666667vw;
  box-sizing: border-box;
  margin-top: 50vw;
}

.professionals_list_mv_title {
  font-size: 7.5vw;
  font-weight: bold;
  margin-bottom: 3.125vw;
}

.professionals_list_mv_text {
  font-size: 2.75vw;
  line-height: 1.5;
  color: #fff;
}

.professionals_list_mv_text br.spbr {
  display: block;
}

.professionals_list_mv_text br.spbr_clear {
  display: none;
}

.professionals_list_content,
.professionals_content {
  padding: 0;
}

.professionals_list_content .current_box,
.professionals_content .current_box {
  display: none;
}

.professionals_mv {
  height: 150vw;
  color: #fff;
  background: url(../images/professionals/GLOBAL_mv_sp.jpg) center top no-repeat;
  background-size: cover;
  padding: 0 8.75vw 10vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

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

.professionals_mv_title {
  font-size: 9.25vw;
  font-weight: bold;
  text-shadow: 0 0 18px #080808;
  margin-top: -12vw;
  margin-bottom: 6.4vw;
}

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

.professionals_list li+li {
  margin-top: 50px;
}

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

.professionals_list_thumb {
  margin-bottom: 20px;
}

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

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

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

.professionals_list_intro {
  font-size: 78.5714%;
}

.professionals_list_name {
  font-size: 114.2857%;
}

.professionals_list li+li {
  margin-top: 50px;
}

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

.professionals_list_thumb {
  margin-bottom: 20px;
}

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

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

.professionals_list_intro {
  font-size: 78.5714%;
}

.professionals_list_name {
  font-size: 114.2857%;
}

.professionals_detail_mv {
  position: relative;
}

.professionals_detail_mv_img img {
  width: 100%;
}

.professionals_detail_mv_inr {
  width: 92.5%;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 17.25vw;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  box-sizing: border-box;
}

.professionals_detail_mv_archive {
  font-size: 6.5vw;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 16px rgba(8, 8, 8, 0.35);
  margin-bottom: 2.5vw;
}

.professionals_detail_mv_title {
  font-size: 6.5vw;
  font-weight: bold;
  margin-bottom: 2.5vw;
}

.professionals_detail_mv_title span {
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  background: #104099;
  padding: 3px 10px;
}

.professionals_detail_mv_title br+span {
  margin-top: 1.25vw;
}

.professionals_detail_mv_name {
  font-size: 4.25vw;
}

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

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

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

.professionals_current .current_box {
  display: none;
}

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

.professionals_detail_cont01_img {
  width: 77.5%;
  margin: 35px 0 0 auto;
}

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

.professionals_detail_cont01_inr {
  color: #000;
  display: flex;
  flex-direction: column-reverse;
}

.professionals_detail_cont01_inr>div {
  padding: 0 3.25%;
}

.professionals_detail_cont01_title,
.professionals_detail_cont02_title {
  font-size: 150%;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 15px;
}

.professionals_detail_cont01_text p,
.professionals_detail_cont02_text p {
  font-size: 92.8571%;
  line-height: 1.7692;
}

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

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

.professionals_detail_cont02:after {
  content: "";
  width: 625px;
  height: 240px;
  background: url(../images/professionals/professionals_detail_cont02_bg.jpg) left bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 35px;
  z-index: -1;
  display: inline-block;
}

.professionals_detail_cont02_inr {
  color: #000;
}

.professionals_detail_cont02_inr>div {
  background: #fff;
  padding: 60px 3.25% 170px;
}

.professionals_detail_cont02_img {
  width: 77.5%;
  margin: -132px 3.25% 0 auto;
}

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

.professionals_detail_profile {
  margin-top: 55px;
}

.professionals_detail_profile_inr {
  color: #000;
}

.professionals_detail_profile_img {
  width: 52.093%;
  margin: 0 auto;
}

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

.professionals_detail_profile_inr {
  width: 80.625%;
  margin: 0 auto;
}

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

.professionals_detail_profile_title {
  font-size: 192.8571%;
  font-weight: bold;
  margin-bottom: 10px;
}

.professionals_detail_profile_name {
  font-size: 114.2857%;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.professionals_detail_profile_text {
  font-size: 85.7143%;
  line-height: 1.8333;
}

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

/* 人材紹介 */
main.member #content_area {
  width: 100%;
}

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

.member .current_area {
  display: none;
}

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

main.member .member_mv #content_area {
  width: 75%;
  margin: 17% 0 0;
  padding: 0 3%;
  box-sizing: border-box;
}

.member_mv_ttl {
  font-size: 7.5vw;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3.125vw;
}

.member_mv_txt {
  font-size: 2.75vw;
  line-height: 1.5;
  color: #fff;
}

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

.member_list {
  width: 90%;
  margin: 0 auto;
}

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

.member_list .member_list_btn {
  margin-bottom: 24px;
}

.member_list_thumb {
  text-align: center;
  margin-top: 30px;
}

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

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

.member_list_ttl02 {
  color: #eb6c64;
}

.member_list_btn a {
  margin-top: 30px;
  margin-right: auto;
}

/* 未来Working */
.professionals_mv.future_mv {
  text-align: left;
  background-image: url(../images/future/future_mv_sp_202503.jpg);
  padding: 13.75vw 0 0;
  justify-content: center;
}

.professionals_mv.future_mv #content_area {
  width: 87.8%;
}

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

.future_detail_mv:before {
  top: 0;
}

.future_detail_mv:after {
  bottom: 0;
}

.future_mv .professionals_mv_title {
  text-align: center;
  margin-bottom: 0;
}

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

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

.future_mv .professionals_mv_lead {
  font-size: 3vw;
  line-height: 1.8;
  color: #333;
  text-shadow: none;
}

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

.future_lead {
  color: #000;
  margin-bottom: 30px;
}

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

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

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

.future_list li a {
  color: inherit;
}

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

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

.future_list_title {
  font-size: 71.4286%;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
}

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

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

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

.future_list_inr {
  cursor: pointer;
}

.future_list_pop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 3px;
  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 {
  background: #fff;
  padding: 55px 35px 50px;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.18);
  position: relative;
  box-sizing: border-box;
}

.future_list_pop_inr:before,
.future_list_pop_inr:after {
  content: "";
  width: 100%;
  height: 5px;
  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: 15px;
  right: 15px;
  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: 64.1667%;
  text-align: center;
  margin: 0 auto 30px;
}

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

.future_list_pop_inr>div {
  flex: 1;
}

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

.future_list_pop_intro {
  font-size: 78.5714%;
}

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

.future_list_pop_txt {
  font-size: 92.8571%;
  line-height: 1.7692;
  margin-top: 10px;
}

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

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

.future_active_ttl {
  font-size: 128.5714%;
  font-weight: bold;
  color: #555;
  position: absolute;
  top: -52px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.future_active_ttl img {
  width: 46.6216%;
  margin-right: 8.1081%;
}

.future_active_list li {
  color: #333;
}

.future_active_thumb {
  text-align: center;
  margin-top: 15px;
}

.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 .professionals_detail_mv_archive {
  line-height: 1.5;
  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_sp.jpg);
}

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

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

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

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

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

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

.charter_sec {
  margin-top: 60px;
}

.charter_sec_ttl {
  font-size: 36px;
  line-height: 1;
  color: #104099;
  margin-bottom: 20px;
}

.charter_sec_img {
  text-align: center;
}

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

.charter_sec_lead {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
}

.charter_sec_list li {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.9;
  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;
}

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

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

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

@media screen and (max-width: 768px) {
  .recruit_top .message_area .text br {
    display: none;
  }
}

.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: "■";
}

.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: 10vw;
  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: 4vw;
  margin: 20px 0 0 0;
  font-weight: bold;
  display: block;
}

.top_new_box03 .top_new_box03_detail p {
  margin-bottom: 60px;
}

.top_new_box03 .link-youtube {
  display: flex;
  justify-content: center;
  background: #f2fbfb;
  padding: 0 20px;
}

/*健康経営ページ追加 20220910*/
#health .fsize20 {
  font-size: 18px;
}

#health section {
  margin-bottom: 40px;
}

#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: 16px;
}

#health .frame_blue_inner {
  background-color: #fff;
  padding: 16px;
}

#health .frame_gray {
  background-color: #f5f5f5;
  margin-bottom: 40px;
}

#health .health-box01 .flex-left {
  width: 100%;
  margin-bottom: 10px;
}

#health .health-box01 .flex-right {
  width: 100%;
}

#health .health-box01 .flex-left .name {
  font-size: 18px;
  text-align: right;
  font-weight: bold;
  margin: 20px 0 10px;
}

#health .health-box03 {
  margin-bottom: 20px;
}

#health .health-box03 .sec03-box01 {
  background: #fff;
  padding: 20px 16px;
  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: 18px;
  font-style: italic;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #004496;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

#health .health-box03 .sec03-box01 .en-text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  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: 24px;
  font-weight: bold;
  color: #323232;
  line-height: 1.7777777778;
  margin-bottom: 15px;
}

#health .health-box03 .sec03-box01 .flex-left {
  width: 100%;
  margin-bottom: 20px;
}

#health .health-box03 .efforts_number_list .efforts_number_list_item {
  padding: 0 0 0 88px;
}

#health .health-box03 .efforts_number_list .efforts_number_list_item:nth-of-type(2) {
  padding: 24px 0 24px 88px;
  margin-top: 24px;
}

#health .efforts_list_area .efforts_list .efforts_list_item .list_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

#health .health-box04 .efforts_list_area .efforts_list .efforts_list_item {
  text-align: center;
  min-height: inherit;
  border: 8px solid #BEE5F3;
}

#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: 30px;
  font-weight: bold;
  line-height: 1.2;
}

#health .efforts_list_area .efforts_list .efforts_list_item .text02 span {
  font-size: 20px;
}

#health .efforts_list_area .efforts_list .efforts_list_item .text03 {
  font-size: 12px;
  line-height: 1.4;
}

#health .health-box05 .with_illustration .img_area {
  text-align: center;
}

#health .health-box05 .with_illustration .img_area img {
  width: 298px;
}

@media(max-width:480px) {
  #health .health-box03 .efforts_number_list .efforts_number_list_item {
    padding: 0 0 0 64px;
  }

  #health .health-box03 .efforts_number_list .efforts_number_list_item:nth-of-type(2) {
    padding: 24px 0 24px 64px;
  }

  #health .health-box03 .efforts_number_list .efforts_number_list_item:nth-of-type(1)::before {
    top: 10px;
  }

  #health .health-box05 .with_illustration {
    justify-content: center;
  }

  #health .health-box05 .with_illustration .img_area {
    width: 80%;
    margin: 24px auto 0;
  }
}


.youtube-container {
  width: 100%;
  background: #f3fafb;
}

.youtube-container .swiper02 {
  padding: 20px 0;
}

.youtube-container .youtube-box {
  position: relative;
}

/* コンテナのサイズ調整 */
.swiper-container {
  width: 100%;
  position: relative;
}

.swiper-slide h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  width: 90%;
  margin: 0 auto;
}

.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;
  padding-top: 56.25%;
  height: auto !important;
}

.swiper-slide iframe {
  position: absolute;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  padding: 0 30px;
  box-sizing: border-box;
}

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

/* ページネイションをinlineで中央に */
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: inline-block;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;
  background: #194e92;
  padding: 10px;
  font-size: 12px !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0 !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0 !important;
}

@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 .efforts_list_item .list_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

#esports .efforts_list_area .efforts_list .efforts_list_item {
  text-align: center;
  min-height: inherit;
  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 .text01 {
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}

#esports .efforts_list_area .efforts_list .efforts_list_item .text01 br {
  display: none;
}

#esports .esports-box01 .desc01 {
  margin-bottom: 40px;
}

#esports .efforts_list_area .text02 {
  position: relative;
  font-size: 13px;
  padding-left: 10px;
  margin-top: 20px;
}

#esports .efforts_list_area .text02::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
}

#esports .esports-box01 .img-box {
  position: relative;
  width: 100%;
  margin: 50px auto 0;
}

#esports .esports-box01 .img-box::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: #e5e0fe;
  width: 100px;
  height: 100px;
  z-index: -1px;
}

#esports .esports-box01 .img-box::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e5e0fe;
  width: 100px;
  height: 100px;
  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%;
}

/*------------数字で見るページ追加 20231201-------------*/
/*社員保有資格*/
#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;
}

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

  #numbers .numbers_box .skills_list_area .skills_list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: -10px;
  }
}

@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: 768px) {
  #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(100% - 20px);
    margin: 10px;
    box-sizing: border-box;
    padding: 24px;
    padding-top: 0;
  }
}

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

@media screen and (max-width: 480px) {
  #numbers .skills_list .skills_list_item .list_title {
    min-height: 0;
    margin-bottom: 8px;
  }
}

/* 1205数字で見る_在籍人数 */
.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: 600px;
}

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

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

/* 20231215会社概要　目次部分追加修正 */
@media screen and (max-width: 767px) {
  .corporation01_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    margin-bottom: 100px;
  }

  .corporation01_list li {
    margin: 5px 2.5px;
    width: 48%;
    text-align: center;
  }

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

  .corporation_fontsize {
    font-size: 13.5px;
  }

  .corporation_fontsize {
    font-size: 11.5px;
  }
}

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

@media screen and (max-width:767px) {
  #recruit .recruit_contents_frame {
    margin: 16px;
    width: 50%;
  }

  #recruit .recruit_contents_frame p {
    font-size: 17px;
  }
}

@media screen and (max-width:390px) {
  #recruit .recruit_contents_frame {
    width: 50%;
    height: 100px;
  }

  #recruit .recruit_contents_frame p {
    font-size: 14px;
  }

  #recruit .recruit_contents a {
    font-size: 40%;
    width: 70%;

  }

  .recruit_contents a img {
    width: 18%;
  }

  #recruit .recruit_contents {
    padding-top: 0;
  }

  #recruit .contents_center {
    padding-top: 0;
  }
}

/* 20240122 アクセスページ追加 */
#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;
}

/* --- アクセスページ　レスポンシブ--- */
@media screen and (max-width: 768px) {
  #access .access_left {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }

  #access .access_right {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }

  #access .office_lists_layout tbody tr th,
  #access .office_lists_layout .office_lists_address p {
    font-size: 14px;
    line-height: 30px;
  }

  #access .google_map_button {
    padding: 4px 0;
    margin-left: 0;
  }

  #access .google_map_button a {
    font-size: 70%;
    padding-left: 15px;
  }

  #access .access_map {
    padding-bottom: 70px;
  }

  #access .office_lists_address {
    display: block;
  }

  #access .sp_blank {
    display: block;
  }

  #access .access_left .print_btn,
  #access .access_left .map_btn {
    margin-right: auto;
    margin-left: auto;
  }

  #access .office_lists_layout tbody tr td p {
    width: 100%;
  }

  @media screen and (max-width: 480px) {
    #access .office_lists_layout tbody tr th {
      padding: 20px 15px;
    }
  }

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

  /* CTOレスポンシブ */
  @media screen and (max-width:768px) {
    #cto_message .cto_text h2 {
      font-size: 20px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    #cto_message .cto_text {
      margin-bottom: 50px;
    }
  }

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

  /* zabicom レスポンシブ */
  @media screen and (max-width:768px) {
    #zabicom .zm_image2 {
      display: block;
      transition: none;
      opacity: 10;
    }

    #zabicom .sub_smalltext2 {
      font-size: 10px;
      margin-top: 5px;
    }

    #zabicom .zabicom_movie_link p.movie_text {
      position: absolute;
      top: 7%;
    }

    #zabicom .movie_text .link_icon {
      vertical-align: -31px;
    }
  }

  @media screen and (max-width:480px) {
    #zabicom .zabicom_movie_link {
      height: 270px;
    }

    #zabicom .zabicom_movie_link p.movie_text {
      position: absolute;
      top: 4%;
      left: 50%;
      transform: translate(-50%, 0);
    }

    #zabicom .movie_text .link_icon {
      vertical-align: -13px;
    }

    #zabicom .zabicom_images p {
      margin-bottom: 10px;
    }

    #zabicom .zabicom_images div img {
      margin-bottom: 10px;
    }

    #zabicom .zabicom_movie_link p.movie_text {
      width: 62%;
    }
  }

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

  #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: 3px
  }

  #rec_training .human_resources02_inner_2 {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

  /* ---------0220 社員育成・研修ページ レスポンシブ--------- */
  @media screen and (max-width:767px) {
    #rec_training .human_resources02_inner div.human_resources02_inner_div_new {
      width: 100%;
    }

    #rec_training .hm_ttl02_ft_new {
      max-width: none;
    }

    #rec_training .training_flex {
      display: block;
    }

    #rec_training .training_group {
      flex-wrap: wrap;
    }

    #rec_training .training_contents {
      padding-left: 4%;
    }

    #rec_training .hm_ttl02_ft_new {
      height: auto;
      margin-bottom: 20px;
    }

    #rec_training .hm_ttl02_ft {
      max-width: none;
    }

    #rec_training .human_resources02_inner {
      display: block;

    }

    #rec_training .hm_ttl02_ft {
      margin: 10px;
    }
  }

  @media screen and (max-width:390px) {
    #rec_training .sp_blank {
      display: block;
    }

    #rec_training .training_contents {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
    }

    #rec_training .training_contents li {
      font-size: 14px;
    }

    #rec_training .training_contents li {
      margin-bottom: 5px;
    }

    #rec_training .first_ul li {
      font-size: 14px;
    }

    #rec_training .rec_skillup {
      font-size: 112%;
    }

  }

  /*  ↑ここまで*/