@charset "UTF-8";
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat; /* 1 */
  box-sizing: inherit; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box; /* 1 */
  cursor: default; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc; /* 1 */
  color: #000000; /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* 1 */
  color: #000000; /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

/*------------------------
  setting.css
------------------------*/
/* tablet  */
@media (min-width: 768px) and (max-width: 1200px) {
  /*ここにtablet用スタイルを記述*/
}
/* smartPhone */
@media (max-width: 1200px) {
  /*ここにタブレット以下のスタイルを記述*/
}
/* smartPhone */
@media (max-width: 767px) {
  /*ここにスマホ用スタイルを記述*/
}
/*------------------------
  init.css
------------------------*/
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  color: #4c5768;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Osaka, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  height: 100%;
  letter-spacing: 0.03;
  line-height: 1.75;
  text-align: left;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body.device_windows {
  font-weight: 500;
}
@media (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

a {
  color: #4c5768;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link,
a:active,
a:visited {
  color: #4c5768;
}

a:hover {
  color: #4c5768;
}

hr {
  height: 0px;
  margin: 0;
  border: none;
  border-top: 1px solid #000;
}

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

input,
button,
select,
textarea,
textarea {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Osaka, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
}

/*------------------------
  mixin.css
------------------------*/
/**
 * ロングシャドウを作成するメソッド
 * text-shadowのプロパティに対して使う
 *
 * $maxCnt　ループ回数
 * $color 影の色
 */
/****************************************
  関数
****************************************/
/*------------------------
    module.css
------------------------*/
/****************************************
  parts mixin
****************************************/
/****************************************
  animation
****************************************/
/*------------------------
  mixin.css
------------------------*/
/**
 * ロングシャドウを作成するメソッド
 * text-shadowのプロパティに対して使う
 *
 * $maxCnt　ループ回数
 * $color 影の色
 */
/****************************************
  関数
****************************************/
/*------------------------
    parts.css
------------------------*/
/****************************************
  common parts
****************************************/
.sec_inner {
  margin: 0 auto;
  padding: 0 46px;
  position: relative;
  max-width: 932px;
}
@media (max-width: 767px) {
  .sec_inner {
    padding: 0 23px;
  }
}

@media (max-width: 767px) {
  .sp_scroll_box {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

sup {
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}

/****************************************
  animation parts
****************************************/
/*------------------------
  common.css
------------------------*/
/****************************************
  ヘッダ
****************************************/
#header {
  background-color: #fff;
  display: flex;
  justify-content: center;
  left: 0;
  top: 0;
  padding: 0 46px;
  position: fixed;
  width: 100%;
  z-index: 100;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  #header {
    display: block;
    padding: 0 55px 0 16px;
  }
}
#header .inner {
  height: 100px;
  max-width: 1206px;
  padding-top: 36px;
  transition: height 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header .inner {
    height: 68px;
    padding-top: 22px !important;
  }
}
@media (max-width: 767px) {
  #header .inner {
    height: 44px;
    padding-top: 13px;
  }
}
#header .inner .logo01 {
  float: left;
  padding-top: 2px;
  width: 325px;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#header .inner .logo01:hover {
  opacity: 0.8;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header .inner .logo01 {
    padding-top: 4px;
    width: 230px;
  }
}
@media (max-width: 767px) {
  #header .inner .logo01 {
    padding-top: 0;
    width: 244px;
  }
}
@media (max-width: 354px) {
  #header .inner .logo01 {
    width: 200px;
  }
}
#header .inner .logo01 a {
  display: block;
  line-height: 1;
}
#header .inner .nav {
  display: flex;
  float: right;
  margin-right: 50px;
  padding-top: 2px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header .inner .nav {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  #header .inner .nav {
    background-color: #fff;
    display: block;
    float: none;
    left: 0;
    margin-right: 0;
    opacity: 0;
    padding: 18px 46px 24px;
    pointer-events: none;
    position: fixed;
    top: 44px;
    transform: translateY(-5px);
    transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    visibility: hidden;
  }
  #header .inner .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}
#header .inner .nav a:not(.ac_link) {
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header .inner .nav a:not(.ac_link) {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  #header .inner .nav a:not(.ac_link) {
    align-items: center;
    display: flex;
    font-size: 1.4rem;
    padding: 18px 0;
    position: relative;
    width: 100%;
  }
  #header .inner .nav a:not(.ac_link):after {
    background-color: #c2c8cf;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    right: 0;
    width: calc(100% - 70px);
  }
  #header .inner .nav a:not(.ac_link):last-child:after {
    display: none;
  }
}
#header .inner .nav a:not(.ac_link):hover, #header .inner .nav a:not(.ac_link).current {
  color: #cf000e;
}
#header .inner .nav a:not(.ac_link) + a,
#header .inner .nav a:not(.ac_link) + div:not(.ac_wrap) {
  margin-left: 38px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header .inner .nav a:not(.ac_link) + a,
  #header .inner .nav a:not(.ac_link) + div:not(.ac_wrap) {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  #header .inner .nav a:not(.ac_link) + a,
  #header .inner .nav a:not(.ac_link) + div:not(.ac_wrap) {
    margin-left: 0;
  }
}
#header .inner .nav a:not(.ac_link) img {
  display: none;
}
@media (max-width: 767px) {
  #header .inner .nav a:not(.ac_link) img {
    display: block;
    margin-right: 25px;
    width: 44px;
  }
}
#header .inner .nav > div {
  position: relative;
}
#header .inner .nav > div + a {
  margin-left: 38px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header .inner .nav > div + a {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  #header .inner .nav > div + a {
    margin-left: 0;
  }
}
#header .inner .nav > div > a {
  display: block;
  padding-bottom: 15px !important;
}
@media (max-width: 767px) {
  #header .inner .nav > div > a:after {
    display: none !important;
  }
}
#header .inner .nav > div:hover .ac_wrap {
  opacity: 1;
  visibility: visible;
}
#header .inner .nav > div .ac_wrap {
  background-color: #e7e9ec;
  padding: 23px 0;
  opacity: 0;
  position: absolute;
  left: calc(50% - 50px);
  top: 36px;
  transition: 0.2s opacity, 0.2s visibility;
  visibility: hidden;
  width: 100px;
}
@media (max-width: 767px) {
  #header .inner .nav > div .ac_wrap {
    background-color: #fff;
    left: 0;
    opacity: 1;
    padding: 0 0 25px;
    position: relative;
    top: 0;
    visibility: visible;
    width: 100%;
  }
  #header .inner .nav > div .ac_wrap:after {
    background-color: #c2c8cf;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    right: 0;
    width: calc(100% - 70px);
  }
}
#header .inner .nav > div .ac_wrap:before {
  content: "";
  display: block;
  left: calc(50% - 10px);
  position: absolute;
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e7e9ec transparent;
}
@media (max-width: 767px) {
  #header .inner .nav > div .ac_wrap:before {
    display: none;
  }
}
#header .inner .nav > div .ac_wrap .ac_link {
  display: block;
  text-align: center;
  transition: 0.2s color;
}
@media (max-width: 767px) {
  #header .inner .nav > div .ac_wrap .ac_link {
    color: #949aa4;
    font-size: 1.3rem;
    padding-left: 69px;
    text-align: left;
  }
}
#header .inner .nav > div .ac_wrap .ac_link + a {
  margin-top: 3px;
}
@media (max-width: 767px) {
  #header .inner .nav > div .ac_wrap .ac_link + a {
    margin-top: 22px;
  }
}
#header .inner .nav > div .ac_wrap .ac_link:hover {
  color: #cf000e;
}
#header .inner .logo02 {
  display: block;
  float: right;
  line-height: 1;
  padding-top: 2px;
  width: 89px;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#header .inner .logo02:hover {
  opacity: 0.8;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header .inner .logo02 {
    width: 60px;
  }
}
@media (max-width: 767px) {
  #header .inner .logo02 {
    padding-top: 4px;
    width: 36px;
  }
}
#header .inner .logo02 img {
  vertical-align: top;
}
#header .inner .sp_btn {
  display: none;
}
@media (max-width: 767px) {
  #header .inner .sp_btn {
    display: block;
    height: 13px;
    position: fixed;
    top: 15px;
    right: 19px;
    width: 19px;
    z-index: 100;
  }
  #header .inner .sp_btn span {
    background-color: #4c5768;
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 19px;
  }
  #header .inner .sp_btn span:nth-child(1) {
    top: 0;
  }
  #header .inner .sp_btn span:nth-child(2) {
    top: 6px;
  }
  #header .inner .sp_btn span:nth-child(3) {
    bottom: 0;
  }
  #header .inner .sp_btn.open span:nth-child(1) {
    transform: rotate(-45deg);
    top: 6px;
  }
  #header .inner .sp_btn.open span:nth-child(2) {
    opacity: 0;
  }
  #header .inner .sp_btn.open span:nth-child(3) {
    bottom: 6px;
    transform: rotate(45deg);
  }
}
#header.scroll .inner {
  height: 68px;
  padding-top: 20px;
}
#header.scroll .inner .logo01 {
  padding-top: 4px;
  width: 300px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #header.scroll .inner .logo01 {
    width: 230px;
  }
}

/****************************************
  フッター
****************************************/
#footer {
  background-color: #e7e9ec;
}
#footer .inner {
  display: flex;
  font-size: 1.2rem;
  flex-direction: column;
  height: 164px;
  margin: 0 auto;
  max-width: 1298px;
  padding: 0 46px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  #footer .inner {
    font-size: 1.1rem;
    height: 102px;
    padding-bottom: 7px;
    text-align: center;
  }
}
#footer .inner .link {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  #footer .inner .link {
    margin-bottom: 4px;
  }
}
#footer .inner .link a {
  color: #949aa4;
  display: inline-block;
  padding-left: 15px;
  position: relative;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#footer .inner .link a:hover {
  color: #cf000e;
}
#footer .inner .link a:after {
  background-color: #949aa4;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(50% - 2px);
  width: 8px;
}
#footer .inner .copy span {
  font-size: 1rem;
  vertical-align: 1px;
}

/****************************************
  コンテンツ
****************************************/
article {
  min-height: calc(100% - 164px);
  padding-top: 100px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  article {
    padding-top: 68px;
  }
}
@media (max-width: 767px) {
  article {
    min-height: calc(100% - 102px);
    padding-top: 44px;
  }
}

#page_top_scroll_btn {
  bottom: 47px;
  cursor: pointer;
  height: 70px;
  opacity: 0;
  position: fixed;
  right: 0;
  transition: visibility 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 70px;
  z-index: 200;
  visibility: hidden;
}
@media (max-width: 767px) {
  #page_top_scroll_btn {
    bottom: 28px;
    height: 44px;
    width: 44px;
  }
}
#page_top_scroll_btn.view {
  opacity: 1;
  visibility: visible;
}
#page_top_scroll_btn:hover img:nth-child(1) {
  opacity: 0;
}
@media (max-width: 767px) {
  #page_top_scroll_btn:hover img:nth-child(1) {
    opacity: 1;
  }
}
#page_top_scroll_btn img {
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#page_top_scroll_btn img:nth-child(1) {
  left: 0;
  position: absolute;
  top: 0;
}

#sec_header {
  align-items: center;
  background-color: #f3f4f5;
  display: flex;
  justify-content: center;
}
#sec_header h2 {
  align-items: center;
  display: flex;
}
#sec_header h2 p {
  font-size: 4rem;
  margin-top: 5px;
}
@media (max-width: 767px) {
  #sec_header h2 p {
    font-size: 2rem;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  #sec_header {
    padding: 0 20px;
  }
  #sec_header h2 {
    max-width: 335px;
    width: 100%;
  }
}

.sec_title {
  border-bottom: 1px solid #ced3d9;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 767px) {
  .sec_title {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 22px;
    padding-bottom: 7px;
  }
}
.sec_title:after {
  background-color: #cf000e;
  bottom: -1px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 184px;
}
@media (max-width: 767px) {
  .sec_title:after {
    width: 128px;
  }
}

.pdf_link a {
  display: inline-block;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pdf_link a:hover {
  color: #cf000e;
}
.pdf_link a img {
  margin-left: 12px;
  width: 16px;
  vertical-align: sub;
}
@media (max-width: 767px) {
  .pdf_link a img {
    margin-left: 10px;
  }
}
.pdf_link span {
  font-size: 1.2rem;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .pdf_link span {
    font-size: 1.1rem;
    margin-left: 10px;
  }
}

.popup_box {
  box-sizing: border-box;
  height: 100%;
  opacity: 0;
  padding: 0 80px;
  position: fixed;
  top: 0;
  transition: 0.2s opacity, 0.2s visibility;
  left: 0;
  visibility: hidden;
  width: 100%;
  z-index: 20000;
  overflow-y: scroll;
}
@media screen and (max-width: 639px) {
  .popup_box {
    padding: 0 25px;
  }
}
.popup_box.view {
  opacity: 1;
  visibility: visible;
}
.popup_box .bg {
  background-color: rgba(0, 0, 0, 0.7);
  height: 1650px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 639px) {
  .popup_box .bg {
    height: 1300px;
  }
}
.popup_box .scroll_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1650px;
}
@media screen and (max-width: 639px) {
  .popup_box .scroll_wrap {
    height: 1300px;
  }
}
.popup_box .column {
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px 30px;
  position: relative;
  width: 100%;
  max-width: 656px;
  z-index: 200;
}
@media screen and (max-width: 639px) {
  .popup_box .column {
    padding: 30px 20px;
  }
}
.popup_box .column .close_btn_01 {
  cursor: pointer;
  position: absolute;
  right: -51px;
  top: -51px;
  width: 45px;
  height: 45px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 639px) {
  .popup_box .column .close_btn_01 {
    right: 0;
  }
}
.popup_box .column .close_btn_01 span {
  background-color: #fff;
  display: block;
  position: absolute;
}
.popup_box .column .close_btn_01 span:nth-child(1) {
  top: calc(50% - 0.5px);
  left: 0;
  width: 45px;
  height: 1px;
}
.popup_box .column .close_btn_01 span:nth-child(2) {
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 45px;
}
.popup_box .column .close_btn_01:hover {
  opacity: 0.8;
}
.popup_box .column .title {
  font-size: 2.4rem;
  letter-spacing: 0.177em;
  margin-bottom: 53px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .popup_box .column .title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.popup_box .column .flow_wrap + .flow_wrap {
  margin-top: 75px;
}
@media screen and (max-width: 639px) {
  .popup_box .column .flow_wrap + .flow_wrap {
    margin-top: 45px;
  }
}
.popup_box .column .flow_wrap .head {
  align-items: center;
  background-color: #f3f4f5;
  display: flex;
  margin-bottom: 1.3em;
  padding: 10px 12px;
  justify-content: space-between;
}
.popup_box .column .flow_wrap .head span:nth-child(2) {
  font-size: 93.33333333%;
}
.popup_box .column .flow_wrap .txt {
  line-height: 1.75;
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.popup_box .column .flow_wrap .txt:not(.arrow_non):after {
  display: block;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-left: 1px solid #e2666e;
  border-bottom: 1px solid #e2666e;
  transform: rotate(-45deg);
  left: calc(50% - 13px);
  bottom: -35px;
}
@media screen and (max-width: 639px) {
  .popup_box .column .flow_wrap .txt:not(.arrow_non):after {
    bottom: -23px;
    height: 18px;
    left: calc(50% - 7px);
    width: 18px;
  }
}
.popup_box .column .close_btn_02 {
  cursor: pointer;
  background-color: #dadee2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  margin: 75px auto 0;
  height: 54px;
  max-width: 326px;
  transition: opacity 0.1s;
  width: 100%;
}
@media (max-width: 767px) {
  .popup_box .column .close_btn_02 {
    margin-top: 45px;
    font-size: 1.2rem;
    width: 90%;
    height: 45px;
  }
}
.popup_box .column .close_btn_02:hover {
  opacity: 0.8;
}

@media screen and (max-width: 639px) {
  ._01 .bg {
    height: 1600px;
  }
}
@media screen and (max-width: 639px) {
  ._01 .scroll_wrap {
    height: 1600px;
  }
}

/*------------------------
  mixin.css
------------------------*/
/**
 * ロングシャドウを作成するメソッド
 * text-shadowのプロパティに対して使う
 *
 * $maxCnt　ループ回数
 * $color 影の色
 */
/****************************************
  関数
****************************************/
/*------------------------
  style.css
------------------------*/
/****************************************
  キービジュアル
****************************************/
#sec_kv {
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  #sec_kv {
    padding-bottom: 45px;
  }
}
#sec_kv figure {
  margin-bottom: 55px;
  padding: 0 46px;
}
@media (max-width: 767px) {
  #sec_kv figure {
    padding: 0;
  }
}
#sec_kv figure img {
  display: block;
  margin: 0 auto;
  max-width: 1206px;
  width: 100%;
}
#sec_kv h2 {
  font-size: 2.8rem;
  letter-spacing: 0.23em;
  line-height: 1.85;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #sec_kv h2 {
    font-size: 1.9rem;
    line-height: 1.75;
    margin-bottom: 25px;
  }
}
#sec_kv .menu {
  display: flex;
  height: 82px;
  margin: 0 auto;
  max-width: 1120px;
}
@media (max-width: 767px) {
  #sec_kv .menu {
    flex-wrap: wrap;
    height: auto;
    padding: 0 23px;
    justify-content: space-between;
  }
}
#sec_kv .menu a {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 280px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) and (max-width: 1200px) {
  #sec_kv .menu a {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  #sec_kv .menu a {
    font-size: 1.4rem;
    line-height: 1.25;
    padding: 22px 0 22px 5px;
    justify-content: flex-start;
    width: calc(50% - 13px);
  }
  #sec_kv .menu a:nth-child(1) {
    border-bottom: 1px solid #e7e9ec;
  }
  #sec_kv .menu a:nth-child(2) {
    border-bottom: 1px solid #e7e9ec;
  }
}
#sec_kv .menu a:hover {
  color: #cf000e;
}
#sec_kv .menu a + a {
  border-left: 1px solid #c2c8cf;
}
@media (max-width: 767px) {
  #sec_kv .menu a + a {
    border-left: none;
  }
}
#sec_kv .menu a img {
  margin-right: 20px;
  width: 56px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #sec_kv .menu a img {
    margin-right: 15px;
    width: 35px;
  }
}
@media (max-width: 767px) {
  #sec_kv .menu a img {
    width: 37px;
  }
}

/****************************************
  お知らせ
****************************************/
#sec_news {
  background-color: #f3f4f5;
  padding-bottom: 128px;
  padding-top: 122px;
}
#news #sec_news {
  background-color: #fff;
}
@media (max-width: 767px) {
  #sec_news {
    padding-bottom: 64px;
    padding-top: 58px;
  }
}
#sec_news h2 {
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  #sec_news h2 {
    font-size: 2rem;
    margin-bottom: 3px;
  }
}
#sec_news.top_list ul:nth-child(n+6) {
  display: none;
}
#sec_news .news_list {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  #sec_news .news_list {
    margin-bottom: 10px;
  }
}
#sec_news .news_list ul {
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  #sec_news .news_list ul {
    flex-wrap: wrap;
    padding: 23px 0 18px;
  }
}
#sec_news .news_list ul + ul {
  border-top: 1px solid #dadee2;
}
#sec_news .news_list ul li {
  letter-spacing: 0.03em;
  padding: 25px 0;
}
@media (max-width: 767px) {
  #sec_news .news_list ul li {
    line-height: 1.3;
    padding: 0;
  }
}
#sec_news .news_list ul li:nth-child(1) {
  color: #949aa4;
  width: 175px;
}
@media (max-width: 767px) {
  #sec_news .news_list ul li:nth-child(1) {
    margin-bottom: 5px;
    width: 100%;
  }
}
#sec_news .news_list ul li:nth-child(2) {
  width: calc(100% - 175px);
}
@media (max-width: 767px) {
  #sec_news .news_list ul li:nth-child(2) {
    width: 100%;
  }
}
#sec_news .news_list ul li a {
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#sec_news .news_list ul li a:hover {
  color: #cf000e;
}
#sec_news .pagenation {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #sec_news .pagenation {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  #sec_news .pagenation._pc {
    display: none;
  }
}
#sec_news .pagenation._sp {
  display: none;
}
@media (max-width: 767px) {
  #sec_news .pagenation._sp {
    display: flex;
  }
}
#sec_news .pagenation li a,
#sec_news .pagenation li span {
  align-items: center;
  display: flex;
  height: 46px;
  justify-content: center;
}
@media (max-width: 767px) {
  #sec_news .pagenation li a,
  #sec_news .pagenation li span {
    height: 43px;
  }
}
#sec_news .pagenation li:not(.prev):not(.next) {
  background-color: #f3f4f5;
}
#sec_news .pagenation li:not(.prev):not(.next):hover, #sec_news .pagenation li:not(.prev):not(.next).active {
  background-color: #4c5768;
  transition: background-color 0.2s ease;
}
#sec_news .pagenation li:not(.prev):not(.next):hover a,
#sec_news .pagenation li:not(.prev):not(.next):hover span, #sec_news .pagenation li:not(.prev):not(.next).active a,
#sec_news .pagenation li:not(.prev):not(.next).active span {
  color: #fff;
}
@media (max-width: 767px) {
  #sec_news .pagenation li:not(.prev):not(.next):hover {
    background-color: #f3f4f5;
  }
  #sec_news .pagenation li:not(.prev):not(.next):hover span {
    color: #4c5768;
  }
}
#sec_news .pagenation li:not(.prev):not(.next) a,
#sec_news .pagenation li:not(.prev):not(.next) span {
  width: 46px;
}
@media (max-width: 767px) {
  #sec_news .pagenation li:not(.prev):not(.next) a,
  #sec_news .pagenation li:not(.prev):not(.next) span {
    width: 110px;
  }
}
#sec_news .pagenation li:not(.prev):not(.next) + li:not(.next) {
  margin-left: 8px;
}
#sec_news .pagenation li.prev {
  margin-right: 46px;
}
@media (max-width: 767px) {
  #sec_news .pagenation li.prev {
    margin-right: 20px;
  }
}
#sec_news .pagenation li.next {
  margin-left: 46px;
}
@media (max-width: 767px) {
  #sec_news .pagenation li.next {
    margin-left: 20px;
  }
}
#sec_news .pagenation li.disable {
  opacity: 0.4;
}
#sec_news .pagenation li.prev:not(.disable):hover, #sec_news .pagenation li.next:not(.disable):hover {
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#sec_news .pagenation li.prev:not(.disable):hover:hover, #sec_news .pagenation li.next:not(.disable):hover:hover {
  opacity: 0.8;
}
#sec_news .pagenation .arrow._r:after {
  background: url("/common/img/common_btn_arrow_gray_r_01.svg") center center no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 10px;
  margin-left: 15px;
  width: 48px;
}
@media (max-width: 1200px) {
  #sec_news .pagenation .arrow._r:after {
    margin-left: 10px;
  }
}
#sec_news .pagenation .arrow._l:before {
  background: url("/common/img/common_btn_arrow_gray_l_01.svg") center center no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 15px;
  width: 48px;
}
@media (max-width: 1200px) {
  #sec_news .pagenation .arrow._l:before {
    margin-right: 10px;
  }
}
#sec_news .btn {
  align-items: center;
  background-color: #dadee2;
  border-radius: 4px;
  display: flex;
  height: 54px;
  letter-spacing: 0.03em;
  margin: 0 auto;
  justify-content: center;
  width: 326px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 767px) {
  #sec_news .btn {
    height: 47px;
    width: 86%;
  }
}
#sec_news .btn:hover {
  color: #cf000e;
}

/****************************************
  お知らせ一覧 /news/list.html
****************************************/
#news #sec_header {
  height: 160px;
}
@media (max-width: 767px) {
  #news #sec_header {
    height: 92px;
  }
}
@media (max-width: 767px) {
  #news #sec_header h2 {
    width: auto;
  }
}
#news .news_list {
  margin-bottom: 0;
}
#news.detail_page .sec_01 {
  padding-bottom: 128px;
  padding-top: 122px;
}
@media (max-width: 767px) {
  #news.detail_page .sec_01 {
    padding-bottom: 64px;
    padding-top: 58px;
  }
}
#news.detail_page .sec_01 .sec_title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #news.detail_page .sec_01 .sec_title {
    margin-bottom: 25px;
  }
}
#news.detail_page .sec_01 .sec_title span {
  font-size: 1.3rem;
  display: block;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
#news.detail_page .sec_01 p {
  line-height: 2.3;
}
@media (max-width: 767px) {
  #news.detail_page .sec_01 p {
    line-height: 2;
  }
}
#news.detail_page .sec_01 .line {
  border-color: #ced3d9;
  margin: 40px 0 15px;
}
@media (max-width: 767px) {
  #news.detail_page .sec_01 .line {
    margin: 25px 0 15px;
  }
}
#news.detail_page .sec_01 .back_link {
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#news.detail_page .sec_01 .back_link:hover {
  color: #cf000e;
}

/****************************************
  財団について /about/
****************************************/
#about #sec_header {
  height: 320px;
}
@media (max-width: 767px) {
  #about #sec_header {
    height: 93px;
  }
}
#about #sec_header h2 img {
  margin: 15px 60px 0 0;
}
@media (max-width: 767px) {
  #about #sec_header h2 img {
    margin: 5px 16px 0 0;
    width: 60px;
  }
}
#about .sec_01 {
  padding-bottom: 100px;
  padding-top: 120px;
}
@media (max-width: 767px) {
  #about .sec_01 {
    padding-bottom: 40px;
    padding-top: 52px;
  }
}
#about .sec_01 ul {
  display: flex;
}
@media (max-width: 767px) {
  #about .sec_01 ul {
    flex-wrap: wrap;
    padding: 16px 0 16px;
  }
}
#about .sec_01 ul + ul {
  border-top: 1px solid #dadee2;
}
#about .sec_01 ul li {
  padding: 19px 0;
}
@media (max-width: 767px) {
  #about .sec_01 ul li {
    line-height: 1.2;
    padding: 0;
    width: 100% !important;
  }
}
#about .sec_01 ul li:nth-child(1) {
  color: #949aa4;
  margin-bottom: 5px;
  width: 123px;
}
#about .sec_01 ul li:nth-child(2) {
  width: calc(100% - 123px);
}
#about .sec_02 {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  #about .sec_02 {
    padding-bottom: 55px;
  }
}
#about .sec_02 p {
  line-height: 2;
}
#about .sec_03 {
  padding-bottom: 123px;
}
@media (max-width: 767px) {
  #about .sec_03 {
    padding-bottom: 60px;
  }
}
#about .sec_03 ul {
  margin-bottom: 10px;
}
#about .sec_03 ul li {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #about .sec_03 ul li {
    font-size: 1.4rem;
    text-indent: -3.8rem;
    padding-left: 3.8rem;
  }
}
#about .sec_03 ul li + li {
  margin-top: 5px;
}
#about .sec_03 .anno_txt {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #about .sec_03 .anno_txt {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

/****************************************
  役員一覧 /officer/
****************************************/
#officer #sec_header {
  height: 320px;
}
@media (max-width: 767px) {
  #officer #sec_header {
    height: 93px;
  }
}
#officer #sec_header h2 img {
  margin: 0 70px 0 0;
}
@media (max-width: 767px) {
  #officer #sec_header h2 img {
    margin: 0 18px 0 0;
    width: 62px;
  }
}
#officer .sec_01 {
  padding-bottom: 110px;
  padding-top: 130px;
}
@media (max-width: 767px) {
  #officer .sec_01 {
    padding-bottom: 50px;
    padding-top: 60px;
  }
}
#officer .sec_01 .sec_title_head {
  display: flex;
  align-items: center;
  line-height: 1.3;
  margin-bottom: 110px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  #officer .sec_01 .sec_title_head {
    margin-bottom: 60px;
  }
}
#officer .sec_01 .sec_title_head span:nth-child(1) {
  font-size: 3.2rem;
  letter-spacing: 0.17em;
}
@media (max-width: 767px) {
  #officer .sec_01 .sec_title_head span:nth-child(1) {
    font-size: 2rem;
  }
}
#officer .sec_01 ul {
  display: flex;
}
@media (max-width: 767px) {
  #officer .sec_01 ul {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #officer .sec_01 ul.cat {
    padding-top: 5px;
  }
}
#officer .sec_01 ul + ul:not(.cat) {
  border-top: 1px solid rgba(218, 222, 226, 0.5);
}
@media (max-width: 767px) {
  #officer .sec_01 ul + ul:not(.cat) {
    padding-top: 11px;
  }
}
#officer .sec_01 ul + ul:not(.cat) li:before {
  background-color: #fff;
  top: -1px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 767px) {
  #officer .sec_01 ul + ul:not(.cat) li:before {
    display: none;
  }
}
#officer .sec_01 ul + .cat {
  margin-top: 50px;
}
@media (max-width: 767px) {
  #officer .sec_01 ul + .cat {
    margin-top: 22px;
  }
}
#officer .sec_01 ul + .sec_title {
  margin-top: 100px;
}
@media (max-width: 767px) {
  #officer .sec_01 ul + .sec_title {
    margin-top: 47px;
  }
}
#officer .sec_01 ul li {
  display: flex;
  align-items: center;
  height: 62px;
}
@media (max-width: 767px) {
  #officer .sec_01 ul li {
    flex-wrap: wrap;
    height: auto;
    line-height: 1.55;
    padding: 0;
    justify-content: space-between;
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  #officer .sec_01 ul li.line {
    margin-bottom: 25px;
  }
}
#officer .sec_01 ul li:nth-child(1) {
  width: calc(100% - 367px);
}
@media (max-width: 767px) {
  #officer .sec_01 ul li:nth-child(1) {
    margin-bottom: 2px;
  }
}
#officer .sec_01 ul li:nth-child(2) {
  color: #949aa4;
  width: 222px;
}
#officer .sec_01 ul li:nth-child(3) {
  color: #949aa4;
  width: 145px;
}
#officer .sec_01 ul li span {
  border: 1px solid #949aa4;
  color: #949aa4;
  margin-left: 60px;
  padding: 2px 10px 0;
}
@media (max-width: 767px) {
  #officer .sec_01 ul li span {
    padding: 3px 10px 1px;
  }
}

/****************************************
  事業計画書・事業報告書 /projects/
****************************************/
#projects #sec_header {
  height: 320px;
}
@media (max-width: 767px) {
  #projects #sec_header {
    height: 93px;
  }
}
#projects #sec_header h2 img {
  margin: 0 78px 0 0;
}
@media (max-width: 767px) {
  #projects #sec_header h2 img {
    margin: 0 19px 0 0;
    width: 56px;
  }
}
#projects .sec_01 {
  padding-top: 120px;
}
@media (max-width: 767px) {
  #projects .sec_01 {
    padding-top: 65px;
  }
}
#projects .sec_02 {
  padding-bottom: 105px;
  padding-top: 95px;
}
@media (max-width: 767px) {
  #projects .sec_02 {
    padding-bottom: 52px;
    padding-top: 54px;
  }
}
#projects .sec_title {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  #projects .sec_title {
    margin-bottom: 27px;
  }
}
#projects .column {
  display: flex;
}
@media (max-width: 767px) {
  #projects .column {
    flex-wrap: wrap;
  }
}
#projects .column + .column {
  margin-top: 31px;
}
@media (max-width: 767px) {
  #projects .column + .column {
    margin-top: 28px;
  }
}
#projects .column h4 {
  padding-left: 38px;
  position: relative;
  width: 250px;
}
@media (max-width: 767px) {
  #projects .column h4 {
    margin-bottom: 13px;
    padding-left: 33px;
    width: 100%;
  }
}
#projects .column h4:after {
  background-color: #4c5768;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 18px;
}
@media (max-width: 767px) {
  #projects .column h4:after {
    width: 15px;
  }
}
#projects .column ul {
  width: calc(100% - 250px);
}
@media (max-width: 767px) {
  #projects .column ul {
    width: 100%;
  }
}
#projects .column ul li {
  padding-bottom: 19px;
}
@media (max-width: 767px) {
  #projects .column ul li {
    padding-bottom: 9px;
  }
}
#projects .column ul li + li {
  padding-top: 19px;
}
@media (max-width: 767px) {
  #projects .column ul li + li {
    padding-top: 9px;
  }
}
#projects .column ul li a {
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#projects .column ul li a:hover {
  color: #cf000e;
}
#projects .column ul li img {
  margin-left: 18px;
  width: 16px;
}
@media (max-width: 767px) {
  #projects .column ul li img {
    margin-left: 15px;
  }
}

/****************************************
  助成事業 /grants/
****************************************/
#grants #sec_header {
  height: 320px;
}
@media (max-width: 767px) {
  #grants #sec_header {
    height: 93px;
  }
}
#grants #sec_header h2 img {
  margin: 0 60px 0 0;
}
@media (max-width: 767px) {
  #grants #sec_header h2 img {
    margin: 0 16px 0 0;
    width: 60px;
  }
}
#grants .sec_head {
  padding-top: 130px;
}
@media (max-width: 767px) {
  #grants .sec_head {
    padding-top: 60px;
  }
}
#grants .sec_head .sec_title_head {
  display: flex;
  align-items: center;
  line-height: 1.3;
  margin-bottom: 110px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  #grants .sec_head .sec_title_head {
    margin-bottom: 60px;
  }
}
#grants .sec_head .sec_title_head span:nth-child(1) {
  font-size: 3.2rem;
  letter-spacing: 0.17em;
}
@media (max-width: 767px) {
  #grants .sec_head .sec_title_head span:nth-child(1) {
    font-size: 2rem;
  }
}
#grants .sec_head .sec_title_head span i {
  font-size: 70%;
  letter-spacing: 0.05em;
}
#grants .tab_wrap {
  max-width: 932px;
  margin: 0 auto 60px;
  padding: 0 46px;
}
@media (max-width: 767px) {
  #grants .tab_wrap {
    margin-bottom: 25px;
    padding-left: 23px;
    padding-right: 23px;
  }
}
#grants .tab_wrap .tab_head {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#grants .tab_wrap .tab_head:after {
  background-color: #cf000e;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 767px) {
  #grants .tab_wrap .tab_head:after {
    height: 1px;
  }
}
#grants .tab_wrap .tab_head div {
  align-items: center;
  background-color: #f5f5f5;
  border: 1px solid #949aa4;
  border-bottom: 2px solid #cf000e;
  border-radius: 8px 8px 0 0;
  color: #949aa4;
  cursor: pointer;
  display: flex;
  font-size: 1.8rem;
  height: 66px;
  letter-spacing: 0.177em;
  padding-top: 2px;
  position: relative;
  justify-content: center;
  width: calc(50% - 6px);
  z-index: 20;
}
@media (max-width: 767px) {
  #grants .tab_wrap .tab_head div {
    border-width: 1px;
    border-radius: 4px 4px 0 0;
    font-size: 1.3rem;
    height: 44px;
    letter-spacing: 0.01em;
    width: calc(50% - 3px);
  }
}
#grants .tab_wrap .tab_head div.current {
  background-color: #fff;
  color: #cf000e;
  border: 2px solid #cf000e;
  border-bottom-color: #fff;
  padding-top: 1px;
}
@media (max-width: 767px) {
  #grants .tab_wrap .tab_head div.current {
    border-width: 1px;
  }
}
#grants .tab_content {
  display: none;
  max-width: 932px;
  margin: 0 auto;
}
#grants .tab_content.view {
  display: block;
}
#grants .sec_01 {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  #grants .sec_01 {
    padding-bottom: 60px;
  }
}
#grants .sec_01 .sec_title {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  #grants .sec_01 .sec_title {
    margin-bottom: 25px;
  }
}
#grants .sec_01 .column {
  display: flex;
}
@media (max-width: 767px) {
  #grants .sec_01 .column {
    flex-wrap: wrap;
  }
}
#grants .sec_01 .column + .column {
  margin-top: 45px;
}
@media (max-width: 767px) {
  #grants .sec_01 .column + .column {
    margin-top: 20px;
  }
}
#grants .sec_01 .column h4 {
  line-height: 2.26;
  padding-left: 38px;
  position: relative;
  width: 205px;
}
@media (max-width: 767px) {
  #grants .sec_01 .column h4 {
    margin-bottom: 8px;
    padding-left: 33px;
    width: 100%;
  }
}
#grants .sec_01 .column h4:after {
  background-color: #4c5768;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 18px;
}
@media (max-width: 767px) {
  #grants .sec_01 .column h4:after {
    width: 15px;
  }
}
#grants .sec_01 .column h5 {
  font-weight: bold;
}
#grants .sec_01 .column h5 + p span {
  font-size: 1.3rem;
  color: #949aa4;
  display: block;
}
@media (max-width: 767px) {
  #grants .sec_01 .column h5 + p span {
    font-size: 1.2rem;
    line-height: 2.5;
  }
}
#grants .sec_01 .column .sm {
  font-size: 1.3rem;
  color: #949aa4;
}
@media (max-width: 767px) {
  #grants .sec_01 .column p {
    line-height: 1.4;
    margin-top: 0.2em;
  }
  #grants .sec_01 .column p + p {
    margin-top: 0.4em;
  }
}
#grants .sec_01 .column p + h5 {
  margin-top: 1.4em;
}
@media (max-width: 767px) {
  #grants .sec_01 .column p + h5 {
    margin-top: 1em;
  }
}
#grants .sec_01 .column ul {
  width: calc(100% - 205px);
}
@media (max-width: 767px) {
  #grants .sec_01 .column ul {
    width: 100%;
  }
}
#grants .sec_01 .column ul li {
  line-height: 2.26;
}
@media (max-width: 767px) {
  #grants .sec_01 .column ul li {
    line-height: 2;
  }
}
#grants .sec_01 .column ul li + li {
  border-top: 1px solid rgba(218, 222, 226, 0.5);
  padding-top: 19px;
}
@media (max-width: 767px) {
  #grants .sec_01 .column ul li + li {
    padding-top: 9px;
  }
}
#grants .sec_01 .column ul li a {
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#grants .sec_01 .column ul li a:hover {
  color: #cf000e;
}
#grants .sec_01 .column ul li img {
  margin-left: 18px;
  width: 16px;
}
@media (max-width: 767px) {
  #grants .sec_01 .column ul li img {
    margin-left: 15px;
  }
}
#grants .sec_01 .column .list {
  margin-top: 1em;
  padding-left: 2em;
}
@media (max-width: 767px) {
  #grants .sec_01 .column .list {
    margin-top: 0.5em;
  }
}
#grants .sec_01 .column .list p {
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
#grants .sec_01 .column .list p + p {
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  #grants .sec_01 .column .list p + p {
    margin-top: 0.3em;
  }
}
#grants .sec_01 .column .list2 {
  margin-top: 1em;
}
@media (max-width: 767px) {
  #grants .sec_01 .column .list2 {
    margin-top: 0.5em;
  }
}
#grants .sec_01 .column .list2 p {
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
#grants .sec_01 .column .list2 p + p {
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  #grants .sec_01 .column .list2 p + p {
    margin-top: 0.3em;
  }
}
#grants .sec_01 .column .tlti {
  text-indent: -1em;
  padding-left: 1em;
}
#grants .sec_01 .column .anno {
  font-size: 86.66666666%;
  color: #949aa4;
}
#grants .sec_01 .btn {
  cursor: pointer;
  background-color: #dadee2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  margin: 2.5em auto 0;
  height: 54px;
  max-width: 326px;
  transition: opacity 0.1s;
  width: 100%;
}
@media (max-width: 767px) {
  #grants .sec_01 .btn {
    font-size: 1.2rem;
    width: 90%;
    height: 54px;
  }
}
#grants .sec_01 .btn:hover {
  opacity: 0.8;
}
#grants .sec_01 .btn_1st {
  margin: 2.5em auto 4em;
}
#grants .sec_02 {
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  #grants .sec_02 {
    padding-bottom: 65px;
  }
}
#grants .sec_02 .sec_title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #grants .sec_02 .sec_title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #grants .sec_02 p {
    line-height: 1.5;
  }
}
#grants .sec_02 p.pdf_link {
  margin-top: 1em;
  padding-left: 2em;
}
@media (max-width: 767px) {
  #grants .sec_02 p.pdf_link {
    margin-top: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
  }
}
#grants .sec_03 .sec_title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #grants .sec_03 .sec_title {
    margin-bottom: 30px;
  }
}
#grants .sec_03 h5 {
  margin-bottom: 1em;
}
#grants .sec_03 .column {
  padding-left: 2em;
}
@media (max-width: 767px) {
  #grants .sec_03 .column {
    padding-left: 0;
  }
}
#grants .sec_03 .column + h5 {
  margin-top: 1.3em;
}
#grants .sec_03 ul {
  display: table;
  width: 100%;
}
@media (max-width: 767px) {
  #grants .sec_03 ul {
    display: block;
  }
}
#grants .sec_03 ul + ul {
  margin-top: 0.55em;
}
@media (max-width: 767px) {
  #grants .sec_03 ul + ul {
    margin-top: 1.3em;
  }
}
#grants .sec_03 ul li {
  display: table-cell;
}
@media (max-width: 767px) {
  #grants .sec_03 ul li {
    display: block;
  }
}
#grants .sec_03 ul li:nth-child(1) {
  width: 30%;
}
@media (max-width: 767px) {
  #grants .sec_03 ul li:nth-child(1) {
    margin-bottom: 0.2em;
    width: 100%;
  }
}
@media (max-width: 767px) {
  #grants .sec_03 ul li:nth-child(2) {
    padding-left: 1em;
  }
}
#grants .sec_03 .pdf_link span {
  margin-left: 2.1em;
  color: #949aa4;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  #grants .sec_03 .pdf_link span {
    margin-left: 1.2em;
  }
}
#grants .sec_03 .pdf_link a + a {
  margin-left: 1.8em;
}
@media (max-width: 767px) {
  #grants .sec_03 .pdf_link a + a {
    margin-left: 1em;
  }
}
#grants .sec_03 .line {
  border-color: #ced3d9;
  margin-top: 122px;
}
@media (max-width: 767px) {
  #grants .sec_03 .line {
    margin-top: 62px;
  }
}
#grants .sec_04 {
  padding-bottom: 125px;
}
@media (max-width: 767px) {
  #grants .sec_04 {
    padding-bottom: 60px;
  }
}
#grants .sec_04 .sec_title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #grants .sec_04 .sec_title {
    margin-bottom: 28px;
  }
}
#grants .sec_04 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#grants .sec_04 ul + h4 {
  margin-top: 3em;
}
@media (max-width: 767px) {
  #grants .sec_04 ul.column2 li {
    width: 100% !important;
  }
}
#grants .sec_04 ul li {
  line-height: 2;
}
#grants .sec_04 ul li:nth-child(1) {
  width: 225px;
}
#grants .sec_04 ul li:nth-child(2) {
  width: calc(100% - 225px);
}
@media (max-width: 767px) {
  #grants .sec_04 ul li:nth-child(2) {
    padding-left: 1em;
  }
}
@media (max-width: 767px) {
  #grants .sec_04 ul li {
    line-height: 1.7;
  }
}

/****************************************
  プライバシーポリシー /privacy/
****************************************/
#privacy #sec_header {
  height: 160px;
}
@media (max-width: 767px) {
  #privacy #sec_header {
    height: 92px;
  }
}
@media (max-width: 767px) {
  #privacy #sec_header h2 {
    width: auto;
  }
}
#privacy .sec_01 {
  padding-bottom: 123px;
  padding-top: 120px;
}
@media (max-width: 767px) {
  #privacy .sec_01 {
    padding-bottom: 60px;
    padding-top: 65px;
  }
}
#privacy .sec_01 .sec_title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #privacy .sec_01 .sec_title {
    margin-bottom: 25px;
  }
}
#privacy .sec_01 p {
  line-height: 2;
}
@media (max-width: 767px) {
  #privacy .sec_01 p {
    line-height: 1.76;
  }
}
#privacy .sec_01 p + p {
  margin-top: 2em;
}
#privacy .sec_01 ul li {
  line-height: 2em;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 767px) {
  #privacy .sec_01 ul li {
    line-height: 1.76;
  }
}
#privacy .sec_01 ul + p {
  margin-top: 2em;
}
#privacy .sec_01 a {
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#privacy .sec_01 a:hover {
  color: #cf000e;
}

/****************************************
  お問い合わせ /contact/
****************************************/
#contact #sec_header {
  height: 320px;
}
@media (max-width: 767px) {
  #contact #sec_header {
    height: 93px;
  }
}
#contact #sec_header h2 img {
  margin: 0 78px 0 0;
}
@media (max-width: 767px) {
  #contact #sec_header h2 img {
    margin: 0 17px 0 0;
    width: 60px;
  }
}
#contact .sec_01 {
  padding-bottom: 128px;
  padding-top: 123px;
}
@media (max-width: 767px) {
  #contact .sec_01 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
#contact .sec_01 .read {
  text-align: center;
  margin-bottom: 84px;
}
@media (max-width: 767px) {
  #contact .sec_01 .read {
    margin-bottom: 25px;
  }
}
#contact .sec_01 .column {
  background-color: #f3f4f5;
  padding: 55px 65px;
}
@media (max-width: 767px) {
  #contact .sec_01 .column {
    padding: 40px 23px;
  }
}
#contact .sec_01 .column h3 {
  font-size: 2.4rem;
  letter-spacing: 0.17em;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #contact .sec_01 .column h3 {
    font-size: 2rem;
    margin-bottom: 13px;
  }
}
#contact .sec_01 .column .box {
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  #contact .sec_01 .column .box {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  #contact .sec_01 .column .box div {
    width: 100% !important;
  }
}
#contact .sec_01 .column .box div:nth-child(1) {
  width: 54%;
}
@media (max-width: 767px) {
  #contact .sec_01 .column .box div:nth-child(1) {
    margin-bottom: 13px;
  }
}
#contact .sec_01 .column .box div:nth-child(1) p {
  line-height: 2;
}
@media (max-width: 767px) {
  #contact .sec_01 .column .box div:nth-child(1) p {
    line-height: 1.8;
  }
}
#contact .sec_01 .column .box div:nth-child(2) {
  width: 46%;
}
#contact .sec_01 .column .box div:nth-child(2) p {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  #contact .sec_01 .column .box div:nth-child(2) p {
    font-size: 1.1rem;
  }
}
#contact .sec_01 .column .box div ul {
  display: flex;
  width: 100%;
}
#contact .sec_01 .column .box div ul li {
  line-height: 2;
}
@media (max-width: 767px) {
  #contact .sec_01 .column .box div ul li {
    line-height: 1.8;
  }
}
#contact .sec_01 .column .box div ul li:nth-child(1) {
  width: 70px;
}
#contact .sec_01 .column .box div ul li:nth-child(2) {
  width: calc(100% - 70px);
}
#contact .sec_01 .column .box div ul li a.mail {
  color: #cf000e;
  text-decoration: underline;
}

/****************************************
  404
****************************************/
#err404 article {
  display: flex;
  align-items: center;
}
#err404 section {
  width: 100%;
}
#err404 h3 {
  font-size: 3.2rem;
  letter-spacing: 0.177em;
  margin-bottom: 1.2em;
}
@media (max-width: 767px) {
  #err404 h3 {
    font-size: 2.3rem;
    line-height: 1.7;
  }
}
#err404 p {
  letter-spacing: 0.03em;
  line-height: 2;
  margin-bottom: 4em;
}
@media (max-width: 767px) {
  #err404 p {
    margin-bottom: 3em;
  }
}
#err404 .btn {
  align-items: center;
  background-color: #dadee2;
  border-radius: 4px;
  display: flex;
  height: 54px;
  letter-spacing: 0.03em;
  margin: 0 auto;
  justify-content: center;
  width: 326px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 767px) {
  #err404 .btn {
    height: 47px;
    width: 86%;
  }
}
#err404 .btn:hover {
  color: #cf000e;
}

/*------------------------
  option.css
------------------------*/
.mb10 {
  margin-bottom: 10px !important;
}

.pc_disp_inline {
  display: inline !important;
}

.pc_disp_inline_b {
  display: inline-block !important;
}

.pc_disp_block {
  display: block !important;
}

.pc_disp_table_c {
  display: table-cell !important;
}

.pc_disp_table {
  display: table !important;
}

.sp_disp_inline {
  display: none !important;
}

.sp_disp_inline_b {
  display: none !important;
}

.sp_disp_block {
  display: none !important;
}

.sp_disp_table_c {
  display: none !important;
}

.sp_disp_table {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc_disp_inline {
    display: none !important;
  }
  .pc_disp_inline_b {
    display: none !important;
  }
  .pc_disp_block {
    display: none !important;
  }
  .pc_disp_table {
    display: none !important;
  }
  .pc_disp_table_c {
    display: none !important;
  }
  .sp_disp_inline {
    display: inline !important;
  }
  .sp_disp_inline_b {
    display: inline-block !important;
  }
  .sp_disp_block {
    display: block !important;
  }
  .sp_disp_table_c {
    display: table-cell !important;
  }
  .sp_disp_table {
    display: table !important;
  }
}
.tab_disp_inline {
  display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .tab_disp_inline {
    display: inline !important;
  }
}
@media screen and (max-width: 767px) {
  .tab_disp_inline {
    display: none !important;
  }
}
.w_100 {
  width: 100%;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.fwb {
  font-weight: bold;
}/*# sourceMappingURL=main.css.map */