@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap);

/* ---------------------------
 * ALL Width
 * --------------------------- */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.header__logo-text
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@font-face {
  font-family: "icomoon";
  src: url("../../common/fonts/icomoon.eot?687sve");
  src: url("../../common/fonts/icomoon.eot?687sve#iefix") format("embedded-opentype"), url("../../common/fonts/icomoon.ttf?687sve") format("truetype"), url("../../common/fonts/icomoon.woff?687sve") format("woff"), url("../../common/fonts/icomoon.svg?687sve#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icomoon-"], [class*=" icomoon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icomoon-arrow02:before {
  content: "\e90c";
}

.icomoon-arrow01:before {
  content: "\e900";
}

.icomoon-company:before {
  content: "\e901";
}

.icomoon-download:before {
  content: "\e902";
}

.icomoon-facebook:before {
  content: "\e903";
}

.icomoon-ir:before {
  content: "\e904";
}

.icomoon-map:before {
  content: "\e905";
}

.icomoon-movie:before {
  content: "\e906";
}

.icomoon-news:before {
  content: "\e907";
}

.icomoon-print:before {
  content: "\e908";
}

.icomoon-search:before {
  content: "\e909";
}

.icomoon-twitter:before {
  content: "\e90a";
}

.icomoon-window:before {
  content: "\e90b";
}
.icomoon-youtube:before {
  content: "\ea9e";
}

html {
  font-size: 62.5%;
}

body {
  word-break: normal;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

a {
  color: #333;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

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

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

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

.media-left {
  float: left;
}

.media-right {
  float: right;
}

.mt0 {
  margin-top: 0 !important;
}

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

.pt0 {
  padding-top: 0 !important;
}

.wrapper {
  min-width: 320px;
  overflow: hidden;
}

.content-type01 {
   /* border-bottom: 1px solid #e3e3e3;*/
}

.content-type02 {
  border-top: 1px solid #e3e3e3;
}

.section-type02 {
  /*border-top: 1px solid #e3e3e3;*/
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 110;
}

.header-top {
  height: 22px;
  background-color: #e7e9ea;
  color: #333;
  text-align: right;
  position: relative;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
.header-top:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #e7e9ea;
}
.header-top .header__inner {
  overflow: hidden;
  font-size: 0;
  padding-top: 3px;
}

.header-top__heading {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: bold;
  margin: 0;
  display: inline-block;
  vertical-align: top;
}

.header-top__link {
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  margin-left: 5px;
}
.header-top__link a {
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 7px;
}
.header-top__link a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 3px solid transparent;
  border-left: 3px solid #f00;
}

.header__main {
  float: left;
}
.header__main a {
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.header__logo {
  overflow: hidden;
}

.header__logo-img {
  display: block;
  float: left;
  font-size: 0;
}

.header__logo-text {
  display: block;
  font-weight: bold;
  white-space: nowrap;
  margin: 0;
  float: left;
}

.nav {
  background-color: #fff;
}

.nav__inner {
  position: relative;
}

.global-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
}

.global-nav__item {
  display: table-cell;
  padding-right: 5px;
  /*font-size: 15px;
  font-size: 1.5rem;*/
  box-sizing: border-box;
}
.global-nav__item.is-active > a, .global-nav__item:hover > a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  /*background-color: rgba(204, 14, 27, 0.95);*/
  background-color: #4b7ebf;
  color: #fff;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.global-nav__item.is-active > a:after, .global-nav__item:hover > a:after {
  opacity: 0;
}
.global-nav__item > a {
  display: block;
  line-height: 40px;
  text-decoration: none;
  position: relative;
  margin: 0;
  padding: 0 25px 0 12px;
  white-space: nowrap;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.global-nav__item > a:after {
  content: "";
  width: 21px;
  height: 22px;
  background-size: 21px;
  background-image: url(../../common/img/icon_arrow01.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 9px;
  right: 15px;
}
/*
.global-nav__item:nth-child(1) {
  width: 16%;
}
.global-nav__item:nth-child(2) {
  width: 16%;
}
.global-nav__item:nth-child(3) {
  width: 20%;
}
.global-nav__item:nth-child(4) {
  width: 16%;
}
.global-nav__item:nth-child(5) {
  width: 16%;
}
.global-nav__item:nth-child(6) {
  width: 16%;
  padding-right: 0;
}
.global-nav__item:nth-child(6) a:before {
  right: 0;
}
.global-nav__item:nth-child(6) a:after {
  right: 6px;
}
*/

.global-nav__item:nth-child(1) {
  width: 20%;
}
.global-nav__item:nth-child(2) {
  width: 20%;
}
.global-nav__item:nth-child(3) {
  width: 20%;
}
.global-nav__item:nth-child(4) {
  width: 20%;
}
.global-nav__item:nth-child(5) {
  width: 20%;
  padding-right: 0;
}

.sub-nav {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  background-color: rgba(204, 14, 27, 0.95);
  z-index: 10;
}

.sub-nav__list {
  list-style: none;
  margin: 15px auto;
  padding: 0;
  max-width: 1080px;
  overflow: hidden;
}

.sub-nav__item {
  width: 25%;
  float: left;
  margin: 4px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.sub-nav__item:nth-child(4n+1) {
  clear: left;
}
.sub-nav__item a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 5px 5px 5px 15px;
  position: relative;
}
.sub-nav__item a:hover {
  text-decoration: underline;
}
.sub-nav__item a:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  font-size: 10px;
  position: absolute;
  top: 10px;
  left: 0;
}

body.is-open {
  overflow: hidden;
  height: 100%;
}
body.is-open .sp-nav {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.sp-nav {
  overflow: auto;
  /*background-color: rgba(107, 0, 0, 0.9);*/
  background-color: rgba(75,126,191,0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.sp-nav__inner {
  padding: 20px 10px;
}

.sp-nav__close {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 auto 20px;
  cursor: pointer;
}
.sp-nav__close:before, .sp-nav__close:after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 9px;
  left: 0;
}
.sp-nav__close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sp-nav__close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sp-nav-search {
  background-color: #fff;
  border-radius: 20px;
  height: 32px;
  padding: 0 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.sp-nav-search__input {
  line-height: 1;
  float: left;
  display: block;
  width: calc(100% - 30px);
  height: 32px;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 5px 5px 0;
  box-shadow: none;
  background: none;
  outline: 0;
  font-size: 16px;
  font-size: 1.6rem;
  box-sizing: border-box;
}

.sp-nav-search__button {
  vertical-align: top;
  border: 0;
  font-size: 0;
  width: 30px;
  padding: 6px;
  outline: 0;
  float: right;
  background-color: transparent;
  box-sizing: border-box;
}
.sp-nav-search__button:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
  font-size: 18px;
}

.sp-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-nav__item {
  font-size: 13px;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.sp-nav__item a {
  line-height: 48px;
  color: #fff;
  display: block;
  text-decoration: none;
  position: relative;
}
.sp-nav__item a:after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 13px;
}

.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  /*float: left;*/
}

.breadcrumb__item {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 40px;
}
.breadcrumb__item:after {
  content: ">";
  margin: 0 4px;
}
.breadcrumb__item:last-child:after {
  display: none;
}
.breadcrumb__item a {
  display: inline-block;
  text-decoration: underline;
}

.main-visual {
  position: relative;
  /* border-bottom: 1px solid #e3e3e3; */
}
.main-visual .bx-viewport {
  border-bottom: 1px solid #e3e3e3;
}
.main-visual .bx-controls-direction a {
  color: #666;
  text-decoration: none;
  font-size: 0;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-visual .bx-controls-direction a:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  line-height: 40px;
  font-size: 20px;
}
.main-visual .bx-controls-direction a.bx-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: center 10px;
  transform-origin: center 10px;
}
.main-visual .bx-controls-direction a.bx-next {
  right: 0;
}
.main-visual .bx-pager {
  /*
  position: absolute;
  bottom: -20px;
  left: 0;
  */
  width: 100%;
  /*height: 0;*/
  text-align: center;
  font-size: 0;
	padding: 20px 0px;
}
.main-visual .bx-pager-item {
  display: inline-block;
  margin: 0 5px;
}
.main-visual .bx-pager-item a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}
.main-visual .bx-pager-item a.active {
  background-color: #000;
}

.bx-wrapper .main-visual__item {
  display: block;
}

.main-visual__inner {
  display: block;
  position: relative;
}

.main-visual__item {
  display: none;
}

.main-visual__img {
  height: 440px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-visual__mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.main-visual__text {
  color: #000;
}

.side-nav {
  margin-bottom: 15px;
}

.side-nav__heading {
  background-color: #bb031d;
  border-bottom: 1px solid #fff;
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 17px 10px 17px 15px;
}

.side-nav__list01, .side-nav__list02 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-nav__list02 {
  display: none;
}
.side-nav__list02.is-open {
  display: block;
}

.side-nav__item01 > a, .side-nav__item02 > a, .side-nav__item03 > a {
  line-height: 1.2;
  display: block;
  position: relative;
  color: #333;
  text-decoration: none;
}
.side-nav__item01 > a:after, .side-nav__item02 > a:after, .side-nav__item03 > a:after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.side-nav__item01.is-current > a, .side-nav__item02.is-current > a, .side-nav__item03.is-current > a {
  color: #1d2662;
  font-weight: bold;
}

.side-nav__item01 {
  border-bottom: 1px solid #fff;
}
.side-nav__item01 > a {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #e6e6e6;
  padding: 14px 20px 14px 15px;
}
.side-nav__item01 > a:after {
  font-size: 12px;
}
.side-nav__item01.is-active > a:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 12px;
  margin-top: -4px;
}
.side-nav__item01.is-active .side-nav__list02 {
  display: block;
}

.side-nav__item02 {
  border-bottom: 1px solid #fff;
}
.side-nav__item02 > a {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #fff;
  padding: 14px 20px 14px 15px;
}
.side-nav__item02 > a:after {
  font-size: 12px;
}
.side-nav__item02.is-active > a {
  color: #1d2662;
  font-weight: bold;
}

.side-nav__item03 {
  border-bottom: 1px solid #e6e6e6;
}
.side-nav__item03 > a {
  font-size: 13px;
  font-size: 1.3rem;
  background-color: #f7f7f7;
  padding: 11px 20px 11px 15px;
}
.side-nav__item03 > a:after {
  font-size: 12px;
}
.side-nav__item03:last-child {
  border-bottom: 0;
}

.footer {
  background-color: #e7e9ea;
  position: relative;
}
.footer a {
  color: #000;
}

.footer-nav__heading a {
  position: relative;
  text-decoration: none;
}
.footer-nav__heading a:before {
  content: "";
  border-radius: 50%;
  background-color: #fff;
}
.footer-nav__heading a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
}

.footer-sub-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-sub-nav__item a {
  position: relative;
  text-decoration: none;
}
.footer-sub-nav__item a:before {
  content: "";
  border-radius: 50%;
  background-color: #fff;
}
.footer-sub-nav__item a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
}

.pagetop {
  font-size: 0;
}
.pagetop a {
  display: block;
}
.footer-copyright {
  background-color: #fff;
  text-align: center;
}

.footer-data {
}
.en .footer-data {
  background: #FFFFFF;
}
.footer-data .footer-data__stock {
  display: inline-block;
  margin-right: 10px;
}
.footer-data .footer-data__button {
  display: inline-block;
  margin: -3px 0px 0px 0px;
  padding: 0px;
  vertical-align: middle;
  font-size: 0px;
}
.footer-data .footer-data__button li.footer-data__item {
  list-style: none;
  margin: 0px 0px 0px 10px;
  padding: 0px;
  display: inline-block;
}
.footer-data .footer-data__button li.footer-data__item a {
  display: block;
  text-align: left;
  white-space: nowrap;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: -1000px;
  background: transparent no-repaet 50% 50% / contain;
  background-size: contain;
}
.footer-data .footer-data__button li.footer-data__item.facebook a {
  background-image: url(../img/icon_facebook_01.png);
}
.footer-data .footer-data__button li.footer-data__item.twitter a {
  background-image: url(../img/icon_twitter_01.png);
}
.footer-data .footer-data__button li.footer-data__item.youtube a {
  background-image: url(../img/icon_youtube_01.png);
}

.sns-links {
  min-height: 25px;
}
.sns-links__list {
  margin: 0;
  padding: 0;
}
.sns-links__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 0 0;
}
.sns-links__item:last-child {
  margin-top: 4px;
}
.sns-links__item--facebook {
  min-width: 61px;
}
.sns-links__item--twitter {
  min-width: 75px;
}

.article-head__heading {
  font-weight: bold;
  margin: 0;
}

.article-head__data {
  text-align: right;
}

.article-body {
  overflow: hidden;
}
.article-body--news > *:first-child {
  margin-top: 0;
}

.article-foot-sns {
  margin: 1em 0;
}

.attach-icon--link a[href^="http"]:after, .attach-icon--link a.type-outside:after {
  content: "\e90b";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  margin-left: 5px;
}
.attach-icon--link a[href$="pdf"]:after, .attach-icon--link a.type-pdf:after {
  content: "";
  background-image: url(../../common/img/icon_pdf.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 5px;
  margin-left: 5px;
}
.attach-icon--link a[href$="mp4"]:after, .attach-icon--link a.type-movie:after {
  content: "";
  background-image: url(../../common/img/icon_movie.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 5px;
  margin-left: 5px;
}
.attach-icon--link a[href$="xls"]:after, .attach-icon--link a[href$="xlsx"]:after, .attach-icon--link a[href$="xlsm"]:after, .attach-icon--link a.type-doc:after {
  content: "";
  background-image: url(../../common/img/icon_exel.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 5px;
  margin-left: 5px;
}
.attach-icon--link .eir a[href^="http"]:after,
.attach-icon--link .eir a[href$="pdf"]:after,
.attach-icon--link .eir a[href$="mp4"]:after,
.attach-icon--link .eir a[href$="xls"]:after,
.attach-icon--link .eir a[href$="xlsx"]:after,
.attach-icon--link .eir a[href$="xlsm"]:after {
  display: none !important;
}

.content-header {
  overflow: hidden;
  padding: 7px 0;
}

.content-data {
  overflow: hidden;
  float: right;
  line-height: 40px;
}
.content-sns {
    display: none;
}

.content-data__stock {
  float: left;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 3.5;
  padding-right:  15px;
}

.content-data__button {
  list-style: none;
  margin: 0 0 0 20px;
  padding: 0;
  float: left;
}

.content-data__item {
  font-size: 0;
  float: left;
  margin-left: 10px;
}
.content-data__item:first-child {
  margin-left: 0;
}
.content-data__item a {
  display: block;
  text-decoration: none;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.content-data__item a:hover {
  opacity: .6;
}
.content-data__item a:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  line-height: 35px;
}
.content-data__item.twitter a {
  background-color: #00bdeb;
}
.content-data__item.twitter a:before {
  content: "\e90a";
  font-size: 16px;
}
.content-data__item.facebook a {
  background-color: #3a569d;
}
.content-data__item.facebook a:before {
  content: "\e903";
  font-size: 19px;
}
.content-data__item.youtube a {
  background-color: #CF071F;
}
.content-data__item.youtube a:before {
  content: "\ea9e";
  font-size: 23px;
}
.content-data__item.print a {
  background-color: #676767;
}
.content-data__item.print a:before {
  content: "\e908";
  font-size: 23px;
}

.heading-block01 {
  background-color: #bb031d;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.heading-block01__title {
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  overflow: hidden;
  -webkit-box-flex: 2;
  flex-grow: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.heading-block01__title span {
  display: block;
  overflow: hidden;
}

.heading-block01__links {
  display: -webkit-box;
  display: flex;
  white-space: nowrap;
}

.heading-block01__more {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.heading-block01__more:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block01__more[href^="http"]:after, .heading-block01__more.type-outside:after {
  content: "\e90b";
}
.heading-block01__more span {
  width: 100%;
  line-height: 1;
  display: block;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
}

.heading-block01__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #bb031d;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  border: 2px solid #bb031d;
  box-sizing: border-box;
}
.heading-block01__link:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block01__link[href^="http"]:after, .heading-block01__link.type-outside:after {
  content: "\e90b";
}
.heading-block01__link.type-ir:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.heading-block02 {
  background-color: #e6e6e6;
  color: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.heading-block02 > a {
  width: 100%;
  text-decoration: none;
  position: relative;
}
.heading-block02 > a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.heading-block02__title {
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  overflow: hidden;
  -webkit-box-flex: 2;
  flex-grow: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.heading-block02__title--center {
  justify-content: center;
}
.heading-block02__title span {
  display: block;
  overflow: hidden;
}

.heading-block02__links {
  display: -webkit-box;
  display: flex;
  white-space: nowrap;
}

.heading-block02__more {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.heading-block02__more:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block02__more[href^="http"]:after, .heading-block02__more.type-outside:after {
  content: "\e90b";
}
.heading-block02__more span {
  width: 100%;
  line-height: 1;
  display: block;
  border-left: 1px solid #696969;
  box-sizing: border-box;
}

.heading-block02__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  border: 2px solid #696969;
  box-sizing: border-box;
}
.heading-block02__link:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block02__link[href^="http"]:after, .heading-block02__link.type-outside:after {
  content: "\e90b";
}
.heading-block02__link.type-download:after {
  content: "\e902";
}

.heading-block03 {
  color: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.heading-block03 > a {
  width: 100%;
  text-decoration: none;
  position: relative;
}
.heading-block03 > a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.heading-block03__title {
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  overflow: hidden;
  -webkit-box-flex: 2;
  flex-grow: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.heading-block03__title span {
  display: block;
  overflow: hidden;
}

.heading-block03__links {
  display: -webkit-box;
  display: flex;
  white-space: nowrap;
}

.heading-block03__more {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.heading-block03__more:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block03__more[href^="http"]:after, .heading-block03__more.type-outside:after {
  content: "\e90b";
}
.heading-block03__more span {
  width: 100%;
  line-height: 1;
  display: block;
  border-left: 1px solid #696969;
  box-sizing: border-box;
}

.heading-block03__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  border: 2px solid #696969;
  box-sizing: border-box;
}
.heading-block03__link:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block03__link[href^="http"]:after, .heading-block03__link.type-outside:after {
  content: "\e90b";
}
.heading-block03__link.type-download:after {
  content: "\e902";
}

.heading-block04 {
  background-color: #f7f7f7;
  color: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.heading-block04--vertical {
  flex-direction: column;
}
.heading-block04 > a {
  width: 100%;
  text-decoration: none;
  position: relative;
}
.heading-block04 > a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.heading-block04__title {
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  overflow: hidden;
  -webkit-box-flex: 2;
  flex-grow: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.heading-block04__title--center {
  justify-content: center;
}
.heading-block04__title span {
  display: block;
  overflow: hidden;
}

.heading-block04__links {
  display: -webkit-box;
  display: flex;
  white-space: nowrap;
}

.heading-block04__more {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.heading-block04__more:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block04__more[href^="http"]:after, .heading-block04__more.type-outside:after {
  content: "\e90b";
}
.heading-block04__more span {
  width: 100%;
  line-height: 1;
  display: block;
  border-left: 1px solid #696969;
  box-sizing: border-box;
}

.heading-block04__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  border: 2px solid #696969;
  box-sizing: border-box;
}
.heading-block04__link:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.heading-block04__link[href^="http"]:after, .heading-block04__link.type-outside:after {
  content: "\e90b";
}
.heading-block04__link.type-download:after {
  content: "\e902";
}

.meta-block01 {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  align-content: stretch;
  padding: 0 3px 0 13px;
  line-height: 1.2;
}
.meta-block01--left {
  justify-content: flex-start;
}
.meta-block01--right {
  justify-content: flex-end;
}
.meta-block01--horizontal {
  flex-direction: row;
}
.meta-block01--vertical {
  flex-direction: column;
}
.meta-block01__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 2px 7px;
}
.meta-block01__item:after {
  content: "";
  display: block;
  clear: both;
}

.button-group01 {
  text-align: center;
  font-size: 0;
}

.button-type01 {
  color: #333;
  text-align: center;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
}
.button-type01:after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.button-type01[href^="http"]:after, .button-type01.type-outside:after {
  content: "\e90b";
}
.button-type01.type-map:after {
  display: none;
}
.button-type01.type-map:before {
  content: "\e905";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.button-type02 {
  color: #bb031d;
  text-align: center;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
}
.button-type02:after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.button-type02[href^="http"]:after, .button-type02.type-outside:after {
  content: "\e90b";
}
.button-type02.type-map:after {
  display: none;
}
.button-type02.type-map:before {
  content: "\e905";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.button-type03 {
  color: #fff;
  background-color: #676767;
  text-align: center;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
}
.button-type03:after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.button-type03[href^="http"]:after, .button-type03.type-outside:after {
  content: "\e90b";
}
.button-type03.type-map:after {
  display: none;
}
.button-type03.type-map:before {
  content: "\e905";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.table-type01 {
  width: 100%;
}
.table-type01 th {
  background-color: #e6e6e6;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  font-weight: normal;
  text-align: left;
/*  vertical-align: top; */
}
.table-type01 td {
  border: 1px solid #e3e3e3;
  vertical-align: top;
}
.table-type01 td:last-child {
  border-right: 0;
}
.table-type01 caption {
  text-align: right;
}
.table-type01 .type-nowrap {
  white-space: nowrap;
}

.table-type02 {
  width: 100%;
}
.table-type02--fix {
  table-layout: fix;
}
.table-type02 th {
  background-color: #f7f7f7;
  border: 1px solid #e3e3e3;
  font-weight: normal;
  text-align: left;
/*  vertical-align: top; */
}
.table-type02 td {
  border: 1px solid #e3e3e3;
  vertical-align: top;
}
.table-type02 .type-nowrap {
  white-space: nowrap;
}
.table-type02 caption {
  text-align: right;
}
.table-type02.type-no-bd-side tr > *:first-child {
  border-left: 0;
}
.table-type02.type-no-bd-side tr > *:last-child {
  border-right: 0;
}

.table-type03 {
  width: 100%;
}
.table-type03 th {
  background-color: #f7f7f7;
  border: 1px solid #e3e3e3;
  font-weight: normal;
  text-align: left;
/*  vertical-align: top; */
}
.table-type03 td {
  border: 1px solid #e3e3e3;
  vertical-align: top;
}
.table-type03 caption {
  text-align: right;
}
.table-type03 .type-nowrap {
  white-space: nowrap;
}
.table-type03.type-no-bd-side tr > *:first-child {
  border-left: 0;
}
.table-type03.type-no-bd-side tr > *:last-child {
  border-right: 0;
}
.table-type03 thead th {
  text-align: right;
  background-color: #ededed;
}
.table-type03 tbody td {
  text-align: right;
}

[class^="table-type0"] td p {
  margin: 0;
}

.table {
  display: table;
  margin: 20px 0;
}
.table__row {
  display: table-row;
}
.table__cell {
  display: table-cell;
  vertical-align: top;
  padding: 0 10px 0 0;
}
.table__cell--header {
  font-weight: bold;
}
.table__cell .type-nowrap {
  white-space: nowrap;
}

.select-panel {
}
.select-panel__item {
  display: none;
}
.select-panel__item.is-active {
  display: block;
}

.tag--type01 {
  display: inline-block;
  text-align: center;
  border-radius: 25px;
  font-style: normal;
  box-sizing: border-box;
  color: #FFF;
  background-color: #4b7ebf;
}
.tag--type01.type-border {
  /*
  background-color: #fcfcfc;
  border: 1px solid #dadada;
  */
}
.tag--type01.type-performance {
  background-color: #ffd2d2;
}
.tag--type01.type-pr {
  background-color: #d2ebff;
}
.tag--type01.type-info {
  background-color: #ffe6c6;
}
.tag--type01.type-csr {
  background-color: #d6f2c1;
}
.tag--type01.type-recruit {
  background-color: #ffdbf7;
}

.news-list01__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list01__item {
  border-bottom: 1px solid rgba(115, 115, 115, 0.2);
}
.news-list01__item:first-child .news-list01__inner {
  padding-top: 0;
}
.news-list01__item:last-child {
  border-bottom: 0;
}
.news-list01__item:last-child .news-list01__inner {
  padding-bottom: 0;
}

.top .news-list01__item {
  border: none;
}
.top .news-list01__item:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid rgba(115, 115, 115, 0.2);
  /* background: repeat-x 0px 50% / auto 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22100%22%20height%3D%2240%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%3E%20%3Ctitle%3ELayer%201%3C%2Ftitle%3E%20%3Cellipse%20stroke-width%3D%220%22%20ry%3D%2216%22%20rx%3D%2216%22%20id%3D%22svg_1%22%20cy%3D%2220%22%20cx%3D%2220%22%20stroke%3D%22%23000%22%20fill%3D%22%23333333%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E'); */
}

.news-list01__inner {
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
.news-list01__inner[href$="pdf"] .news-list01__description > span:after, .news-list01__inner.type-pdf .news-list01__description > span:after {
  content: "";
  background-image: url(../../common/img/icon_pdf.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 10px;
}
.news-list01__inner[href$="mp4"] .news-list01__description > span:after, .news-list01__inner.type-movie .news-list01__description > span:after {
  content: "";
  background-image: url(../../common/img/icon_movie.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 10px;
}
.news-list01__inner[href$="xls"] .news-list01__description > span:after, .news-list01__inner[href$="xlsx"] .news-list01__description > span:after, .news-list01__inner[href$="xl"] .news-list01__description > span:after, .news-list01__inner.type-doc .news-list01__description > span:after {
  content: "";
  background-image: url(../../common/img/icon_exel.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 10px;
}
.news-list01__inner[href^="http"] .news-list01__description > span:after, .news-list01__inner.type-outside .news-list01__description > span:after {
  content: "\e90b";
  font-family: "icomoon" !important;
  speak: none;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  background: none;
}

.news-list01__data {
  overflow: hidden;
}

.news-list01__date {
  float: left;
  line-height: 27px;
}

.news-list01__tag {
  float: left;
  font-size: 0;
}

.news-list01__description {
  margin: 3px 0 0;
}

.news-list02__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list02__item {
  border-bottom: 1px solid rgba(115, 115, 115, 0.2);
}
.news-list02__item:first-child {
  border-top: 1px solid rgba(115, 115, 115, 0.2);
}

.news-list02__inner {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
.news-list02__inner[href$="pdf"] .news-list02__description > span:after, .news-list02__inner.type-pdf .news-list02__description > span:after {
  content: "";
  background-image: url(../../common/img/icon_pdf.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 10px;
}
.news-list02__inner[href$="mp4"] .news-list02__description > span:after, .news-list02__inner.type-movie .news-list02__description > span:after {
  content: "";
  background-image: url(../../common/img/icon_movie.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 10px;
}

a.news-list02__inner:after {
  content: "";
  background-image: url(../../common/img/icon_arrow01.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news-list02__data {
  overflow: hidden;
}

.news-list02__date {
  float: left;
}

.news-list02__description {
  overflow: hidden;
  margin: 0;
}

.news-list03__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list03__item {
  border-bottom: 1px solid rgba(115, 115, 115, 0.2);
}
.news-list03__item:first-child {
  border-top: 1px solid rgba(115, 115, 115, 0.2);
}

.news-list03__inner {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
.news-list03__inner[href$="pdf"] .news-list03__description > span:after, .news-list03__inner.type-pdf .news-list03__description > span:after {
  content: "";
  background-image: url(../../common/img/icon_pdf.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 10px;
}
.news-list03__inner[href$="mp4"] .news-list03__description > span:after, .news-list03__inner.type-movie .news-list03__description > span:after {
  content: "";
  background-image: url(../../common/img/icon_movie.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 10px;
}

a.news-list03__inner:after {
  content: "";
  background-image: url(../../common/img/icon_arrow01.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

a.news-list03__inner[href^="http"]:after {
  background-image: none;
}
a.news-list03__inner[href$="pdf"]:after, a.news-list03__inner.type-pdf:after,
a.news-list03__inner[href$="mp4"]:after, a.news-list03__inner.type-movie:after {
  content: none;
  display: none;
}

.news-list03__data {
  overflow: hidden;
}

.news-list03__date {
  float: left;
}

.news-list03__description {
  overflow: hidden;
  margin: 0;
}

.banner-list01__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.banner-list01__item:first-child {
  margin-top: 0;
}

.banner-list02__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.banner-list03__heading {
  font-weight: bold;
  margin: 0;
  float: left;
}

.banner-list03__more {
  float: right;
}

.banner-list03__slider {
  position: relative;
}
.banner-list03__slider .bx-controls-direction a {
  font-size: 0;
  text-decoration: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.banner-list03__slider .bx-controls-direction a:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  line-height: 40px;
  font-size: 15px;
}
.banner-list03__slider .bx-controls-direction a.bx-prev {
  left: 0px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: center 10px;
  transform-origin: center 10px;
}
.banner-list03__slider .bx-controls-direction a.bx-next {
  right: 0px;
}
.banner-list03__slider .bx-wrapper{
  max-width:95% !important;
}

.banner-list03__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.banner-list04__list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.banner-list05{margin: 20px 0 0 0;}
.banner-list05__item{margin:0 0 20px 0;border: 1px solid #e0e0e0;}
.banner-list05__title{
  background-color: #e6e6e6;
  color: #000;
  font-weight:bold;
  padding:3px 10px;
}
.banner-list05__text{
  padding: 10px 10px 0 10px;
}
.banner-list05__text a{
  text-decoration:none;
}
.banner-list05__text a:hover{
  text-decoration:underline;
}
.banner-list05__text a[href^="http"]:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  right: 15px;
  content: "\e90b";
  color: #07b;
  margin-left: 0.5em;
}
.banner-list05__list {list-style: none;margin: 0;padding: 0;}
.banner-list05__more{text-align:right;padding:0 10px 5px 0;}
.banner-list05__more a {
  padding: 5px 18px 0 0;
  text-decoration:none;
  position:relative;
}
.banner-list05__more a:hover {
  text-decoration:underline;
}
.banner-list05__more a[href^="http"]:after{
  font-family: "icomoon" !important;
  speak: none;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  display: block;
  position:absolute;
  color: #07b;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  white-space: nowrap;
}
.banner-list05__img{
  padding:10px;
  text-align:center;
}
.list-type01__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type01__item {
  position: relative;
  margin: 10px 0 0;
  line-height: 1.6;
}
.list-type01__item:before {
  content: "";
  background-color: #333;
  border-radius: 20px;
  position: absolute;
}
.list-type01__item:first-child {
  margin-top: 0;
}

.list-type02__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type02__item {
  position: relative;
  margin: 10px 0 0;
  line-height: 1.6;
  counter-increment: chapter;
}
.list-type02__item:before {
  content: "（" counter(chapter) "）";
}
.list-type02__item:first-child {
  margin-top: 0;
}

.list-type03__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type03__item {
  position: relative;
  margin: 10px 0 0;
  line-height: 1.6;
}
.list-type03__item:before {
  content: "";
  background-color: #333;
  position: absolute;
}
.list-type03__item:first-child {
  margin-top: 0;
}

.link-list01.type-bd-t {
  border-top: 1px solid #e3e3e3;
}

.link-list01.type-anchor a.link-list01__inner:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.link-list01__list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

.link-list01__item a {
  text-decoration: none;
}

.link-list01__inner {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

a.link-list01__inner:after {
  content: "";
  background-image: url(../../common/img/icon_arrow01.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
a.link-list01__inner[href^="http"]:after, a.link-list01__inner.type-outside:after {
  font-family: "icomoon" !important;
  background: none;
  content: "\e90b";
  color: #07b;
}

a.link-list01__inner[href$="zip"] > span:after, a.link-list01__inner.type-zip > span:after {
  content: "";
  background-image: url(../../common/img/icon_zip.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}

a.link-list01__inner[href$="pdf"] > span:after, a.link-list01__inner.type-pdf > span:after {
  content: "";
  background-image: url(../../common/img/icon_pdf.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}

a.link-list01__inner[href$="xls"] > span:after, a.link-list01__inner[href$="xlsx"] > span:after, a.link-list01__inner[href$="xlsm"] > span:after, a.link-list01__inner.type-doc > span:after {
  content: "";
  background-image: url(../../common/img/icon_exel.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}

.link-list02__list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.link-list02__item a {
  display: block;
  background-color: #fff;
  border-radius: 25px;
  text-decoration: none;
  position: relative;
}
.link-list02__item a[href^="http"]:after, .link-list02__item a.type-outside:after {
  content: "\e90b";
  color: #07b;
}
.link-list02__item a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link-list03__heading {
  font-weight: bold;
  background-color: #e6e6e6;
  margin: 0;
  line-height: 1.2;
}
.link-list03__heading a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #333;
}
.link-list03__heading a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link-list03__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list03__item {
  line-height: 1.2;
  border-bottom: 1px solid #e3e3e3;
}
.link-list03__item:last-child {
  border-bottom: 0;
}
.link-list03__item a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #333;
}
.link-list03__item a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link-list04__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
}

.link-list04__item {
  width: calc((100%/3)-1px);
  margin-right: 1px;
}
.link-list04__item:last-child {
  margin-right: 0;
}
.link-list04__item > a {
  display: block;
  text-decoration: none;
  text-align: center;
}

.link-list04__text {
  color: #333;
  display: inline-block;
  position: relative;
  padding: 0 20px;
  margin: 0;
  line-height: 1.2;
}
.link-list04__text:after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link-list05__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list05__item {
  line-height: 1.2;
  border-bottom: 1px solid #e3e3e3;
}
.link-list05__item:last-child {
  border-bottom: 0;
}
.link-list05__item a {
  display: block;
  text-decoration: none;
  color: #333;
  position: relative;
}
.link-list05__item a:after {
  content: "";
  background-image: url(../../common/img/icon_arrow01.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.link-list05__item a[href^="http"]:after, .link-list05__item a.type-outside:after {
  content: none;
}
.link-list05__item a[href^="http"] span:after, .link-list05__item a.type-outside span:after {
  content: "\e90b";
  font-family: "icomoon" !important;
  speak: none;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  background: none;
}

.link-list06__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list06__item {
  line-height: 1.2;
  border-bottom: 1px solid #e3e3e3;
}
.link-list06__item:last-child {
  border-bottom: 0;
}
.link-list06__item.is-new a:after {
  content: "NEW";
  color: #fff;
  background-color: #ed0402;
  border-radius: 20px;
  line-height: 20px;
  padding: 0 10px;
  margin: 0 0 0 10px;
  text-align: center;
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
}
.link-list06__item a {
  display: block;
  text-decoration: none;
  color: #333;
  position: relative;
}
.link-list06__item a[href$="pdf"] > span:after, .link-list06__item a.type-pdf > span:after {
  content: "";
  background-image: url(../../common/img/icon_pdf.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
.link-list06__item a[href$="mp4"]:after, .link-list06__item a.type-movie:after {
  content: "";
  background-image: url(../../common/img/icon_movie.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
.link-list06__item a[href$="xls"]:after, .link-list06__item a[href$="xlsx"]:after, .link-list06__item a[href$="xlsm"]:after, .link-list06__item a.type-doc:after {
  content: "";
  background-image: url(../../common/img/icon_exel.png);
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
.link-list06__item a[href^="http"]:after, .link-list06__item a.type-outside:after {
  content: "\e90b";
  font-family: "icomoon" !important;
  speak: none;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  background: none;
}

.link-list07__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list07__item {
  line-height: 1.2;
}
.link-list07__item a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  position: relative;
}
.link-list07__item a:hover {
  text-decoration: underline;
}
.link-list07__item a:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  background-image: url(../../common/img/icon_arrow01.svg);
  background-repeat: no-repeat;
}
.link-list07__item a[href^="http"]:after, .link-list07__item a.type-outside:after {
  content: "\e90b";
  font-family: "icomoon" !important;
  speak: none;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 20px;
  background: none;
}

.frame-type01 {
  background-color: #e6e6e6;
}

.frame-type02 {
  background-color: #f7f7f7;
}
.frame-type02 [class^="heading-block0"] {
  margin: 0;
}

.frame-type02__body p {
  margin: 0;
}

.frame-type03 {
  border: 1px solid #e0e0e0;
}
.frame-type03 [class^="heading-block0"] {
  margin: 0;
}

.frame-type03__body p {
  margin: 0;
}

.media-block01:after {
  content: "";
  display: block;
  clear: both;
}

.media-block01.type-right .media-block01__media {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}

.media-block01.type-left .media-block01__media {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.media-block02:after {
  content: "";
  display: block;
  clear: both;
}

.media-block02.type-right .media-block02__media {
  float: right;
  margin-bottom: 10px;
}

.media-block02.type-right .media-block02__text {
  overflow: hidden;
}
.media-block02.type-right .media-block02__text > *:first-child {
  margin-top: 0;
}

.media-block02.type-left .media-block02__media {
  float: left;
  margin-bottom: 10px;
}

.media-block02.type-left .media-block02__text {
  overflow: hidden;
}
.media-block02.type-left .media-block02__text > *:first-child {
  margin-top: 0;
}

.media-block02__heading {
  font-weight: normal;
  border-bottom: 1px solid #e3e3e3;
}

.selectbox-type01 {
  display: inline-block;
  border: 1px solid #aab2bd;
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
}
.selectbox-type01:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #aab2bd;
  position: absolute;
  top: 0;
}
.selectbox-type01:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
}
.selectbox-type01 select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  zoom: 1.01;
  opacity: .01;
  z-index: 2;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
}

.selectbox-type01__text {
  display: block;
}

.control-link {
  overflow: hidden;
}

.control-link__item {
  display: block;
  position: relative;
  text-decoration: none;
  font-weight: bold;
}
.control-link__item.type-back:before {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
}

.styleguide-heading01 {
  border: 2px solid #333;
  background-color: #eee;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  padding: 15px 10px;
  margin: 0 0 20px;
}

.styleguide-block01 {
  margin-bottom: 30px;
}

@media print, screen and (min-width: 37.5em) {
  /* ---------------------------
 * PC
 * --------------------------- */
  html.is-small {
    font-size: 50%;
  }
  html.is-large {
    font-size: 75%;
  }
  .pc-hide {
    display: none !important;
  }
  .type-line-wide {
    line-height: 1.6;
  }
  .font-xl {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .font-l {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .font-m {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .font-s {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .font-xs {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .content {
    margin-top: 115px;
  }
  .content__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .content-base {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .content-base.type-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  .content-base.type-top .content-main {
    margin-top: 25px;
  }
  .content-base.type-top .content-side {
    margin-top: 25px;
  }
  .content-main {
    width: 72.68519%;
	margin-bottom: 30px;
  }
  .content-side {
    width: 24.53704%;
    margin-bottom: 20px;
  }
  .header {
    height: 75px;
  }
  .header__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .header-top__heading {
    font-size: 11px;
  }
  .header-top__link {
    font-size: 11px;
  }
  .header-top__link a:hover {
    text-decoration: underline;
  }
  .header-main {
    margin: 0;
    padding: 10px 0 0;
  }
  .header__logo {
    margin: 0 5px 0 0;
    float: left;
  }
  .header__logo-img {
    margin: 0 10px 0 0;
  }
  .header__logo-img img {
    width: 82px;
  }
  .header__logo-text {
    font-size: 16px;
    line-height: 54px;
  }
  .header__button01 {
    float: left;
    font-size: 1px;
    text-indent: -9999px;
    margin: 0 3px 0 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .header__button01:hover {
    opacity: .6;
  }
  .header__button01 a {
    display: block;
    background-image: url(../../common/img/banner_header01.png);
    background-repeat: no-repeat;
    width: 230px;
    height: 38px;
  }
  .header__buttons {
    float: right;
    margin: 10px 0 0;
  }
  .header__buttons:after {
    content: "";
    display: block;
    clear: both;
  }
  .font-change {
    width: 230px;
    float: left;
    background-color: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
    margin: 0 3px 0 0;
    padding: 0 10px 0 20px;
    box-sizing: border-box;
  }
  .font-change__heading {
    float: left;
    margin: 0 10px 0 0;
    line-height: 38px;
  }
  .font-change__list {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    overflow: hidden;
  }
  .font-change__item {
    float: left;
    width: 40px;
    height: 33px;
    padding-top: 7px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
  }
  .font-change__item.is-active {
    background-color: #fff;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
  }
  .header__button02 {
    float: left;
    margin: 0 10px 0 0;
    font-size: 14px;
    text-align: center;
  }
  .header__button02 a {
    display: block;
    border-radius: 0px;
    /*background-color: #cc0e1b;*/
    background-color: #4b7ebf;
    color: #fff;
    width: auto;
    line-height: 30px;
    padding: 0px 1em;
    text-decoration: none;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .header__button02 a:hover {
    opacity: .6;
  }
  .header__button03 {
    float: left;
    margin: 0 10px 0 0;
    font-size: 14px;
    text-align: center;
  }
  .header__button03 a {
    display: block;
    border-radius: 0px;
    background-color: #e6e6e6;
    color: #333;
    width: auto;
    line-height: 30px;
    padding: 0px 1em;
    text-decoration: none;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .header__button03 a:hover {
    opacity: .6;
  }
  .header-search-open {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 30px;
    float: left;
    text-align: center;
    border: 1px solid #cacaca;
    background-color: #fff;
    border-radius: 0px;
    position: relative;
    box-sizing: border-box;
  }
  .header-search-open:before {
    content: "\e909";
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    line-height: 30px;
  }
  .header-search-open.is-open {
    border: 0;
    height: 50px;
    border-radius: 0;
    /*
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    */
    background-color: #cc0e1b;
  }
  .header-search-open.is-open:before, .header-search-open.is-open:after {
    content: "";
    width: 18px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 22px;
    left: 11px;
  }
  .header-search-open.is-open:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-search-open.is-open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header-search {
    float: left;
    width: 160px;
  }
  /*
  .header-search__inner {
    border: 1px solid #cacaca;
    background-color: #fff;
    border-radius: 20px;
    height: 38px;
    padding: 0 5px 0 10px;
    box-sizing: border-box;
  }
  */
  .header-search__inner {
    border: 1px solid #cacaca;
    background-color: #fff;
    border-radius: 0px;
    height: 30px;
    padding: 0 5px 0 10px;
    box-sizing: border-box;
  }
  .header-search__inner:after {
    content: "";
    display: block;
    clear: both;
  }
/*
  .header-search__input {
    display: block;
    float: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 16px;
    width: calc(100% - 40px);
    padding: 3px 0 3px 5px;
    box-shadow: none;
    background: none;
    outline: 0;
    box-sizing: border-box;
  }
  .header-search__button {
    display: block;
    float: right;
    border: 0;
    font-size: 0;
    width: 36px;
    padding: 7px;
    outline: 0;
    background-color: transparent;
    box-sizing: border-box;
  }
  .header-search__button:before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e909";
    font-size: 16px;
  }
*/
  .header__links {
    display: none;
  }
  .sp-menu {
    display: none;
  }
  .nav {
    border-bottom: 1px solid #e6e6e6;
    height: 40px;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
  }
  .global-nav {
    max-width: 1080px;
    margin: 0 auto;
  }
  .sp-nav {
    display: none !important;
  }
  .main-visual__slider {
    overflow: hidden;
  }
  a.main-visual__inner .main-visual__text:after {
    display: block;
  }
  .main-visual__text {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 15px;
    position: relative;
    box-sizing: border-box;
  }
  .main-visual__text:after {
    display: none;
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90c";
    color: #000;
    font-size: 44px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .main-visual__heading {
    font-size: 20px;
    font-size: 2rem;
    font-size: bold;
    margin: 0 0 10px;
    line-height: 1.2;
  }
  .main-visual__description {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.533;
    margin: 0;
  }
  .side-facebook {
    margin-bottom: 20px;
  }
  .footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .footer-nav {
    overflow: hidden;
    padding: 20px 0;
  }
  .footer-nav__category {
    width: 25%;
    float: left;
    padding-right: 10px;
    box-sizing: border-box;
  }
  .footer-nav__category:last-child {
    padding-right: 0;
  }
  .footer-nav__heading {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  .footer-nav__list + .footer-nav__heading {
    margin-top: 24px;
  }
  .footer-nav__heading a {
    display: inline-block;
    padding: 0 0 0 35px;
  }
  .footer-nav__heading a:before {
    width: 21px;
    height: 21px;
    position: absolute;
    top: -2px;
    left: 0;
  }
  .footer-nav__heading a:after {
    font-size: 10px;
    position: absolute;
    top: 4px;
    left: 8px;
  }
  .footer-nav__heading a:hover {
    text-decoration: underline;
  }
  .footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav__item {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 5px 0;
  }
  .footer-nav__item a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding: 0 0 0 35px;
  }
  .footer-nav__item a:hover {
    text-decoration: underline;
  }
  .footer-nav__item a:after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    font-size: 10px;
    position: absolute;
    top: 2px;
    left: 8px;
  }
  .footer-sub-nav__item {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 21px 0;
  }
  .footer-sub-nav__item a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 0 0 0 35px;
  }
  .footer-sub-nav__item a:before {
    width: 21px;
    height: 21px;
    position: absolute;
    top: -2px;
    left: 0;
  }
  .footer-sub-nav__item a:after {
    font-size: 10px;
    position: absolute;
    top: 4px;
    left: 8px;
  }
  .footer-sub-nav__item a:hover {
    text-decoration: underline;
  }
  .pagetop {
    position: fixed;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    opacity: 0;
    bottom: 25px;
    right: 10px;
  }
/*
  .pagetop a {
    width: 78px;
    height: 78px;
    background-image: url(../../common/img/pagetop_pc_blue.png);
    background-repeat: no-repeat;
    background-position: center;
  }
*/
  .pagetop.show {
    opacity: 1;
  }
/*
  .pagetop.stop {
    position: absolute;
    bottom: auto;
    top: -103px;
    right: 10px;
  }
*/
  .pagetop:hover {
    opacity: .6;
  }
  .footer-data {
  }
  .en .footer-data {
    padding-top: 20px;
  }
  .footer-data__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0px 10px 20px 10px;
    text-align: right;
  }
  .footer-data .footer-data__stock {
  }
  .footer-data .footer-data__button {
  }
  .footer-data .footer-data__button li {
  }
  .footer-copyright small {
    display: inline-block;
    line-height: 40px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .article-head {
    margin: 0 0 30px;
  }
  .article-head__heading {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.44;
    margin: 0 0 5px;
  }
  .article-head__data {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 5px 0 0;
  }
  .heading-block01 {
    margin: 10px 0;
  }
  .heading-block01 + .link-list01, .heading-block01 + .link-list03, .heading-block01 + .link-list05, .heading-block01 + .link-list06 {
    margin-top: 15px;
  }
  .heading-block01__title {
    font-size: 20px;
    font-size: 2rem;
    padding: 0 10px 0 20px;
  }
  .heading-block01__title [class^="icomoon-"] {
    font-size: 35px;
    margin: 0 20px 0 0;
  }
  .heading-block01__title span {
    padding: 18px 0;
  }
  .heading-block01__more {
    min-width: 150px;
    margin: 12px 0 12px 0;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block01__more:hover {
    opacity: .6;
  }
  .heading-block01__more span {
    padding: 10px 30px 10px 10px;
  }
  .heading-block01__more:after {
    right: 20px;
    font-size: 13px;
  }
  .heading-block01__more[href^="http"]:after, .heading-block01__more.type-outside:after {
    font-size: 15px;
  }
  .heading-block01__link {
    min-width: 185px;
    padding: 0 30px 0 10px;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block01__link:hover {
    opacity: .9;
  }
  .heading-block01__link:after {
    right: 10px;
    font-size: 17px;
  }
  .heading-block01__link.type-ir {
    padding-left: 55px;
  }
  .heading-block01__link.type-ir:before {
    left: 15px;
    font-size: 25px;
  }
  .heading-block02 {
    margin: 15px 0 20px;
  }
  .heading-block02 > a:after {
    right: 10px;
    font-size: 11px;
  }
  .heading-block02 + .link-list01, .heading-block02 + .link-list03, .heading-block02 + .link-list05, .heading-block02 + .link-list06 {
    margin-top: -15px;
  }
  .heading-block02__title {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 10px 0 20px;
  }
  .heading-block02__title [class^="icomoon-"] {
    font-size: 35px;
    margin: 0 20px 0 0;
  }
  .heading-block02__title span {
    padding: 21px 0;
  }
  .heading-block02__more {
    width: 150px;
    margin: 12px 0 12px 0;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block02__more:hover {
    opacity: .6;
  }
  .heading-block02__more span {
    padding: 10px 30px 10px 10px;
  }
  .heading-block02__more:after {
    right: 20px;
    font-size: 13px;
  }
  .heading-block02__more[href^="http"]:after, .heading-block02__more.type-outside:after {
    font-size: 15px;
  }
  .heading-block02__link {
    width: 185px;
    padding: 0 30px 0 10px;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block02__link:hover {
    opacity: .6;
  }
  .heading-block02__link:after {
    right: 10px;
    font-size: 17px;
  }
  .heading-block02__link.type-download {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .heading-block02__link.type-download:after {
    right: 5px;
    font-size: 24px;
  }
  .heading-block03 {
    margin: 20px 0;
  }
  .heading-block03 > a:after {
    right: 10px;
    font-size: 11px;
  }
  .heading-block03 + .link-list03 {
    margin-top: -15px;
  }
  .heading-block03__title {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 10px 0 20px;
  }
  .heading-block03__title [class^="icomoon-"] {
    font-size: 35px;
    margin: 0 20px 0 0;
  }
  .heading-block03__title span {
    padding: 13px 0;
  }
  .heading-block03__more {
    width: 150px;
    margin: 12px 0 12px 0;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block03__more:hover {
    opacity: .6;
  }
  .heading-block03__more span {
    padding: 10px 30px 10px 10px;
  }
  .heading-block03__more:after {
    right: 20px;
    font-size: 13px;
  }
  .heading-block03__more[href^="http"]:after, .heading-block03__more.type-outside:after {
    font-size: 15px;
  }
  .heading-block03__link {
    min-width: 160px;
    padding: 0 30px 0 10px;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block03__link:hover {
    opacity: .6;
  }
  .heading-block03__link:after {
    right: 10px;
    font-size: 13px;
  }
  .heading-block03__link.type-download {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .heading-block03__link.type-download:after {
    right: 5px;
    font-size: 24px;
  }
  .heading-block04 {
    margin: 20px 0;
    padding: 14px 0;
  }
  .heading-block04 > a:after {
    right: 10px;
    font-size: 11px;
  }
  .heading-block04 + .link-list01, .heading-block04 + .link-list03, .heading-block04 + .link-list05, .heading-block04 + .link-list06 {
    margin-top: -15px;
  }
  .heading-block04__title {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 10px 0 20px;
  }
  .heading-block04__title [class^="icomoon-"] {
    font-size: 35px;
    margin: 0 20px 0 0;
  }
  .heading-block04__title span {
    padding: 10px 0;
  }
  .heading-block04__more {
    width: 150px;
    margin: 12px 0 12px 0;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block04__more:hover {
    opacity: .6;
  }
  .heading-block04__more span {
    padding: 10px 30px 10px 10px;
  }
  .heading-block04__more:after {
    right: 20px;
    font-size: 13px;
  }
  .heading-block04__more[href^="http"]:after, .heading-block04__more.type-outside:after {
    font-size: 15px;
  }
  .heading-block04__link {
    width: 185px;
    padding: 0 30px 0 10px;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block04__link:hover {
    opacity: .6;
  }
  .heading-block04__link:after {
    right: 10px;
    font-size: 17px;
  }
  .heading-block04__link.type-download {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .heading-block04__link.type-download:after {
    right: 5px;
    font-size: 24px;
  }
  .button-group01 {
    margin: 10px 0 20px;
  }
  .button-group01 [class^="button-type"] {
    margin: 0 7px;
  }
  .button-type01 {
    display: inline-block;
    border: 2px solid #333;
    padding: 0 40px 0 25px;
    line-height: 40px;
    min-width: 160px;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .newsbutton .button-type01 {
  padding: 0px 18px 0 18px;
  line-height: 34px;
  min-width: 160px;
  font-size: 1.4rem;
  }
  .button-type01:hover {
    opacity: .6;
  }
  .button-type01:after {
    right: 15px;
    font-size: 16px;
  }
  .newsbutton .button-type01:after {
    right: 10px;
    font-size: 10px;
  }
  .button-type01.type-map {
    padding: 0 20px 0 45px;
  }
  .button-type01.type-map:before {
    left: 25px;
    font-size: 26px;
  }
  .button-type02 {
    display: inline-block;
    border: 2px solid #bb031d;
    padding: 0 40px 0 25px;
    line-height: 40px;
    min-width: 160px;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .button-type02:hover {
    opacity: .6;
  }
  .button-type02:after {
    right: 15px;
    font-size: 16px;
  }
  .button-type02.type-map {
    padding: 0 20px 0 45px;
  }
  .button-type02.type-map:before {
    left: 25px;
    font-size: 26px;
  }
  .button-type03 {
    display: inline-block;
    border: 2px solid #676767;
    padding: 0 40px 0 25px;
    line-height: 40px;
    min-width: 160px;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .button-type03:hover {
    opacity: .6;
  }
  .button-type03:after {
    right: 15px;
    font-size: 16px;
  }
  .button-type03.type-map {
    padding: 0 20px 0 45px;
  }
  .button-type03.type-map:before {
    left: 25px;
    font-size: 26px;
  }
  .table-type01 {
    margin: 20px 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .table-type01 th, .table-type01 td {
    padding: 15px;
  }
  .table-type01 caption {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .table-type02 {
    margin: 20px 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .table-type02 th, .table-type02 td {
    padding: 15px;
  }
  .table-type02 caption {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .table-type03 {
    margin: 20px 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .table-type03 th, .table-type03 td {
    padding: 15px;
  }
  .table-type03 caption {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .table-inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .table-inner__item {
    padding: 0 10px;
  }
  .table-inner__item:first-child {
    border-right: 1px solid #e3e3e3;
    padding-left: 0;
  }
  .table-inner__item:last-child {
    padding-right: 0;
  }
  .table-inner__item--fill {
    flex-grow: 1;
    flex-basis: 0px;
  }
  .table-inner__item [class^="button-type0"] {
    min-width: 140px;
  }
  .column-type01 {
    overflow: hidden;
  }
  .column-type01.column2 .column-type01__item {
    width: calc(50% - 8px);
  }
  .column-type01.column2 .column-type01__item:nth-child(odd) {
    margin-right: 15px;
    clear: left;
  }
  .column-type01.column3 .column-type01__item {
    width: calc(33.3333% - 7px);
    margin-right: 10px;
  }
  .column-type01.column3 .column-type01__item:nth-child(3n) {
    margin-right: 0;
  }
  .column-type01.column3 .column-type01__item:nth-child(3n+1) {
    clear: left;
  }
  .column-type01__item {
    float: left;
  }
  .column-type01__item > [class^="heading-block0"] {
    margin-top: 0;
  }
  .column-type01__body {
    margin: 0 10px;
  }
  .column-type01__body .media-block01__media {
    margin-right: -10px;
  }
  .tag--type01 {
    line-height: 27px;
    padding: 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
    min-width: 92px;
  }
  .tab-type01.column2 .tab-type01-list__item {
    width: 50%;
    margin-bottom: -1px;
  }
  li.tab-type01-list__item{
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    position:relative;
}
  .tab-type01.type-full .tab-type01-list__list {
    max-width: 1080px;
    margin: 0 auto;
    /* border-bottom: 1px solid #e3e3e3; */
  }
  .tab-type01-list {
    /* position: relative; */
    border-bottom: 1px solid #e3e3e3;
  }
  .tab-type01-list__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: flex;
  }
  .tab-type01-list__item {
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.2;
    padding: 20px 10px 10px;
    cursor: pointer;
    /* border-right: 1px solid #e3e3e3; */
  }
  .tab-type01-list__item.is-active:before {
    /*
    content: "";
    height: 1px;
    background-color: #e3e3e3;
    position: absolute;
    top: 0;
    */
  }
  .tab-type01-list__item.is-active:after {
    /*
    content: "";
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: -1px;
    */
  }
  .tab-type01-list__item.is-active > span:before, .tab-type01-list__item.is-active > span:after {
    display: none;
  }
 /*数値変更*/
  .tab-type01-list__item.is-active {
   border-top-left-radius: 1px;
   border-color: #e3e3e3 #e3e3e3 #fff;
  }
  .tab-type01-list__item:first-child.is-active:before {
    left: 0;
    right: 60.66%;
  }
  .tab-type01-list__item:first-child.is-active:after {
    left: 0;
    right: 60.70%;
  }
  .tab-type01-list__item:last-child.is-active:before {
    left: 60.77%;
    right: 0;
  }
  .tab-type01-list__item:last-child.is-active:after {
    left: 60.77%;
    right: 0;
  }
  .tab-type01-list__item.is-active span {
   padding-right: 0;
  }
/*数値変更*/
  .tab-type01-list__item > span {
    display: inline-block;
    position: relative;
    padding: 0 40px 0 0;
  }
  .tab-type01-list__item > span:after {
    content: "";
    width: 21px;
    height: 21px;
    background-size: 21px;
    background-image: url(../../common/img/icon_arrow01.svg);
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .tab-type01-list__item > i {
    font-size: 30px;
    vertical-align: top;
    display: inline-block;
    margin-right: 15px;
  }
  .tab-type01-list__item > i.icomoon-ir {
    margin-top: -5px;
  }
  .tab-type01-list__item > i.icomoon-news {
    margin-top: -5px;
  }
  .tab-type01-list__item:hover > span {
    text-decoration: underline;
  }
  .tab-type01-panel {
    margin: 10px 0 25px;
  }
  .tab-type01-panel__item {
    display: none;
  }
  .tab-type01-panel__item.is-active {
    display: block;
  }
  .tab-type01-panel__heading {
    display: none;
  }
  .news-list01 {
    margin: 20px 0;
  }
  .top .news-list01 {
    margin: 20px 0 40px 0px;
  }
  .news-list01.type-has-icon .news-list01__inner {
    padding-right: 40px;
  }
  .news-list01.type-has-icon .news-list01__inner:after {
    content: "";
    width: 21px;
    height: 21px;
    background-size: 21px;
    background-image: url(../../common/img/icon_arrow01.svg);
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .news-list01.type-has-icon .news-list01__item:first-child .news-list01__inner:after {
    margin-top: -5px;
  }
  .news-list01__inner {
    padding: 15px 0 15px 0;
  }
  .top .news-list01__inner {
    padding: 30px 0 15px 0 !important;
  }
  .news-list01__inner:hover .news-list01__description {
    text-decoration: underline;
  }
  .news-list01__item.is-new .news-list01__description:after {
    content: "NEW";
    color: #f00;
    margin: 0 0 0 10px;
    font-weight: bold;
    /*
    background-color: #ed0402;
    border-radius: 20px;
    line-height: 20px;
    padding: 0 10px;
    margin: 0 0 0 10px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    font-size: 13px;
    font-size: 1.3rem;
    */
  }
  .news-list01__data {
    overflow: hidden;
    float: left;
    margin-right: 20px;
  }
  .news-list01__date {
    width: 146px;
    /*font-size: 15px;
    font-size: 1.5rem;*/
  }
  .news-list01__description {
    /*font-size: 15px;
    font-size: 1.5rem;*/
    overflow: hidden;
  }
  .news-list02 {
    margin: 30px 0;
  }
  .news-list02__inner {
    padding: 20px 0 20px 0;
  }
  a.news-list02__inner {
    cursor: pointer;
    padding-right: 40px;
  }
  a.news-list02__inner:after {
    width: 21px;
    height: 21px;
    background-size: 21px;
    right: 5px;
  }
  a.news-list02__inner:hover .news-list02__description {
    text-decoration: underline;
  }
  .news-list02__item.is-new .news-list02__description:after {
    content: "NEW";
    color: #fff;
    background-color: #ed0402;
    border-radius: 20px;
    line-height: 20px;
    padding: 0 10px;
    margin: 0 0 0 10px;
    text-align: center;
    display: inline-block;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .news-list02__data {
    overflow: hidden;
    float: left;
    margin-right: 20px;
  }
  .news-list02__date {
    width: 125px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .news-list02__description {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .news-list03 {
    margin: 30px 0;
  }
  .news-list03__inner {
    padding: 10px 0 10px 0;
  }
  a.news-list03__inner {
    cursor: pointer;
    padding-right: 40px;
  }
  a.news-list03__inner:after {
    width: 21px;
    height: 21px;
    background-size: 21px;
    right: 5px;
  }
  a.news-list03__inner:hover .news-list03__description {
    text-decoration: underline;
  }
  .news-list03__item.is-new .news-list03__description:after {
    content: "NEW";
    color: #fff;
    background-color: #ed0402;
    border-radius: 20px;
    line-height: 20px;
    padding: 0 10px;
    margin: 0 0 0 10px;
    text-align: center;
    display: inline-block;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .news-list03__data {
    overflow: hidden;
    float: left;
    margin-right: 20px;
  }
  .news-list03__date {
    min-width: 125px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .news-list03__description {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .banner-list01__item {
    margin: 15px 0 0;
  }
  .banner-list01__item a {
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .banner-list01__item a:hover {
    opacity: .6;
  }
  .banner-list02 {
    margin: 15px 0;
  }
  .banner-list02__list {
    overflow: hidden;
  }
  .banner-list02__item {
    float: left;
    width: 50%;
    box-sizing: border-box;
  }
  .banner-list02__item img{
    width:100%;
  }
  .banner-list02__item:nth-child(odd) {
    padding-right: 15px;
  }
  .banner-list02__item:nth-child(even) {
    padding-left: 15px;
  }
  .banner-list02__item a {
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .banner-list02__item a:hover {
    opacity: .6;
  }
  .banner-list03 {
    margin: 10px 0 20px;
  }
  .banner-list03__head {
    overflow: hidden;
    margin: 15px 0 10px;
  }
  .banner-list03__heading {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 40px;
  }
  .banner-list03__heading > span {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: 20px;
  }
  .banner-list03__item {
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .banner-list03__item:hover {
    opacity: .6;
  }
  .banner-list04 {
    margin: 20px 0;
  }
  .banner-list04__item {
    width: calc(33.3% - 15px);
    margin: 10px 20px 0 0;
    float: left;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .banner-list04__item:hover {
    opacity: .6;
  }
  .banner-list04__item:nth-child(-n+3) {
    margin-top: 0;
  }
  .banner-list04__item:nth-child(3n) {
    margin-right: 0;
  }
  .banner-list04__item:nth-child(3n+1) {
    clear: left;
  }
  .banner-list05__img:hover {
    opacity: .6;
  }
  .list-type01 {
    margin: 20px 0;
  }
  .list-type01__item {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 18px;
  }
  .list-type01__item:before {
    width: 4px;
    height: 4px;
    top: 7px;
    left: 5px;
  }
  .list-type02 {
    margin: 20px 0;
  }
  .list-type02__item {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 20px;
    text-indent: -20px;
  }
  .list-type03 {
    margin: 20px 0;
  }
  .list-type03__item {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 25px;
  }
  .list-type03__item:before {
    width: 8px;
    height: 3px;
    top: 9px;
    left: 5px;
  }
  .link-list01 {
    margin: 5px 0;
  }
  .link-list01.type-small .link-list01__item {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .link-list01.type-high .link-list01__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .link-list01__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
/*
  .link-list01__list:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
*/
  .link-list01__item {
    width: 33.33333%;
    border-bottom: 1px solid #e3e3e3;
    font-size: 15px;
    font-size: 1.5rem;
    display: -webkit-box;
    display: flex;
    align-self: stretch;
  }
  .link-list01__item:nth-child(3n+1) {
    clear: left;
  }
/*
  .link-list01__item:nth-child(3n) .link-list01__inner {
    padding-right: 25px;
  }
  .link-list01__item:nth-child(3n) a.link-list01__inner:after {
    right: 0;
  }
*/
  .link-list01__inner {
    padding: 10px 20% 10px 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .link-list01__inner > span {
    width: 100%;
  }
  a.link-list01__inner:hover {
    text-decoration: underline;
  }
  a.link-list01__inner:after {
    width: 21px;
    height: 21px;
    background-size: 21px;
    right: 10%;
  }
  .link-list01__data {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .link-list02__list {
    overflow: hidden;
  }
  .link-list02__item {
    font-size: 15px;
    font-size: 1.5rem;
    float: left;
    width: calc((100%/3) - 14px);
    margin: 10px 20px 0 0;
  }
  .link-list02__item:nth-child(3n) {
    margin-right: 0;
  }
  .link-list02__item:nth-child(3n+1) {
    clear: left;
  }
  .link-list02__item:nth-child(-n+3) {
    margin-top: 0;
  }
  .link-list02__item a {
    padding: 7px 35px 7px 20px;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .link-list02__item a:hover {
    opacity: .6;
  }
  .link-list02__item a:after {
    font-size: 10px;
    font-size: 1rem;
    right: 15px;
  }
  .link-list02__item a[href^="http"]:after, .link-list02__item a.type-outside:after {
    right: 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .link-list03 {
    margin: 20px 0;
  }
  .link-list03__heading {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .link-list03__heading a {
    padding: 21px 10px 21px 20px;
  }
  .link-list03__heading a:after {
    right: 10px;
    font-size: 11px;
  }
  .link-list03__item {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .link-list03__item a {
    padding: 14px 20px 14px 5px;
  }
  .link-list03__item a:after {
    right: 10px;
    font-size: 11px;
  }
  .link-list03__item a:hover {
    text-decoration: underline;
  }
  .link-list04 {
    margin: 0 0 30px;
  }
  .link-list04__text {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 10px 0;
  }
  .link-list04__text:after {
    font-size: 13px;
  }
  .link-list05 {
    margin: 20px 0;
  }
  .link-list05__item {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .link-list05__item a {
    padding: 10px 20px 10px 5px;
  }
  .link-list05__item a:after {
    width: 21px;
    height: 21px;
    background-size: 21px;
    right: 0;
  }
  .link-list05__item a:hover {
    text-decoration: underline;
  }
  .link-list06 {
    margin: 20px 0;
  }
  .link-list06__item {
    /*
    font-size: 15px;
    font-size: 1.5rem;
    */
  }
  .link-list06__item a {
    padding: 15px 20px 15px 5px;
  }
  .link-list06__item a:hover {
    text-decoration: underline;
  }
  .link-list07 {
    margin: 30px 0;
  }
  .link-list07__item {
    font-size: 15px;
    font-size: 1.5rem;
    margin: 10px 0;
  }
  .link-list07__item a {
    padding: 5px 0 5px 20px;
  }
  .link-list07__item a:after {
    width: 21px;
    height: 21px;
    background-size: 21px;
    margin-top: -2px;
    margin-left: 20px;
  }
  .frame-type01__body {
    padding: 25px 20px;
  }
  .frame-type02 {
    margin: 20px 0;
  }
  .frame-type02__body {
    padding: 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .frame-type03 {
    margin: 20px 0;
  }
  .frame-type03__body {
    padding: 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .media-block01 {
    margin: 20px 0;
  }
  .media-block02 {
    margin: 20px 0 50px;
  }
  .media-block02.type-right .media-block02__media {
    margin-left: 40px;
  }
  .media-block02.type-left .media-block02__media {
    margin-right: 40px;
  }
  .media-block02.type-center .media-block02__media {
    text-align: center;
    margin: 0 0 20px;
  }
  .media-block02__text {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .media-block02__heading {
    margin: 0 0 15px;
    padding-bottom: 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .selectbox-type01 {
    min-width: 175px;
  }
  .selectbox-type01:before {
    right: 30px;
  }
  .selectbox-type01:after {
    border: 5px solid transparent;
    border-top: 5px solid #333;
    right: 10px;
    margin-top: -3px;
  }
  .selectbox-type01__text {
    line-height: 33px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0 45px 0 15px;
  }
  .control-link {
    margin: 20px 10px;
  }
  .control-link__item {
    font-size: 18px;
    font-size: 1.8rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .control-link__item:hover {
    opacity: .6;
  }
  .control-link__item.type-back {
    float: right;
  }
  .control-link__item.type-back:before {
    font-size: 16px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 67.5em) {
  /* ---------------------------
 * Tablet
 * --------------------------- */
  .header__button01 a {
    width: 138px;
    height: 38px;
    background-image: url(../../common/img/banner_header01_tb.png);
  }
  .font-change {
    width: 130px;
    padding: 0 5px;
  }
  .font-change__heading {
    display: none;
  }
  .header__button02 {
    margin-right: 5px;
  }
  .header__button02 a {
    /*width: 52px;*/
  }
  .header__button02 span {
    display: none;
  }
  .header__button03 {
    margin-right: 5px;
  }
/*
  .header-search-open {
    display: block;
  }
*/
  .header-search {
    display: none;
    width: 100%;
    float: none;
    padding: 10px;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background-color: #cc0e1b;
    box-sizing: border-box;
  }
  .header-search.is-show {
    display: block;
  }
  .newsbutton .button-type01::after {
    font-size: 12px;
}
  .newsbutton .button-type01{
    padding: 0px 10px 0 10px;
}
}

@media screen and (max-width: 45.625em) {
  /* ---------------------------
 * 730px
 * --------------------------- */
  .header__button01 {
    display: none;
  }
  .global-nav__item a:before {
    right: 0;
  }
  .global-nav__item a:after {
    right: 6px;
  }
  .heading-block01__title {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 10px 0 10px;
  }
  .heading-block01__title [class^="icomoon-"] {
    font-size: 30px;
    margin: 0 10px 0 0;
  }
  .heading-block01__more {
    min-width: 100px;
    font-size: 13px;
    font-size: 1.3rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .heading-block01__more:hover {
    opacity: .6;
  }
  .heading-block01__more span {
    padding: 10px 15px 10px 5px;
  }
  .heading-block01__more:after {
    right: 5px;
  }
  .heading-block01__link {
    min-width: 125px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .heading-block01__link:after {
    font-size: 15px;
  }
  .heading-block01__link.type-ir {
    padding-left: 40px;
  }
  .heading-block01__link.type-ir:before {
    left: 10px;
    font-size: 22px;
  }
  .heading-block02__title {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 10px 0 10px;
  }
  .heading-block02__title [class^="icomoon-"] {
    font-size: 30px;
    margin: 0 10px 0 0;
  }
  .heading-block02__more {
    width: 100px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .heading-block02__more span {
    padding: 10px 15px 10px 5px;
  }
  .heading-block02__more:after {
    right: 5px;
  }
  .heading-block02__link {
    width: 160px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .heading-block02__link:after {
    font-size: 15px;
  }
  .heading-block02__link.type-download {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .heading-block02__link.type-download:after {
    right: 5px;
    font-size: 20px;
  }
  .heading-block03__title {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 10px 0 10px;
  }
  .heading-block03__title [class^="icomoon-"] {
    font-size: 30px;
    margin: 0 10px 0 0;
  }
  .heading-block03__more {
    width: 100px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .heading-block03__more span {
    padding: 10px 15px 10px 5px;
  }
  .heading-block03__more:after {
    right: 5px;
  }
  .heading-block03__link {
    width: 160px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .heading-block03__link:after {
    font-size: 15px;
  }
  .heading-block03__link.type-download {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .heading-block03__link.type-download:after {
    right: 5px;
    font-size: 20px;
  }
  .newsbutton .button-type01::after {
    font-size: 12px;
}
  .newsbutton .button-type01{
    font-size: 14px;
    width: 32%;
    margin: 5px 10px;
}
}

@media screen and (max-width: 37.4375em) {
  /* ---------------------------
 * SmartPhone
 * --------------------------- */
  body {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .sp-hide {
    display: none !important;
  }
  .sp-mb0 {
    margin-bottom: 0 !important;
  }
  .type-line-wide {
    line-height: 1.63636;
  }
  .font-xl {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .font-l {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .font-m {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .font-s {
    font-size: 10px;
    font-size: 1rem;
  }
  .font-xs {
    font-size: 10px;
    font-size: 1rem;
  }
  .content {
    margin-top: 82px;
  }
  .content-side {
    margin: 10px 0;
  }
  .section-type01 {
    margin: 0 0 25px;
  }
  body:not(.top):not(.module) .content-side {
    display: none;
  }
  .header {
    height: 82px;
    border-bottom: 1px solid #e3e3e3;
    box-sizing: border-box;
  }
  .header__inner {
    margin: 0 0 0 10px;
  }
  .header-top__heading {
    font-size: 10px;
  }
  .header-top__link {
    margin-right: 10px;
    font-size: 10px;
  }
  .header-main {
    padding: 7px 0 0;
  }
  .header__main {
    margin: 5px 0 0;
  }
  .header__logo {
    margin: 0;
    float: left;
  }
  .header__logo-img {
    margin: 0 7px 0 0;
  }
  .header__logo-img img {
    width: 58px;
  }
  .header__logo-text {
    font-size: 12px;
    line-height: 37px;
    letter-spacing: -1px;
  }
  .header__buttons {
    display: none;
  }
  .header__links {
    overflow: hidden;
    float: right;
  }
  .content-sns{
    display: block;
    overflow: hidden;
    padding: 7px 10px;
  }  
  .header-sns {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    float: left;
    overflow: hidden;
    display:  block;
  }
  .header-sns__item {
    font-size: 0;
    float: left;
    margin-left: 10px;
  }
  .header-sns__item:first-child {
    margin-left: 0;
  }
  .header-sns__item a {
    display: block;
    text-decoration: none;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
  }
  .header-sns__item a:before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    line-height: 35px;
  }
  .header-sns__item.twitter a {
    background-color: #00bdeb;
  }
  .header-sns__item.twitter a:before {
    content: "\e90a";
    font-size: 14px;
  }
  .header-sns__item.facebook a {
    background-color: #3a569d;
  }
  .header-sns__item.facebook a:before {
    content: "\e903";
    font-size: 16px;
  }
  .header-sns__item.youtube a {
    background-color: #CF071F;
  }
  .header-sns__item.youtube a:before {
    content: "\ea9e";
    font-size: 21px;
  }
  .header__button01 {
    display: none;
  }
  .sp-menu {
    float: right;
    margin: 0 0 0 5px;
  }
  .sp-menu__link {
    display: block;
    /*background-color: #c60613;*/
    background-color: #4b7ebf;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    text-decoration: none;
  }
  .sp-menu__button {
    display: block;
    position: relative;
    margin: 0;
    width: 50px;
    height: 45px;
  }
  .sp-menu__button:after {
    content: "MENU";
    line-height: 1;
    font-size: 10px;
    font-size: 1rem;
    color: #fff;
    position: absolute;
    bottom: 7px;
    left: 13px;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .sp-menu__icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    -webkit-transition: .2s;
    transition: .2s;
    width: 22px;
    height: 2px;
    margin: -6px 0 0 -8px;
  }
  .sp-menu__icon:before, .sp-menu__icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .sp-menu__icon:before {
    margin-top: -7px;
  }
  .sp-menu__icon:after {
    margin-top: 5px;
  }
  .global-nav {
    display: none;
  }
  .main-visual .bx-controls-direction a {
    background-color: transparent;
    color: #000;
  }
  .main-visual .bx-controls-direction a:before {
    content: "\e90c";
  }
  .main-visual .bx-pager {
    display: none;
  }
  .main-visual__img {
    height: 220px;
  }
  .main-visual__text {
    padding: 10px 15px;
  }
  .main-visual__heading {
    font-size: 12px;
    font-size: 1.2rem;
    font-size: bold;
    margin: 0 0 5px;
    line-height: 1.2;
  }
  .main-visual__description {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.533;
    margin: 0;
  }
  .side-facebook {
    text-align: center;
    margin: 0 10px 20px;
  }
  .footer-nav__list {
    display: none;
  }
  .footer-nav__heading {
    margin: 0;
    border-bottom: 1px solid #d0d1d2;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .footer-nav__heading a {
    display: block;
    line-height: 50px;
    padding: 0 0 0 16px;
  }
  .footer-nav__heading a:before {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .footer-nav__heading a:after {
    position: absolute;
    right: 19px;
    top: 50%;
    font-size: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .footer-sub-nav {
    background-color: #fff;
    margin-top: -1px;
  }
  .footer-sub-nav__item {
    border-bottom: 1px solid #e3e3e3;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
  }
  .footer-sub-nav__item:last-child {
    border-bottom: 0;
  }
  .footer-sub-nav__item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 32px;
    padding: 0 10px;
    min-height: 7mm;
  }
  .footer-sub-nav__item a:before {
    display: none;
  }
  .footer-sub-nav__item a:after {
    position: absolute;
    right: 19px;
    top: 50%;
    font-size: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .footer-data__inner {
    text-align: center;
    padding: 20px 10px;
    font-size: 1.2rem;
    background: #FFF;
  }
  .footer-copyright small {
    display: inline-block;
    line-height: 40px;
    font-size: 10px;
    font-size: 1rem;
  }
  .article-head {
    margin: 0 0 10px;
    padding: 10px 10px 10px;
    border-bottom: 1px solid #e3e3e3;
  }
  .article-head__heading {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.44;
    margin: 0 0 10px;
  }
  .article-head__data {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    margin: 10px 0 0;
  }
  .article-head-sns .sns-links {
    display: none;
  }
  .article-body {
    padding: 0 10px;
    margin: 10px 0 20px;
  }
  .article-foot-sns {
    padding: 0 10px;
  }
  .content-header {
    display: none;
  }
  .heading-block01 {
    margin: 15px 0;
  }
  .heading-block01 + .link-list01, .heading-block01 + .link-list03, .heading-block01 + .link-list04, .heading-block01 + .link-list05, .heading-block01 + .link-list06 {
    margin-top: -15px;
  }
  .heading-block01__title {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 10px 0 10px;
  }
  .heading-block01__title [class^="icomoon-"] {
    font-size: 20px;
    margin: 0 10px 0 0;
  }
  .heading-block01__title span {
    padding: 14px 0;
  }
  .heading-block01__more {
    min-width: 90px;
    margin: 8px 0;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block01__more span {
    padding: 8px 20px 8px 10px;
  }
  .heading-block01__more:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block01__more[href^="http"]:after, .heading-block01__more.type-outside:after {
    font-size: 13px;
  }
  .heading-block01__link {
    min-width: 115px;
    padding: 0 25px 0 5px;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block01__link:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block01__link[href^="http"]:after, .heading-block01__link.type-outside:after {
    font-size: 13px;
  }
  .heading-block01__link.type-ir {
    padding-left: 40px;
  }
  .heading-block01__link.type-ir:before {
    left: 12px;
    font-size: 18px;
  }
  .heading-block02 {
    margin: 15px 0;
  }
  .heading-block02 + .link-list01, .heading-block02 + .link-list03, .heading-block02 + .link-list05, .heading-block02 + .link-list06, .heading-block02 + .link-list07 {
    margin-top: -15px;
  }
  .heading-block02 > a:before {
    content: "";
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    width: 16px;
    height: 16px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .heading-block02 > a:after {
    right: 19px;
    font-size: 10px;
  }
  .heading-block02__title {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 0 10px 0 10px;
    min-height: 7mm;
  }
  .heading-block02__title [class^="icomoon-"] {
    font-size: 20px;
    margin: 0 10px 0 0;
  }
  .heading-block02__title span {
    padding: 14px 0;
  }
  .heading-block02__more {
    width: 90px;
    margin: 8px 0;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block02__more span {
    padding: 8px 20px 8px 10px;
  }
  .heading-block02__more:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block02__more[href^="http"]:after, .heading-block02__more.type-outside:after {
    font-size: 13px;
  }
  .heading-block02__link {
    min-width: 115px;
    padding: 0 25px 0 5px;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block02__link:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block02__link[href^="http"]:after, .heading-block02__link.type-outside:after {
    font-size: 13px;
  }
  .heading-block02__link.type-download:after {
    right: 5px;
    font-size: 18px;
  }
  .heading-block03 {
    margin: 15px 0;
  }
  .heading-block03 + .link-list01 {
    margin-top: -15px;
  }
  .heading-block03 + .link-list03 {
    margin-top: -15px;
  }
  .heading-block03 > a:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block03__title {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 0 10px 0 10px;
  }
  .heading-block03__title [class^="icomoon-"] {
    font-size: 20px;
    margin: 0 10px 0 0;
  }
  .heading-block03__title span {
    padding: 14px 0;
  }
  .heading-block03__more {
    width: 90px;
    margin: 8px 0;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block03__more span {
    padding: 8px 20px 8px 10px;
  }
  .heading-block03__more:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block03__more[href^="http"]:after, .heading-block03__more.type-outside:after {
    font-size: 13px;
  }
  .heading-block03__link {
    min-width: 115px;
    padding: 0 25px 0 5px;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block03__link:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block03__link[href^="http"]:after, .heading-block03__link.type-outside:after {
    font-size: 13px;
  }
  .heading-block04 {
    margin: 15px 0;
    padding: 15px 0;
  }
  .heading-block04 + .link-list01, .heading-block04 + .link-list03, .heading-block04 + .link-list05, .heading-block04 + .link-list06, .heading-block04 + .link-list07 {
    margin-top: -15px;
  }
  .heading-block04 > a:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block04__title {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .heading-block04__title [class^="icomoon-"] {
    font-size: 20px;
    margin: 0 10px 0 0;
  }
  .heading-block04__title span {
    padding: 7px 0;
  }
  .heading-block04__more {
    width: 90px;
    margin: 8px 0;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block04__more span {
    padding: 8px 20px 8px 10px;
  }
  .heading-block04__more:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block04__more[href^="http"]:after, .heading-block04__more.type-outside:after {
    font-size: 13px;
  }
  .heading-block04__link {
    min-width: 115px;
    padding: 0 25px 0 5px;
    font-size: 10px;
    font-size: 1rem;
  }
  .heading-block04__link:after {
    right: 10px;
    font-size: 10px;
  }
  .heading-block04__link[href^="http"]:after, .heading-block04__link.type-outside:after {
    font-size: 13px;
  }
  .heading-block04__link.type-download:after {
    right: 5px;
    font-size: 18px;
  }
  .meta-block01 {
    padding-left: 3px;
  }
  .button-group01 {
    margin: 10px 0;
  }
  .button-group01 [class^="button-type"] {
    margin: 0 10px 10px;
  }
  .button-group01 [class^="button-type"]:last-child {
    margin-bottom: 0;
  }
  .button-type01 {
    display: block;
    border: 1px solid #333;
    line-height: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .button-type01:after {
    right: 5px;
    font-size: 12px;
  }
  .button-type01.type-map {
    padding: 0 20px 0 20px;
  }
  .button-type01.type-map:before {
    left: 50%;
    margin-left: -40px;
    font-size: 20px;
  }
  .button-type02 {
    display: block;
    border: 1px solid #bb031d;
    line-height: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .button-type02:after {
    right: 5px;
    font-size: 12px;
  }
  .button-type02.type-map {
    padding: 0 20px 0 20px;
  }
  .button-type02.type-map:before {
    left: 50%;
    margin-left: -40px;
    font-size: 20px;
  }
  .button-type03 {
    display: block;
    border: 1px solid #676767;
    line-height: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .button-type03:after {
    right: 5px;
    font-size: 12px;
  }
  .button-type03.type-map {
    padding: 0 20px 0 20px;
  }
  .button-type03.type-map:before {
    left: 50%;
    margin-left: -40px;
    font-size: 20px;
  }
  .table-type01 {
    margin: 15px 10px;
    width: calc(100% - 20px);
  }
  .table-type01 th {
    font-size: 10px;
    font-size: 1rem;
    padding: 15px;
  }
  .table-type01 td {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 15px;
  }
  .table-type01 caption {
    font-size: 10px;
    font-size: 1rem;
  }
  .table-type02 {
    margin: 15px 10px;
    width: calc(100% - 20px);
  }
  .table-type02 th {
    font-size: 10px;
    font-size: 1rem;
    padding: 15px;
  }
  .table-type02 td {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 15px;
  }
  .table-type02 caption {
    font-size: 10px;
    font-size: 1rem;
  }
  .table-type03 {
    margin: 15px 10px;
    width: calc(100% - 20px);
  }
  .table-type03 th {
    font-size: 10px;
    font-size: 1rem;
    padding: 15px;
  }
  .table-type03 td {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 15px;
  }
  .table-type03.type-sp-narrow th, .table-type03.type-sp-narrow td {
    padding: 5px;
  }
  .table-type03 caption {
    font-size: 10px;
    font-size: 1rem;
  }
  .table-inner__item {
    margin-bottom: 10px;
  }
  .table-inner__item:last-child {
    margin-bottom: 0;
  }
  .column-type01.type-sp-fix {
    overflow: hidden;
  }
  .column-type01.type-sp-fix .column-type01__item {
    float: left;
  }
  .column-type01.type-sp-fix.column2 .column-type01__item {
    width: calc(50% - 5px);
  }
  .column-type01.type-sp-fix.column2 .column-type01__item:nth-child(odd) {
    margin-right: 10px;
    clear: left;
  }
  .column-type01.type-sp-fix.column3 .column-type01__item {
    width: calc(33.3333% - 7px);
    margin-right: 10px;
  }
  .column-type01.type-sp-fix.column3 .column-type01__item:nth-child(3n) {
    margin-right: 0;
  }
  .column-type01.type-sp-fix.column3 .column-type01__item:nth-child(3n+1) {
    clear: left;
  }
  .column-type01__body {
    margin: 0 10px;
  }
  .tag--type01 {
    /*line-height: 17px;*/
    padding: 0 10px;
    font-size: 10px;
    font-size: 1.1rem;
    min-width: 62px;
  }
  .tab-type01-list {
    display: none;
  }
  .tab-type01-panel__item {
    border-bottom: 1px solid rgba(115, 115, 115, 0.2);
  }
  .tab-type01-panel__item.type-sp-bd-none {
    border-bottom: 0;
  }
  .tab-type01-panel__item:last-child {
    border-bottom: 0;
  }
  .tab-type01-panel__item .content__inner {
    margin: 0 0 15px;
  }
  .tab-type01-panel__heading {
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 20px 0 15px;
  }
  .tab-type01-panel__heading i {
    font-size: 25px;
    vertical-align: top;
    display: inline-block;
    margin: -6px 5px 0 0;
  }
  .news-list01 {
    margin: 15px 0;
  }
  .top .news-list01 {
    margin: 15px 0 40px 0;
  }
  .top .news-list01__item {
    padding: 0px 30px;
  }
  .top .news-list01__item:after {
    height: 2px;
  }
  .news-list01__item.is-new .news-list01__date:after {
    content: "NEW";
    color: #f00;
    margin: 0 0 0 10px;
    font-weight: bold;
    /*
    background-color: #ed0402;
    border-radius: 20px;
    line-height: 17px;
    width: 62px;
    margin: 0 0 0 5px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    font-size: 10px;
    font-size: 1rem;
    */
  }
  .news-list01__inner {
    padding: 10px;
  }
  .top .news-list01__inner {
    padding: 20px 0px !important;
  }
  .news-list01__inner[href$="pdf"] .news-list01__description > span:after, .news-list01__inner.type-pdf .news-list01__description > span:after {
    margin-top: -2px;
  }
  .news-list01__inner[href$="mp4"] .news-list01__description > span:after, .news-list01__inner.type-movie .news-list01__description > span:after {
    margin-top: -2px;
  }
  .news-list01__inner[href$="xls"] .news-list01__description > span:after, .news-list01__inner[href$="xlsx"] .news-list01__description > span:after, .news-list01__inner[href$="xl"] .news-list01__description > span:after, .news-list01__inner.type-doc .news-list01__description > span:after {
    margin-top: -2px;
  }
  .news-list01__data {
    overflow: hidden;
    position: relative;
    font-size: 0;
    margin: 0 0 5px;
  }
  .news-list01__date {
    font-size: 10px;
    font-size: 1.3rem;
    line-height: 17px;
    margin: 0px 0px 5px 0px;
    float: none;
  }
  .news-list01__description {
    font-size: 11px;
    font-size: 1.3rem;
  }
  .news-list02 {
    margin: 15px 0;
  }
  .news-list02__item.is-new .news-list02__data:after {
    content: "NEW";
    color: #fff;
    background-color: #ed0402;
    border-radius: 20px;
    line-height: 17px;
    width: 62px;
    margin: 0 0 0 5px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    font-size: 10px;
    font-size: 1rem;
  }
  .news-list02__inner {
    padding: 10px;
  }
  a.news-list02__inner {
    cursor: pointer;
    padding-right: 35px;
  }
  a.news-list02__inner:after {
    width: 17px;
    height: 17px;
    background-size: 17px;
    right: 10px;
  }
  a.news-list02__inner .news-list02__description {
    text-decoration: underline;
  }
  .news-list02__data {
    overflow: hidden;
    position: relative;
    font-size: 0;
    margin: 0 0 5px;
  }
  .news-list02__date {
    font-size: 10px;
    font-size: 1rem;
    line-height: 17px;
    margin-right: 10px;
  }
  .news-list02__description {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .news-list03 {
    margin: 15px 0;
  }
  .news-list03__item.is-new .news-list03__data:after {
    content: "NEW";
    color: #fff;
    background-color: #ed0402;
    border-radius: 20px;
    line-height: 17px;
    width: 62px;
    margin: 0 0 0 5px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    font-size: 10px;
    font-size: 1rem;
  }
  .news-list03__inner {
    padding: 10px;
  }
  a.news-list03__inner {
    cursor: pointer;
    padding-right: 35px;
  }
  a.news-list03__inner:after {
    width: 17px;
    height: 17px;
    background-size: 17px;
    right: 10px;
  }
  a.news-list03__inner .news-list03__description {
    text-decoration: underline;
  }
  .news-list03__data {
    overflow: hidden;
    position: relative;
    font-size: 0;
    margin: 0 0 5px;
  }
  .news-list03__date {
    font-size: 10px;
    font-size: 1rem;
    line-height: 17px;
    margin-right: 10px;
  }
  .news-list03__description {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .banner-list01 {
    margin: 15px 10px;
  }
  .banner-list01__item {
    margin: 12px 0 0;
  }
  .banner-list01__item:first-child {
    margin-top: 0;
  }
  .banner-list02__item {
    margin: 15px 0 0;
  }
  .banner-list02__item:first-child {
    margin-top: 0;
  }
  .banner-list02__item img{
    width:100%;
  }
  .banner-list03 {
    margin: 13px 0 13px;
  }
  .banner-list03__head {
    overflow: hidden;
    margin: 13px 0 13px;
  }
  .banner-list03__heading {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
  }
  .banner-list03__heading > span {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 10px;
  }
  .banner-list04 {
    margin: 15px 10px;
  }
  .banner-list04__item {
    width: calc(50% - 4px);
    margin: 8px 8px 0 0;
    float: left;
  }
  .banner-list04__item:nth-child(-n+2) {
    margin-top: 0;
  }
  .banner-list04__item:nth-child(even) {
    margin-right: 0;
  }
  .banner-list04__item:nth-child(odd) {
    clear: left;
  }
  .banner-list05{
    font-size: 1.3rem;
  }
  .list-type01 {
    margin: 15px 0;
  }
  .list-type01__list {
    margin-left: 10px;
    margin-right: 10px;
  }
  .list-type01__item {
    font-size: 10px;
    font-size: 1rem;
    padding-left: 11px;
  }
  .list-type01__item:before {
    width: 3px;
    height: 3px;
    top: 6px;
    left: 0;
  }
  .list-type02 {
    margin: 15px 0;
  }
  .list-type02__list {
    margin-left: 5px;
    margin-right: 10px;
  }
  .list-type02__item {
    font-size: 10px;
    font-size: 1rem;
  }
  .list-type03 {
    margin: 15px 0;
  }
  .list-type03__list {
    margin-left: 10px;
    margin-right: 10px;
  }
  .list-type03__item {
    font-size: 10px;
    font-size: 1rem;
    padding-left: 15px;
  }
  .list-type03__item:before {
    width: 6px;
    height: 2px;
    top: 7px;
    left: 0;
  }
  .link-list01 {
    margin: 15px 0;
  }
  .link-list01.type-sp-large .link-list01__inner {
    padding: 16px 30px 16px 20px;
  }
  .link-list01.type-anchor {
    margin-right: 10px;
    margin-left: 10px;
  }
  .link-list01.type-anchor .link-list01__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
/*
  .link-list01.type-anchor .link-list01__list:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
*/
  .link-list01.type-anchor .link-list01__item {
    font-size: 10px;
    font-size: 1rem;
    width: 33.33333%;
    border-bottom: 0;
    display: -webkit-box;
    display: flex;
    align-self: stretch;
  }
  .link-list01.type-anchor .link-list01__item:nth-child(3n+1) {
    clear: left;
  }
/*
  .link-list01.type-anchor .link-list01__item:nth-child(3n) a.link-list01__inner:after {
    right: 0;
  }
*/
  .link-list01.type-anchor .link-list01__inner {
    padding: 10px 20% 10px 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .link-list01.type-anchor .link-list01__inner > span {
    width: 100%;
  }
  .link-list01__item {
    font-size: 12px;
    font-size: 1.2rem;
    border-bottom: 1px solid #e3e3e3;
  }
  .link-list01__inner {
    display: flex;
    padding: 13px 30px 13px 10px;
    align-items: center;
    min-height: 7mm;
  }
  a.link-list01__inner:after {
    width: 17px;
    height: 17px;
    background-size: 17px;
    right: 10px;
  }
  a.link-list01__inner[href$="zip"] > span:after, a.link-list01__inner.type-zip > span:after {
    margin-top: -2px;
  }
  a.link-list01__inner[href$="pdf"] > span:after, a.link-list01__inner.type-pdf > span:after {
    margin-top: -2px;
  }
  a.link-list01__inner[href$="xls"] > span:after, a.link-list01__inner[href$="xlsx"] > span:after, a.link-list01__inner[href$="xlsm"] > span:after, a.link-list01__inner.type-doc > span:after {
    margin-top: -2px;
  }
  .link-list02__item {
    font-size: 12px;
    font-size: 1.2rem;
    margin: 5px 0 0;
  }
  .link-list02__item:first-child {
    margin-top: 0;
  }
  .link-list02__item a {
    padding: 7px 35px 7px 20px;
  }
  .link-list02__item a:after {
    font-size: 10px;
    font-size: 1rem;
    right: 15px;
  }
  .link-list02__item a[href^="http"]:after, .link-list02__item a.type-outside:after {
    right: 15px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .link-list03 {
    margin: 20px 0;
  }
  .link-list03.type-sp-bd-b {
    border-bottom: 1px solid #e3e3e3;
  }
  .link-list03__heading {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .link-list03__heading a {
    padding: 10px 10px 10px 10px;
    min-height: 7mm;
  }
  .link-list03__heading a:before {
    content: "";
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    width: 16px;
    height: 16px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .link-list03__heading a:after {
    right: 19px;
    font-size: 10px;
  }
  .link-list03__item {
    font-size: 12px;
    font-size: 1.2rem;
    min-height: 7mm;
  }
  .link-list03__item a {
    padding: 9px 20px 9px 10px;
    min-height: 7mm;
  }
  .link-list03__item a:after {
    right: 10px;
    font-size: 10px;
  }
  .link-list04 {
    margin: 0 0 15px;
  }
  .link-list04__text {
    font-size: 10px;
    font-size: 1rem;
    margin: 10px 0 0;
  }
  .link-list04__text:after {
    font-size: 10px;
  }
  .link-list05 {
    margin: 20px 0;
  }
  .link-list05.type-sp-bd-b {
    border-bottom: 1px solid #e3e3e3;
  }
  .link-list05__item {
    font-size: 10px;
    font-size: 1rem;
  }
  .link-list05__item a {
    padding: 9px 20px 9px 10px;
  }
  .link-list05__item a:after {
    width: 17px;
    height: 17px;
    background-size: 17px;
    right: 15px;
  }
  .link-list06 {
    margin: 20px 0;
  }
  .link-list06.type-sp-bd-b {
    border-bottom: 1px solid #e3e3e3;
  }
  .link-list06__item {
    font-size: 10px;
    font-size: 1rem;
  }
  .link-list06__item a {
    padding: 17px 20px 17px 10px;
  }
  .link-list06__item a > span:after {
    margin-top: -2px;
  }
  .link-list06__item.is-new a:after {
    line-height: 17px;
    width: 30px;
    font-size: 10px;
    font-size: 1rem;
  }
  .link-list07 {
    margin: 20px 0;
  }
  .link-list07.type-sp-bd-b {
    border-bottom: 1px solid #e3e3e3;
  }
  .link-list07__item {
    font-size: 11px;
    font-size: 1.1rem;
    border-bottom: 1px solid #e3e3e3;
  }
  .link-list07__item:first-child {
    border-top: 1px solid #e3e3e3;
  }
  .link-list07__item a {
    display: block;
    padding: 13px 20px 13px 10px;
  }
  .link-list07__item a:after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background-size: 17px;
    right: 15px;
  }
  .frame-type01__body {
    padding: 10px;
  }
  .frame-type02 {
    margin: 15px 0;
  }
  .frame-type02__body {
    padding: 10px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .frame-type03 {
    margin: 15px 0;
  }
  .frame-type03__body {
    padding: 10px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .media-block01 {
    margin: 15px 0;
  }
  .media-block02 {
    margin: 15px 10px;
  }
  .media-block02.type-right .media-block02__media {
    margin-left: 15px;
    max-width: 50%;
  }
  .media-block02.type-left .media-block02__media {
    margin-right: 15px;
    max-width: 50%;
  }
  .media-block02.type-center .media-block02__media {
    margin: 0 0 10px;
    max-width: 50%;
  }
  .media-block02__text {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .media-block02__heading {
    margin: 0 0 15px;
    padding-bottom: 10px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .selectbox-type01 {
    min-width: 130px;
  }
  .selectbox-type01:before {
    right: 20px;
  }
  .selectbox-type01:after {
    border: 3px solid transparent;
    border-top: 3px solid #333;
    right: 7px;
    margin-top: -3px;
  }
  .selectbox-type01__text {
    line-height: 25px;
    font-size: 10px;
    font-size: 1rem;
    padding: 0 45px 0 10px;
  }
  .control-link {
    margin: 20px 0;
  }
  .control-link__item {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
  }
  .control-link__item.type-back:before {
    font-size: 11px;
    margin-right: 10px;
  }
}

@media print, screen and (min-width: 67.5625em) {
  /* ---------------------------
 * MaxWidth
 * --------------------------- */
}

/* 171214 add */
.map_list {
  padding: 15px;
  border: 1px #ccc solid;
}
.map_list li {
  margin: 4px 10px;
  display: inline-block;
}
.map_list li:after {
  content:" ↓";
}
.map_list li a:link {
  text-decoration: none;
}
.map_list li a:hover {
  opacity: 0.6;
  translation: 0.3s;
}
.chiku h3 {
  background-color: #dedede;
  padding: 10px;
}

@media screen and (max-width: 37.4375em) {
  .map_list {
    margin:0 10px;
  }
  .map_list li {
    margin: 4px 2px;
  }
  .chiku h3 {
    margin:10px;
  }
  .newsbutton .button-type01 {
    font-size: 12px;
    width: 94%;
    margin: 10px;
  }
}

/*Top改修追記*/
/*追記*/
/*JBCCホールディングスについて*/
.content-hd__wrap {
    /*background: #e7e9ea;*/
    position: relative;
}
.content-hd__wrap:before,
.content-hd__wrap:after {
    content: "";
    display: block;
    width: 600px;
    height: 450px;
    z-index: -1;
    position: absolute;
}
.content-hd__wrap:before {
    top: 0px;
    left: 0px;
    background: url(../img/bg_about_01_01.png) no-repeat 0px 0px;
}
.content-hd__wrap:after {
    bottom: 0px;
    right: 0px;
    background: url(../img/bg_about_01_02.png) no-repeat 100% bottom;
}
.content-hd__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 10px;
}
.content-hd__heading {
    text-align: center;
    margin: 105px 0 70px 0px;
}
.content-hd__title {
    font-size: 1.9em;
    margin: 1em 0px 0.1em 0px
}
.content-hd__subtitle {
    font-size: 1.1em;
    margin: 0px 0px;
}
.content-hd__link-list__group {
    padding: 0;
    overflow: hidden;
    margin-right: -30px;
}

.content-hd__link-list__item {
    float: left;
    width: calc((100%/3) - 30px);
    margin: 0px 30px 30px 0;
}
.content-hd__link-list__item figure {
    line-height: 0;
    margin: 0 0 6px;
}
.content-hd__link-list__item figure img{
    width: 100%;
    height: auto;
}
.content-hd__link-list__item p {
    /*padding: 8px 34px 10px 0;*/
    padding: 8px 0px 10px 0;
    font-size: 1.17em;
    display: inline-block;
    font-weight: bold;
    margin: 5px 0px 0px 0px;
    /*
    background: url(../../common/img/icon_arrow02.svg) right 2px top 10px no-repeat;
    background-size: 20px 20px;
    */
}
.content-hd__link-list__item p:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background: #e0e0e0 url(../../common/img/icon_arrow01.svg) no-repeat 50% 50% / 20px 20px;
    vertical-align: middle;
    margin: -0.15em 0px 0px 0.6em;
}

  .content-hd__link-list__item a:hover {
    opacity: .6;
    text-decoration:underline;
  }
.content-hd__link-list__item a.overwhite{
    display:block;
}

.content-hd__link-list__item a:hover img{
    cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;              /* Safari 1.x */
    opacity: .6;
    zoom:1;
}
.content-hd__more {
    display: none;
    text-align: center;
    font-size: 1.2em;
}
.content-hd__more a {
    display: block;
    padding: 1em 2em;
    border: 1px solid #4b7ebf;
    background: #FFF;
    text-decoration: none;
    border-radius: 100px;
    margin: 0px 60px 30px 60px;
}
.content-hd__more a:after {
    content: "\e900";
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: baseline;
    margin-left: 1em;
}
@media screen and (max-width: 37.4375em) {
    /* ---------------------------
    * SmartPhone
    * --------------------------- */
    .content-hd__wrap:before,
    .content-hd__wrap:after {
        width: 200px;
        height: 450px;
        background-size: 100% auto !important;
    }
    .content-hd__more {
        display: block;
    }
}

/* --ここまでJBCCホールディングスについて*/
/*JBグループ各社トピックス*/
/*.content-grouptopics{
    border-top: 1px solid #e3e3e3;
}*/
.content-grouptopics{
    background: #4e88be; /* Old browsers */
    background: -moz-linear-gradient(left,  #4e88be 0%, #5cb0b9 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #4e88be 0%,#5cb0b9 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #4e88be 0%,#5cb0b9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e88be', endColorstr='#5cb0b9',GradientType=1 ); /* IE6-9 */
}
.content-grouptopics__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 10px;
}

.content-grouptopics-list03__titlehed{
    text-align: center;
    /*margin: 40px 0;*/
    margin: 105px 0 70px 0px;
    color: #FFF;
}

h2.content-group--list03__title {
    /*border-bottom: solid #e7e9ea;*/
    /*
    width: 34%;
    margin: 0 auto;
    padding-bottom: 10px;
    */
    font-size: 1.9em;
    margin: 1em 0px 0.1em 0px
}

.content-grouptopics-list03__titlehed p {
    /*
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    */
    font-size: 1.1em;
    margin: 0px 0px;
}
.grouptopics-list03__listgroup{
    padding: 0;
    overflow: hidden;
    margin-right: -30px;
    margin-bottom: 55px;
}
.grouptopics-list03__list {
    float: left;
    width: calc((100%/3) - 92px);
    margin: 0px 30px 50px 0;
    padding: 20px 30px;
    /*border: solid 1px #e7e9ea;*/
    border: solid 1px #FFF;
    background: #FFF;
    border-radius: 8px;
}
.grouptopics-list03__body .grouptopics-list03__body_date {
    margin-top: 10px;
    font-size: 1.5rem;
    height: 80px;
}
a.gt__button {
  display: inline-block;
  padding: 10px 20px;
  /*background: #bb031d;*/
  background: #4b7ebf;
  /*border-radius: 8px;*/
  border-radius: 100px;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  line-heigt: 1.2em;
  -webkit-transition: .100s;
  transition: .100s;
  margin: 0 auto;
  width: 86%;
  text-align: center;
}
a.gt__button:hover {
    opacity: .6;
    text-decoration:none;
}
a.gt__button span{
    background: url(../../common/img/new_window.svg) right -14px top 4px no-repeat;
    background-size: 52px 33px;
    padding: 11px;
    overflow: hidden;
    display: inline;
    padding-right: 28px;
    }
.content-hd__link-list__more {
  display: none;
}
/*JBグループ各社トピックス*/
/*button 追記*/
.button-type04 {
  color: #000;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
}
.button-type04:after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.button-type04[href^="http"]:after, .button-type04.type-outside:after {
  content: "\e90b";
}
.button-type04.type-map:after {
  display: none;
}
.button-type04.type-map:before {
  content: "\e905";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*イベント・セミナー追記*/
.tab-type01-panel__item.type-sp-bd-none.sp-hide.group-seminar-event.is-active .news-list01__item.is-new .news-list01__description:after {
    content: none;
}
/*イベント・セミナー追記*/

@media screen and (max-width: 37.4375em) {
.content-hd__heading {
    margin: 60px 0 40px 0px;
}
.content-hd__link-list__group {
    margin-right: 0px;
}
.content-hd__link-list__item {
    float: none;
    width: 92%;
    width: auto;
    margin: 0px 0px 20px 0px;
}
.content-hd__link-list__item p{
    font-size: 1.3rem;
}
.content-hd__link-list__item-hide_sp {
    display: none;
}
.content-hd__link-list__more {
    display: block;
}
.button-type04 {
    display: block;
    border: 1px solid #ffffff;
    line-height: 30px;
    font-size: 12px;
    font-size: 1.2rem;
    border: 1px solid;
  }
  .button-type04:after {
    right: 5px;
    font-size: 12px;
  }
  .button-type04.type-map {
    padding: 0 20px 0 20px;
  }
  .button-type04.type-map:before {
    left: 50%;
    margin-left: -40px;
    font-size: 20px;
  }
h2.content-group--list03__title {
    /*width: 70%;*/
}
.content-grouptopics-list03__titlehed {
    margin: 40px 0 30px 0px;
}
.grouptopics-list03__listgroup {
    margin-right: 0px;
}
.grouptopics-list03__list {
    float: none;
    width: 76%;
    width: auto;
    margin: 0px 0px 30px 0px;
}
.grouptopics-list03__head_img img {
    width: 100%;
    height: auto;
}
a.gt__button {
    width: 88%;
}
}

/* フッターパンくず追記 2021-03 */
.content-footer .breadcrumb {
  float: none;
  padding: 10px 0px;
}
@media screen and (max-width: 37.4375em) { /* Smartphone */
  .content-footer .breadcrumb {
    display: none;
  }
}

/* 個人投資家のみなさまへ 2021-03 */

.heading-block01.type-2 {
	background-color: #e6e6e6;
	color: #000;
	border-left: 10px solid #bb031d;
	margin-bottom: 30px;
}
.block-type10 {
	padding: 0px;
	margin: 0px 0px 20px 0px;
}
.block-type11 {
	background-color: #f7f7f7;
	padding: 20px 20px 0px 20px;
	margin: 0px 0px 20px 0px;
}
.block-type11 {
	background-color: #f7f7f7;
	padding: 20px 20px 0px 20px;
	margin: 0px 0px 20px 0px;
}
.heading-block10 {
	margin: 20px 0;
	padding: 0px;
}
.heading-block10__title {
	font-size: 1.6rem;
	padding: 0px;
	margin: 0px;
}
.heading-block10__title span {
	padding: 0px;
}
.image-block10 {
	margin: 0px 0px 20px 0px;
}
.image-block10 > a {
	display: block;
	text-decoration: none;
}
.image-block10 .image-block10__img {
	margin: 0px 0px 10px 0px;
}
.image-block10 .image-block10__img img {
	width: 100%;
	height: auto;
}
.image-block10 .image-block10__txt {
	margin: 0px 0px 10px 0px;
	position: relative;
}
.image-block10 a .image-block10__txt {
	padding-right: 24px;
}
.image-block10 a .image-block10__txt:before {
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	background: #FFF;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.image-block10 a .image-block10__txt:after {
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e900";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.image-block10 a .image-block10__txt:after {
	right: 7px;
	font-size: 10px;
	line-height: 21px;
}
.image-block10 a[href$="pdf"] .image-block10__txt span:after {
	content: "";
	background-image: url(../../common/img/icon_pdf.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 18px;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: top;
	margin-top: 2px;
	margin-left: 10px;
}
.image-block10 a[href^="http"] .image-block10__txt span:after,
.image-block10 a[target="_blank"]:not([href$="pdf"]) .image-block10__txt span:after {
	content: "\e90b";
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* margin-right: 5px; */
	margin-left: 10px;
}
.linkbtn10 {
	display: block;
	text-decoration: none;
	margin: 0px 0px 15px 0px;
}
.linkbtn10 img {
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 37.4375em) { /* Smartphone */
	.heading-block10 {
		margin: 10px 0;
	}
	.heading-block10__title {
		font-size: 1.2rem;
	}
	.image-block10 a .image-block10__txt:before {
		width: 16px;
		height: 16px;
	}
	.image-block10 a .image-block10__txt:after {
		right: 4px;
		font-size: 10px;
		line-height: 16px;
	}
	.block-type11 {
		padding: 10px;
		margin: 0px 0px 10px 0px;
	}
	.block-type10 {
		padding: 0px 10px;
	}
	.linkbtn10 {
		margin: 0px 0px 10px 0px;
	}
}
@media screen and (max-width: 37.4375em) { /* Smartphone */
	.column-type01.column2_sp {
		overflow: hidden;
	}
	.column-type01.column2_sp .column-type01__item {
		float: left;
	}
	.column-type01.column2_sp .column-type01__item:nth-child(2n+1) {
		margin-right: 10px;
		clear: left;
	}
	.column-type01.column2_sp .column-type01__item {
		width: calc(50% - 5px);
	}
}

/* == 2021-03 == */
.global-nav__item > a:after {
	/*transition: transform 0.2s;*/
	/*transform: rotate(90deg);*/
}
.global-nav__item.is-active > a:after,
.global-nav__item:hover > a:after {
	/*opacity: 1;*/
}
.global-nav__item.has-sub-nav.is-active > a:after,
.global-nav__item.has-sub-nav:hover > a:after {
	/*transform: rotate(90deg);*/
	background-image: url(../../common/img/icon_arrow03.svg);
	opacity: 1;
}

.global-nav__item.has-sub-nav.is-active > a:after,
.global-nav__item.has-sub-nav.is-active:hover > a:after {
	transform: rotate(-90deg);
}


.sub-nav-close-wrap {
	max-width: 1080px;
	margin: 0px auto;
	position: relative;
}
.sub-nav-close {
	position: absolute;
	right: 0px;
	top: 25px;
	display: block;
	border: none;
	width: 20px;
	height: 20px;
	appearance: none;
	padding: 0px;
	background: none;
	transform: rotate(45deg);
}
.sub-nav-close:before,
.sub-nav-close:after {
	content: "";
	display: block;
	background: #FFF;
	position: absolute;
}
.sub-nav-close:before {
	height: 2px;
	left: 0px;
	right: 0px;
	top: 9px;
}
.sub-nav-close:after {
	width: 2px;
	top: 0px;
	bottom: 0px;
	left: 9px;
}

.news-list01 .eir_area_area_top_003 .s_eirList_item::after{
  border-bottom: 1px solid rgba(115, 115, 115, 0.2);
  background: none;
}



@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.c-banner-area {
  padding: 16.4102564103vw 0;
  margin: 12.8205128205vw calc(50% - 50vw) 0;
  width: 100vw;
}
.c-banner-area__inner {
  display: flex;
  gap: 5.1282051282vw;
  padding: 0 5.1282051282vw;
}

.c-bg--gray {
  background-color: #e6e7e6;
}

.c-border-box {
  width: 100%;
  border-bottom: 1px solid #000;
  display: block;
  text-decoration: none;
  position: relative;
  font-size: 4.6153846154vw;
  padding: 0 7px 2.5641025641vw 2.5641025641vw;
  font-weight: 500;
  box-sizing: border-box;
}
.c-border-box--arrow span {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  padding: 0 5.1282051282vw 0 0;
  width: 100%;
}
.c-border-box--arrow span::after {
  content: "";
  width: 2.5641025641vw;
  height: 2.5641025641vw;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  display: inline-block;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 3px;
  position: absolute;
  right: 7px;
  top: 50%;
}
.c-border-box--window span {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  padding: 0 5.1282051282vw 0 0;
  width: 100%;
}
.c-border-box--window span::after {
  content: "\e90b";
  font-family: "icomoon" !important;
  line-height: 1;
  width: 2.5641025641vw;
  height: 2.5641025641vw;
  position: absolute;
  right: 7px;
}

.content-its__link-list__item a:hover {
  text-decoration: none;
}

.content-its__link-list__item a:hover .description__txt {
  text-decoration: underline;
}

.c-button-wrapper {
  display: flex;
  flex-direction: column;
}
.c-button-wrapper--2column {
  gap: 5.1282051282vw;
  max-width: 85.8974358974vw;
}

.c-button {
  color: #000000;
  background-color: #ffffff;
  font-size: 3.5897435897vw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 0.2564102564vw solid #000000;
  padding: 3.8461538462vw 0 3.8461538462vw 0.5128205128vw;
  width: 85.8974358974vw;
  display: block;
  position: relative;
  box-sizing: border-box;
  transition: opacity 0.4s;
}
.c-button:hover {
  opacity: 0.6;
}
.c-button::after {
  content: "";
  border-right: 0.2564102564vw solid #000000;
  border-top: 0.2564102564vw solid #000000;
  display: inline-block;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  vertical-align: middle;
  margin-left: 2.5641025641vw;
  margin-bottom: 0.7692307692vw;
  position: absolute;
  right: 0.7692307692vw;
  top: 50%;
  width: 2.0512820513vw;
  height: 2.0512820513vw;
}

.content-its__link-list a {
  display: block;
  margin-bottom: 30px;
  text-decoration: none;
  transition: opacity 0.4s;
}
.content-its__link-list a:hover {
  opacity: 0.6;
}
.content-its__link-list a:hover .description__txt {
  text-decoration: underline;
}
.content-its__link-list .description__txt {
  font-size: 3.5897435897vw !important;
}

.c-footer {
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 10.2564102564vw 0 7.6923076923vw;
}
.c-footer__inner {
  margin: 0 auto;
  padding: 0 5.1282051282vw;
}
.c-footer__top {
  padding: 0 0 8.2051282051vw 1.5384615385vw;
  display: flex;
  gap: 5.1282051282vw;
  flex-direction: column;
  border-bottom: solid 1px #ccc;
  flex-wrap: nowrap;
}
.c-footer__name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.4358974359vw;
}
.c-footer__logo {
  width: 16.1538461538vw;
}
.c-footer__subtext {
  font-size: 3.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  color: #000000;
}
.c-footer__sns {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5.1282051282vw;
  flex-shrink: 0;
  align-items: center;
}
.c-footer__icon-link {
  display: block;
  transition: opacity 0.4s;
}
.c-footer__icon-link:hover {
  opacity: 0.6;
}
.c-footer__icon-img {
  width: 5.1282051282vw;
  vertical-align: middle;
}
.c-footer__bottom {
  padding: 10.2564102564vw 0 0;
}
.c-footer__nav {
  display: flex;
  flex-direction: column;
}
.c-footer__list {
  margin: 0;
  padding: 0;
  font-size: 3.0769230769vw;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333333;
}
.c-footer__list--02 {
  margin: 2.0512820513vw 0 0;
}
.c-footer__item {
  white-space: nowrap;
}
.c-footer__item:nth-of-type(n+2) {
  margin: 2.0512820513vw 0 0;
}
.c-footer__link {
  text-decoration: none;
}
.c-footer__link:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #000000;
          text-decoration-color: #000000;
}
.c-footer__copyright {
  margin: 0;
  padding: 8.2051282051vw 0 0;
  color: #666666;
  font-size: 3.0769230769vw;
  line-height: 1.5;
  font-weight: 400;
}

.c-header {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  z-index: 100;
}
.c-header + * {
  padding-top: 15.3846153846vw;
}
.c-header .c-icon {
  display: inline-flex;
  align-items: center;
}
.c-header .c-icon .c-icon__img {
  display: block;
}
.c-header__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 2.5641025641vw 5.1282051282vw;
  background: white;
}
.c-header__logo {
  margin-top: 0;
  margin-bottom: 0;
}
.c-header__logo__img {
  width: 16.1538461538vw;
}
.c-header__logo__link {
  display: flex;
  align-items: center;
  gap: 1.4358974359vw;
  text-decoration: none;
}
.c-header__logo__subtext {
  font-size: 3.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  color: #000000;
}
.c-header-navi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  margin-left: auto;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition-delay: 0.1s;
}
.c-header-navi, .c-header-navi a {
  color: #fff;
}
.c-header-navi__item span.c-icon__img {
  display: block;
  width: 3.0769230769vw;
  height: 3.0769230769vw;
  background: url("/common/img/icon_plus.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.c-header-navi__item span.c-icon__img.c-icon__noacoordion {
  width: 3.0769230769vw;
  height: 3.0769230769vw;
  background: url("/common/img/icon_next_white.svg") !important;
  background-size: auto 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.c-header-navi__item .c-header-navi__accordion {
  display: none;
}
.c-header-navi__item .c-header-navi__accordion .c-header-navi__inner__link:first-child .c-header-navi__inner__link__item {
  font-weight: bold;
}
.c-header-navi__link {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.c-header-navi__link .c-icon {
  margin-left: auto;
  pointer-events: none;
}
.c-header-navi__link.c-disp_pc {
  display: none;
}
.c-header-navi__link.c-disp_sp {
  display: flex;
}
.c-header-navi__humberger-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: fixed;
  top: 3.5897435897vw;
  right: 4.8717948718vw;
  width: 6.1538461538vw;
  height: 4.1025641026vw;
  z-index: 999;
}
.c-header-navi__humberger-button::after {
  content: "MENU";
  display: inline-block;
  font-weight: 800;
  color: #000;
}
.c-header-navi__humberger-button__bars {
  position: relative;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition-delay: 0.1s;
}
.c-header-navi__humberger-button__bars > span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.2s ease-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.c-header-navi__humberger-button__bars > span:nth-of-type(1) {
  top: 0;
}
.c-header-navi__humberger-button__bars > span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.c-header-navi__humberger-button__bars > span:nth-of-type(3) {
  bottom: 0;
}
.c-header-navi input#navi__humberger {
  display: none;
}
.c-header-navi input#navi__humberger:checked ~ label[for=navi__humberger].c-header-navi__humberger-button::before {
  content: "";
  position: absolute;
  top: -3.8461538462vw;
  background: #E60033;
  width: 100%;
  height: 100%;
  padding: 7.8vw;
  z-index: 0;
}
.c-header-navi input#navi__humberger:checked ~ label[for=navi__humberger].c-header-navi__humberger-button::after {
  content: "CLOSE";
  position: relative;
  z-index: 10;
  color: #fff;
}
.c-header-navi input#navi__humberger:checked ~ label[for=navi__humberger] .c-header-navi__humberger-button__bars > span {
  background-color: #fff;
}
.c-header-navi input#navi__humberger:checked ~ label[for=navi__humberger] .c-header-navi__humberger-button__bars > span:nth-of-type(1) {
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-header-navi input#navi__humberger:checked ~ label[for=navi__humberger] .c-header-navi__humberger-button__bars > span:nth-of-type(2) {
  opacity: 0;
}
.c-header-navi input#navi__humberger:checked ~ label[for=navi__humberger] .c-header-navi__humberger-button__bars > span:nth-of-type(3) {
  bottom: calc(50% - 1px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-header-navi input#navi__humberger:checked ~ .c-header-navi__list {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
}
.c-header-navi input#navi__humberger:checked ~ .c-header-navi__list .c-header-contact {
  display: flex;
}
.c-header-navi__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  padding-top: 15.3846153846vw;
  padding-left: 5.1282051282vw;
  padding-right: 5.1282051282vw;
  box-sizing: border-box;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  font-size: 3.8461538462vw;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  background: #E60033;
}
.c-header-navi__list .c-header-navi__item .c-header-navi__link {
  padding: 3.8461538462vw 0;
}
.c-header-navi__list .c-header-navi__accordion__photo {
  display: none;
}
.c-header-navi__humberger--open {
  overflow: hidden;
}
.c-header-contact {
  display: none;
  flex-wrap: wrap;
  gap: 5.1282051282vw;
  margin-top: 5.1282051282vw;
  font-weight: 200;
  font-size: 3.0769230769vw;
  padding-bottom: 10.2564102564vw;
}
.c-header-contact__lang {
  display: flex;
  gap: 2.0512820513vw;
  font-weight: 200;
  width: 100%;
}
.c-header-contact__lang__divider {
  display: block;
  width: 0.2564102564vw;
  height: auto;
  border-right: 0.2564102564vw solid #fff;
}
.c-header-contact__search__form {
  background-color: #ffffff;
  display: block;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2.0512820513vw 0;
}
.c-header-contact__search__form:focus {
  outline: 0;
}
.c-header-contact__search__input {
  font-weight: 400;
  border: 0;
  width: 100%;
  font-size: 4.1025641026vw;
  padding: 0 0 0 3.8461538462vw;
  color: #333;
}
.c-header-contact__search__input:focus {
  outline: 0;
}
.c-header-contact__search__button {
  cursor: pointer;
  background: url("/common/img/icon_search.svg");
  background-size: 3.8461538462vw;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  outline: none;
  right: 0;
  top: 0;
  position: absolute;
  font-size: 0;
  width: 10.2564102564vw;
  height: 10.2564102564vw;
}
.c-header a {
  text-decoration: none;
}

html[lang=ja] .c-header-contact__lang--jp {
  text-decoration: underline;
  text-underline-offset: 0.5em;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
}

html[lang=en] .c-header-contact__lang--en {
  text-decoration: underline;
  text-underline-offset: 0.5em;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
}
.c-header-navi__inner__link__item::after {
  background-image: url("/common/img/icon_next.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 6px;
  height: 10px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-header-navi__inner__link__item[target=_blank]::after {
  background-image: url("/common/img/icon_window.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 14px;
  height: 14px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000000;
  margin: 0;
  box-sizing: border-box;
}
.c-heading--list-page, .c-heading--article-page {
  position: relative;
  font-weight: normal;
  font-size: 7.6923076923vw;
  line-height: 1;
  padding-bottom: 5.1282051282vw;
}
.c-heading--list-page {
  border-bottom: 4px solid #efefef;
}
.c-heading--list-page::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  width: 37.037037037%;
  height: 100%;
  bottom: -4px;
  border-bottom: 4px solid #E60033;
}
.c-heading--article-page {
  border-bottom: 4px solid #efefef;
}
.c-heading--article-page::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  width: 37.037037037%;
  height: 100%;
  bottom: -4px;
  border-bottom: 4px solid #E60033;
}

.c-heading-wrapper,
.content-heading {
  margin: 0 10px;
}

.c-index-heading {
  margin: 0;
  color: #000000;
  font-size: 9.2307692308vw;
  font-weight: 500;
  line-height: 1;
}
.c-index-heading__subtext {
  display: block;
  margin: 2.5641025641vw 0 0;
  font-size: 3.5897435897vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #333333;
}

.c-new-document__title {
  font-size: 4.6153846154vw;
}
.c-new-document .c-ir-top-heading {
  margin: 0;
}
.c-new-document__contents {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1.2820512821vw 0;
  margin-top: 2.5641025641vw;
}
.c-new-document__inner {
  box-sizing: border-box;
  font-size: 3.5897435897vw;
  padding: 3.8461538462vw 2.5641025641vw;
  height: 100%;
}
.c-new-document__list {
  margin: 0;
  padding: 0;
  position: relative;
}
.c-new-document__item {
  margin-top: 5.1282051282vw;
  padding-left: 7.6923076923vw;
  position: relative;
}
.c-new-document__item:first-child {
  margin-top: 0;
}
.c-new-document__item a::before {
  content: "";
  width: 23px;
  height: 23px;
  background-image: url(/assets/img/icon_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-new-document__item a[href$=".pdf"]::before {
  background-image: url(/assets/img/icon_pdf.svg);
  width: 23px;
  height: 30px;
}
.c-new-document__item a[href$=".xlsx"]::before,
.c-new-document__item a[href$=".xls"]::before {
  background-image: url(/assets/img/icon_excel.svg);
  width: 23px;
  height: 30px;
}

.content {
  margin-top: 0;
}

.content-its__link-list a {
  display: block;
}
.content-its__link-list a figure {
  margin: 0 0 2.5641025641vw;
}
.content-its__link-list a figure img {
  width: 100%;
}

.heading-block02 {
  background-color: #ffffff;
  display: block;
  position: relative;
}

.heading-block02__title {
  font-size: 5.1282051282vw;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid #000000;
  padding: 2.0512820513vw 0 2.0512820513vw 4.1025641026vw;
  position: relative;
  display: block;
  margin: 10.2564102564vw 0 0;
}
.heading-block02__title::before {
  display: block;
  width: 1.0256410256vw;
  height: 5.641025641vw;
  content: "";
  background: #E60033;
  position: absolute;
  left: 0;
  top: 3.0769230769vw;
}
.heading-block02__title span {
  padding: 0;
}

.heading-block05 {
  background-color: #ffffff;
  display: block;
  position: relative;
}

.heading-block05__title {
  font-size: 4.6153846154vw;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 0 0 5.1282051282vw;
  position: relative;
  display: block;
  margin: 10.2564102564vw 0 0;
}
.heading-block05__title::before {
  display: block;
  width: 3.0769230769vw;
  height: 3.0769230769vw;
  content: "";
  background: #E60033;
  position: absolute;
  left: 0;
  top: 2.0512820513vw;
}
.heading-block05__title span {
  padding: 0;
}

.type-line-wide {
  line-height: 2;
  font-size: 3.5897435897vw;
  font-weight: 400;
}

.link-list07__item {
  font-weight: 400;
  line-height: 2;
  font-size: 3.5897435897vw;
  position: relative;
  border: none;
  margin-top: 2.3076923077vw;
}
.link-list07__item:first-child {
  border-top: none;
  margin-top: 0 !important;
}
.link-list07__item a {
  position: relative;
  padding: 0;
}
.link-list07__item a::after {
  display: inline-block;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  margin-top: 0;
  margin-left: 0;
  background-size: auto;
  background: none;
  width: 2.0512820513vw;
  height: 2.0512820513vw;
}

.link-list07__item a[href^=http]:after,
.link-list07__item a.type-outside:after {
  border-top: none;
  border-right: none;
  top: 0;
  -webkit-transform: rotate(0) translateY(0);
          transform: rotate(0) translateY(0);
  right: 0;
}

.article-body {
  padding: 0;
  margin: 0;
}

.article-body > .heading-block02:first-child .heading-block02__title {
  margin: 0;
}

.content-main {
  padding: 80px 0 0;
  box-sizing: border-box;
}

.link-list01 {
  margin: 0;
}

.link-list01.type-anchor {
  margin-right: 0;
  margin-left: 0;
}

.link-list01.type-anchor .link-list01__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  position: static;
  line-height: 1.5;
  gap: 5.1282051282vw;
}
.link-list01.type-anchor .link-list01__item {
  width: 100%;
  font-weight: 700;
  display: block;
  position: relative;
  font-size: 3.5897435897vw;
  border-bottom: none;
}

.link-list01.type-anchor a.link-list01__inner {
  border-bottom: 1px solid #CCCCCC;
  padding: 2.0512820513vw 5.1282051282vw 2.0512820513vw 0;
  height: 100%;
}
.link-list01.type-anchor a.link-list01__inner::after {
  content: "";
  background: none;
  position: absolute;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  width: 2.0512820513vw;
  height: 2.0512820513vw;
  top: 33%;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
}

.tag--type01.type-news--94,
.tag--type01 {
  border: 1px solid #000000;
  background-color: #ffffff !important;
  border-radius: 0;
  line-height: 1.8;
  color: #000000;
}
.pagetop {
  position: fixed;
  bottom: 5.1282051282vw;
  right: 5.1282051282vw;
  z-index: 20;
}
.pagetop a {
  background-image: url(../../common/img/pagetop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-top-heading {
  position: relative;
  font-size: 7.1794871795vw;
  font-weight: normal;
  line-height: 1;
  padding-left: 4.1025641026vw;
  margin: 0 0 7.6923076923vw;
  font-weight: bold;
}
.c-top-heading::before {
  background: #E60033;
  content: "";
  display: block;
  width: 1.5384615385vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-top-heading--level1 {
  font-weight: normal;
  font-size: 8.2051282051vw;
  margin: 0 auto;
}
.c-top-heading--level1::before {
  width: 1.5384615385vw;
  height: 8.2051282051vw;
}
.c-top-heading__sub {
  display: block;
  width: 100%;
  margin-left: -4.1025641026vw;
  line-height: 1.5;
  font-size: 4.6153846154vw;
}
@media print, screen and (min-width: 768px) {
  .c-banner-area {
    margin: 50px calc(50% - 50vw) 0;
    padding: 100px 30px;
  }
  .c-banner-area__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    gap: 3.2407407407%;
  }
  .c-border-box {
    font-size: 1.9rem;
    padding: 0 7px 10px 7px;
    transition: opacity 0.4s;
  }
  .c-border-box:hover {
    opacity: 0.6;
  }
  .c-border-box--arrow span {
    padding: 0 30px 0 0;
  }
  .c-border-box--arrow span::after {
    width: 9px;
    height: 9px;
  }
  .c-border-box--window span {
    padding: 0 30px 0 0;
  }
  .c-border-box--window span::after {
    width: 9px;
    height: 9px;
  }
  .c-button-wrapper {
    flex-direction: row;
  }
  .c-button-wrapper--2column {
    gap: 34px;
    max-width: 894px;
  }
  .c-button {
    font-size: 16px;
    border-bottom: 1px solid #000000;
    padding: 20px 0 20px 2px;
    width: 430px;
  }
  .c-button::after {
    border-right: 1px solid #000000;
    border-top: 1px solid #000000;
    margin-left: 10px;
    margin-bottom: 3px;
    right: 3px;
    width: 8px;
    height: 8px;
  }
  .content-its__link-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1080px;
    gap: 0 45px;
  }
  .content-its__link-list a {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    row-gap: 0;
  }
  .content-its__link-list .c-border-box {
    display: flex;
    align-items: flex-end;
  }
  .content-its__link-list .c-border-box:hover {
    opacity: 1;
  }
  .content-its__link-list .description__txt {
    margin-top: 0;
    font-size: 1.5rem;
  }
  .content-its__link-list .description__txt {
    font-size: 16px !important;
  }
  .c-footer {
    padding: 30px;
  }
  .c-footer__inner {
    min-width: 701.5px;
    max-width: 1080px;
    padding: 0;
  }
  .c-footer__top {
    padding: 0 0 32px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .c-footer__name {
    gap: 10px;
  }
  .c-footer__logo {
    width: 100px;
  }
  .c-footer__subtext {
    font-size: 15px;
  }
  .c-footer__sns {
    gap: 20px;
  }
  .c-footer__icon-img {
    width: 20px;
  }
  .c-footer__bottom {
    padding: 40px 0 0;
  }
  .c-footer__nav {
    flex-direction: row;
    gap: 42.5px;
  }
  .c-footer__list {
    font-size: 14px;
  }
  .c-footer__list--01 {
    width: 337px;
  }
  .c-footer__list--02 {
    margin: 0;
  }
  .c-footer__item:nth-of-type(n+2) {
    margin: 8px 0 0;
  }
  .c-footer__copyright {
    font-size: 12px;
    padding: 64px 0 0;
  }
  .c-header + * {
    padding-top: 108px;
  }
  .c-header::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    background: linear-gradient(#999, transparent);
    opacity: 0.2;
  }
  .c-header__inner {
    padding: 35px min(2.6315789474vw, 30px) 10px;
    z-index: 101;
  }
  .c-header__logo__img {
    width: 100px;
    margin-left: 0;
    margin-right: auto;
  }
  .c-header__logo__link {
    gap: 10px;
  }
  .c-header__logo__subtext {
    margin-top: 10px;
    font-size: min(1.3157894737vw, 15px);
  }
  .c-header-navi {
    display: flex;
    width: auto;
    align-items: center;
    position: relative;
  }
  .c-header-navi, .c-header-navi a {
    color: #000;
  }
  .c-header-navi__item span.c-icon__img.c-icon__noacoordion {
    display: none !important;
  }
  .c-header-navi__item span.c-icon__img {
    width: 8px;
    height: 4px;
    background: url("/common/img/icon_down_off.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .c-header-navi__item .is-active {
    color: #E60033;
  }
  .c-header-navi__item .is-active a.c-header-navi__link {
    color: #E60033;
  }
  .c-header-navi__item .is-active span.c-icon__img {
    display: block;
    width: 8px;
    height: 4px;
    background: url("/common/img/icon_down_on.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion {
    display: flex;
    z-index: 100;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link {
    padding: 0;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link__item {
    color: #000;
    font-weight: 500;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link__item .c-icon {
    display: block;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion a {
    transition: opacity 0.4s;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion a:hover {
    opacity: 0.6;
  }
  .c-header-navi__item .is-active .c-header-navi__accordion {
    display: block;
  }
  .c-header-navi__item .is-active .c-header-navi__accordion:hover {
    display: block;
  }
  .c-header-navi__item:hover {
    color: #E60033;
  }
  .c-header-navi__item:hover a.c-header-navi__link {
    color: #E60033;
  }
  .c-header-navi__item:hover span.c-icon__img {
    display: block;
    width: 8px;
    height: 4px;
    background: url("/common/img/icon_down_on.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .c-header-navi__link .c-icon {
    margin-left: 0;
  }
  .c-header-navi__link.c-disp_sp {
    display: none;
  }
  .c-header-navi__link.c-disp_pc {
    display: flex;
  }
  .c-header-navi__humberger-button {
    display: none;
  }
  .c-header-navi__list {
    position: static;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    top: min(0.5263157895vw, 6px);
    left: auto;
    right: min(-2.1929824561vw, -25px);
    display: flex;
    align-items: center;
    height: auto;
    padding: 0;
    margin-bottom: 0;
    opacity: 1;
    font-size: min(1.3157894737vw, 15px);
    background: none;
  }
  .c-header-navi__list .c-header-navi__item {
    margin-left: min(2.1929824561vw, 25px);
  }
  .c-header-navi__list .c-header-navi__item .c-header-navi__link {
    padding: 12px 0;
  }
  .c-header-navi__list .c-header-navi__item:first-child, .c-header-navi__list .c-header-navi__item:last-child {
    margin-left: 0;
  }
  .c-header-navi__list .c-header-navi__accordion {
    position: absolute;
    top: 58px;
    right: min(-2.3684210526vw, -27px);
    left: auto;
    width: calc(100vw + min(0.350877193vw, 4px));
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__bg {
    background: rgba(0, 0, 0, 0.5);
    width: calc(100vw + min(0.350877193vw, 4px));
    height: 100dvh;
    position: fixed;
    z-index: 10;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo {
    display: flex;
    justify-content: right;
    align-items: start;
    width: 100%;
    max-width: min(42.8070175439vw, 488px);
    height: auto;
    padding: min(3.5087719298vw, 40px) min(5.6140350877vw, 64px) min(3.5087719298vw, 40px) min(2.6315789474vw, 30px);
    box-sizing: border-box;
    background: wheat;
    z-index: 20;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo .c-btn {
    position: relative;
    display: flex;
    justify-content: center;
    width: min(21.4035087719vw, 244px);
    padding: min(1.0526315789vw, 12px) min(1.7543859649vw, 20px);
    box-sizing: border-box;
    background: #E60033;
    color: white;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo .c-btn .c-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 6px;
    height: 12px;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo .c-btn .c-icon img {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo--corporate {
    background: url("/common/img/bg_header_corporate.png");
    background-size: cover;
    background-position-x: right;
    background-repeat: no-repeat;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo--ir {
    background: url("/common/img/bg_header_ir.png");
    background-size: cover;
    background-position-x: right;
    background-repeat: no-repeat;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo--recruit {
    background: url("/common/img/bg_header_recruit.png");
    background-size: cover;
    background-position-x: right;
    background-repeat: no-repeat;
  }
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo--sustainability {
    background: url("/common/img/bg_header_sustainability.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .c-header-navi__list .c-header-navi__inner {
    display: -ms-grid;
    display: grid;
    width: 100%;
    padding: min(3.5087719298vw, 40px) min(5.6140350877vw, 64px);
    -ms-grid-columns: min(19.5614035088vw, 223px) min(19.5614035088vw, 223px) min(19.5614035088vw, 223px);
    grid-template-columns: min(19.5614035088vw, 223px) min(19.5614035088vw, 223px) min(19.5614035088vw, 223px);
    grid-auto-rows: min(4.2105263158vw, 48px);
    gap: min(0.8771929825vw, 10px) min(1.7543859649vw, 20px);
    background: white;
    z-index: 20;
    min-height: min(26.1403508772vw, 298px);
    box-sizing: border-box;
  }
  .c-header-navi__list .c-header-navi__inner__link {
    display: inline-block;
    max-width: min(21.3157894737vw, 243px);
    border-bottom: 1px solid #333;
  }
  .c-header-navi__list .c-header-navi__inner__link:first-child {
    display: none;
    font-weight: bold;
  }
  .c-header-navi__list .c-header-navi__inner__link__item {
    display: block;
    width: 100%;
    padding: min(1.0526315789vw, 12px) min(0.8771929825vw, 10px) min(1.0526315789vw, 12px) 0;
    position: relative;
    box-sizing: border-box;
  }
  .c-header-navi__list .c-header-navi__inner__link__item .c-icon {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .c-header-contact {
    position: absolute;
    top: -30px;
    right: 0;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    margin-top: 0;
    font-size: min(1.0526315789vw, 12px);
    font-weight: 200;
    color: #333;
    gap: min(1.7543859649vw, 20px);
  }
  .c-header-contact a {
    transition: opacity 0.4s;
  }
  .c-header-contact a:hover {
    opacity: 0.6;
  }
  .c-header-contact__lang {
    width: auto;
    gap: min(0.701754386vw, 8px);
  }
  .c-header-contact__lang a {
    position: relative;
    display: inline-block;
  }
  .c-header-contact__lang a .is-active {
    text-decoration: underline;
    text-underline-offset: 0.5em;
    -webkit-text-decoration-color: #333;
            text-decoration-color: #333;
  }
  .c-header-contact__lang__divider {
    width: 1px;
    border-right: 1px solid #ccc;
  }
  .c-header-contact__search__form {
    width: vw_px(122);
    padding: min(0.2631578947vw, 3px) 0;
    border: 1px solid #999;
  }
  .c-header-contact__search__input {
    padding: 0 0 0 min(0.8771929825vw, 10px);
    font-size: min(1.0526315789vw, 12px);
  }
  .c-header-contact__search__button {
    background-size: min(1.1403508772vw, 13px);
    width: min(2.1052631579vw, 24px);
    height: min(2.1052631579vw, 24px);
    padding-right: min(0.4385964912vw, 5px);
  }
  html[lang=ja] .c-header-contact__lang--jp {
    text-underline-offset: 0.5em;
    -webkit-text-decoration-color: #333;
            text-decoration-color: #333;
  }
  html[lang=en] .c-header-contact__lang--en {
    text-underline-offset: 0.5em;
    -webkit-text-decoration-color: #333;
            text-decoration-color: #333;
  }
  .c-heading--list-page, .c-heading--article-page {
    font-size: 3.6rem;
    max-width: 1080px;
    margin: 0 auto;
    padding-bottom: 20px;
    margin-top: 40px;
  }
  .c-heading--list-page {
    border-bottom: 8px solid #efefef;
  }
  .c-heading--list-page::after {
    bottom: -8px;
    border-bottom: 8px solid #E60033;
    width: 23.1481481481%;
  }
  .c-heading--article-page {
    border-bottom: 8px solid #efefef;
  }
  .c-heading--article-page::after {
    bottom: -8px;
    border-bottom: 8px solid #E60033;
    width: 23.1481481481%;
  }
  .c-index-heading {
    font-size: 60px;
  }
  .c-index-heading__subtext {
    font-size: 16px;
    margin: 10px 0 0;
  }
  .c-new-document__title {
    font-size: 2.2rem;
  }
  .c-new-document .c-ir-top-heading {
    margin: 0;
  }
  .c-new-document__contents {
    padding: 10px 0;
    margin-top: 21px;
  }
  .c-new-document__inner {
    font-size: 1.6rem;
    padding: 30px 15px;
  }
  .c-new-document__item {
    margin-top: 40px;
    padding-left: 40px;
  }
  .content {
    margin-top: 0;
  }
  .content-base {
    padding: 0 10px;
    display: block;
  }
  .content-its__link-list a {
    display: block;
  }
  .content-its__link-list a figure {
    margin: 0 0 15px;
  }
  .heading-block02__title {
    font-size: 30px;
    padding: 16px 0 16px 24px;
    margin: 64px 0 16px;
  }
  .heading-block02__title::before {
    width: 8px;
    height: 29px;
    top: 26px;
  }
  .heading-block05__title {
    font-size: 24px;
    padding: 0 0 0 24px;
    margin: 40px 0 8px;
  }
  .heading-block05__title::before {
    width: 16px;
    height: 16px;
    top: 10px;
  }
  .type-line-wide {
    font-size: 16px;
  }
  .column-type01.column2 .heading-block02__title,
.column-type01.column3 .heading-block02__title {
    font-size: 16px;
  }
  .column-type01.column2 .heading-block02__title::before,
.column-type01.column3 .heading-block02__title::before {
    top: 14px;
  }
  .link-list07__item {
    font-size: 16px;
    margin-top: 8px;
  }
  .link-list07__item span {
    padding-right: 16px;
  }
  .link-list07__item a::after {
    right: 5px;
    width: 8px;
    height: 8px;
  }
  .article-body {
    max-width: 850px;
  }
  .article-body > .heading-block02:first-child .heading-block02__title {
    margin: 0 0 16px;
  }
  .content-main {
    margin: 0 auto;
  }
  .link-list01.type-anchor {
    margin-bottom: 64px;
  }
  .link-list01.type-anchor .link-list01__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 2.3529411765%;
  }
  .link-list01.type-anchor .link-list01__item {
    font-size: 16px;
  }
  .link-list01.type-anchor a.link-list01__inner {
    padding: 15px 15px 15px 0;
    transition: opacity 0.4s;
  }
  .link-list01.type-anchor a.link-list01__inner:hover {
    text-decoration: none !important;
  }
  .link-list01.type-anchor a.link-list01__inner:hover {
    opacity: 0.6;
  }
  .link-list01.type-anchor a.link-list01__inner::after {
    right: 6px;
    width: 8px;
    height: 8px;
  }
  .tag--type01.type-news--94,
.tag--type01 {
    font-size: 1.4rem;
    padding: 2px 15px 0;
  }
  body.top .latestnews .latest-list-item .photo img {
    height: calc(0.2305555556 * var(--window-width));
  }
  body.top .latestnews .latest-list-item a {
    box-shadow: none;
  }
  body.top .latestnews .latest-list-item .info {
    margin-top: 16px;
    padding: 0;
  }
  body.top .latestnews .latest-list-item .info .date {
    font-size: calc(0.0111111111 * var(--window-width));
  }
  body.top .latestnews .latest-list-item .info .title {
    font-size: calc(0.0111111111 * var(--window-width));
    margin-top: 8px;
  }
  .pagetop {
    bottom: 30px;
    right: 20px;
  }
  .pagetop a {
    width: 65px;
    height: 65px;
  }
  .c-top-heading {
    font-size: 3.2rem;
    padding-left: 32px;
    margin: 40px auto 0;
    max-width: 1048px;
  }
  .c-top-heading::before {
    width: 10px;
    top: 0px;
  }
  .c-top-heading--level1 {
    font-size: 4.2rem;
  }
  .c-top-heading--level1::before {
    width: 10px;
    height: 42px;
    top: 0px;
  }
  .c-top-heading__sub {
    margin-left: -32px;
    margin-top: 10px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-banner-area__inner {
    flex-direction: column;
  }
  .content-its__link-list a {
    margin-bottom: 7.6923076923vw;
  }
  .content-its__link-list .description__txt {
    font-size: 1.3rem;
  }
  .content-its__link-list__group {
    display: block;
  }

  .content-its__link-list {
    width: 85%;
    margin: 0 auto;
  }

  .content-its__link-list__item {
    width: 100%;
  }
  .c-header-navi__item .is-active {
    color: white;
  }
  .c-header-navi__item .is-active span.c-icon__img {
    width: 3.0769230769vw;
    height: 3.0769230769vw;
    background: url("/common/img/icon_minus.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position-y: center;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion {
    display: block;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner {
    margin-left: -5.1282051282vw;
    width: 100vw;
    background: white;
    padding-top: 2.5641025641vw;
    padding-bottom: 2.5641025641vw;
    padding-left: 5.1282051282vw;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link {
    padding: 2.5641025641vw 0;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link__item {
    color: #000;
    font-weight: 200;
    display: block;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link__item .c-icon {
    display: none;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link__item[target=_blank] .c-icon {
    display: inline-flex;
    margin-left: 2.0512820513vw;
  }
  .c-header-navi__item .is-active ~ .c-header-navi__accordion .c-header-navi__inner__link__item[target=_blank] .c-icon__img {
    width: 3.5897435897vw;
    height: 3.5897435897vw;
  }
  .c-header-contact__search {
    width: 100%;
  }
  .c-header-navi__inner__link__item::after {
    display: none;
  }
  .c-header-navi__inner__link__item[target=_blank]::after {
    display: inline-flex;
    width: 3.5897435897vw;
    height: 3.5897435897vw;
    position: static;
    margin-left: 2.0512820513vw;
    align-items: center;
  }
  .c-heading-wrapper,
.content-heading {
    margin: 0 5.1282051282vw;
    padding-top: 7.6923076923vw;
  }
  .c-new-document__item a::before {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
  }
  .c-new-document__item a[href$=".pdf"]::before {
    width: 5.1282051282vw;
    height: 6.9230769231vw;
  }
  .c-new-document__item a[href$=".xlsx"]::before,
.c-new-document__item a[href$=".xls"]::before {
    width: 5.1282051282vw;
    height: 6.9230769231vw;
  }
  .content-header {
    display: none;
  }
  .pagetop {
    display: none;
  }
  .content-main {
    padding: 10.2564102564vw 5.1282051282vw 16.4102564103vw !important;
  }
  .link-list01.type-anchor {
    margin-bottom: 10.2564102564vw;
  }
  .pagetop {
    display: block;
  }
  .pagetop a {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
  .c-top-heading__sub {
    margin-top: 2.5641025641vw;
  }
}
@media print, screen and (max-width: 940px) {
  .c-header-navi__list .c-header-navi__accordion {
    right: min(-2.0175438596vw, -23px);
  }
}
@media print, screen and (min-width: 1440.1px) {
  .c-header-navi__list .c-header-navi__accordion .c-header-navi__accordion__photo {
    width: 40.4166666667vw;
    max-width: initial;
  }

  .c-header-navi__list .c-header-navi__inner {
    width: 59.6527777778vw;
    max-width: initial;
  }
}
@media screen and (max-width: 67.5em) {
  .header-search-open {
    display: none;
  }
}