@charset "UTF-8";
/*--------------------------------------------------------------
1. Reset
--------------------------------------------------------------*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


* {
  margin: 0;
  padding: 0;
}


@media all and (-ms-high-contrast: none) {
	@media print, screen and (min-width: 768px) {
		.header__left video {
			padding-left: 3%;
		}
	}
}

html {
  font-size: 62.5%;
  /* 15px */
}

body {
  width: 100%;
  background-color: #fff;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

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

/*----------------------------------------
	Text
----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0 auto 1.6rem;
  padding: 0;
  line-height: 1.4;
}

pre {
  margin: 1.5em 25px;
  padding: 1em;
  overflow: scroll;
  line-height: 1.9;
}

blockquote {
  margin: 1.5em 1px;
  border: 5px solid #9f998f;
  color: #77471c;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-position: left bottom;
}

blockquote[title]::before {
  padding: 0.2em 10px 0.4em 10px;
  content: attr(title);
  display: block;
  color: #fff;
  background-color: #9f998f;
  font-weight: bold;
}

blockquote[cite]::after {
  margin: 0.5em 10px;
  content: attr(cite);
  display: block;
  text-align: right;
  font-size: 85%;
}

blockquote * {
  color: #333 !important;
}

em {
  color: #000;
}

pre em {
  font-weight: bold;
  background-image: none;
}

q {
  text-decoration: underline;
}

cite {
  display: block;
  text-align: right;
}

kbd {
  background-color: #f5f5f5;
  font-family: "Osaka|", monospace;
  text-transform: uppercase;
  padding: 0 0.4em;
  border: 1px solid #6a8eaa;
}

del {
  text-decoration: line-through;
}

ins {
  border-top: 10px solid #3cadd6;
  border-bottom: 10px solid #3cadd6;
  border: 7px solid #3cadd6;
  margin: 2em 1px;
  padding: 1px 0;
  display: block;
  text-decoration: none;
}

ins * {
  color: #666 !important;
}

abbr,
acronym {
  border-bottom: 1px dotted #aaa;
  cursor: help;
}

/*----------------------------------------
	List
----------------------------------------*/
ol li {
  margin-left: 1.5em;
}

li,
dt,
dd {
  list-style-type: none;
  list-style-position: outside;
}

ol li {
  list-style: decimal;
}

dt {
  font-weight: bold;
}

/*----------------------------------------
	Anchor
----------------------------------------*/
a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: inherit;
  outline: none;
  text-decoration: underline;
}

a img {
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

/*----------------------------------------
	Table
----------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/*----------------------------------------
	Form
----------------------------------------*/
form {
  font-family: Arial, Helvetica, sans-serif;
}

fieldset,
legend {
  border: none;
}

legend {
  display: none;
}

input[type=text],
textarea {
  padding: 0.2em;
  width: 100%;
  border: 1px solid #dad9da;
  background-color: #eeeeee;
}

input {
  line-height: 1.2;
}

select, input, textarea, button {
  vertical-align: middle;
  position: relative;
  margin-right: 3px;
  top: 0;
}

input[type="checkbox"],
input[type="radio"] {
  border: none;
  top: -1px;
  margin-right: 2px;
}

input[type=text]:focus,
textarea:focus {
  border: 1px solid #00519f;
  background-color: #fff;
}

input.button {
  padding: 0;
  border: none;
  background-image: none;
  vertical-align: top;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/*----------------------------------------
	Others
----------------------------------------*/
hr {
  border: none;
  border-top: 1px dotted #ccc;
}

img {
  margin: 0 auto;
  max-width: 100%;
  border: none;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

/*--------------------------------------------------------------
2. Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  max-width: 100%;
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.25;
  margin: 0 0 10px;
}

h1 {
  font-size: 30px;
}

h2 {
  color: #165dd9;
  font-size: 6.13vw;
  font-weight: 400;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

b,
strong {
  font-weight: 500;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.sub_bottom,
.news__elem sub {
	display: inline-block;
	top: .8ex;
	font-size: 19px;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

@media print, screen and (min-width: 768px) {
  body,
  button,
  input,
  select,
  textarea {
    font-size: 8.4px;
    line-height: 1.8;
  }
  h2 {
    font-size: 3.3em;
  }
}

@media print, screen and (min-width: 992px) {
  body,
  button,
  input,
  select,
  textarea {
    font-size: 8px;
    line-height: 1.8;
  }
}

/*--------------------------------------------------------------
3. Elements
--------------------------------------------------------------*/
.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ol {
  list-style: none;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 0;
}

table {
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  font-weight: bold;
  margin: 0 0 2em;
  width: 100%;
}
.cel07 th:first-child {
    width: 30%;
}
th {
  border-bottom: 1px solid #bfc7d4;
  border-right: 1px solid #bfc7d4;
  font-weight: 700;
  padding: 8px;
}

td {
  border-bottom: 1px solid #bfc7d4;
  border-right: 1px solid #bfc7d4;
  padding: 8px;
}

blockquote:before {
  content: "\201C";
  display: block;
  font-size: 30px;
  height: 0;
  left: -20px;
  position: relative;
  top: -10px;
}

/*--------------------------------------------------------------
4. Clearings
--------------------------------------------------------------*/
.clear:after,
.hentry:after,
.archive-post-wrap:after,
.wrapper:after,
.fullframe-nav-menu:after,
.featured-content-wrap:after,
#content_sidebar_wrap:after,
.widget:after,
.widget-wrap:after,
#nav-below:after,
.page-links:after,
#site-generator:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.pc {
  display: none !important;
}
.pc2 {
  display: none !important;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: inherit !important;
  }
}
@media print, screen and (min-width: 992px) {
  .pc2 {
    display: inherit !important;
  }
}
/*

ICON

*/
.icon.hand_heart {
  width: 9vw;
  height: 7vw;
  background-image: url(../images/top/icon_hand_heart.png);
}

.icon.exclamation {
  width: 6vw;
  height: 6vw;
  background-image: url(../images/common/icon_exclamation.png);
}
.icon.exclamations {
  width: 6vw;
  height: 6vw;
  background-image: url(../images/common/icon_exclamations.png);
}


.icon.newspaper {
  width: 5vw;
  height: 5vw;
  background-image: url(../images/common/icon_newspaper.png);
}

.icon.newspaper_white {
  width: 5vw;
  height: 5vw;
  background-image: url(../images/common/icon_newspaper_white.png);
}

.icon.paper {
  width: 5vw;
  height: 5vw;
  background-image: url(../images/common/icon_paper.png);
}

.icon.pdf {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/common/icon_pdf_red.png);
}

.icon.camera {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/common/icon_camera.png);
}

.icon.blank {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/common/icon_blank.png);
}

.icon.blank-large {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/common/icon_blank_large.png);
}

.icon.excel {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/common/icon_excel.png);
}

.icon.down {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/common/icon_down.png);
}

.icon.monitor {
  margin-right: 5px;
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_osusume.png);
}

.icon.top-icon {
  background-image: url(../images/common/icon_monitor.png);
}

.icon.faq {
  margin-right: 10px;
  width: 11.2vw;
  height: 10vw;
  background-image: url(../images/common/icon_faq.png);
}

.icon.graph {
  width: 7.2vw;
  height: 8vw;
  background-image: url(../images/common/icon_graph.png);
}

.icon.graph_2 {
  width: 11.2vw;
  height: 10vw;
  background-image: url(../images/common/icon_graph_2.png);
}

.icon.graph_3 {
  width: 11.2vw;
  height: 10vw;
  background-image: url(../images/common/icon_graph_3.png);
}

.icon.papers_2 {
  width: 11.2vw;
  height: 10vw;
  background-image: url(../images/common/icon_papers_2.png);
}

.icon.disk {
  width: 11.2vw;
  height: 10vw;
  background-image: url(../images/common/icon_disk.png);
}

.icon.other {
  width: 11.2vw;
  height: 10vw;
  background-image: url(../images/common/icon_other.png);
}

.icon.leaf_2 {
  width: 8vw;
  height: 8vw;
  background-image: url(../images/common/icon_leaf_2.png);
}

.icon.bag {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_bag.png);
}

.icon.balance {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_balance.png);
}

.icon.building {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_building.png);
}

.icon.building2 {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_building2.png);
}

.icon.compas {
  width: 8vw;
  height: 9vw;
  background-image: url(../images/common/icon_compas.png);
}

.icon.factory {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_factory.png);
}
.icon.dx {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_dx.png);
}

.icon.pen {
  width: 9vw;
  height: 11vw;
  background-image: url(../images/common/icon_pen.png);
}

.icon.school {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_school.png);
}

.icon.shakuhand {
  width: 8vw;
  height: 7vw;
  background-image: url(../images/common/icon_shakuhand.png);
}

.icon.threeman {
  width: 10vw;
  height: 8vw;
  background-image: url(../images/common/icon_threeman.png);
}

.icon.man2 {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_man2.png);
}

.icon.wave {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_wave.png);
}

.icon.wave2 {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_wave2.png);
}

.icon.scope {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_scope.png);
}

.icon.list {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_list.png);
}

.icon.project {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_project.png);
}

.icon.search3 {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_search3.png);
}

.icon.sort {
  width: 10vw;
  height: 11vw;
  background-image: url(../images/common/icon_sort.png);
}

.icon.printer {
  width: 5vw;
  height: 5vw;
  background-image: url(../images/common/icon_printer.png);
}

.icon.link {
  width: 5vw;
  height: 5vw;
  background-image: url(../images/common/icon_link.png);
}

/*20220810追加ここから*/
.icon.kouzyo_kengaku {
  width: 5vw;
  height: 5vw;
  background-image: url(../images/common/icon_kouzyo_kengaku.jpg);
}
/*20220810追加ここまで*/

/*20220824追加ここから*/
.icon.kouzyo_kengaku_01 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_01.png);
}

.icon.kouzyo_kengaku_02 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_02.png);
}

.icon.kouzyo_kengaku_03 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_03.png);
}

.icon.kouzyo_kengaku_04 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_04.png);
}

.icon.kouzyo_kengaku_05 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_05.png);
}

.icon.kouzyo_kengaku_06 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_06.png);
}

.icon.kouzyo_kengaku_07 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_07.png);
}

.icon.kouzyo_kengaku_08 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_08.png);
}

.icon.kouzyo_kengaku_09 {
  width: 4vw;
  height: 4vw;
  background-image: url(../images/company/kouzyo_kengaku/icon_09.png);
}

/*20220810追加ここまで*/




@media print, screen and (min-width: 768px) {
  .icon.hand_heart {
    width: 64px;
    height: 41px;
  }
  .icon.exclamation {
    width: 46px;
    height: 39px;
  }
  .icon.newspaper {
    width: 42px;
    height: 38px;
  }
  .icon.newspaper_white {
    width: 42px;
    height: 38px;
  }
  .icon.paper {
    width: 33px;
    height: 45px;
  }
  .icon.pdf {
    width: 24px;
    height: 30px;
  }
  .icon.camera {
    width: 23px;
    height: 19px;
  }
  .icon.blank {
    width: 14px;
    height: 14px;
  }
  .icon.blank-large {
    width: 21px;
    height: 21px;
  }
  .icon.excel {
    width: 21px;
    height: 30px;
  }
  .icon.down {
    width: 24px;
    height: 23px;
  }
  .icon.monitor {
    margin-right: 10px;
    width: 49px;
    height: 45px;
  }
  .icon.faq {
    margin-right: 20px;
    width: 63px;
    height: 56px;
  }
  .icon.graph {
    width: 50px;
    height: 53px;
  }
  .icon.graph_2 {
    width: 41px;
    height: 33px;
  }
  .icon.graph_3 {
    width: 39px;
    height: 33px;
  }
  .icon.papers_2 {
    width: 29px;
    height: 36px;
  }
  .icon.disk {
    width: 36px;
    height: 36px;
  }
  .icon.other {
    width: 45px;
    height: 45px;
  }
  .icon.leaf_2 {
    width: 44px;
    height: 46px;
  }
  .icon.bag {
    width: 44px;
    height: 41px;
  }
  .icon.balance {
    width: 38px;
    height: 38px;
  }
  .icon.building {
    width: 43px;
    height: 46px;
  }
  .icon.building2 {
    width: 42px;
    height: 42px;
  }
  .icon.compas {
    width: 50px;
    height: 50px;
  }
  .icon.dx,
  .icon.factory {
    width: 40px;
    height: 30px;
  }
  .icon.pen {
    width: 49px;
    height: 59px;
  }
  .icon.school {
    width: 43px;
    height: 43px;
  }
  .icon.shakuhand {
    width: 50px;
    height: 36px;
  }
  .icon.threeman {
    width: 58px;
    height: 46px;
  }
  .icon.man2 {
    width: 63px;
    height: 67px;
  }
  .icon.wave {
    width: 58px;
    height: 41px;
  }
  .icon.wave2 {
    width: 58px;
    height: 41px;
  }
  .icon.scope {
    width: 36px;
    height: 36px;
  }
  .icon.list {
    width: 50px;
    height: 38px;
  }
  .icon.project {
    width: 62px;
    height: 52px;
  }
  .icon.search3 {
    width: 53px;
    height: 53px;
  }
  .icon.sort {
    width: 44px;
    height: 41px;
  }
  .icon.printer {
    width: 28px;
    height: 28px;
  }
  .icon.link {
    width: 25px;
    height: 25px;
  }

/*20220810追加ここから*/
  .icon.kouzyo_kengaku {
    width: 38px;
    height: 30px;
  }
/*20220810追加ここまで*/

/*20220824ここから*/
  .icon.kouzyo_kengaku_01 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_02 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_03 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_04 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_05 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_06 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_07 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_08 {
    width: 4vw;
    height: 4vw;
  }

  .icon.kouzyo_kengaku_09 {
    width: 4vw;
    height: 4vw;
  }


/*20220824ここまで*/

}

/*--------------------------------------------------------------
5. Header Area
--------------------------------------------------------------*/
.site-header {
  width: 100%;
  height: 50px;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
}

.header__in {
  padding: 0;
  width: 100%;
  height: 50px;
  position: relative;
}

.header__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  height: 50px;
  text-align: center;
	overflow: hidden;
}

.header__left img {
  width: 100%;
  vertical-align: bottom;
}
@media print, screen and (max-width: 767px) {
	.header__left video{
	  width: 100%;
	  vertical-align: bottom;
	}
}

.header__right .right_upper .lang_size {
  display: none;
}

.header__right .right_upper .sitemap {
  display: none;
}

.header__right .right_upper .search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.header__right .right_upper .search__btn img {
  margin: 0;
  width: 20px;
  height: 20px;
}

.header__right .right_upper .search__in {
  display: none;
  padding: 20px;
  width: 100%;
  background-color: #f4f4f4;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
}

.header__right .right_upper .search input {
  float: left;
  margin: 0;
  width: calc( 100% - 75px);
  height: 40px;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  -webkit-appearance: none;
}

.header__right .right_upper .search button {
  margin: 0;
  padding: 3px 8px;
  width: 75px;
  height: 40px;
  font-size: 16px;
  color: #fff;
  background-color: #00519f;
  border: 1px solid #00519f;
  cursor: pointer;
}

.header__right .right_upper .global {
  display: none;
}

.header__right .right_under {
  display: none;
}

.header__navigation {
  display: none;
}

.header__navigation .main_navi {
  background-color: #e1e1e1;
}

.header__navigation .main_navi li:nth-child(2) .js-accordion-btn:before,
.header__navigation .main_navi li:nth-child(2) .js-accordion-btn:after {
	display: none;
}
.header__navigation .main_navi li:nth-child(2) .is-current:before,
.header__navigation .main_navi li:nth-child(2) .is-current:after {
	display: block;
}

.header__navigation .main_navi li a, .header__navigation .main_navi li span {
  display: flex;
  align-items: center;
  padding: 10px 34px 10px 12px;
  color: #00519f;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  /*cursor: pointer;*/
}

@media print, screen and (min-width: 768px) {
    .header__navigation .main_navi li a, .header__navigation .main_navi li span a {
        /*pointer-events: none;*/
    }
}
.header__navigation .main_navi li span::before, .header__navigation .main_navi li span::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #0847b6;
  position: absolute;
}

.header__navigation .main_navi li span::before {
  right: 16px;
  top: 50%;
}

.header__navigation .main_navi li span::after {
  right: 16px;
  top: 50%;
	transform: rotate(90deg);
}

.header__navigation .main_navi li span.open::after {
  content: none;
}

@media print, screen and (max-width: 991px) {
  .header__navigation .main_navi .sub_navi div[class^="sub_navi_"] {
    padding: 0 0 20px;
  }
  .header__navigation .main_navi .sub_navi div[class^="sub_navi_"] ul li {
    margin: 0;
    padding: 8px 12px;
  }
  .header__navigation .main_navi .sub_navi div[class^="sub_navi_"] ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00519f;
    font-size: 4.4vw;
    text-align: center;
    background-color: #fff;
  }
  .header__navigation .main_navi .sub_navi div[class^="sub_navi_"] ul li a:before, .header__navigation .main_navi .sub_navi div[class^="sub_navi_"] ul li a:after {
    content: none;
  }
  .header__navigation .main_navi .sub_navi div[class^="sub_navi_"] ul li a br {
    display: none;
  }
}

.header__navigation .bottom_navi_sp {
  padding: 0 0 60px;
  background-color: #f4f4f4;
}

.header__navigation .bottom_navi_sp ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header__navigation .bottom_navi_sp ul li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.header__navigation .bottom_navi_sp ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.9vw 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  border-bottom: 1px solid #d9d9d9;
}

.header__navigation .bottom_navi_sp ul li a:nth-of-type(2n-1) {
  border-right: 1px solid #d9d9d9;
}

.header__navigation .bottom_navi_sp ul li a span::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}

.header__navigation .bottom_navi_sp ul li:nth-of-type(1) a span::before {
  width: 17px;
  height: 19px;
  background-image: url(../images/common/icon_man_sp.png);
}

.header__navigation .bottom_navi_sp ul li:nth-of-type(2) a span::before {
  width: 17px;
  height: 19px;
  background-image: url(../images/common/icon_leaf_sp.png);
}

.header__navigation .bottom_navi_sp ul li:nth-of-type(3) a span::before {
  width: 17px;
  height: 19px;
  background-image: url(../images/common/icon_mail_sp.png);
}

.header__navigation .bottom_navi_sp .btn_global {
  display: block;
  padding: 15px;
  text-align: center;
}

.header__navigation .bottom_navi_sp .btn_global a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  color: #fff;
  font-size: 4.8vw;
  background-color: #00519f;
}

.header__navigation .sub_navi, .header__navigation .sub_navis {
  display: none;
  /*height: calc( 100vh - 100px);*/
  overflow: auto;
  /*///19.09.17追加///*/
  /*///19.09.17追加///*/
}

@media print, screen and (max-width: 991px) {
  .header__navigation .sub_navi .ttl, .header__navigation .sub_navis .ttl {
    /*///display:none;///*/
    padding: 10px 0;
  }
  .header__navigation .sub_navi .ttl a, .header__navigation .sub_navis .ttl a {
    display: inline;
    color: #00519f;
    font-size: 1.8rem;
    border: 0;
    position: relative;
    padding: 10px 10px 10px 12px;
  }
  .header__navigation .sub_navi .ttl a::before, .header__navigation .sub_navis .ttl a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background: none;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    position: static;
  }
  .header__navigation .sub_navi .ttl a::after, .header__navigation .sub_navis .ttl a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: none;
    border-right: 3px solid #00519f;
    border-bottom: 3px solid #00519f;
    position: absolute;
    right: -10px;
    top: 54%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header__navigation .sub_navi .sub_navi_1_1 .ttl a:before, .header__navigation .sub_navis .sub_navi_1_1 .ttl a:before {
    width: 27px;
    height: 19px;
    background-image: url(../images/common/icon_card_sp.png);
  }
  .header__navigation .sub_navi .sub_navi_1_2 .ttl a:before, .header__navigation .sub_navis .sub_navi_1_2 .ttl a:before {
    width: 24px;
    height: 30px;
    background-image: url(../images/common/icon_stethoscope_sp.png);
  }
  .header__navigation .sub_navi .sub_navi_1_3 .ttl a:before, .header__navigation .sub_navis .sub_navi_1_3 .ttl a:before {
    width: 24px;
    height: 30px;
    background-image: url(../images/common/icon_graph_sp.png);
  }
  .header__navigation .sub_navi .sub_navi_1_4 .ttl a:before, .header__navigation .sub_navis .sub_navi_1_4 .ttl a:before {
    width: 24px;
    height: 30px;
    background-image: url(../images/common/icon_building_sp.png);
  }
  .header__navigation .sub_navi.snav05 .ttl a:before {
    width: 30px;
    height: 28px;
    background-image: url(../images/common/icon_rd_sp.png);
  }
}

.header__navigation .sub_navi_1_1 ul, .header__navigation .sub_navis_1_1 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 15px;
  width: 100%;
}

.header__navigation .sub_navi_1_1 ul li, .header__navigation .sub_navis_1_1 ul li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 8px 12px;
}

.header__navigation .sub_navi_1_1 ul li a, .header__navigation .sub_navis_1_1 ul li a {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 0;
}

.header__navigation .sub_navi_1_1 ul li a:before, .header__navigation .sub_navi_1_1 ul li a:after, .header__navigation .sub_navis_1_1 ul li a:before, .header__navigation .sub_navis_1_1 ul li a:after {
  content: none;
}

.menu-open .header__navigation {
  display: block !important;
  height: calc( 100vh - 50px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #f4f4f4;
}

.menu-open #hamburger_button {
  background-color: #f4f4f4;
}

.search-menu-open .search__in {
  display: block !important;
}

.search-menu-open .search__btn {
  background-color: #f4f4f4;
}

#hamburger_button {
  display: block;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  cursor: pointer;
}

#hamburger_button span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #0847b6;
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translateY(-50%);
}

#hamburger_button span::before, #hamburger_button span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0847b6;
  position: absolute;
  left: 0;
  transition: 0.6s;
}

#hamburger_button span::before {
  top: -7px;
}

#hamburger_button span::after {
  top: 7px;
}

.menu-open #hamburger_button span {
  background-color: transparent;
}

.menu-open #hamburger_button span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open #hamburger_button span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media print, screen and (min-width: 768px) {
  .header__navigation .sub_navi_1_1 ul {
    padding: 20px;
  }
  .header__navigation .sub_navi_1_1 ul li {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    border: 0;
    padding: 7px;
  }
  .header__navigation .sub_navi_1_1 ul li a {
    border: 0;
  }
  .header__navigation .sub_navi_1_2 ul li a {
    font-size: 16px;
  }
  .header__navigation .sub_navi_1_2 ul li a br {
    display: none;
  }
  .header__navigation .bottom_navi_sp .btn_global a {
    font-size: 18px;
  }
}

@media print, screen and (max-width: 991px) {
  .event-none-sp {
    pointer-events: none;
  }
  .header__navigation .main_navi li .accordion-pc {
    display: none;
  }
}

@media print, screen and (min-width: 992px) {
  .site-header {
    height: 140px;
    border-top: 3px solid #00519f;
    position: inherit;
    z-index: 999;
  }
  .header__in {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 140px;
  }
  .header__left {
    padding: 0 0 0 10px;
    height: 90px;
  }
	.header__left #logo,
	.header__left #logo img {
		width: 374px;
		/*height: 68px;*/
		vertical-align: bottom;
	}
  .header__left img {
    width: 100%;
  }
  .header__right {
    height: 90px;
  }
  .header__right .right_upper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 30px;
    margin-top: 10px;
  }
  .header__right .right_upper .lang_size {
    display: flex;
    align-items: center;
    margin: 0 15px 0 0;
    font-size: 1.6em;
  }
  .header__right .right_upper .lang_size__buttons {
    display: flex;
    align-items: center;
    margin: 0 0 0 3px;
  }
  .header__right .right_upper .lang_size__buttons span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    width: 30px;
    height: 30px;
    color: #919191;
    font-size: 0.8em;
    line-height: 1;
    border: 2px solid #919191;
    border-radius: 4px;
    cursor: pointer;
  }
  .header__right .right_upper .lang_size__buttons span.active {
    color: #fff;
    background-color: #919191;
  }
  .header__right .right_upper .sitemap {
    display: block;
    margin: 0 32px 0 0;
    font-size: 1.6em;
  }
  .header__right .right_upper .search {
    margin: 0 20px 0 0;
    position: relative;
  }
  .header__right .right_upper .search input {
    padding: 0 0 0 20px;
    width: 139px;
    font-size: 1.4em;
    background: none;
    border: 0;
    border-bottom: 2px solid #8c8c8c;
    border-radius: 0;
  }
  .header__right .right_upper .search button {
    margin-top: -7px;
    width: 14px;
    height: 14px;
    text-indent: -9999px;
    background: none;
    background-image: url(../images/common/icon_search.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    border: 0;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .header__right .right_upper .search__btn {
    display: none;
  }
  .header__right .right_upper .search__in {
    display: block;
    padding: 0;
    background: none;
    position: static;
  }
  .header__right .right_upper .global {
    display: block;
    margin: 0 20px 0 0;
  }
  .header__right .right_upper .global a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 30px;
    color: #fff;
    font-size: 1.6em;
    background-color: #00519f;
    border-radius: 3px;
    transition: 0.3s;
  }
  .header__right .right_upper .global a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  .header__right .right_under {
    display: flex;
    justify-content: flex-end;
    height: 50px;
  }
  .header__right .right_under ul {
    display: flex;
    justify-content: flex-end;
  }
  .header__right .right_under ul li {
    margin: 0 15px;
    height: 50px;
    line-height: 1;
  }
  .header__right .right_under ul li a {
    display: flex;
    align-items: center;
    padding: 0 0 0 30px;
    height: 100%;
    font-size: 1.8em;
    line-height: 1;
    background-position: 0 50%;
  }
  .header__right .right_under ul li:nth-of-type(1) a {
    background-image: url(../images/common/icon_man_sp.png);
    background-repeat: no-repeat;
    background-size: 20px 22px;
  }
  .header__right .right_under ul li:nth-of-type(2) a {
    background-image: url(../images/common/icon_leaf.png);
    background-repeat: no-repeat;
    background-size: 18px 19px;
  }
  .header__right .right_under ul li:nth-of-type(3) a {
    background-image: url(../images/common/icon_mail.png);
    background-repeat: no-repeat;
    background-size: 20px 15px;
  }
  .header__navigation {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: block;
  }
  .header__navigation .main_navi {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
  }
  .header__navigation .main_navi li {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    border-right: 1px solid #fff;
  }
  .header__navigation .main_navi li.nav_s {
    -ms-flex: 0 0 16.66%;
    flex: 0 0 16.66%;
    max-width: 16.66%;
    border-right: 1px solid #fff;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li {
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
    max-width: 26%;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(4),
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(7) {
    border-left: 1px solid #fff;
  }
	/*.header__navigation .main_navi li:hover a {
    color: #fff;
  }
	.header__navigation .main_navi li:hover span {
    background-color: #00519f;
  }
  .header__navigation .main_navi li:hover .sub_navi {
    visibility: visible;
    opacity: 1;
  }*/
  .header__navigation .main_navi li:hover .sub_navi a, .header__navigation .main_navi li:hover .sub_navi span {
    background-color: transparent;
  }
  .header__navigation .main_navi li a.is-current, .header__navigation .main_navi li span.is-current {
    color: #fff !important;
    background-color: #00519f !important;
  }
	.header__navigation .main_navi li span.is-current a {
		color: #fff !important;
	}
  .header__navigation .main_navi li a, .header__navigation .main_navi li span {
    justify-content: center;
    padding: 0;
    height: 50px;
    transition: 0.05s;
    border-bottom: 0;
  }
  .header__navigation .main_navi li a:hover, .header__navigation .main_navi li span:hover {
    text-decoration: none;
  }
  .header__navigation .main_navi li a::before, .header__navigation .main_navi li a::after, .header__navigation .main_navi li span::before, .header__navigation .main_navi li span::after {
    content: none;
  }
  .header__navigation .main_navi li .accordion-sp {
    display: none;
  }
  .header__navigation .sub_navi {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 50px 0 68px;
    height: auto;
    width: 100%;
    background-color: #00519f;
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.05s;
    z-index:9999;
  }
  .header__navigation .sub_navi .ttl {
    display: block;
    margin-bottom: 30px;
    line-height: 1;
  }
  .header__navigation .sub_navi .ttl a {
    display: inline;
    padding: 0;
    color: #fff;
    font-size: 2.6em;
    border: 0;
    position: relative;
		display: inline-block;
		height: auto;
  }
  .header__navigation .sub_navi .ttl a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 27px;
    height: 19px;
    background: none;
    background-image: url(../images/common/icon_card.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    position: static;
  }
  .header__navigation .sub_navi .ttl a::after {
    content: "";
    width: 8px;
		height: 16px;
		background: none;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		border-left: 8px solid #fff;
		box-sizing: border-box;
		position: static !important;
		display: inline-block;
		margin-left: 10px;
  }
  .header__navigation .sub_navi .ttl a:hover {
    opacity: 0.6;
		border-bottom: 1px #fff solid;
  }
  .header__navigation .sub_navi_1_1 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 820px;
  }
  .header__navigation .sub_navi_1_1 + .sub_navi_1_2 {
    margin-top: 10px;
  }
  .header__navigation .sub_navi_1_1 + .sub_navi_1_3 {
    margin-top: 10px;
  }
  .header__navigation .sub_navi_1_1 + .sub_navi_1_4 {
    margin-top: 10px;
  }
  .header__navigation .sub_navi_1_1 ul {
    padding: 0;
  }
  .header__navigation .sub_navi_1_2, .header__navigation .sub_navi_1_3, .header__navigation .sub_navi_1_4 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 820px;
  }
  .header__navigation .sub_navi_1_2 ul, .header__navigation .sub_navi_1_3 ul, .header__navigation .sub_navi_1_4 ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .header__navigation .sub_navi_1_2 ul li, .header__navigation .sub_navi_1_3 ul li, .header__navigation .sub_navi_1_4 ul li {
    margin-bottom: 20px;
    padding: 0;
  }
  .header__navigation .sub_navi_1_2 ul li:nth-of-type(1), .header__navigation .sub_navi_1_2 ul li:nth-of-type(5), .header__navigation .sub_navi_1_2 ul li:nth-of-type(9), .header__navigation .sub_navi_1_3 ul li:nth-of-type(1), .header__navigation .sub_navi_1_3 ul li:nth-of-type(5), .header__navigation .sub_navi_1_3 ul li:nth-of-type(9), .header__navigation .sub_navi_1_4 ul li:nth-of-type(1), .header__navigation .sub_navi_1_4 ul li:nth-of-type(5), .header__navigation .sub_navi_1_4 ul li:nth-of-type(9) {
    border-left: 1px solid #fff;
  }
  .header__navigation .sub_navi_1_2 ul li a, .header__navigation .sub_navi_1_3 ul li a, .header__navigation .sub_navi_1_4 ul li a {
    padding: 90px 0 0;
    height: 140px;
    color: #fff;
    font-size: 2em;
		line-height: 20px;
    text-align: center;
    background: none;
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-position: 50% 32px;
    background-size: auto;
    border: 0;
  }
  .header__navigation .sub_navi_1_2 ul li a:hover, .header__navigation .sub_navi_1_3 ul li a:hover, .header__navigation .sub_navi_1_4 ul li a:hover {
    opacity: 0.7;
  }
  .header__navigation .sub_navi_1_2 ul li a br, .header__navigation .sub_navi_1_3 ul li a br, .header__navigation .sub_navi_1_4 ul li a br {
    display: inherit !important;
  }
  .header__navigation .sub_navi.snav01 .sub_navi_1_2 ul li:nth-of-type(1) a {
    background-image: url(../images/common/icon_nav_1.png);
    background-position: 50% 38px;
  }
  .header__navigation .sub_navi.snav01 .sub_navi_1_2 ul li:nth-of-type(2) a {
    background-image: url(../images/common/icon_nav_2.png);
    background-position: 50% 32px;
  }
  .header__navigation .sub_navi.snav01 .sub_navi_1_2 ul li:nth-of-type(3) a {
    background-image: url(../images/common/icon_nav_3.png);
    background-position: 50% 37px;
  }
  .header__navigation .sub_navi.snav01 .sub_navi_1_2 ul li:nth-of-type(4) a {
    background-image: url(../images/common/icon_nav_4.png);
    background-position: 50% 40px;
  }
  .header__navigation .sub_navi.snav02 .ttl a:before {
    width: 24px;
    height: 30px;
    background-image: url(../images/common/icon_stethoscope.png);
  }
  .header__navigation .sub_navi.snav02 .sub_navi_1_2 ul li:nth-of-type(1) a {
    background-image: url(../images/common/icon_ink.png);
    background-position: 50% 15px;
  }
  .header__navigation .sub_navi.snav02 .sub_navi_1_2 ul li:nth-of-type(2) a {
    background-image: url(../images/common/icon_searching.png);
    background-position: 43% 16px;
  }
  .header__navigation .sub_navi.snav02 .sub_navi_1_2 ul li:nth-of-type(3) a {
    background-image: url(../images/common/icon_key.png);
    background-position: 50% 14px;
  }
    
  .header__navigation .sub_navi.snav02 .sub_navi_1_2 ul li:nth-of-type(3) a::after {
      content: '';
      display: block;
      width: 31px;
      height: 31px;
      background-image: url(../images/common/taget_icon_l.png);
      background-repeat: no-repeat;
      background-position: right center;
      margin-left: 8px;
  }
  .header__navigation .sub_navi.snav02 .sub_navi_1_2 ul li:nth-of-type(4) a {
    background-image: url(../images/common/icon_papers.png);
    background-position: 55% 23px;
  }
  .header__navigation .sub_navi.snav02 .sub_navi_1_2 ul li:nth-of-type(5) a {
    background-image: url(../images/common/icon_heart.png);
    background-position: 48% 11px;
  }
  .header__navigation .sub_navi.snav02 .sub_navi_1_2 ul li:nth-of-type(6) a {
    background-image: url(../images/common/nav_icon/icon_susby04.png);
    background-position: 50% 26px;
  }
  .header__navigation .sub_navi.snav03 .ttl a:before {
    width: 24px;
    height: 30px;
    background-image: url(../images/common/icon_ir00.png);
  }
  .header__navigation .sub_navi.snav03 .sub_navi_1_3 ul li:nth-of-type(1) a {
    background-image: url(../images/common/icon_ir02.png);
    background-position: center 16px;
  }
  .header__navigation .sub_navi.snav03 .sub_navi_1_3 ul li:nth-of-type(2) a {
    background-image: url(../images/common/icon_ir03.png);
    background-position: center 14px;
  }
  .header__navigation .sub_navi.snav03 .sub_navi_1_3 ul li:nth-of-type(3) a {
    background-image: url(../images/common/icon_ir04.png);
    background-position: center 23px;
  }
  .header__navigation .sub_navi.snav04 .ttl a:before {
    width: 24px;
    height: 30px;
    background-image: url(../images/common/icon_cmp00.png);
  }
  .header__navigation .sub_navi.snav05 .ttl a:before {
    width: 32px;
    height: 30px;
    background-image: url(../images/common/icon_rd.png);
  }
  .header__navigation .sub_navi.snav05 .sub_navi_1_4 ul li:nth-of-type(1) a {
    background-image: url(../images/common/nav_icon/icon_rd01.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav05 .sub_navi_1_4 ul li:nth-of-type(2) a {
    background-image: url(../images/common/nav_icon/icon_rd02.png);
    background-position: 50% 18px;
  }
  .header__navigation .sub_navi.snav05 .sub_navi_1_4 ul li:nth-of-type(3) a {
    background-image: url(../images/common/nav_icon/icon_rd03.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav05 .sub_navi_1_4 ul li:nth-of-type(4) a {
    background-image: url(../images/common/nav_icon/icon_rd04.png);
    background-position: 50% 28px;
  }
  .header__navigation .sub_navi.snav06 .ttl a:before {
    width: 24px;
    height: 30px;
    background-image: url(../images/common/icon_cmp00.png);
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(1) a {
    background-image: url(../images/common/icon_cmp01.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(2) a {
    background-image: url(../images/common/icon_cmp02.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(3) a {
    background-image: url(../images/common/icon_cmp03.png);
    background-position: 49% 30px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(4) a {
    background-image: url(../images/common/icon_cmp04.png);
    background-position: 49% 40px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(5) a {
    background-image: url(../images/common/icon_cmp05.png);
    background-position: 49% 30px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(6) a {
    background-image: url(../images/common/icon_cmp06.png);
    background-position: 50% 36px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(7) a {
    background-image: url(../images/common/icon_cmp07.png);
    background-position: 50% 30px;
  }
  /*
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(8) a {
    background-image: url(../images/common/icon_cmp08.png);
    background-position: 50% 33px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(9) a {
    background-image: url(../images/common/icon_cmp09.png);
    background-position: 50% 30px;
  }*/
    
  /*.header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(10) a {
    background-image: url(../images/common/icon_cmp10.png);
    background-position: 49% 35px;
  }*/
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(8) a {
    background-image: url(../images/common/icon_cmp13.png);
    background-position: 50% 36px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(9) a {
    background-image: url(../images/common/icon_cmp11.png);
    background-position: 50% 35px;
  }
  .header__navigation .sub_navi.snav06 .sub_navi_1_4 ul li:nth-of-type(10) a {
    background-image: url(../images/common/icon_cmp12.png);
    background-position: 50% 26px;
  }
  .header__navigation .bottom_navi_sp {
    display: none;
  }
  #hamburger_button {
    display: none;
  }
}

@media print, screen and (min-width: 1090px) {
  .header__navigation .main_navi li a, .header__navigation .main_navi li span {
    font-size: 1.5em;
  }
	.header__navigation .main_navi li a, .header__navigation .main_navi li span a {
		pointer-events: auto;
	}
}

/*--------------------------------------------------------------
6. Content
--------------------------------------------------------------*/
/*-------------------------------------------------*/
.site-container {
  margin: 0 auto;
  padding: 50px 0 0;
  width: 100%;
}

@media print, screen and (min-width: 992px) {
  .site-container {
    padding: 0;
  }
}

/*-------------------------------------------------*/
.Breadcrumb {
  margin: 0 auto;
}

@media print, screen and (min-width: 992px) {
  .Breadcrumb.mg-infine {
    margin-top: 20px;
  }
}

.Breadcrumb__in {
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  max-width: 1150px;
  color: #666666;
  font-size: 3.4vw;
}

.Breadcrumb span, .Breadcrumb a {
  display: inline-block;
}

.Breadcrumb span {
  color: #666666;
  font-weight: 300;
}

.Breadcrumb .title_p::after,
.Breadcrumb a::after {
  content: ">";
  display: inline-block;
  padding: 0 10px;
}

.Breadcrumb a span {
  margin-right: 0;
  color: #666666;
  font-weight: 400;
}

.Breadcrumb a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media print, screen and (min-width: 768px) {
  .Breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
  }
  .Breadcrumb__in {
    margin: 0;
    font-size: 1.7em;
  }
}

@media print, screen and (min-width: 1150px) {
  .Breadcrumb__in {
    padding: 0;
  }
}

/*--------------------------------------------------------------
7. Footer
--------------------------------------------------------------*/
.site-footer {
  display: block;
  padding: 38px 0 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2d76b5+0,00519f+99 */
  background: #2d76b5;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2d76b5 0%, #00519f 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #2d76b5 0%, #00519f 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2d76b5 0%, #00519f 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d76b5', endColorstr='#00519f',GradientType=0 );
  /* IE6-9 */
}

.footer__in {
  padding: 0 10px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1024px;
}

.footer__menu {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0 0 12px;
  padding: 10px;
}

.footer__menu figure {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 0;
  height: 20px;
  text-align: center;
}

.footer__menu h3 {
  margin: 0 0 4px;
  padding: 7px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  background: none;
  border-top: 1px solid #fff;
}

.footer__menu ul {
  margin: 0 0 8px;
  padding: 0;
}

.footer__menu ul li {
  margin: .7em 0 0 0;
  padding: 0;
  line-height: 1;
}

.footer__menu ul li a {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  line-height: 1.3;
}

.footer__menu ul li a.child {
  color: #99befe;
  padding: 0 0 0 1em;
}
.footer__menu ul li a.grandchild {
  color: #99befe;
  padding: 0 0 0 2em;
}

.footer__menu.fmenu_01 figure {
  padding: 0 0 10px;
}

.footer__menu.fmenu_01 figure img {
  width: 22px;
}

.footer__menu.fmenu_02 figure {
  padding: 0 0 10px;
}

.footer__menu.fmenu_02 figure img {
  width: 36px;
}

.footer__menu.fmenu_03 figure {
  padding: 0 0 10px;
}

.footer__menu.fmenu_03 figure img {
  width: 24px;
}

.footer__menu.fmenu_04 figure {
  padding: 0 0 10px;
}

.footer__menu.fmenu_04 figure img {
  width: 25px;
}

.footer__menu.fmenu_05 figure {
  padding: 12px 0 10px;
}

.footer__menu.fmenu_05 figure img {
  width: 25px;
}

.footer__menu.fmenu_06 figure {
  padding: 12px 0 10px;
}

.footer__menu.fmenu_06 figure img {
  width: 25px;
}

.footer__menu.fmenu_add figure {
  padding: 12px 0 10px;
}

.footer__menu.fmenu_add figure img {
  width: 21px;
}
.footer__menu.fmenu_add figure img.fmenu_add_img {
  width: 26px;
}

@media print, screen and (min-width: 360px) {
  .footer__menu h3 {
    font-size: 15px;
  }
  .footer__menu ul li a {
    font-size: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .footer__in::after{
    content:"";
    display: block;
    flex: 0 0 32%;
    max-width: 32%;
    }
  .footer__menu {
    margin: 0 0 25px;
    padding: 0;
  }
  .footer__menu figure {
    margin: 0 0 14px;
    height: 60px;
  }
  .footer__menu h3 {
    margin: 0 0 22px;
    padding: 12px 0 0;
    font-size: 22px;
  }
  .footer__menu ul li a {
    font-size: 16px;
  }
  .footer__menu.fmenu_01 {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .footer__menu.fmenu_01 figure {
    padding: 0 0 10px;
  }
  .footer__menu.fmenu_01 figure img {
    width: 50px;
  }
  .footer__menu.fmenu_02 {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .footer__menu.fmenu_02 figure {
    padding: 0 0 10px;
  }
  .footer__menu.fmenu_02 figure img {
    width: 79px;
  }
  .footer__menu.fmenu_03 {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .footer__menu.fmenu_03 figure {
    padding: 0 0 10px;
  }
  .footer__menu.fmenu_03 figure img {
    width: 49px;
  }
  .footer__menu.fmenu_04 {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .footer__menu.fmenu_04 figure {
    padding: 0 0 10px;
  }
  .footer__menu.fmenu_04 figure img {
    width: 50px;
  }
  .footer__menu.fmenu_04 .flexbox .left {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer__menu.fmenu_04 .flexbox .right {
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
  }
  .footer__menu.fmenu_05 {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .footer__menu.fmenu_05 figure {
    padding: 0 0 10px;
  }
  .footer__menu.fmenu_05 figure img {
    width: 46px;
  }
  .footer__menu.fmenu_05 .flexbox .left {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer__menu.fmenu_05 .flexbox .right {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer__menu.fmenu_06 {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .footer__menu.fmenu_06 figure {
    padding: 12px 0 10px;
  }
  .footer__menu.fmenu_06 figure img {
    width: 53px;
  }
  .footer__menu.fmenu_add {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .footer__menu.fmenu_add figure {
    padding: 0 0 10px;
  }
  .footer__menu.fmenu_add figure img {
    width: 40px;
  }
  .footer__menu.fmenu_add figure img.fmenu_add_img {
    width: 50px;
  }
}

@media print, screen and (min-width: 992px) {
  .site-footer {
    padding: 106px 0 0;
  }
  .footer__menu h3 {
    font-size: 2.6em;
  }
  .footer__menu .flexbox {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .footer__menu .flexbox .left, .footer__menu .flexbox .right {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer__menu ul li a {
    font-size: 1.8em;
    line-height: 1.4;
  }
}

@media print, screen and (min-width: 1064px) {
  .footer__in {
    padding: 0;
  }
}

.copyright {
  padding: 15px 0;
  color: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  background-color: #00407e;
}
.copyright ul {
	display: flex;
  justify-content: center;
	margin-bottom: 15px;
}
.copyright ul li {
	padding: 0 5px;
	border-right: 1px #fff solid;
}
.copyright ul li:last-child {
	border: none;
}
.copyright ul li a {
	font-size: 10px;
	display: block;
}

@media print, screen and (min-width: 768px) {
  .copyright {
		padding: 20px 0;
    font-size: 1.1em;
  }
	.copyright ul li {
		padding: 0 10px;
	}
	.copyright ul li a {
		font-size: 14px;
	}
}

/*--------------------------------------------------------------
8. COMMON
--------------------------------------------------------------*/
#pagetop {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  transition: all 0.5s ease;
}

#pagetop a {
  display: none;
}

#pagetop.fixed {
  right: 0;
  bottom: 50px;
}

@media print, screen and (min-width: 768px) {
  #pagetop {
    width: 50px;
    height: 50px;
  }
  #pagetop.fixed {
    right: 0;
    bottom: 64px;
  }
}

/* ------------------------------------------------

LINK BUTTON

*/
.link_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 85%;
  height: 57px;
  max-width: 580px;
  color: #00519f;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #00519f;
  border-radius: 4px;
  position: relative;
  transition: 0.3s;
}

.link_btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #00519f;
  border-bottom: 1px solid #00519f;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  transform: rotate(-45deg);
}

.link_btn a:hover {
  color: #fff;
  background-color: #00519f;
  text-decoration: none;
}

.link_btn a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.link_btn02{
  width: 100%;
}

.link_btn02:nth-child(n+1){
  margin: 2rem 0 0 0;
}
.link_btn02_b a {
	font-size: 1.4rem;
}
.link_btn02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 57px;
  max-width: 100%;
  color: #00519f;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #00519f;
  border-radius: 4px;
  position: relative;
  transition: 0.3s;
  line-height: 1.2;
}

.link_btn02 a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #00519f;
  border-bottom: 1px solid #00519f;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  transform: rotate(-45deg);
}

.link_btn02 a:hover {
  color: #fff;
  background-color: #00519f;
  text-decoration: none;
}

.link_btn02 a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@media print, screen and (min-width: 768px) {

  .link_btn02{
    max-width: 300px;
  }
	
 .link_btn02_b{
    max-width: 500px;
  }
	
  .link_btn02:nth-child(n+1){
    margin: 0 0 0 3rem;
  }

  .link_btn02 a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 57px;
    max-width: 300px;
    color: #00519f;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #00519f;
    border-radius: 4px;
    position: relative;
    transition: 0.3s;
    line-height: 1.2;
  }

  .link_btn02 a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #00519f;
    border-bottom: 1px solid #00519f;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    transform: rotate(-45deg);
  }

  .link_btn02 a:hover {
    color: #fff;
    background-color: #00519f;
    text-decoration: none;
  }

  .link_btn02 a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
 
  .link_btn02_b a{
    max-width: 500px;
  }

  .link_btn a {
    max-width: 290px;
    font-size: 2.2em;
  }
  .link_btn a::after {
    margin-top: -6px;
    width: 14px;
    height: 14px;
    right: 28px;
    border-right: 3px solid #00519f;
    border-bottom: 3px solid #00519f;
  }
  .link_btn a:hover::after {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
}

/* ------------------------------------------------

LINK PDF BUTTON

*/
.link_pdf a {
  display: inline-block;
  padding-right: 30px;
  min-height: 30px;
  background-image: url(../images/common/icon_pdf_red.png);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 24px 30px;
}

/* ------------------------------------------------

ICON

*/
span.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 1;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}

/* ------------------------------------------------

LISY TYLE 01

*/
ul.list_type_1 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

ul.list_type_1 li {
  -ms-flex: 100%;
  flex: 100%;
  max-width: 100%;
  margin: 0 0 28px;
}

ul.list_type_1 li:last-child {
  margin: 0;
}

ul.list_type_1 li.only_child {
  margin: 0 auto;
}

ul.list_type_1 a {
  display: block;
}

ul.list_type_1 a:hover {
  text-decoration: none;
}

ul.list_type_1 figure {
  margin: 0 0 10px;
  text-align: center;
}

ul.list_type_1 .txtarea {
  padding: 0 10px;
}

ul.list_type_1 h3 {
  margin: 0 0 6px;
  padding: 0 0 8px;
  color: #165dd9;
  font-size: 4.53vw;
  font-weight: 400;
  line-height: 1.25;
  border-bottom: 1px solid #165dd9;
}

ul.list_type_1 p {
  margin: 0;
  font-size: 3.73vw;
  line-height: 1.357;
}

@media print, screen and (min-width: 768px) {
  ul.list_type_1 li {
    -ms-flex: 33%;
    flex: 33%;
    max-width: 33%;
    margin: 0 0.5% 54px 0;
  }
  ul.list_type_1 li:nth-of-type(3n) {
    margin-right: 0;
  }
  ul.list_type_1 figure {
    margin: 0 0 15px;
  }
  ul.list_type_1 .txtarea {
    padding: 0 18px;
  }
  ul.list_type_1 h3 {
    margin: 0 0 15px;
    padding: 0 0 13px;
    font-size: 2.4em;
  }
  ul.list_type_1 p {
    font-size: 1.8em;
  }
}

/* ------------------------------------------------

RELATED BLOCK

*/
.relatedBlock {
  padding: 20px 30px;
  background-color: #f9f9f9;
}

.relatedBlock h2 {
  margin-bottom: 30px;
  text-align: center;
}

.relatedBlock ul {
  margin: 0 auto;
  width: 100%;
  max-width: 1366px;
}

@media print, screen and (min-width: 768px) {
  .relatedBlock {
    padding: 60px 0;
  }
  .relatedBlock h2 {
    margin-bottom: 60px;
  }
  .relatedBlock ul li {
    /*margin-bottom: 0;*/
  }
}

/* ------------------------------------------------

 BOOTOM BANNERS

*/
.bottom_banners {
  padding: 28px 30px 38px;
}

.bottom_banners ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 1044px;
}

.bottom_banners ul li {
  -ms-flex: 48%;
  flex: 48%;
  max-width: 48%;
  margin: 0 4% 14px 0;
}

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

.bottom_banners ul li img {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .bottom_banners {
    padding: 19px 30px 78px;
  }
  .bottom_banners ul li {
    -ms-flex: 15.4%;
    flex: 15.4%;
    max-width: 15.4%;
    margin: 0 1.5% 20px 0;
  }
  .bottom_banners ul li:nth-of-type(2n) {
    margin-right: 1.5%;
  }
  .bottom_banners ul li:nth-of-type(6n) {
    margin-right: 0;
  }
}

@media print, screen and (min-width: 1024px) {
  .bottom_banners {
    padding: 19px 0 78px;
  }
}

/* ------------------------------------------------

 WHAT'S NEW 

*/
.whatsnew__switcher {
  margin: 0 auto;
  max-width: 1024px;
  padding: 20px 16px;
}

.whatsnew__switcher ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.whatsnew__switcher ul li {
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  max-width: 32%;
}

.whatsnew__switcher ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px;
  width: 100%;
  height: 100%;
  font-size: 4.8vw;
  text-align: center;
  line-height: 1.11;
  position: relative;
}

.whatsnew__switcher ul li.active a, .whatsnew__switcher ul li:hover a {
  opacity: 0.7;
  text-decoration: none;
}

.whatsnew__switcher ul li.active a::after, .whatsnew__switcher ul li:hover a::after {
  content: "";
  display: block;
  margin-left: -6.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6.5px 0 6.5px;
  border-color: #00529f transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
}

.whatsnew__switcher ul li.active.all a::after, .whatsnew__switcher ul li:hover.all a::after {
  border-color: #00529f transparent transparent transparent;
}

.whatsnew__switcher ul li.active.news a::after, .whatsnew__switcher ul li:hover.news a::after {
  border-color: #25005c transparent transparent transparent;
}

.whatsnew__switcher ul li.active.info a::after, .whatsnew__switcher ul li:hover.info a::after {
  border-color: #3a9bf7 transparent transparent transparent;
}

.whatsnew__switcher ul li:nth-of-type(3n-2) a, .whatsnew__switcher ul li:nth-of-type(3n-2):hover a {
  color: #00519f;
  border-bottom: 3px solid #00519f;
}

.whatsnew__switcher ul li:nth-of-type(3n-2) a::after, .whatsnew__switcher ul li:nth-of-type(3n-2):hover a::after {
  border-color: #00529f transparent transparent transparent;
}

.whatsnew__switcher ul li:nth-of-type(3n-1) a, .whatsnew__switcher ul li:nth-of-type(3n-1):hover a {
  color: #25005c;
  border-bottom: 3px solid #25005c;
}

.whatsnew__switcher ul li:nth-of-type(3n-1) a::after, .whatsnew__switcher ul li:nth-of-type(3n-1):hover a::after {
  border-color: #25005c transparent transparent transparent;
}

.whatsnew__switcher ul li:nth-of-type(3n) a, .whatsnew__switcher ul li:nth-of-type(3n):hover a {
  color: #3a9bf7;
  border-bottom: 3px solid #3a9bf7;
}

.whatsnew__switcher ul li:nth-of-type(3n) a::after, .whatsnew__switcher ul li:nth-of-type(3n):hover a::after {
  border-color: #3a9bf7 transparent transparent transparent;
}

.whatsnew__wrapper {
  margin: 0 auto;
  max-width: 1024px;
  padding: 0 16px 20px;
}

.whatsnew__list {
  margin: 0 auto 40px;
}

.whatsnew__item {
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #707070;
}

.whatsnew__item:last-child {
  border: 0;
}

.whatsnew__item .category {
  margin-bottom: 7px;
}

.whatsnew__item .category .cate {
  color: #fff;
  font-size: 3.2vw;
}

.whatsnew__item .category .c1 {
  padding: 1px 4px;
  background-color: #25005c;
  vertical-align: middle;
}

.whatsnew__item .category .c2 {
  background-color: #3a9bf7;
}

.whatsnew__item .category .c3 {
  background-color: #00519f;
}

.whatsnew__item .category .c4 {
  background-color: #00b140;
  margin-top: 10px;
}

.whatsnew__item .category .cate2 {
  margin-left: 10px;
  color: #00165c;
  font-size: 3.2vw;
  border: 1px solid #6475a9;
  vertical-align: middle;
  padding: 0 4px;
}

.whatsnew__item .date {
  margin-bottom: 0;
  font-size: 3.73vw;
  font-weight: 700;
}

.whatsnew__item .ttl {
  margin: 0;
  font-size: 4.5vw;
  font-weight: 400;
  line-height: 1.41;
}

@media print, screen and (min-width: 768px) {
  .whatsnew__switcher ul li a {
    padding: 0 0 20px;
    font-size: 2.6em;
  }
  .whatsnew__wrapper {
    padding: 12px 16px;
  }
  .whatsnew__list {
    margin: 0 auto 20px;
  }
  .whatsnew__item {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-bottom: 16px;
    width: 100%;
  }
  .whatsnew__item .category {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .whatsnew__item .category .cate {
    font-size: 1.4em;
    vertical-align: middle;
	min-width: 110px;
	  display: inline-block;
	  padding: 4px 0;
	  text-align: center;
  }
  /*.whatsnew__item .category .c1 {
    padding: 4px 8px;
  }
  .whatsnew__item .category .c2 {
    padding: 4px 37px;
  }*/
  .whatsnew__item .category .cate2 {
    padding: 0px 8px 1px;
    font-size: 1.8em;
  }
  .whatsnew__item .date {
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    max-width: 140px;
    font-size: 1.8em;
  }
  .whatsnew__item .ttl {
    -ms-flex: 0 0 calc( 100% - 140px);
    flex: 0 0 calc( 100% - 140px);
    max-width: calc( 100% - 140px);
    font-size: 2.0em;
  }
}
  .whatsnew__item .category .cate {
	min-width: 110px;
	  display: inline-block;
	  padding: 4px 6px;
	  text-align: center;
	  box-sizing: border-box;
  }
@media print, screen and (min-width: 1024px) {
  .whatsnew__switcher {
    padding: 20px 0;
  }
  .whatsnew__wrapper {
    padding: 12px 0;
  }
}
/*
.modal {
	width: 100%;
	height: 100vh;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.modal > div {
	width: 80%;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: auto;
}
.modal > div img {
	width: 100%;
	display: block;
	margin-bottom: 30px;
}
.modal > div .btn {
	width: 100%;
	padding: 11px 0;
	border: 1px solid #00519f;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 500;
	line-height: 100%;
	text-align: center;
	color: #00519f;
	display: block;
	margin: 0 auto 25px;
}
.modal > div .btn:after {
	content: "";
	width: 4px;
	height: 9px;
	background: url(../images/common/modal_icon01.png) no-repeat;
	background-size: 100%;
	display: inline-block;
	vertical-align: -1px;
	margin-left: 10px;
}
.modal > div .close {
	width: 64px;
	font-size: 13px;
	line-height: 100%;
	display: block;
	margin-left: auto;
}
.modal > div .close:before {
	content: "";
	width: 15px;
	height: 15px;
	background: url(../images/common/modal_icon02.png) no-repeat;
	background-size: 100%;
	display: inline-block;
	vertical-align: -3px;
	margin-right: 10px;
}
.modal > div a:hover {
	text-decoration: none;
}
@media print, screen and (min-width: 992px) {
	.modal > div {
		width: 630px;
	}
	.modal > div img {
		margin-bottom: 55px;
	}
	.modal > div .btn {
		width: 550px;
		font-size: 16px;
	}
	.modal > div .btn:after {
		width: 6px;
		height: 12px;
		vertical-align: 0;
	}
	.modal > div .close {
		width: 76px;
		font-size: 15px;
	}
	.modal > div .close:before {
		width: 21px;
		height: 21px;
		vertical-align: -5px;
	}
}

body{
  background-image: url(../images/_mock/company_csr2008.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 0;
  opacity: 0.7;
}
*/
@media print, screen and (min-width: 992px) {
  .header__navigation .sub_navi.snav04 .ttl a:before {
    width: 22px;
    height: 32px;
    background-image: url(../images/common/icon_sustainability.png);
  }
    /*
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(1) a {
    background-image: url(../images/common/icon_cmp10.png);
    background-position: 50% 35px;
  }
    */
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(1) a {
    background-image: url(../images/common/nav_icon/icon_susby01.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(2) a {
    background-image: url(../images/common/nav_icon/icon_susby02.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(3) a {
    background-image: url(../images/common/nav_icon/icon_susby03.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(4) a {
    background-image: url(../images/common/nav_icon/icon_susby04.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(5) a {
    background-image: url(../images/common/nav_icon/icon_susby06.png);
    background-position: 50% 30px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(6) a {
    background-image: url(../images/common/nav_icon/icon_susby07.png);
    background-position: 50% 20px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(7) a {
    background-image: url(../images/common/nav_icon/icon_susby08.png);
    background-position: 50% 18px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(8) a {
    background-image: url(../images/common/nav_icon/icon_susby09.png);
    background-position: 50% 20px;
  }
  .header__navigation .sub_navi.snav04 .sub_navi_1_3 ul li:nth-of-type(9) a {
    background-image: url(../images/common/nav_icon/icon_susby10.png);
    background-position: 50% 20px;
  }
}
@media print, screen and (max-width: 991px){
  .header__navigation .sub_navi .sub_navi_04 .ttl a:before, .header__navigation .sub_navis .sub_navi_04 .ttl a:before {
    width: 20px;
    height: 32px;
    background-image: url(../images/common/icon_sustainability_sp.png);
  }
}

@media print {
    .main_visual,
	.healthcare__slider {
        display: none;
        opacity: 0;
        background: #fff;
    }
}


/* 読み込み調整 */
.modal{display:none;}

.header__navigation .main_navi li span a.disabled {
    cursor: pointer;
}
