@charset "UTF-8";
/* =========================================================
 * reset　　　    /*リセット
========================================================= */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:300,400,500,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,300;1,400;1,500&display=swap");

blockquote,
body,
div,
dl,
dt,
dd,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
select,
span,
textarea,
td,
th,
ul,
figure,
figcaption {
  margin: 0px;
  padding: 0px;
}

fieldset,
img {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ol {
  list-style-type: none;
}

ul {
  list-style-type: none;
}

ul li {
  list-style-type: none;
}

img {
  border: none;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

iframe {
  border: none;
}

a:focus {
  outline: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li img {
  line-height: 0;
  font-size: 0;
  vertical-align: top;
}

/* IE */
* html ul li dl,
* html ol li dl {
  display: inline;
}

*:first-child+html ul li dl,
*:first-child+html ol li dl {
  display: inline;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

/* =========================================================
 * default settings      　   /*デフォルトセッティング
========================================================= */
html {
  font-size: 62.5%;
  overflow: auto;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  word-break: break-all;
  word-break: break-word;
}

p {
  line-break: strict;
}

a {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

a:hover {
  opacity: 0.7;
  -webkit-opacity: .7;
  -moz-opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

body {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 2;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  color: #4D4D4D;
  overflow: hidden;
}

#wrapper {
  width: 100%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.hide,
.hidden {
  visibility: hidden;
}

img {
  max-width: 100%;
}

main {
  display: block;
}

@media screen and (max-width: 767px) {
  a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    transition: none;
  }

  a:hover {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    /* IE lt 8 */
    -ms-filter: "alpha(opacity=100)";
    /* IE 8 */
  }

  body {
    -webkit-text-size-adjust: 100%;
    background: #fff;
    min-width: 100%;
  }

  img {
    width: 100%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* =========================================================
 * font
========================================================= */
/*noto-sans*/
.font-noto {
  font-family: 'Noto Sans JP', sans-serif;
}

.font-noto-selif {
  font-family: 'Noto Serif JP', serif;
}

.barlow {
  font-family: 'Barlow Condensed', sans-serif;
}

/* =========================================================
 * clearfix　　   /*クリアフィックス
========================================================= */
.clearfix {
  zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

* {
  zoom: 1;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  position: fixed;
  height: 80px;
  top: 0;
  width: 100%;
  min-width: 1024px;
  margin: 0 auto;
  padding: 0 25px;
  background: #fff;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: #000;
  text-decoration: none;
}

header h1 {
  width: 265px;
}

header h1 img {
  width: 100%;
  height: auto;
}

header .menu {
  display: none;
}

header .navcont {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 300px);
}

header .navcont ul {
  display: flex;
  height: 100px;
  justify-content: flex-end;
  align-items: center;
  font-weight: 500;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

header .navcont ul:after {
  display: block;
  clear: both;
  content: '';
}

header .navcont ul li {
  padding: 0 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}

header .navcont ul li:after {
  position: absolute;
  content: "";
  top: 12px;
  right: 10px;
  height: 50px;
  border-right: 3px solid #FF0000;
  transform: skewX(-20deg);
}

header .navcont ul li a {
  display: block;
  padding: 15px 0;
}

header .navcont ul li.close {
  color: #999;
}

header .navcont ul li:hover>ul {
  visibility: visible;
  opacity: 1;
}

header .navcont ul li ul {
  width: 120%;
  position: absolute;
  top: 100%;
  height: auto;
  left: -10%;
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
  display: block;
  background: black;
  border-radius: 5px;
  margin-top: 0px;
  z-index: 4;
}

header .navcont ul li ul:before {
  position: absolute;
  content: "";
  top: -10px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #000 transparent;
}

header .navcont ul li ul li {
  padding: 10px 5px;
  text-align: center;
  border-bottom: 1px solid #fff;
}

header .navcont ul li ul li a {
  color: #FFF;
  padding: 5px 0;
}

header .navcont ul li ul li:after {
  content: none;
}

header .navcont ul li ul li:last-child {
  border-bottom: none;
}

header .navcont .english {
  width: 76px;
  position: relative;
  top: -6px;
}

main {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

main .kv {
  width: 100%;
  height: 450px;
  position: relative;
}

main .kv .ami {
  position: absolute;
  content: "";
  background: rgba(0, 71, 157, 0.7);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

main .kv .mainttl {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  z-index: 2;
}

main .kv .mainttl h2 {
  font-size: 46px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  position: relative;
}

main .kv .mainttl h2:before,
main .kv .mainttl h2:after {
  position: absolute;
  content: "";
  height: 68px;
  transform: skewX(-20deg);
}

main .kv .mainttl h2:before {
  left: -50px;
  width: 20px;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}

main .kv .mainttl h2:after {
  left: -50px;
  width: 12px;
  border-right: 4px solid #fff;
}

main .kv .mainttl h3 {
  width: 100%;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.1em;
}

main .contents {
  width: 100%;
  margin: 0px auto 0;
  background: #F3F7F9;
  position: relative;
  z-index: 2;
}

main .inner {
  max-width: 1024px;
  background: #fff;
  margin: 0 auto;
}

main .inner.top {
  position: relative;
  top: -150px;
}

main .inner.top_02 {
  position: relative;
  background: none;
  top: -200px;
}

main .inner.top_03 {
  background: none;
  padding: 60px 0;
}

main .anchor {
  display: flex;
  justify-content: space-between;
  align-contents: center;
}

main .anchor li {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  width: 130px;
  text-align: center;
}

main .anchor li a {
  display: block;
  color: #0041A8;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 2px solid #0041A8;
  position: relative;
}

main .anchor li a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #0041A8;
  border-right: 2px solid #0041A8;
  right: 10px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg);
}

main .anchor.area_02 li {
  width: 235px;
}

main .anchor.area_02 li a:after {
  right: 20px;
  top: 50%;
  margin-top: -4px;
  transform: rotate(-45deg);
}

main .anchor.area_03 {
  margin-top: 65px;
}

main .anchor.area_03 li {
  width: 310px;
}

main .cont_box.white {
  background: #fff;
}

main .cont_box .box_inner {
  padding: 0 8%;
}

main .cont_box .mainbanner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 355px;
  flex-wrap: wrap;
}

main .cont_box .mainbanner dl {
  color: #fff;
  text-align: center;
}

main .cont_box .mainbanner dl dt {
  width: 100%;
  line-height: 1;
  font-size: 58px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
}

main .cont_box .mainbanner dl dd {
  line-height: 3;
  font-size: 17px;
}

main .cont_box .box_ttl {
  background: #0041A8;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 65px;
}

main .cont_box .box_ttl h4 {
  font-size: 34px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  padding-bottom: 5px;
}

main .cont_box .box_ttl p {
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1;
}

main .cont_box .box_ttl p.big {
  font-size: 21px;
  font-weight: 500;
  padding: 10px 0;
}

main .cont_box .lead_01 {
  font-weight: 500;
  text-align: center;
  font-size: 21px;
  color: #000;
  margin-top: 50px;
  padding-bottom: 25px;
}

main .cont_box .lead_01.underlines {
  position: relative;
}

main .cont_box .lead_01.underlines:after {
  position: absolute;
  content: "";
  height: 30px;
  border-left: 1px solid #000;
  left: 50%;
  bottom: -5px;
}

main .cont_box .name {
  text-align: right;
  color: #00479D;
}

main .cont_box .lead_02 {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid #000;
  border-left: 10px solid #000;
  padding-left: 30px;
  margin-top: 55px;
  padding-bottom: 10px;
}

main .cont_box .lead_02 span {
  color: #00AFE8;
}

main .cont_box .lead_02 span.fonts_s {
  font-size: 18px;
  color: #000;
}

main .cont_box .lead_03 {
  color: #00479D;
  font-weight: 500;
  font-size: 18px;
  margin-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

main .cont_box .lead_03 span {
  font-size: 14px;
  color: #4d4d4d;
}

main .cont_box .lead_04 {
  color: #00479D;
  font-weight: 500;
  font-size: 21px;
  margin-top: 50px;
  padding-bottom: 10px;
  text-align: center;
}

main .cont_box .lead_04 span {
  font-size: 14px;
  color: #4d4d4d;
}

main .cont_box .txt_captions {
  margin-top: 40px;
  text-align: center;
}

main .cont_box .txt_captions.blue {
  margin-top: 0px;
  font-size: 17px;
  font-weight: 500;
  color: #4F7BAE;
}

main .cont_box .txt_captions.nonmt {
  margin-top: 0;
}

main .cont_box .imgsm {
  width: 780px;
  margin: 40px auto 65px;
}

main .cont_box .imgsm_02 {
  width: 780px;
  margin: 40px auto;
}

main .img_area {
  text-align: center;
  margin-top: 70px;
}

main .img_area .imgssmall {
  width: 560px;
  margin: 0 auto;
}

main .img_area .caps {
  font-size: 20px;
  color: #36589F;
  padding: 35px 0 45px;
}

main .img_area .flex {
  width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .img_area .flex p:first-child {
  width: 33.333%;
}

main .img_area .flex p:last-child {
  width: 66.667%;
}

main .btns {
  width: 360px;
  margin: 0 auto;
}

main .btns dt {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #36589F;
  padding: 15px 0;
}

main .btns dt a {
  cursor: pointer;
  text-decoration: none;
  color: #36589F;
  display: block;
  position: relative;
}

main .btns dt a:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #395CAA;
  border-radius: 10px;
  right: 20px;
  top: 50%;
  margin-top: -10px;
}

main .btns dt a:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  z-index: 2;
  right: 28px;
  top: 50%;
  margin-top: -2px;
}

main .btns dd {
  font-size: 11px;
  font-weight: 400;
}

main .img_all {
  margin-top: 200px;
}

footer {
  width: 100%;
  position: relative;
  padding: 0 25px;
}

footer .footer_inner {
  max-width: 1024px;
  margin: 40px auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

footer .footer_inner ul {
  width: 20%;
  padding: 0 25px;
  border-right: 1px solid #CCCCCC;
}

footer .footer_inner ul:last-child {
  border-right: none;
}

footer .footer_inner ul li a {
  color: #4d4d4d;
  text-decoration: none;
}

footer .footer_inner ul li:first-child {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

footer .footer_inner ul li:first-child:after {
  position: absolute;
  content: "";
  width: 18px;
  border-bottom: 4px solid #E60012;
  bottom: 0;
  left: 0;
}

footer .footer_inner ul li:first-child a {
  color: #000;
}

footer .footer_inner ul li:nth-child(n + 2) {
  list-style: disc;
  margin-left: 15px;
}

footer address {
  text-align: right;
  padding-bottom: 15px;
  font-size: 12px;
}

#pagetop {
  position: absolute;
  right: 25px;
  bottom: 40px;
}

#pagetop a {
  width: 100%;
  display: block;
}

#pagetop img {
  width: auto;
  height: 50px;
}

.fade,
.fadein,
.fadein-top,
.fadein-left,
.fadein-right {
  opacity: 0;
  transition: all 800ms;
}

.fade {
  opacity: 0;
  transform: translate(0, -1px);
  transition: all 800ms;
}

.fade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 800ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-top {
  opacity: 0;
  transform: translate(0, -50px);
  transition: all 800ms;
}

.fadein-top.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-left {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 800ms;
}

.fadein-left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-right {
  opacity: 0;
  transform: translate(50px, 0);
  transition: all 800ms;
}

.fadein-right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    height: 60px;
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
    padding: 0;
    border-bottom: 1px solid #f2f2f2;
  }

  header a {
    color: #000;
    text-decoration: none;
  }

  header h1 {
    width: 220px;
    padding-left: 10px;
  }

  header h1 img {
    width: 100%;
    height: auto;
  }

  header .menu {
    display: block;
    width: 60px;
    height: 60px;
    background: url("../../img/common/menu.svg") no-repeat center center/cover;
    text-indent: -9999px;
    cursor: pointer;
  }

  header .menu.close {
    background: url("../../img/common/close.svg") no-repeat center center/cover;
  }

  header .navcont {
    position: absolute;
    top: 59px;
    display: none;
    width: 100%;
    background: white;
    border-bottom: 1px solid #000;
  }

  header .navcont ul {
    display: block;
    height: auto;
  }

  header .navcont ul li {
    padding: 0 0px;
    line-height: 1;
    letter-spacing: 0.1em;
    position: relative;
    border-bottom: 1px solid #666;
    text-align: center;
  }

  header .navcont ul li:after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #FF0000;
    border-top: 2px solid #FF0000;
    transform: none;
    transform: rotate(45deg);
  }

  header .navcont ul li a {
    display: block;
    padding: 15px 0;
  }

  header .navcont ul li.close {
    color: #999;
  }

  header .navcont ul li:hover>ul {
    visibility: inherit;
  }

  header .navcont ul li ul {
    width: 100%;
    position: relative;
    top: 100%;
    height: auto;
    left: 0%;
    visibility: visible;
    opacity: 1;
    transition: none;
    display: flex;
    justify-content: space-around;
    z-index: 4;
    border-radius: 0;
  }

  header .navcont ul li ul:before {
    position: absolute;
    content: "";
    top: -9px;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #000 transparent;
  }

  header .navcont ul li ul:after {
    content: none;
  }

  header .navcont ul li ul li {
    padding: 10px 0px;
    text-align: center;
    border-bottom: none;
  }

  header .navcont ul li ul li a {
    color: #FFF;
    padding: 5px 0;
  }

  header .navcont ul li ul li:after {
    content: none;
  }

  header .navcont ul li ul li:last-child {
    border-bottom: none;
  }

  header .navcont .english {
    width: 76px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: -25px;
    padding: 10px 0 0px;
  }

  main {
    padding-top: 60px;
  }

  main .kv {
    width: 100%;
    height: 200px;
  }

  main .kv .mainttl {
    width: 100%;
    height: 150px;
  }

  main .kv .mainttl h2 {
    font-size: 38px;
  }

  main .contents {
    width: 100%;
  }

  main .inner {
    max-width: 90%;
    background: #fff;
    margin: 0 auto;
  }

  main .inner.top {
    position: relative;
    top: -50px;
  }

  main .inner.top_02 {
    position: relative;
    background: none;
    top: -50px;
  }

  main .inner.top_03 {
    background: none;
    padding: 60px 0;
  }

  main .anchor {
    flex-wrap: wrap;
    padding: 0 2%;
  }

  main .anchor li {
    font-size: 14px;
    text-align: left;
    width: 32%;
  }

  main .anchor li a {
    padding: 20px 0 20px 5px;
    position: relative;
  }

  main .anchor li a:after {
    width: 6px;
    height: 6px;
    right: 5px;
    margin-top: -8px;
  }

  main .anchor.area_02 li {
    width: 48%;
  }

  main .anchor.area_02 li a {
    padding: 20px 0 20px 5px;
  }

  main .anchor.area_02 li a:after {
    right: 20px;
    top: 50%;
    margin-top: -6px;
    transform: rotate(-45deg);
  }

  main .anchor.area_03 {
    margin-top: 0px;
  }

  main .anchor.area_03 li {
    width: 32%;
  }

  main .cont_box.white {
    background: #fff;
  }

  main .cont_box .box_inner {
    padding: 0 8%;
  }

  main .cont_box .mainbanner {
    height: 200px;
  }

  main .cont_box .mainbanner dl {
    color: #fff;
    text-align: center;
  }

  main .cont_box .mainbanner dl dt {
    font-size: 38px;
  }

  main .cont_box .mainbanner dl dd {
    font-size: 16px;
  }

  main .cont_box .box_ttl {
    padding: 15px 0;
    margin-top: 40px;
  }

  main .cont_box .box_ttl h4 {
    font-size: 28px;
  }

  main .cont_box .box_ttl p {
    font-size: 16px;
  }

  main .cont_box .box_ttl p.big {
    font-size: 18px;
  }

  main .cont_box .lead_01 {
    font-size: 18px;
    margin-top: 35px;
    line-height: 1.6;
  }

  main .cont_box .lead_01.underlines {
    position: relative;
  }

  main .cont_box .lead_01.underlines:after {
    position: absolute;
    content: "";
    height: 30px;
    border-left: 1px solid #000;
    left: 50%;
    bottom: -5px;
  }

  main .cont_box .name {
    padding-top: 15px;
  }

  main .cont_box .lead_02 {
    font-size: 16px;
    border-left: 6px solid #000;
    padding-left: 10px;
    margin-top: 35px;
    padding-bottom: 10px;
  }

  main .cont_box .lead_02 span.fonts_s {
    display: block;
    position: relative;
    font-size: 11px;
    line-height: 1;
  }

  main .cont_box .lead_03 {
    font-size: 16px;
  }

  main .cont_box .lead_04 {
    font-size: 18px;
    margin-top: 0px;
  }

  main .cont_box .txt_captions {
    margin-top: 10px;
    text-align: center;
  }

  main .cont_box .txt_captions.blue {
    margin-top: 10px;
    font-size: 15px;
  }

  main .cont_box .txt_captions.nonmt {
    margin-top: 0;
  }

  main .cont_box .imgsm {
    width: 100%;
    margin: 25px auto 35px;
  }

  main .cont_box .imgsm_02 {
    width: 100%;
    margin: 25px auto 0px;
  }

  main .img_area {
    text-align: center;
    margin-top: 70px;
  }

  main .img_area .imgssmall {
    width: 560px;
    margin: 0 auto;
  }

  main .img_area .caps {
    font-size: 20px;
    color: #36589F;
    padding: 35px 0 45px;
  }

  main .img_area .flex {
    width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  main .img_area .flex p:first-child {
    width: 33.333%;
  }

  main .img_area .flex p:last-child {
    width: 66.667%;
  }

  main .btns {
    width: 360px;
    margin: 0 auto;
  }

  main .btns dt {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 18px;
    border: 1px solid #36589F;
    padding: 15px 0;
  }

  main .btns dt a {
    cursor: pointer;
    text-decoration: none;
    color: #36589F;
    display: block;
    position: relative;
  }

  main .btns dt a:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: #395CAA;
    border-radius: 10px;
    right: 20px;
    top: 50%;
    margin-top: -10px;
  }

  main .btns dt a:after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    z-index: 2;
    right: 28px;
    top: 50%;
    margin-top: -2px;
  }

  main .btns dd {
    font-size: 11px;
    font-weight: 400;
  }

  main .img_all {
    margin-top: 200px;
  }

  footer .footer_inner {
    max-width: 100%;
    margin: 40px auto 80px;
    display: block;
    align-items: stretch;
    justify-content: space-between;
  }

  footer .footer_inner ul {
    width: 100%;
    padding: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #CCCCCC;
  }

  footer .footer_inner ul:last-child {
    border-right: none;
  }

  footer .footer_inner ul li a {
    color: #4d4d4d;
    text-decoration: none;
  }

  footer .footer_inner ul li:first-child {
    width: 100%;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }

  footer .footer_inner ul li:nth-child(n + 2) {
    list-style: disc;
    margin-left: 20px;
    margin-right: 10px;
  }

  footer address {
    text-align: center;
    padding-bottom: 15px;
    font-size: 12px;
  }

  #pagetop {
    right: 50%;
    margin-right: -25px;
    bottom: 75px;
  }
}

.top .kv {
  height: 650px;
  position: relative;
}

.top .kv .amitop {
  position: absolute;
  height: 650px;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.top .kv .slide_cont {
  width: 100%;
  height: 650px;
}

.top .kv .slide_cont div {
  height: 650px;
  background-size: cover;
}

.top .kv .slide_cont div.back_top_01 {
  background: url(../../img/top/slide_01.png) no-repeat center center/cover;
}

.top .kv .slide_cont div.back_top_02 {
  background: url(../../img/top/slide_02.png) no-repeat center center/cover;
}

.top .kv .slide_cont div.back_top_03 {
  background: url(../../img/top/slide_03.png) no-repeat center center/cover;
}

.top .kv .slide_cont div.back_top_04 {
  background: url(../../img/top/slide_04.png) no-repeat center center/cover;
}

.top .kv .slide_cont div.back_top_05 {
  background: url(../../img/top/slide_05.png) no-repeat center center/cover;
}

.top .kv .slide_cont div.back_top_06 {
  background: url(../../img/top/slide_06.png) no-repeat top center/cover;
}

.top .kv .slide_cont div.back_top_07 {
  background: url(../../img/top/slide_07.png) no-repeat top center/cover;
}

.top .kv .mainttl {
  position: absolute;
  top: 80px;
  width: 100%;
  height: 570px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 5%;
  z-index: 3;
}

.top .kv .mainttl p {
  width: 390px;
}

.top main {
  background: #F3F7F9;
}

.top .anchors {
  max-width: 810px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -50px;
  z-index: 3;
}

.top .anchors li {
  width: 250px;
  background: #fff;
  border-bottom: 4px solid #0041A8;
  padding-bottom: 15px;
}

.top .anchors li dl {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0041A8;
}

.top .anchors li dl dt {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
}

.top .anchors li dl dd {
  margin-left: 10px;
}

.top .anchors li a {
  text-decoration: none;
  display: block;
  border-bottom: none;
  position: relative;
}

.top .anchors li a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #0041A8;
  border-right: 2px solid #0041A8;
  left: 50%;
  bottom: 5px;
  top: auto;
  margin-top: 0;
  transform: rotate(45deg);
}

.top .mainttl {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: #FF0000;
  position: relative;
  z-index: 2;
  margin: 75px 0 45px;
}

.top .mainttl h2 {
  font-size: 46px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  position: relative;
}

.top .mainttl h2:before,
.top .mainttl h2:after {
  position: absolute;
  content: "";
  height: 68px;
  transform: skewX(-20deg);
}

.top .mainttl h2:before {
  left: -40px;
  width: 10px;
  border-left: 4px solid #FF0000;
  border-right: 4px solid #FF0000;
}

.top .mainttl h2:after {
  left: -40px;
  width: 7px;
  border-right: 4px solid #FF0000;
}

.top .mainttl h3 {
  width: 100%;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #000;
}

.top .top_lead_aera .flexcenter {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.top .top_lead_aera .flexcenter .txtsarea {
  width: 470px;
  background: #fff;
  padding: 55px 40px;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

.top .top_lead_aera .flexcenter .txtsarea dt {
  color: #000;
  font-weight: 500;
  font-size: 21px;
}

.top .top_lead_aera .flexcenter .txtsarea dd {
  padding-top: 10px;
  text-align: justify;
}

.top .top_lead_aera .flexcenter .imgs {
  width: 610px;
  margin-left: -50px;
}

.top .inners {
  max-width: 1024px;
  margin: 0 auto;
}

.top .btn_tops {
  width: 120px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 19px;
  letter-spacing: -1px;
  border-bottom: 1px solid #4D4D4D;
  line-height: 1.4;
}

.top .btn_tops a {
  color: #4D4D4D;
  text-decoration: none;
  position: relative;
}

.top .btn_tops a:after {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: #395CAA;
  border-radius: 22.5px;
  right: -100px;
  top: -10px;
}

.top .btn_tops a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: -80px;
  z-index: 2;
  top: 6px;
}

.top .top_02_area {
  margin-top: 100px;
  position: relative;
  background: linear-gradient(to bottom, #F3F7F9 0%, #F3F7F9 30%, #BFC6CF 30%);
}

.top .top_02_area .img_flash_pc {
  display: block;
  position: relative;
  padding-bottom: 15%;
}

.top .top_02_area .img_flash_pc img {
  position: absolute;
}

.top .top_02_area .img_flash_sp {
  display: none;
}

.top .top_02_area .inners {
  padding-bottom: 50px;
}

.top .top_02_area .flexcenter {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.top .top_02_area .flexcenter .box {
  width: 320px;
}

.top .top_02_area .flexcenter .box .number {
  width: 245px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  text-align: center;
  color: #0041A8;
  font-weight: 600;
  padding: 10px 0;
  top: -40px;
  z-index: 2;
  margin-bottom: -20px;
}

.top .top_02_area .flexcenter .box .number dt {
  font-size: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.top .top_02_area .flexcenter .box .number dt:after {
  position: absolute;
  content: "";
  width: 20px;
  border-bottom: 4px solid #0041A8;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
}

.top .top_02_area .flexcenter .box .number dd {
  font-size: 17px;
}

.top .top_02_area .flexcenter .box .txt {
  text-align: justify;
}

.top .top_02_area .flexcenter .box a {
  display: block;
  text-decoration: none;
}

.top .top_02_area .topbtn {
  width: 210px;
  margin: 25px 0 0 auto;
  background: #000;
  font-weight: 500;
  font-size: 17px;
  text-align: center;
}

.top .top_02_area .topbtn a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
}

.top .top_02_area .topbtn a:before,
.top .top_02_area .topbtn a:after {
  position: absolute;
  content: "";
}

.top .top_02_area .topbtn a:before {
  width: 20px;
  height: 20px;
  background: #fff;
  right: 15px;
  top: 12px;
}

.top .top_02_area .topbtn a:after {
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
  right: 22px;
  top: 17px;
}

.top .top_03_area {
  margin-top: 100px;
  position: relative;
}

.top .top_03_area .personbtn {
  height: 570px;
  background: url("../../img/top/img_06.png") no-repeat center center/cover;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  position: relative;
}

.top .top_03_area .personbtn .persons_box {
  width: 217px;
  border: none;
  color: #fff;
}

.top .top_03_area .personbtn .persons_box a {
  display: block;
  color: #fff;
  text-decoration: none;
  border: none;
}

.top .top_03_area .personbtn .persons_box a dl {
  margin-bottom: 60px;
  font-weight: 500;
}

.top .top_03_area .personbtn .persons_box a dl dt {
  font-size: 21px;
}

.top .top_03_area .personbtn .persons_box a dl dd {
  width: 110px;
  font-size: 14px;
  position: relative;
}

.top .top_03_area .personbtn .persons_box a dl dd:before,
.top .top_03_area .personbtn .persons_box a dl dd:after {
  position: absolute;
  content: "";
}

.top .top_03_area .personbtn .persons_box a dl dd:before {
  width: 20px;
  height: 20px;
  background: #E60012;
  right: 15px;
  top: 5px;
}

.top .top_03_area .personbtn .persons_box a dl dd:after {
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  right: 22px;
  top: 10px;
}

.top .top_04_area {
  margin-top: 100px;
  position: relative;
}

.top .top_04_area .keyword {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top .top_04_area .keyword div {
  width: 315px;
  background: #fff;
  margin-bottom: 60px;
}

.top .top_04_area .keyword div dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  color: #fff;
  margin-top: -20px;
  height: 40px;
}

.top .top_04_area .keyword div dl dt {
  width: 44px;
  font-size: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  background: #0041A8;
  border-right: 1px solid #fff;
  text-align: center;
  padding: 6px 0 8px;
  height: 40px;
}

.top .top_04_area .keyword div dl dd {
  font-size: 17px;
  height: 40px;
}

.top .top_04_area .keyword div dl dd span {
  display: block;
  background: #0041A8;
  padding: 2px 15px 4px;
}

.top .top_04_area .keyword div .img {
  width: 240px;
  margin: 25px auto 0;
}

.top .top_04_area .keyword div .capt {
  text-align: right;
  padding-bottom: 5px;
}

.top .top_04_area .keyword div.topbtn {
  width: 210px;
  margin: 0 auto 40px;
  background: #000;
  font-weight: 500;
  font-size: 17px;
  text-align: center;
}

.top .top_04_area .keyword div.topbtn a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
}

.top .top_04_area .keyword div.topbtn a:before,
.top .top_04_area .keyword div.topbtn a:after {
  position: absolute;
  content: "";
}

.top .top_04_area .keyword div.topbtn a:before {
  width: 20px;
  height: 20px;
  background: #fff;
  right: 15px;
  top: 12px;
}

.top .top_04_area .keyword div.topbtn a:after {
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
  right: 22px;
  top: 17px;
}

.top .top_05_area {
  margin-top: 100px;
  position: relative;
  background: #0041A8;
  padding-bottom: 100px;
}

.top .top_05_area .mainttl {
  padding-top: 65px;
  margin: 0px;
}

.top .top_05_area .mainttl h2 {
  color: #fff;
}

.top .top_05_area .mainttl h2:before {
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}

.top .top_05_area .mainttl h2:after {
  border-right: 4px solid #fff;
}

.top .top_05_area .mainttl h3 {
  color: #fff;
}

.top .top_05_area .leads {
  color: #fff;
  text-align: center;
  padding-bottom: 45px;
}

.top .top_05_area .areamap {
  width: 1024px;
  margin: 0 auto;
  height: 500px;
  background: url("../../img/top/map.svg") no-repeat center center/cover;
  position: relative;
}

.top .top_05_area .areamap p {
  position: absolute;
  width: 156px;
}

.top .top_05_area .areamap p.pos01 {
  top: 65px;
  left: 50px;
}

.top .top_05_area .areamap p.pos02 {
  top: 20px;
  left: 250px;
}

.top .top_05_area .areamap p.pos03 {
  top: 220px;
  left: 80px;
}

.top .top_05_area .areamap p.pos04 {
  top: 140px;
  left: 340px;
}

.top .top_05_area .areamap p.pos05 {
  bottom: 40px;
  left: 340px;
}

.top .top_05_area .areamap p.pos06 {
  top: 100px;
  right: 180px;
}

@media screen and (max-width: 767px) {
  .top .kv {
    height: 285px;
  }

  .top .kv .amitop {
    height: 285px;
  }

  .top .kv .slide_cont {
    height: 285px;
  }

  .top .kv .slide_cont div {
    height: 285px;
  }

  .top .kv .slide_cont div.back_top_06 {
    background: url(../../img/top/slide_06_sp.png) no-repeat center center/cover;
  }

  .top .kv .mainttl {
    display: block;
    top: 0;
    left: 0%;
    margin-left: 0px;
    max-width: 100%;
    height: 285px;
    align-items: flex-start;
    z-index: 3;
  }

  .top .kv .mainttl p {
    width: 60%;
    padding: 8% 0 0 3%;
  }

  .top .anchors {
    max-width: 90%;
    top: -50px;
  }

  .top .anchors li {
    width: 32%;
    background: #fff;
    border-bottom: 4px solid #0041A8;
    padding-bottom: 15px;
  }

  .top .anchors li dl {
    display: block;
    text-align: center;
    padding: 10px 0 5px;
  }

  .top .anchors li dl dt {
    font-size: 18px;
    line-height: 1;
  }

  .top .anchors li dl dd {
    margin-left: 0px;
  }

  .top .anchors li a:after {
    margin-left: -6px;
    bottom: -4px;
  }

  .top .mainttl {
    width: 100%;
    margin: 0 0 25px;
  }

  .top .mainttl h2 {
    font-size: 28px;
  }

  .top .mainttl h2:before,
  .top .mainttl h2:after {
    height: 55px;
  }

  .top .mainttl h3 {
    font-size: 16px;
  }

  .top .top_lead_aera .flexcenter {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .top .top_lead_aera .flexcenter .txtsarea {
    width: 100%;
    padding: 30px;
    margin-top: 0px;
  }

  .top .top_lead_aera .flexcenter .txtsarea dt {
    color: #000;
    font-size: 18px;
    letter-spacing: 0;
  }

  .top .top_lead_aera .flexcenter .txtsarea dd {
    padding-top: 10px;
  }

  .top .top_lead_aera .flexcenter .imgs {
    width: 100%;
    margin-left: -0px;
  }

  .top .inners {
    max-width: 90%;
    margin: 0 auto;
  }

  .top .top_02_area {
    margin-top: 70px;
    background: linear-gradient(to bottom, #F3F7F9 0%, #F3F7F9 9%, #ACB3C0 10%);
  }

  .top .top_02_area .mainttl {
    margin-bottom: -25px;
  }

  .top .top_02_area .img_flash_sp {
    display: block;
    position: relative;
    padding-bottom: 36%;
  }

  .top .top_02_area .img_flash_sp img {
    position: absolute;
    width: 100%;
    height: auto;
  }

  .top .top_02_area .img_flash_pc {
    display: none;
  }

  .top .top_02_area .imgcaptions {
    width: 90%;
    margin: 0 auto;
  }

  .top .top_02_area .flexcenter {
    max-width: 90%;
    display: block;
  }

  .top .top_02_area .flexcenter .box {
    width: 100%;
    margin-bottom: 45px;
  }

  .top .top_02_area .topbtn {
    width: 210px;
    margin: 0 auto;
  }

  .top .top_03_area {
    margin-top: 75px;
    position: relative;
  }

  .top .top_03_area .mainttl {
    margin-bottom: 0px;
  }

  .top .top_03_area .personbtn {
    height: auto;
    background: url("../../img/top/img_06_sp.png") no-repeat center center/cover;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }

  .top .top_03_area .personbtn .persons_box {
    width: 100%;
    padding-top: 50%;
    padding-left: 5%;
    border: none;
    color: #fff;
  }

  .top .top_03_area .personbtn .persons_box a {
    display: block;
    color: #fff;
    text-decoration: none;
    border: none;
  }

  .top .top_03_area .personbtn .persons_box a dl {
    margin-bottom: 20px;
    font-weight: 500;
  }

  .top .top_03_area .personbtn .persons_box a dl dt {
    font-size: 18px;
  }

  .top .top_03_area .personbtn .persons_box a dl dd {
    font-size: 14px;
    position: relative;
  }

  .top .top_04_area {
    margin-top: 70px;
    position: relative;
  }

  .top .top_04_area .keyword {
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
  }

  .top .top_04_area .keyword div {
    width: 48%;
    margin-bottom: 45px;
  }

  .top .top_04_area .keyword div dl {
    height: auto;
  }

  .top .top_04_area .keyword div dl dt {
    width: 25px;
    font-size: 18px;
    padding: 6px 0 8px;
    height: auto;
  }

  .top .top_04_area .keyword div dl dd {
    font-size: 12px;
    height: auto;
  }

  .top .top_04_area .keyword div dl dd span {
    padding: 4px 6px 4px;
  }

  .top .top_04_area .keyword div .img {
    width: 100%;
    margin: 25px auto 0;
    padding: 0 20px;
  }

  .top .top_04_area .keyword div .capt {
    font-size: 10px;
    text-align: right;
    padding-bottom: 5px;
  }

  .top .top_04_area .keyword div.topbtn {
    width: 210px;
    margin: 0 auto;
  }

  .top .top_05_area {
    margin-top: 70px;
    padding-bottom: 70px;
  }

  .top .top_05_area .mainttl {
    padding-top: 45px;
  }

  .top .top_05_area .leads {
    padding: 0 5% 3%;
  }

  .top .top_05_area .areamap {
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding-bottom: 48%;
  }

  .top .top_05_area .areamap p {
    position: absolute;
    width: 16%;
  }

  .top .top_05_area .areamap p.pos01 {
    top: 5%;
    left: 2%;
  }

  .top .top_05_area .areamap p.pos02 {
    top: 5%;
    left: 24%;
  }

  .top .top_05_area .areamap p.pos03 {
    top: 40%;
    left: 5%;
  }

  .top .top_05_area .areamap p.pos04 {
    top: 35%;
    left: 33%;
  }

  .top .top_05_area .areamap p.pos05 {
    bottom: 2%;
    left: 33%;
  }

  .top .top_05_area .areamap p.pos06 {
    top: 20%;
    right: 20%;
  }
}

.company main .kv {
  background: url("../../img/company/main.png") no-repeat center center/cover;
}

.company main .inner .cont_box .massage {
  background: url("../../img/company/img_01.png") no-repeat center center/cover;
  width: 100%;
  display: flex;
  align-items: center;
  height: 355px;
}

.company main .inner .cont_box .massage dl {
  color: #fff;
  margin-left: 8%;
}

.company main .inner .cont_box .massage dl dt {
  line-height: 1;
  font-size: 58px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
}

.company main .inner .cont_box .massage dl dd {
  line-height: 3;
  font-size: 17px;
}

.company main .inner .cont_box .listaera {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}

.company main .inner .cont_box .listaera .left,
.company main .inner .cont_box .listaera .right,
.company main .inner .cont_box .listaera .all {
  border-left: 1px solid #00479D;
  padding: 5px 0;
}

.company main .inner .cont_box .listaera dl {
  display: flex;
  justify-content: flex-start;
  padding: 5px 20px;
}

.company main .inner .cont_box .listaera dl dt {
  font-weight: 500;
  width: 120px;
  color: #00479D;
}

.company main .inner .cont_box .listaera dl.logo {
  align-items: center;
}

.company main .inner .cont_box .listaera dl.logo dd {
  font-weight: 500;
  color: #00479D;
  padding-left: 20px;
}

.company main .inner .cont_box .list_area_02 {
  margin-top: 65px;
}

.company main .inner .cont_box .list_area_02 li {
  font-weight: 500;
  font-size: 19px;
  position: relative;
  padding-left: 25px;
}

.company main .inner .cont_box .list_area_02 li:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: #00479D;
  top: 12px;
  left: 0;
}

.company main .inner .cont_box .list_area_03 {
  margin-top: 65px;
}

.company main .inner .cont_box .list_area_03 li {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  /* color: #00479D; */
}

.company main .inner .cont_box .list_area_03 li span {
  font-size: 14px;
  color: #4d4d4d;
  margin-left: 20px;
}

.company main .inner .cont_box .list_area_03 li:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: #00479D;
  top: 50%;
  left: 0;
  margin-top: -7.5px;
}

.company main .inner .cont_box .imgs {
  margin-top: 65px;
}

.company main .inner .cont_box .flexs_01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company main .inner .cont_box .flexs_01 .results {
  width: 47%;
  border: 1px solid #00479D;
  margin-top: 40px;
  padding: 20px 20px;
}

.company main .inner .cont_box .flexs_01 .results p {
  font-size: 14px;
  color: #000;
}

.company main .inner .cont_box .flexs_01 .results ul {
  display: flex;
  justify-content: flex-start;
}

.company main .inner .cont_box .flexs_01 .results ul li {
  padding-right: 0px;
  position: relative;
}

.company main .inner .cont_box .flexs_01 .results ul li:after {
  position: absolute;
  content: url("../../img/company/pdf.svg");
  width: 20px;
  height: 27px;
  right: -25px;
  top: 0px;
}

.company main .inner .cont_box .flexs_01 .results ul li a {
  display: block;
  color: #00479D;
}

.company main .inner .cont_box .flexs_01 .results ul li:nth-child(2) {
  margin-left: 45px;
}

.company main .inner .cont_box .flexs_02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 65px;
  padding-bottom: 65px;
}

.company main .inner .cont_box .flexs_02 .map {
  width: 430px;
  height: 335px;
}

.company main .inner .cont_box .flexs_02 .map iframe {
  width: 100%;
  height: 100%;
}

.company main .inner .pressrel {
  padding: 50px 0;
}

.company main .inner .pressrel dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.company main .inner .pressrel dl dt {
  width: 100px;
}

.company main .inner .pressrel .right_t {
  text-align: right;
  padding: 0 0 20px;
}

.company main .inner .pressrel .ttl {
  text-align: center;
  font-weight: 700;
  text-decoration: underline;
  font-size: 16px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .company main .inner .cont_box .massage {
    height: 200px;
  }

  .company main .inner .cont_box .massage dl {
    color: #fff;
    margin-left: 3%;
  }

  .company main .inner .cont_box .massage dl dt {
    font-size: 24px;
  }

  .company main .inner .cont_box .massage dl dd {
    font-size: 14px;
  }

  .company main .inner .cont_box .listaera {
    display: block;
    margin-top: 25px;
  }

  .company main .inner .cont_box .listaera .left,
  .company main .inner .cont_box .listaera .right,
  .company main .inner .cont_box .listaera .all {
    border-left: 1px solid #00479D;
    padding: 5px 0;
  }

  .company main .inner .cont_box .listaera dl {
    display: block;
    padding: 5px 20px 10px;
  }

  .company main .inner .cont_box .listaera dl dt {
    width: 100%;
  }

  .company main .inner .cont_box .listaera dl.logo {
    align-items: center;
  }

  .company main .inner .cont_box .listaera dl.logo dt {
    width: 140px;
    margin: 0 auto;
  }

  .company main .inner .cont_box .listaera dl.logo dd {
    padding-left: 0px;
    text-align: center;
  }

  .company main .inner .cont_box .list_area_02 {
    margin-top: 25px;
  }

  .company main .inner .cont_box .list_area_02 li {
    font-size: 16px;
  }

  .company main .inner .cont_box .list_area_02 li:before {
    top: 10px;
    margin-top: 0px;
  }

  .company main .inner .cont_box .list_area_03 {
    margin-top: 25px;
  }

  .company main .inner .cont_box .list_area_03 li {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
  }

  .company main .inner .cont_box .list_area_03 li span {
    font-size: 14px;
    margin-left: 0px;
  }

  .company main .inner .cont_box .list_area_03 li:before {
    top: 5px;
    margin-top: 0px;
  }

  .company main .inner .cont_box .imgs {
    margin-top: 25px;
  }

  .company main .inner .cont_box .flexs_01 {
    display: block;
  }

  .company main .inner .cont_box .flexs_01 .results {
    width: 100%;
    margin-top: 10px;
    padding: 8px 20px;
  }

  .company main .inner .cont_box .flexs_01 .results p {
    font-size: 14px;
    color: #000;
    text-align: center;
  }

  .company main .inner .cont_box .flexs_01 .results ul {
    display: block;
    text-align: center;
  }

  .company main .inner .cont_box .flexs_01 .results ul li {
    width: 150px;
    margin: 0 auto;
    padding-top: 1px;
    position: relative;
  }

  .company main .inner .cont_box .flexs_01 .results ul li:after {
    right: -15px;
    top: 1px;
  }

  .company main .inner .cont_box .flexs_01 .results ul li a {
    display: block;
    color: #00479D;
  }

  .company main .inner .cont_box .flexs_01 .results ul li:nth-child(2) {
    margin-left: auto;
  }

  .company main .inner .cont_box .flexs_02 {
    display: block;
    margin-top: 25px;
    padding-bottom: 40px;
  }

  .company main .inner .cont_box .flexs_02 .map {
    width: 100%;
    height: 280px;
    margin-bottom: 25px;
  }

  .company main .inner .pressrel {
    padding: 50px 0;
  }

  .company main .inner .pressrel .right_t {
    text-align: right;
    padding: 0px 0 30px;
  }

  .company main .inner .pressrel .ttl {
    font-size: 15px;
  }
}

.recruit main {
  background: #F3F7F9;
}

.recruit main .kv .mainttl {
  height: 450px;
}

.recruit main .kv .mainttl h2 {
  color: #FF0000;
}

.recruit main .kv .mainttl h2:before,
.recruit main .kv .mainttl h2:after {
  border-color: #FF0000;
}

.recruit main .kv .mainttl h3 {
  color: #000;
}

.recruit main .inner .cont_box .message_area {
  margin: 40px 0;
  border-bottom: 1px solid #000;
}

.recruit main .inner .cont_box .message_area .lead {
  font-size: 21px;
  font-weight: 500;
  color: #000;
  position: relative;
}

.recruit main .inner .cont_box .message_area .lead:before {
  position: absolute;
  content: "";
  width: 100%;
  top: 20px;
  right: 0;
  border-bottom: 1px solid #000;
}

.recruit main .inner .cont_box .message_area .lead span {
  position: relative;
  z-index: 2;
  background: #F3F7F9;
  padding-right: 25px;
}

.recruit main .inner .cont_box .message_area .box {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  color: #595757;
}

.recruit main .inner .cont_box .message_area .box .txts {
  text-align: justify;
  width: 410px;
}

.recruit main .inner .cont_box .message_area .box .imgs {
  width: 410px;
}

.recruit main .inner .cont_box .btns {
  width: 100%;
}

.recruit main .inner .cont_box .btns a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
}

.recruit main .inner .cont_box .btns a .imgs {
  width: 50%;
}

.recruit main .inner .cont_box .btns .txts {
  width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 21px;
  padding: 10px 0;
}

.recruit main .inner .cont_box .btns .guidebox {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.recruit main .inner .cont_box .btns .guidebox .guidebox_box {
  margin: 30px 15px 0;
}

.recruit main .inner .cont_box .guideline_area {
  padding-bottom: 60px;
}

.recruit main .inner .cont_box .guideline_area dl {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px dashed #0041A8;
}

.recruit main .inner .cont_box .guideline_area dl dt {
  width: 230px;
  font-size: 17px;
  font-weight: 500;
  color: #0041A8;
  letter-spacing: 0.1em;
  padding-left: 40px;
}

.recruit main .inner .cont_box .guideline_area dl dt span {
  font-size: 13px;
  position: relative;
  top: -10px;
  letter-spacing: 0;
}

.recruit main .inner .cont_box .guideline_area dl dd {
  width: calc(100% - 230px);
  color: #595757;
  padding: 2px 0 0 0;
  letter-spacing: 0.02em;
}

.recruit main .inner .cont_box .guideline_area dl dd ul {
  display: flex;
}

.recruit main .inner .cont_box .guideline_area dl dd ul li {
  letter-spacing: 0;
}

.recruit main .inner .cont_box .guideline_area dl dd ul li:first-child {
  width: 130px;
}

.recruit main .inner .cont_box .guideline_area dl dd ul li:last-child {
  width: calc(100% - 130px);
}

.recruit main .inner .cont_box .guideline_area dl dd ol li {
  position: relative;
  padding-left: 20px;
}

.recruit main .inner .cont_box .guideline_area dl dd ol li:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #595757;
  top: 8px;
  left: 0px;
}

.recruit main .inner .cont_box .guideline_area dl:last-child {
  border-bottom: none;
}

.recruit main .inner .contact {
  display: flex;
  align-items: stretch;
  margin: 60px 0;
  color: #1A1A1A;
  font-weight: 500;
}

.recruit main .inner .contact .ttls {
  width: 215px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #1A1A1A;
  border-left: 1px solid #1A1A1A;
}

.recruit main .inner .contact .txt_area {
  width: calc(100% - 215px);
  padding: 0 40px;
  line-height: 1.6;
}

.recruit main .inner .contact .txt_area dt {
  font-size: 21px;
}

.recruit main .inner .linksbtn {
  width: 300px;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #000;
}

.recruit main .inner .linksbtn a {
  display: block;
  padding: 20px 0;
  color: #000;
  text-decoration: none;
  position: relative;
}

.recruit main .inner .linksbtn a:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
  top: 50%;
  right: 25px;
  margin-top: -9px;
}

.recruit main .person_area {
  width: 100%;
  color: #595757;
  margin-top: 150px;
}

.recruit main .person_area.top {
  margin-top: -200px;
}

.recruit main .person_area .mainkv {
  width: 100%;
  height: 650px;
}

.recruit main .person_area .mainkv.person_01 {
  background: url("../../img/recruit/02/img_01.png") no-repeat top center/cover;
}

.recruit main .person_area .mainkv.person_02 {
  background: url("../../img/recruit/02/img_06.png") no-repeat top center/cover;
}

.recruit main .person_area .mainkv.person_03 {
  background: url("../../img/recruit/02/img_09.png") no-repeat top center/cover;
}

.recruit main .person_area .mainkv .kvttl {
  height: 650px;
  width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.recruit main .person_area .mainkv .kvttl.ttls01 {
  justify-content: flex-start;
}

.recruit main .person_area .mainkv .kvttl h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.1em;
}

.recruit main .person_area .mainkv .kvttl h3 span {
  background: #0041A8;
  color: #fff;
  padding: 0 15px 5px;
}

.recruit main .person_area .cont_box {
  background: #fff;
  max-width: 1024px;
  margin: -150px auto 0;
}

.recruit main .person_area .cont_box .box_inner {
  padding: 0 5%;
}

.recruit main .person_area .cont_box .box_inner .person_box {
  padding-top: 5%;
}

.recruit main .person_area .cont_box .box_inner .person_box.pts {
  padding-top: 10%;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex {
  display: flex;
  justify-content: space-between;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex .txt_area {
  width: 475px;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex .txt_area .lead {
  font-weight: 500;
  padding: 0 25px;
  font-size: 21px;
  color: #000;
  border-bottom: 2px solid #0041A8;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex .txt_area .txt {
  text-align: justify;
  padding: 0 25px;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex .profile {
  width: 410px;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex .profile dl {
  color: #0041A8;
  padding: 5px 20px;
  margin-top: 20px;
  border-right: 2px solid #0041A8;
  border-left: 2px solid #0041A8;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex .profile dd {
  font-weight: 500;
  font-size: 22px;
}

.recruit main .person_area .cont_box .box_inner .person_box .flex .profile dd span {
  font-size: 14px;
  padding-left: 20px;
}

.recruit main .person_area .cont_box .box_inner .person_box .under_img {
  padding-top: 40px;
}

.recruit main .person_area .cont_box .box_inner .workbtns {
  width: 300px;
  text-align: center;
  margin: 40px auto 20px;
  font-size: 18px;
  font-weight: 500;
  background: #0041A8;
}

.recruit main .person_area .cont_box .box_inner .workbtns a {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.recruit main .person_area .cont_box .box_inner .workbtns a:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  top: 50%;
  right: 25px;
  margin-top: -9px;
}

@media screen and (max-width: 767px) {
  .recruit main {
    background: #F3F7F9;
  }

  .recruit main .kv .mainttl {
    height: 150px;
  }

  .recruit main .inner .cont_box .message_area {
    margin: 30px 0;
    border-bottom: 1px solid #000;
  }

  .recruit main .inner .cont_box .message_area .lead {
    font-size: 16px;
  }

  .recruit main .inner .cont_box .message_area .lead span {
    padding-right: 15px;
  }

  .recruit main .inner .cont_box .message_area .box {
    display: block;
    padding: 30px 0;
  }

  .recruit main .inner .cont_box .message_area .box .txts {
    width: 100%;
    margin-bottom: 25px;
  }

  .recruit main .inner .cont_box .message_area .box .imgs {
    width: 100%;
  }

  .recruit main .inner .cont_box .btns {
    width: 100%;
  }

  .recruit main .inner .cont_box .btns a {
    display: block;
  }

  .recruit main .inner .cont_box .btns a .imgs {
    width: 100%;
  }

  .recruit main .inner .cont_box .btns .txts {
    width: 100%;
    font-size: 16px;
  }

  .recruit main .inner .cont_box .btns .guidebox {
    flex-wrap: wrap;
  }

  .recruit main .inner .cont_box .btns .guidebox .guidebox_box {
    width: 100%;
    margin: 30px 5% 0;
  }

  .recruit main .inner .cont_box .guideline_area {
    padding-bottom: 35px;
  }

  .recruit main .inner .cont_box .guideline_area dl {
    display: block;
    padding: 30px 0;
    border-bottom: 1px dashed #0041A8;
  }

  .recruit main .inner .cont_box .guideline_area dl dt {
    width: 100%;
    font-size: 16px;
    padding-left: 0px;
  }

  .recruit main .inner .cont_box .guideline_area dl dt span {
    font-size: 13px;
    top: 0;
  }

  .recruit main .inner .cont_box .guideline_area dl dd {
    width: 100%;
  }

  .recruit main .inner .cont_box .guideline_area dl dd ul {
    display: flex;
  }

  .recruit main .inner .cont_box .guideline_area dl dd ul li {
    letter-spacing: 0;
  }

  .recruit main .inner .cont_box .guideline_area dl dd ul li:first-child {
    width: 100px;
  }

  .recruit main .inner .cont_box .guideline_area dl dd ul li:last-child {
    width: calc(100% - 100px);
  }

  .recruit main .inner .cont_box .guideline_area dl:last-child {
    border-bottom: none;
  }

  .recruit main .inner .contact {
    display: block;
    margin: 40px 0;
  }

  .recruit main .inner .contact .ttls {
    width: 100%;
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
    display: block;
    border-right: none;
    border-left: none;
    border-top: 1px solid #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
  }

  .recruit main .inner .contact .txt_area {
    width: 100%;
    padding: 10px 0px;
    line-height: 1.6;
  }

  .recruit main .inner .contact .txt_area dt {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .recruit main .inner .linksbtn {
    width: 100%;
    font-size: 16px;
  }

  .recruit main .inner .linksbtn a {
    padding: 10px 0;
  }

  .recruit main .person_area {
    width: 100%;
    color: #595757;
    margin-top: 70px;
  }

  .recruit main .person_area.top {
    margin-top: -50px;
  }

  .recruit main .person_area .mainkv {
    width: 100%;
    height: 300px;
  }

  .recruit main .person_area .mainkv .kvttl {
    height: 320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
  }

  .recruit main .person_area .mainkv .kvttl.ttls01 {
    justify-content: flex-end;
  }

  .recruit main .person_area .mainkv .kvttl h3 {
    font-size: 24px;
  }

  .recruit main .person_area .cont_box {
    background: #fff;
    max-width: 90%;
    margin: 40px auto 0;
  }

  .recruit main .person_area .cont_box .box_inner {
    padding: 0 5%;
  }

  .recruit main .person_area .cont_box .box_inner .person_box {
    padding-top: 5%;
  }

  .recruit main .person_area .cont_box .box_inner .person_box.pts {
    padding-top: 10%;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .flex .txt_area {
    width: 100%;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .flex .txt_area .lead {
    padding: 0 0px 10px;
    font-size: 16px;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .flex .txt_area .txt {
    padding: 0 0px;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .flex .profile {
    width: 100%;
    margin-bottom: 15px;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .flex .profile dt {
    font-size: 11px;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .flex .profile dd {
    font-weight: 500;
    font-size: 18px;
  }

  .recruit main .person_area .cont_box .box_inner .person_box .under_img {
    padding-top: 25px;
  }

  .recruit main .person_area .cont_box .box_inner .workbtns {
    width: 100%;
    font-size: 16px;
  }
}

.work main .kv {
  background: url("../../img/work/common/main.png") no-repeat center center/cover;
}

.work main .inner .cont_box {
  color: #595757;
}

/* .work main .inner .cont_box .mainbanner.back_01 {
  background: url("../../img/work/01/img_01.png") no-repeat center center/cover;
}

.work main .inner .cont_box .mainbanner.back_02 {
  background: url("../../img/work/02/img_01.png") no-repeat center center/cover;
}

.work main .inner .cont_box .mainbanner.back_03 {
  background: url("../../img/work/03/img_01.png") no-repeat center center/cover;
} */

.work main .inner .cont_box .mainbanner.back_04 {
  background: url("../../img/work/04/img_01.png") no-repeat center center/cover;
}

.work main .inner .cont_box .thumbslidettl {
  width: 420px;
  margin: 65px auto 45px;
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #0041A8;
  border-bottom: 3px solid #0041A8;
}

.work main .inner .cont_box .thumbslidettl:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -15px;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 7.5px 0 7.5px;
  border-color: #0041A8 transparent transparent transparent;
}

.work main .inner .cont_box #sliderwrap {
  width: 780px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 65px;
}

.work main .inner .cont_box #sliderwrap .slider .ttls_slide {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.work main .inner .cont_box #sliderwrap .slider .ttls_slide span {
  font-size: 14px;
  font-weight: 400;
}

.work main .inner .cont_box #sliderwrap #thumbnail-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 5px;
}

.work main .inner .cont_box #sliderwrap #thumbnail-list li {
  width: 16.32%;
  margin-right: 0.4%;
  margin-bottom: 0.4%;
  transition: opacity 0.3s ease-out;
}

.work main .inner .cont_box #sliderwrap #thumbnail-list li:nth-child(6) {
  margin-right: 0;
}

.work main .inner .cont_box #sliderwrap #thumbnail-list li:hover {
  opacity: 0.6;
}

.work main .inner .cont_box #sliderwrap #thumbnail-list li.thumbnail-current {
  opacity: 0.6;
}

.work main .inner .cont_box #sliderwrap .slick-prev {
  position: absolute;
  width: 45px;
  height: 45px;
  background: #0041A8;
  border: none;
  outline: none;
  color: #fff;
  text-indent: -9999px;
  top: 54%;
  left: -60px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

.work main .inner .cont_box #sliderwrap .slick-prev:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(-45deg);
  top: 11px;
  left: 16px;
}

.work main .inner .cont_box #sliderwrap .slick-prev:hover {
  opacity: 0.6;
}

.work main .inner .cont_box #sliderwrap .slick-next {
  position: absolute;
  width: 45px;
  height: 45px;
  background: #0041A8;
  border: none;
  outline: none;
  color: #fff;
  text-indent: -9999px;
  top: 54%;
  right: -60px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

.work main .inner .cont_box #sliderwrap .slick-next:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  top: 11px;
  right: 16px;
}

.work main .inner .cont_box #sliderwrap .slick-next:hover {
  opacity: 0.6;
}

.work main .inner .cont_box .flexs_02 {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

.work main .inner .cont_box .flexs_02 .txt_area {
  width: 380px;
}

.work main .inner .cont_box .flexs_02 .txt_area p:first-child {
  padding-bottom: 25px;
}

.work main .inner .cont_box .flexs_02 .txt_area dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #000;
  padding: 15px;
  color: #000;
}

.work main .inner .cont_box .flexs_02 .txt_area dl dt {
  width: 185px;
  line-height: 20px;
}

.work main .inner .cont_box .flexs_02 .txt_area dl dd {
  width: calc(100% - 105px);
  padding-left: 20px;
  border-left: 1px solid #000;
}

.work main .inner .cont_box .flexs_02 .imgs {
  width: 440px;
}

.work main .inner .cont_box .flexs_02 .map {
  width: 440px;
}

.work main .inner .cont_box .flexs_02 .map iframe {
  width: 100%;
  height: 260px;
}

@media screen and (max-width: 767px) {
  .work main .inner .cont_box .thumbslidettl {
    width: 100%;
    font-size: 16px;
    margin: 35px auto 25px;
  }

  .work main .inner .cont_box #sliderwrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 65px;
  }

  .work main .inner .cont_box #sliderwrap .slider .ttls_slide {
    line-height: 1.6;
    height: 85px;
    text-align: center;
    color: #000;
    font-size: 15px;
  }

  .work main .inner .cont_box #sliderwrap .slider .ttls_slide span {
    font-size: 12px;
  }

  .work main .inner .cont_box #sliderwrap #thumbnail-list li {
    width: 33%;
    margin-right: 0.333%;
    margin-bottom: 0.333%;
    transition: opacity 0.3s ease-out;
  }

  .work main .inner .cont_box #sliderwrap #thumbnail-list li:nth-child(3),
  .work main .inner .cont_box #sliderwrap #thumbnail-list li:nth-child(6),
  .work main .inner .cont_box #sliderwrap #thumbnail-list li:nth-child(9) {
    margin-right: 0;
  }

  .work main .inner .cont_box #sliderwrap .slick-prev {
    top: 60%;
    left: -45px;
  }

  .work main .inner .cont_box #sliderwrap .slick-next {
    top: 60%;
    right: -45px;
  }

  .work main .inner .cont_box .flexs_02 {
    display: block;
    justify-content: space-between;
    padding: 25px 0 35px;
  }

  .work main .inner .cont_box .flexs_02 .txt_area {
    width: 100%;
  }

  .work main .inner .cont_box .flexs_02 .txt_area p:first-child {
    padding-bottom: 15px;
  }

  .work main .inner .cont_box .flexs_02 .txt_area dl {
    display: block;
    padding: 10px 20px;
    color: #000;
  }

  .work main .inner .cont_box .flexs_02 .txt_area dl dt {
    width: 100%;
  }

  .work main .inner .cont_box .flexs_02 .txt_area dl dd {
    width: 100%;
    padding-left: 0px;
    border-top: 1px solid #000;
    border-left: none;
    padding-top: 10px;
  }

  .work main .inner .cont_box .flexs_02 .imgs {
    width: 100%;
    margin-top: 20px;
  }

  .work main .inner .cont_box .flexs_02 .map {
    width: 100%;
    margin-top: 20px;
  }
}


/* 20230406 追加 */
main .cont_box .mainbanner {
  margin-top: 15px;
}

.box_ttl p span {
  font-size: 80%;
}

/* 20230627 追加 */
.text_80par {
  font-size: 80%;
}

.recruit main .inner .cont_box .btns .guidebox .guidebox_box .shimsotsu_title {
  font-size: 18px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 25px;
  text-align: center;
  margin: 0 0 20px;
}

/* 再生ボタンアクション */

button.play_btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #c4302b;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  button.play_btn {
    margin-top: 0px;
  }
}

button.play_btn .play_icn {
  width: 25px;
  height: 25px;
  fill: #fff;
}

button.play_btn:hover {
  animation: hoverShake 0.15s linear 3;
  background-color: #fff;
  opacity: 1;
}

.play_btn:hover .play_icn {
  fill: #c4302b;
}

@keyframes hoverShake {
  0% {
    transform: skew(0deg, 0deg);
  }

  25% {
    transform: skew(1deg, 1deg);
  }

  75% {
    transform: skew(-1deg, -1deg);
  }

  100% {
    transform: skew(0deg, 0deg);
  }
}

/* Youtubeモーダルスタイル */

/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-close {
  display: none;
}

/* 業務トップのビデオスタイル */

#video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  position: absolute;
  z-index: 0;
  object-fit: cover;
}

.covertop {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.164) 50%, rgba(0, 0, 0, 0.384) 50%);
  background-size: 2px 2px;
  z-index: 1;
}

main .cont_box .mainbanner {
  position: relative;
}

main .cont_box .mainbanner dl {
  z-index: 2;
}

/* リセット */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* フォントのスケール */
@media screen and (max-width: 767px) {
  .font_space_1 {
    letter-spacing: -0.01em;
  }
}