@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).
 */
@import url("https://fonts.googleapis.com/css?family=Lato:700");
*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  /* 2 */
  background-repeat: no-repeat;
  /* 1 */
}

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

/**
 * 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 {
  -webkit-box-sizing: border-box;
  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 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* 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 {
  overflow: visible;
  /* 2 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
}

/**
 * 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-size: 1em;
  /* 2 */
  font-family: monospace, monospace;
  /* 1 */
}

/* 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-size: 1em;
  /* 2 */
  font-family: monospace, monospace;
  /* 1 */
}

/**
 * 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: #ff0;
  color: #000;
}

/**
 * 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 {
  position: relative;
  font-size: 75%;
  line-height: 0;
  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: #000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000;
  /* 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 {
  padding: 0;
  border-style: none;
}

/**
 * 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 {
  display: table;
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  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] {
  -webkit-box-sizing: border-box;
  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] {
  outline-offset: -2px;
  /* 2 */
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * 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 {
  font: inherit;
  /* 2 */
  -webkit-appearance: button;
  /* 1 */
}

/* 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] {
  -ms-touch-action: manipulation;
  /* 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) {
  display: inherit;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

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

/* Slider */
.slick-slider {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@media only screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .hidden-tb {
    display: none !important;
  }
}
@media (min-width: 1240px) {
  .hidden-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 1239px) {
  .hidden-sp-tb {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-tb-pc {
    display: none !important;
  }
}
.imgResponsive {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

*:link,
*:visited {
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
  font-size: inherit;
}

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

li {
  list-style: none;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

small {
  font-size: inherit;
}

address {
  font-style: normal;
}

::-moz-selection {
  background-color: #aaa;
  color: #221815;
}

::selection {
  background-color: #aaa;
  color: #221815;
}

:root,
body {
  font-size: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  :root,
  body {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  :root,
  body {
    font-size: 14px;
  }
}
html body {
  background-color: #fff;
  color: #221815;
  line-height: 2;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

*:focus {
  outline: none;
}

@media all and (-ms-high-contrast: none) {
  * {
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
  }
}
.col--1 {
  width: 68px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--1 {
    width: 43.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--1 {
    width: 3.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--1--tb {
    width: 43.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--1--tb {
    width: 3.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--1--sp {
    width: 3.625vw;
  }
}
.col--2 {
  width: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--2 {
    width: 105px;
  }
}
@media only screen and (max-width: 767px) {
  .col--2 {
    width: 11.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--2--tb {
    width: 105px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--2--tb {
    width: 11.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--2--sp {
    width: 11.25vw;
  }
}
.col--3, .pageLinks__link {
  width: 252px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--3, .pageLinks__link {
    width: 166.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--3, .pageLinks__link {
    width: 18.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--3--tb {
    width: 166.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--3--tb {
    width: 18.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--3--sp {
    width: 18.875vw;
  }
}
.col--4, .boxLinkWrapper--col3 .boxLink, .boxLinkWrapper--col2--s .boxLink {
  width: 344px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--4, .boxLinkWrapper--col3 .boxLink, .boxLinkWrapper--col2--s .boxLink {
    width: 228px;
  }
}
@media only screen and (max-width: 767px) {
  .col--4, .boxLinkWrapper--col3 .boxLink, .boxLinkWrapper--col2--s .boxLink {
    width: 26.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--4--tb {
    width: 228px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--4--tb {
    width: 26.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--4--sp {
    width: 26.5vw;
  }
}
.col--5, .btn, .btn--white, .homeAbout__main__content__btn, .btn--black, .newsNav__index, .boxLinkWrapper--col2 .boxLink {
  width: 436px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--5, .btn, .btn--white, .homeAbout__main__content__btn, .btn--black, .newsNav__index, .boxLinkWrapper--col2 .boxLink {
    width: 289.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--5, .btn, .btn--white, .homeAbout__main__content__btn, .btn--black, .newsNav__index, .boxLinkWrapper--col2 .boxLink {
    width: 34.125vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--5--tb, body .boxLinkWrapper--col2--s .boxLink, .boxLinkWrapper--col2--s body .boxLink {
    width: 289.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--5--tb, body .boxLinkWrapper--col2--s .boxLink, .boxLinkWrapper--col2--s body .boxLink {
    width: 34.125vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--5--sp {
    width: 34.125vw;
  }
}
.col--6, .footlinks__smallbanner, .homeFooterNav .boxLinkWrapper--col2 .boxLink, .homeFooterLinks .footlinks__smallbanner, .recruitPageLinks__link {
  width: 528px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--6, .footlinks__smallbanner, .homeFooterNav .boxLinkWrapper--col2 .boxLink, .homeFooterLinks .footlinks__smallbanner, .recruitPageLinks__link {
    width: 351px;
  }
}
@media only screen and (max-width: 767px) {
  .col--6, .footlinks__smallbanner, .homeFooterNav .boxLinkWrapper--col2 .boxLink, .homeFooterLinks .footlinks__smallbanner, .recruitPageLinks__link {
    width: 41.75vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--6--tb, body .boxLinkWrapper--col2 .boxLink, .boxLinkWrapper--col2 body .boxLink {
    width: 351px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--6--tb, body .boxLinkWrapper--col2 .boxLink, .boxLinkWrapper--col2 body .boxLink {
    width: 41.75vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--6--sp {
    width: 41.75vw;
  }
}
.col--7 {
  width: 620px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--7 {
    width: 412.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--7 {
    width: 49.375vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--7--tb, body .btn, body .btn--white, body .homeAbout__main__content__btn, body .btn--black, body .newsNav__index {
    width: 412.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--7--tb, body .btn, body .btn--white, body .homeAbout__main__content__btn, body .btn--black, body .newsNav__index {
    width: 49.375vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--7--sp {
    width: 49.375vw;
  }
}
.col--8, .container--s, .boxLinkWrapper--col2--s, .aboutPhilosophy__inner, .recruitSeeking ol, .senior-voice__message__inner {
  width: 712px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--8, .container--s, .boxLinkWrapper--col2--s, .aboutPhilosophy__inner, .recruitSeeking ol, .senior-voice__message__inner {
    width: 474px;
  }
}
@media only screen and (max-width: 767px) {
  .col--8, .container--s, .boxLinkWrapper--col2--s, .aboutPhilosophy__inner, .recruitSeeking ol, .senior-voice__message__inner {
    width: 57vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--8--tb, body .footlinks__smallbanner {
    width: 474px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--8--tb, body .footlinks__smallbanner {
    width: 57vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--8--sp {
    width: 57vw;
  }
}
.col--9 {
  width: 804px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--9 {
    width: 535.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--9 {
    width: 64.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--9--tb, body .recruitSeeking ol, .recruitSeeking body ol {
    width: 535.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--9--tb, body .recruitSeeking ol, .recruitSeeking body ol {
    width: 64.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--9--sp {
    width: 64.625vw;
  }
}
.col--10, .container--m, .pageLead, .boxLinkWrapper--col2, .senior-voice {
  width: 896px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--10, .container--m, .pageLead, .boxLinkWrapper--col2, .senior-voice {
    width: 597px;
  }
}
@media only screen and (max-width: 767px) {
  .col--10, .container--m, .pageLead, .boxLinkWrapper--col2, .senior-voice {
    width: 72.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--10--tb, body .container--s, body .boxLinkWrapper--col2--s, body .aboutPhilosophy__inner, body .senior-voice__message__inner {
    width: 597px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--10--tb, body .container--s, body .boxLinkWrapper--col2--s, body .aboutPhilosophy__inner, body .senior-voice__message__inner {
    width: 72.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--10--sp {
    width: 72.25vw;
  }
}
.col--11 {
  width: 988px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--11 {
    width: 658.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--11 {
    width: 79.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--11--tb {
    width: 658.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--11--tb {
    width: 79.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--11--sp {
    width: 79.875vw;
  }
}
.col--12 {
  width: 1080px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--12 {
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .col--12 {
    width: 87.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--12--tb, body .container--m, body .pageLead, body .boxLinkWrapper--col2, body .senior-voice {
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--12--tb, body .container--m, body .pageLead, body .boxLinkWrapper--col2, body .senior-voice {
    width: 87.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--12--sp, html body .container--s, html body .btn, html body .btn--white, html body .homeAbout__main__content__btn, html body .btn--black, html body .newsNav__index, html body .pageLinks__link, html body .footlinks__smallbanner, html body .boxLinkWrapper--col3 .boxLink, .boxLinkWrapper--col3 html body .boxLink, html body .boxLinkWrapper--col2 .boxLink, .boxLinkWrapper--col2 html body .boxLink, html body .boxLinkWrapper--col2--s, html body .boxLinkWrapper--col2--s .boxLink, .boxLinkWrapper--col2--s html body .boxLink, html body .homeFooterNav .boxLinkWrapper--col2 .boxLink, .homeFooterNav .boxLinkWrapper--col2 html body .boxLink, html body .homeFooterLinks .footlinks__smallbanner, .homeFooterLinks html body .footlinks__smallbanner, html body .recruitPageLinks__link {
    width: 87.5vw;
  }
}
.col--offsetPadding--left--1 {
  padding-left: 92px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--1 {
    padding-left: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--1 {
    padding-left: 7.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--1--tb {
    padding-left: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--1--tb {
    padding-left: 7.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--1--sp {
    padding-left: 7.625vw;
  }
}
.col--offsetPadding--left--2 {
  padding-left: 184px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--2 {
    padding-left: 123px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--2 {
    padding-left: 15.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--2--tb {
    padding-left: 123px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--2--tb {
    padding-left: 15.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--2--sp {
    padding-left: 15.25vw;
  }
}
.col--offsetPadding--left--3 {
  padding-left: 276px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--3 {
    padding-left: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--3 {
    padding-left: 22.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--3--tb {
    padding-left: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--3--tb {
    padding-left: 22.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--3--sp {
    padding-left: 22.875vw;
  }
}
.col--offsetPadding--left--4 {
  padding-left: 368px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--4 {
    padding-left: 246px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--4 {
    padding-left: 30.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--4--tb {
    padding-left: 246px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--4--tb {
    padding-left: 30.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--4--sp {
    padding-left: 30.5vw;
  }
}
.col--offsetPadding--left--5 {
  padding-left: 460px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--5 {
    padding-left: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--5 {
    padding-left: 38.125vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--5--tb {
    padding-left: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--5--tb {
    padding-left: 38.125vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--5--sp {
    padding-left: 38.125vw;
  }
}
.col--offsetPadding--left--6 {
  padding-left: 552px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--6 {
    padding-left: 369px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--6 {
    padding-left: 45.75vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--6--tb {
    padding-left: 369px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--6--tb {
    padding-left: 45.75vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--6--sp {
    padding-left: 45.75vw;
  }
}
.col--offsetPadding--left--7 {
  padding-left: 644px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--7 {
    padding-left: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--7 {
    padding-left: 53.375vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--7--tb {
    padding-left: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--7--tb {
    padding-left: 53.375vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--7--sp {
    padding-left: 53.375vw;
  }
}
.col--offsetPadding--left--8 {
  padding-left: 736px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--8 {
    padding-left: 492px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--8 {
    padding-left: 61vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--8--tb {
    padding-left: 492px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--8--tb {
    padding-left: 61vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--8--sp {
    padding-left: 61vw;
  }
}
.col--offsetPadding--left--9 {
  padding-left: 828px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--9 {
    padding-left: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--9 {
    padding-left: 68.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--9--tb {
    padding-left: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--9--tb {
    padding-left: 68.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--9--sp {
    padding-left: 68.625vw;
  }
}
.col--offsetPadding--left--10 {
  padding-left: 920px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--10 {
    padding-left: 615px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--10 {
    padding-left: 76.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--10--tb {
    padding-left: 615px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--10--tb {
    padding-left: 76.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--10--sp {
    padding-left: 76.25vw;
  }
}
.col--offsetPadding--left--11 {
  padding-left: 1012px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--11 {
    padding-left: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--11 {
    padding-left: 83.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--11--tb {
    padding-left: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--11--tb {
    padding-left: 83.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--11--sp {
    padding-left: 83.875vw;
  }
}
.col--offsetPadding--left--12 {
  padding-left: 1104px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--left--12 {
    padding-left: 738px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--left--12 {
    padding-left: 91.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--left--12--tb {
    padding-left: 738px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--left--12--tb {
    padding-left: 91.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--left--12--sp {
    padding-left: 91.5vw;
  }
}
.col--offsetMargin--left--1 {
  margin-left: 92px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--1 {
    margin-left: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--1 {
    margin-left: 7.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--1--tb {
    margin-left: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--1--tb {
    margin-left: 7.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--1--sp {
    margin-left: 7.625vw;
  }
}
.col--offsetMargin--left--2 {
  margin-left: 184px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--2 {
    margin-left: 123px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--2 {
    margin-left: 15.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--2--tb {
    margin-left: 123px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--2--tb {
    margin-left: 15.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--2--sp {
    margin-left: 15.25vw;
  }
}
.col--offsetMargin--left--3 {
  margin-left: 276px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--3 {
    margin-left: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--3 {
    margin-left: 22.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--3--tb {
    margin-left: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--3--tb {
    margin-left: 22.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--3--sp {
    margin-left: 22.875vw;
  }
}
.col--offsetMargin--left--4 {
  margin-left: 368px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--4 {
    margin-left: 246px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--4 {
    margin-left: 30.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--4--tb {
    margin-left: 246px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--4--tb {
    margin-left: 30.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--4--sp {
    margin-left: 30.5vw;
  }
}
.col--offsetMargin--left--5 {
  margin-left: 460px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--5 {
    margin-left: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--5 {
    margin-left: 38.125vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--5--tb {
    margin-left: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--5--tb {
    margin-left: 38.125vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--5--sp {
    margin-left: 38.125vw;
  }
}
.col--offsetMargin--left--6 {
  margin-left: 552px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--6 {
    margin-left: 369px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--6 {
    margin-left: 45.75vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--6--tb {
    margin-left: 369px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--6--tb {
    margin-left: 45.75vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--6--sp {
    margin-left: 45.75vw;
  }
}
.col--offsetMargin--left--7 {
  margin-left: 644px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--7 {
    margin-left: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--7 {
    margin-left: 53.375vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--7--tb {
    margin-left: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--7--tb {
    margin-left: 53.375vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--7--sp {
    margin-left: 53.375vw;
  }
}
.col--offsetMargin--left--8 {
  margin-left: 736px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--8 {
    margin-left: 492px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--8 {
    margin-left: 61vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--8--tb {
    margin-left: 492px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--8--tb {
    margin-left: 61vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--8--sp {
    margin-left: 61vw;
  }
}
.col--offsetMargin--left--9 {
  margin-left: 828px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--9 {
    margin-left: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--9 {
    margin-left: 68.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--9--tb {
    margin-left: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--9--tb {
    margin-left: 68.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--9--sp {
    margin-left: 68.625vw;
  }
}
.col--offsetMargin--left--10 {
  margin-left: 920px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--10 {
    margin-left: 615px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--10 {
    margin-left: 76.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--10--tb {
    margin-left: 615px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--10--tb {
    margin-left: 76.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--10--sp {
    margin-left: 76.25vw;
  }
}
.col--offsetMargin--left--11 {
  margin-left: 1012px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--11 {
    margin-left: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--11 {
    margin-left: 83.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--11--tb {
    margin-left: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--11--tb {
    margin-left: 83.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--11--sp {
    margin-left: 83.875vw;
  }
}
.col--offsetMargin--left--12 {
  margin-left: 1104px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--left--12 {
    margin-left: 738px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--left--12 {
    margin-left: 91.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--left--12--tb {
    margin-left: 738px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--left--12--tb {
    margin-left: 91.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--left--12--sp {
    margin-left: 91.5vw;
  }
}
.col--offsetPadding--right--1 {
  padding-right: 92px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--1 {
    padding-right: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--1 {
    padding-right: 7.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--1--tb {
    padding-right: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--1--tb {
    padding-right: 7.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--1--sp {
    padding-right: 7.625vw;
  }
}
.col--offsetPadding--right--2 {
  padding-right: 184px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--2 {
    padding-right: 123px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--2 {
    padding-right: 15.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--2--tb {
    padding-right: 123px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--2--tb {
    padding-right: 15.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--2--sp {
    padding-right: 15.25vw;
  }
}
.col--offsetPadding--right--3 {
  padding-right: 276px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--3 {
    padding-right: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--3 {
    padding-right: 22.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--3--tb {
    padding-right: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--3--tb {
    padding-right: 22.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--3--sp {
    padding-right: 22.875vw;
  }
}
.col--offsetPadding--right--4 {
  padding-right: 368px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--4 {
    padding-right: 246px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--4 {
    padding-right: 30.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--4--tb {
    padding-right: 246px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--4--tb {
    padding-right: 30.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--4--sp {
    padding-right: 30.5vw;
  }
}
.col--offsetPadding--right--5 {
  padding-right: 460px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--5 {
    padding-right: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--5 {
    padding-right: 38.125vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--5--tb {
    padding-right: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--5--tb {
    padding-right: 38.125vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--5--sp {
    padding-right: 38.125vw;
  }
}
.col--offsetPadding--right--6 {
  padding-right: 552px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--6 {
    padding-right: 369px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--6 {
    padding-right: 45.75vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--6--tb {
    padding-right: 369px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--6--tb {
    padding-right: 45.75vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--6--sp {
    padding-right: 45.75vw;
  }
}
.col--offsetPadding--right--7 {
  padding-right: 644px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--7 {
    padding-right: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--7 {
    padding-right: 53.375vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--7--tb {
    padding-right: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--7--tb {
    padding-right: 53.375vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--7--sp {
    padding-right: 53.375vw;
  }
}
.col--offsetPadding--right--8 {
  padding-right: 736px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--8 {
    padding-right: 492px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--8 {
    padding-right: 61vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--8--tb {
    padding-right: 492px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--8--tb {
    padding-right: 61vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--8--sp {
    padding-right: 61vw;
  }
}
.col--offsetPadding--right--9 {
  padding-right: 828px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--9 {
    padding-right: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--9 {
    padding-right: 68.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--9--tb {
    padding-right: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--9--tb {
    padding-right: 68.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--9--sp {
    padding-right: 68.625vw;
  }
}
.col--offsetPadding--right--10 {
  padding-right: 920px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--10 {
    padding-right: 615px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--10 {
    padding-right: 76.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--10--tb {
    padding-right: 615px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--10--tb {
    padding-right: 76.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--10--sp {
    padding-right: 76.25vw;
  }
}
.col--offsetPadding--right--11 {
  padding-right: 1012px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--11 {
    padding-right: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--11 {
    padding-right: 83.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--11--tb {
    padding-right: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--11--tb {
    padding-right: 83.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--11--sp {
    padding-right: 83.875vw;
  }
}
.col--offsetPadding--right--12 {
  padding-right: 1104px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetPadding--right--12 {
    padding-right: 738px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetPadding--right--12 {
    padding-right: 91.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetPadding--right--12--tb {
    padding-right: 738px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetPadding--right--12--tb {
    padding-right: 91.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetPadding--right--12--sp {
    padding-right: 91.5vw;
  }
}
.col--offsetMargin--right--1 {
  margin-right: 92px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--1 {
    margin-right: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--1 {
    margin-right: 7.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--1--tb {
    margin-right: 61.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--1--tb {
    margin-right: 7.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--1--sp {
    margin-right: 7.625vw;
  }
}
.col--offsetMargin--right--2 {
  margin-right: 184px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--2 {
    margin-right: 123px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--2 {
    margin-right: 15.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--2--tb {
    margin-right: 123px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--2--tb {
    margin-right: 15.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--2--sp {
    margin-right: 15.25vw;
  }
}
.col--offsetMargin--right--3 {
  margin-right: 276px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--3 {
    margin-right: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--3 {
    margin-right: 22.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--3--tb {
    margin-right: 184.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--3--tb {
    margin-right: 22.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--3--sp {
    margin-right: 22.875vw;
  }
}
.col--offsetMargin--right--4 {
  margin-right: 368px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--4 {
    margin-right: 246px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--4 {
    margin-right: 30.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--4--tb {
    margin-right: 246px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--4--tb {
    margin-right: 30.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--4--sp {
    margin-right: 30.5vw;
  }
}
.col--offsetMargin--right--5 {
  margin-right: 460px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--5 {
    margin-right: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--5 {
    margin-right: 38.125vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--5--tb {
    margin-right: 307.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--5--tb {
    margin-right: 38.125vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--5--sp {
    margin-right: 38.125vw;
  }
}
.col--offsetMargin--right--6 {
  margin-right: 552px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--6 {
    margin-right: 369px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--6 {
    margin-right: 45.75vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--6--tb {
    margin-right: 369px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--6--tb {
    margin-right: 45.75vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--6--sp {
    margin-right: 45.75vw;
  }
}
.col--offsetMargin--right--7 {
  margin-right: 644px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--7 {
    margin-right: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--7 {
    margin-right: 53.375vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--7--tb {
    margin-right: 430.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--7--tb {
    margin-right: 53.375vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--7--sp {
    margin-right: 53.375vw;
  }
}
.col--offsetMargin--right--8 {
  margin-right: 736px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--8 {
    margin-right: 492px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--8 {
    margin-right: 61vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--8--tb {
    margin-right: 492px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--8--tb {
    margin-right: 61vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--8--sp {
    margin-right: 61vw;
  }
}
.col--offsetMargin--right--9 {
  margin-right: 828px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--9 {
    margin-right: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--9 {
    margin-right: 68.625vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--9--tb {
    margin-right: 553.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--9--tb {
    margin-right: 68.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--9--sp {
    margin-right: 68.625vw;
  }
}
.col--offsetMargin--right--10 {
  margin-right: 920px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--10 {
    margin-right: 615px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--10 {
    margin-right: 76.25vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--10--tb {
    margin-right: 615px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--10--tb {
    margin-right: 76.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--10--sp {
    margin-right: 76.25vw;
  }
}
.col--offsetMargin--right--11 {
  margin-right: 1012px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--11 {
    margin-right: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--11 {
    margin-right: 83.875vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--11--tb {
    margin-right: 676.5px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--11--tb {
    margin-right: 83.875vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--11--sp {
    margin-right: 83.875vw;
  }
}
.col--offsetMargin--right--12 {
  margin-right: 1104px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .col--offsetMargin--right--12 {
    margin-right: 738px;
  }
}
@media only screen and (max-width: 767px) {
  .col--offsetMargin--right--12 {
    margin-right: 91.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  body .col--offsetMargin--right--12--tb {
    margin-right: 738px;
  }
}
@media only screen and (max-width: 767px) {
  body .col--offsetMargin--right--12--tb {
    margin-right: 91.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html body .col--offsetMargin--right--12--sp {
    margin-right: 91.5vw;
  }
}
.textCenter {
  text-align: center;
}

.mgCenter {
  margin-right: auto;
  margin-left: auto;
}

.container, .pageContainer, .pageLead--l, .boxLinkWrapper--col3, .footerGlobal__upper, .footerGlobal__lower__container, .homeProduct__upper, .homeFooterNav .boxLinkWrapper--col2, .homeFooterLinks {
  width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .container, .pageContainer, .pageLead--l, .boxLinkWrapper--col3, .footerGlobal__upper, .footerGlobal__lower__container, .homeProduct__upper, .homeFooterNav .boxLinkWrapper--col2, .homeFooterLinks {
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container, .pageContainer, .pageLead--l, .boxLinkWrapper--col3, .footerGlobal__upper, .footerGlobal__lower__container, .homeProduct__upper, .homeFooterNav .boxLinkWrapper--col2, .homeFooterLinks {
    width: 87.5vw;
  }
}
.mt--l, .homeFooterLinks {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .mt--l, .homeFooterLinks {
    margin-top: 12vw;
  }
}
.mb--l, .homeProduct__upper, .homeFooterLinks, .newsContent, .newsNav {
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .mb--l, .homeCenterLink, .homeProduct__upper, .homeFooterLinks, .newsContent, .newsNav {
    margin-bottom: 12vw;
  }
}
.mb--m, .newsArchive, .newsContent table {
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .mb--m, .newsArchive, .newsContent table {
    margin-bottom: 8vw;
  }
}
.mb--s, .pageSection__titleSub01, .newsContent h3, .homeAbout__main__content__icon, .homeProduct__icon, .homeAbout__main__content__title, .homeProduct__title, .homeAbout__main__content__body, .newsList__header {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .mb--s, .pageSection__titleSub01, .newsContent h3, .homeAbout__main__content__icon, .homeProduct__icon, .homeAbout__main__content__title, .homeProduct__title, .homeAbout__main__content__body, .newsList__header {
    margin-bottom: 3vw;
  }
}
.mb--xs, .newsArchive__title {
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .mb--xs, .newsArchive__title {
    margin-bottom: 2vw;
  }
}
.container--m, .pageLead, .boxLinkWrapper--col2, .senior-voice {
  margin-right: auto;
  margin-left: auto;
}

.container--s {
  margin-right: auto;
  margin-left: auto;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #ccc;
}

.textLink {
  color: #6998d2;
}

.textLink.popup::after {
  content: url("../images/icon_popup_navy.png");
  margin-left: 0.4em;
}

.textGray {
  color: #999;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

.textLarge {
  font-size: 1.4em;
}

.textSmall {
  font-size: 0.8em;
}

.navGlobal {
  margin: 0;
}

.navGlobal__link {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .navGlobal__link {
    display: block;
    border-bottom: 1px solid #c4c4c4;
    text-align: left;
  }
}
.navGlobal__link a {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .navGlobal__link a {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .navGlobal__link a {
    display: block;
    position: relative;
    padding: 4.5vw 6.25vw;
  }
  .navGlobal__link a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 6.25vw;
    width: 5vw;
    height: 5vw;
    border-top: 2px solid #c4c4c4;
    border-right: 2px solid #c4c4c4;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
}
.btn, .btn--white, .homeAbout__main__content__btn, .btn--black, .newsNav__index {
  margin-right: auto;
  margin-left: auto;
  display: block;
  border: 1px solid #2f539b;
  border-radius: 6px;
  background-color: #fff;
  background-position: right 12px center;
  color: #2f539b;
  line-height: 70px;
  text-align: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAGCAYAAAAPDoR2AAAAO0lEQVQYV2OMrdz4P9JTm8HLToWRAQ0w6gfP/g8S01MTYwApMtWVYhAV5AIrhEsia4IpJE4Sq7H4HAQAS4wWrdbLO30AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
}

.btn--white, .homeAbout__main__content__btn {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAMElEQVQYV2P8////GQYGhkZGRsbNDEiA8f////+h/LPICpAlYOpBCrYQJYFhFFbLAXPoIQFKClRGAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
}

.btn--black, .newsNav__index {
  border-color: #000;
  color: #000;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAGCAYAAAAPDoR2AAAAO0lEQVQYV2OMrdz4P9JTm8HLToWRAQ0w6gfP/g8S01MTYwApMtWVYhAV5AIrhEsia4IpJE4Sq7H4HAQAS4wWrdbLO30AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
}

.btnPopup {
  display: block;
  padding: 1rem 0;
  border-radius: 10px;
  background-color: #2f539b;
  background-image: url("../images/icon_popup.png");
  background-repeat: no-repeat;
  background-position: right 15px bottom 15px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.btnEntry {
  display: block;
  padding: 2rem 0;
  border-radius: 10px;
  background-color: #ff9d11;
  color: #fff;
  text-align: center;
}

.btnEntry__english {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Lato", serif;
  letter-spacing: 0.2em;
}

.btnEntry__japanese {
  font-size: 0.8rem;
  line-height: 1;
}

.tableDefault, .tableDefault--small, .tableDefault--small--onColor, .newsContent table {
  width: 100%;
  border-bottom: 1px dotted #ccc;
}

.tableDefault th, .tableDefault--small th, .tableDefault--small--onColor th, .newsContent table th,
.tableDefault td, .tableDefault--small td, .tableDefault--small--onColor td, .newsContent table td {
  padding: 30px;
  border-top: 1px dotted #ccc;
}

@media only screen and (max-width: 767px) {
  .tableDefault th, .tableDefault--small th, .tableDefault--small--onColor th, .newsContent table th,
  .tableDefault td, .tableDefault--small td, .tableDefault--small--onColor td, .newsContent table td {
    padding: 3vw;
  }
}
.tableDefault th p, .tableDefault--small th p, .tableDefault--small--onColor th p, .newsContent table th p,
.tableDefault td p, .tableDefault--small td p, .tableDefault--small--onColor td p, .newsContent table td p {
  margin-bottom: 1.6em;
}

.tableDefault th p:last-child, .tableDefault--small th p:last-child, .tableDefault--small--onColor th p:last-child, .newsContent table th p:last-child,
.tableDefault td p:last-child, .tableDefault--small td p:last-child, .tableDefault--small--onColor td p:last-child, .newsContent table td p:last-child {
  margin-bottom: 0;
}

.tableDefault th, .tableDefault--small th, .tableDefault--small--onColor th, .newsContent table th {
  background-color: #eff3fb;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .tableDefault--small, .tableDefault--small--onColor {
    padding: 2vw 0;
  }
}
.tableDefault--small th, .tableDefault--small--onColor th,
.tableDefault--small td, .tableDefault--small--onColor td {
  padding: 10px 30px;
}

@media only screen and (max-width: 767px) {
  .tableDefault--small th, .tableDefault--small--onColor th,
  .tableDefault--small td, .tableDefault--small--onColor td {
    padding: 2vw;
  }
}
.tableDefault--small--onColor th {
  background-color: #e3e3e3;
}

.tableDefault--small--onColor td {
  background-color: #fff;
}

.ulDisc li::before {
  content: "・ ";
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex__col, .flex__col--1-3 {
  margin-bottom: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .flex__col, .flex__col--1-3 {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .flex__col, .flex__col--1-3 {
    margin-bottom: 4vw;
  }
}
.flex__col--1-3 {
  width: calc(33.33% - 16px);
}

@media only screen and (max-width: 767px) {
  .flex__col--1-3 {
    width: 100%;
  }
}
.pageHeader {
  padding: 70px 0 60px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pageHeader {
    padding: 11vw 0 9vw;
  }
}
.pageHeader__title {
  margin-left: -0.3rem;
  color: #2f539b;
  letter-spacing: 0.3rem;
}

.pageHeader__title__main {
  display: block;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
}

body.single-post .pageHeader__title {
  text-align: center;
}

body.single-post .pageHeader__title .pageHeader__title__main {
  text-align: left;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (max-width: 767px) {
  .pageHeader__title__main {
    margin-bottom: 0.5em;
  }
}
.pageContainer {
  margin-top: 100px;
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .pageContainer {
    margin-top: 0;
    margin-bottom: 0;
    padding: 10vw 0;
  }
}
.pageLead {
  padding: 100px 0 120px;
}

@media only screen and (max-width: 767px) {
  .pageLead {
    padding: 10vw 0;
  }
}
.pageLead--l {
  padding: 100px 0 120px;
}

@media only screen and (max-width: 767px) {
  .pageLead--l {
    padding: 10vw 0;
  }
}
.pageLead__catchcopy {
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2.4;
  text-align: center;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .pageLead__catchcopy {
    margin-bottom: 10vw;
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}
.pageLead__catchcopy strong {
  display: inline-block;
  position: relative;
}

.pageLead__catchcopy strong::after {
  content: "";
  position: absolute;
  bottom: 0.6em;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2f539b;
}

@media only screen and (max-width: 767px) {
  .pageLead__catchcopy strong::after {
    bottom: 0.3em;
  }
}
.pageLead__bodycopy {
  margin-bottom: 1em;
}

.pageLead__image {
  margin-top: 70px;
}

.pageLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .pageLinks {
    padding-bottom: 0;
  }
}
.pageLinks__link {
  display: block;
  position: relative;
  padding: 24px 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pageLinks__link {
    padding: 6vw 0;
  }
}
.pageLinks__link::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-right: 2px solid #2f539b;
  border-bottom: 2px solid #2f539b;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .pageLinks__link::before {
    right: 0;
    bottom: 45%;
    left: auto;
  }
}
.pageLinks__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 2em;
  background-color: #ccc;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .pageLinks__link::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.pageLinks__link:last-child::after {
  content: none;
}

.pageSection {
  margin-top: 100px;
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .pageSection {
    margin-top: 0;
    margin-bottom: 0;
    padding: 10vw 0;
  }
}
.pageSection__title, .newsContent h2 {
  margin-right: -0.2em;
  margin-bottom: 70px;
  color: #2f539b;
  font-weight: bold;
  font-size: 1.9rem;
  text-align: center;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .pageSection__title, .newsContent h2 {
    margin-bottom: 10vw;
    font-size: 1.7rem;
  }
}
.pageSection__title span, .newsContent h2 span {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
  line-height: 1;
}

.pageSection__title span::after, .newsContent h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 0.2em);
  height: 2px;
  background-color: #2f539b;
}

.pageSection__lead {
  margin-bottom: 50px;
  color: #2f539b;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pageSection__lead {
    margin-bottom: 6vw;
    font-size: 1.2rem;
  }
}
.pageSection__titleSub01, .newsContent h3 {
  font-weight: bold;
  font-size: 1.1em;
}

.pageSection__titleSub02, .newsContent h4 {
  font-weight: bold;
}

.pageFootlinks, .pageFootlinks--bgStripe {
  margin: 120px 0;
}

@media only screen and (max-width: 767px) {
  .pageFootlinks, .pageFootlinks--bgStripe {
    margin: 15vw 0;
  }
}
.pageFootlinks--bgStripe {
  margin: 0;
  padding: 120px 0;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAU0lEQVQoU2N88+HH/48fPjDwCwgwMDMzM6ADxrsPXvzHJfn3718GRpAJ2HSCJEEmM77//Ps/urEwSZDJGAqQJUEmoyhAlwSZDFeATRKuAJckSAEAgQFIn2+blH0AAAAASUVORK5CYII=") center center repeat;
}

@media only screen and (max-width: 767px) {
  .pageFootlinks--bgStripe {
    padding: 15vw 0;
  }
  .newsContent img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
}
.pageFootlinks--bgStripe .boxLinkWrapper--col2 {
  margin-bottom: 0;
}

.footlinks__smallbanner {
  display: block;
  position: relative;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.footlinks__smallbanner:hover {
  opacity: 0.8;
}

.footlinks__smallbanner__image img {
  width: 100%;
  height: auto;
}

.footlinks__smallbanner__text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.2em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .footlinks__smallbanner__text {
    font-size: 1.2rem;
  }
}
.footlinks__smallbanner__popup {
  position: absolute;
  right: 14px;
  bottom: 10px;
}

.boxLink {
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .boxLink {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .boxLink {
    margin-bottom: 9vw;
  }
}
div.boxLink {
  opacity: 0.5;
}

.boxLink__image {
  height: 178px;
  background-position: center center;
  background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .boxLink__image {
    height: 148px;
  }
}
@media only screen and (max-width: 767px) {
  .boxLink__image {
    height: 45vw;
  }
}
.boxLink__text {
  font-size: 1.4rem;
  line-height: 90px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .boxLink__text {
    font-size: 1.3rem;
    line-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .boxLink__text {
    font-size: 1.3rem;
    line-height: 4em;
  }
}
.boxLink__text img {
  margin-left: 0.4rem;
}

.boxLinkWrapper, .boxLinkWrapper--col3, .boxLinkWrapper--col2, .boxLinkWrapper--col2--s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .boxLinkWrapper, .boxLinkWrapper--col3, .boxLinkWrapper--col2, .boxLinkWrapper--col2--s {
    margin-bottom: 0;
  }
}
.entryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .entryList {
    margin-bottom: 5vw;
  }
}
.entryList__item {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .entryList__item {
    margin-bottom: 3vw;
  }
}
.entryList__item a {
  display: inline-block;
}

@media (min-width: 768px) {
  .entryList__item:not(:last-child) {
    margin-right: 20px;
  }
}
.slideToggleBox {
  overflow: hidden;
  border-radius: 10px;
  background-color: #eff3fb;
}

.slideToggleBox__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #2f539b;
  color: #fff;
  cursor: pointer;
  padding: 20px 30px;
}

.slideToggleBox__title__btn {
  position: relative;
  width: 40px;
  height: 40px;
}

.slideToggleBox__title__btn::before, .slideToggleBox__title__btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition-delay: 0.3s !important;
  -o-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.slideToggleBox__title__btn::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.slideToggleBox__content {
  padding: 30px;
}

.isOpening .slideToggleBox__title__btn::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.googlemap {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 30px;
  padding-bottom: 56.25%;
}

.googlemap iframe,
.googlemap object,
.googlemap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.headerGlobal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 120px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
  border-bottom: solid 4px #e3e3e3;
  padding: 20px 50px;
}

@media only screen and (max-width: 767px) {
  .headerGlobal {
    border-bottom-width: 1px;
    height: 21vw;
  }
}
@media only screen and (max-width: 767px) {
  .headerGlobal__logo img {
    width: 48vw;
  }
}
@media only screen and (max-width: 767px) {
  .headerGlobal__nav {
    position: fixed;
    z-index: 100;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.headerGlobal__nav {
  display: none;
}

.headerGlobal__nav a {
  line-height: 100px;
}

@media only screen and (max-width: 767px) {
  .headerGlobal__nav {
    display: block;
  }
  .headerGlobal__nav a {
    line-height: inherit;
  }
}
.headerGlobal__nav .current {
  position: relative;
}

.headerGlobal__nav .current::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #4c70b8;
}

@media only screen and (max-width: 767px) {
  .headerGlobal__nav .current::after {
    content: none;
  }
}
.headerGlobal__btn {
  padding: 0 27px;
  border-radius: 6px;
  background-color: #ff9d11;
  color: #fff;
  line-height: 56px;
}

@media only screen and (max-width: 767px) {
  .headerGlobal__btn {
    display: none;
  }
}
.headerGlobal__btn img {
  margin-right: 0.3em;
  line-height: 56px;
}

.headerGlobal__menuSp {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .headerGlobal__menuSp {
    display: none;
  }
}
.headerGlobal__menuSp__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2f539b;
}

.headerGlobal__menuSp__bar:nth-child(1) {
  top: 0;
}

.headerGlobal__menuSp__bar:nth-child(2) {
  top: 6px;
}

.headerGlobal__menuSp__bar:nth-child(3) {
  top: 12px;
}

.headerGlobal__menuSp__text {
  color: #2f539b;
  font-size: 9px;
  line-height: 10px;
  font-family: "Lato", serif;
  letter-spacing: 0;
}

.isMenuOpening .headerGlobal__nav {
  top: 21vw;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .headerGlobal {
    display: block;
    position: relative;
  }
  .headerGlobal__btn {
    display: block;
    position: absolute;
    top: 0;
    right: 50px;
    width: 200px;
  }
}
.footerGlobal {
  background-color: #d8d8d8;
}

.footerGlobal__upper {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .footerGlobal__upper {
    width: 100%;
  }
}
.footerGlobal__nav {
  padding: 70px 0;
  border-bottom: 1px solid #c4c4c4;
}

@media only screen and (max-width: 767px) {
  .footerGlobal__nav {
    padding: 0;
    border-bottom: none;
  }
}
.footerGlobal__address {
  padding: 50px 0;
  font-size: 0.8rem;
}

@media only screen and (max-width: 767px) {
  .footerGlobal__address {
    padding: 8vw 0 14vw;
  }
}
.footerGlobal__address span {
  margin-left: 2em;
}

@media only screen and (max-width: 1239px) {
  .footerGlobal__address span {
    margin-left: 0;
  }
}
.footerGlobal__lower {
  background-color: #333;
}

.footerGlobal__lower__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

@media only screen and (max-width: 1239px) {
  .footerGlobal__lower__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .footerGlobal__lower__container {
    padding-top: 18.75vw;
  }
}
.footerGlobal__copyright {
  font-size: 0.6rem;
}

@media only screen and (max-width: 1239px) {
  .footerGlobal__copyright {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .footerGlobal__copyright {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footerGlobal__copyright {
    padding-bottom: 5vw;
    font-size: 0.5rem;
  }
}
.footerGlobal__smallLinks {
  font-size: 0.7rem;
}

@media only screen and (max-width: 1239px) {
  .footerGlobal__smallLinks {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footerGlobal__smallLinks {
    margin-bottom: 14vw;
  }
}
.footerGlobal__smallLinks__link {
  display: inline-block;
  line-height: 90px;
}

@media only screen and (max-width: 767px) {
  .footerGlobal__smallLinks__link {
    line-height: 2;
  }
}
.footerGlobal__smallLinks__link:first-child a::before {
  content: none;
}

.footerGlobal__smallLinks__link a {
  display: inline;
  padding: 10px 0;
  padding-left: 1em;
}

.footerGlobal__smallLinks__link a::before {
  content: "|";
  padding-right: 1em;
}

.footerGlobal__smallLinks__link.popup::after {
  content: url("../images/icon_popup.png");
  margin-left: 0.4em;
}

.footerGlobal__pagetop {
  position: fixed;
  right: 20px;
  bottom: 52px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .footerGlobal__pagetop {
    bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footerGlobal__pagetop {
    right: 2vw;
    bottom: 8vw;
  }
  .footerGlobal__pagetop img {
    width: 12vw;
  }
}
.homeKey {
  position: relative;
  overflow: hidden;
}

.homeKey__image img {
  width: 100%;
}

.homeCenterLink {
  display: block;
  padding-top: 2px;
  border-bottom: 1px solid #f1f1f1;
}

.homeCenterLink img {
  width: 100%;
}

.homeKey__slider__prev {
  left: 30px;
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.homeKey__slider__prev:hover {
  opacity: 0.8;
}

.homeKey__slider__prev::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .homeKey__slider__prev::before {
    width: 12px;
    height: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .homeKey__slider__prev {
    left: -28px;
  }
}
.homeKey__slider__prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
  -ms-transform: translate(-30%, -50%) rotate(-135deg);
  transform: translate(-30%, -50%) rotate(-135deg);
}

@media only screen and (max-width: 767px) {
  .homeKey__slider__prev::before {
    left: 70%;
  }
}
.homeKey__slider__next {
  right: 30px;
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.homeKey__slider__next:hover {
  opacity: 0.8;
}

.homeKey__slider__next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .homeKey__slider__next::before {
    width: 12px;
    height: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .homeKey__slider__next {
    right: -28px;
  }
}
.homeKey__slider__next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
  -ms-transform: translate(-70%, -50%) rotate(45deg);
  transform: translate(-70%, -50%) rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .homeKey__slider__next::before {
    left: 30%;
  }
}
.homeKey__slider__pager {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  line-height: 1;
  text-align: center;
}

.homeKey__slider__pager li {
  display: inline-block;
  margin: 0 8px;
}

@media only screen and (max-width: 767px) {
  .homeKey__slider__pager li {
    margin: 0 5px;
  }
}
.homeKey__slider__pager li.slick-active button {
  background-color: #2f539b;
}

.homeKey__slider__pager li button {
  display: inline-block;
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid #2f539b;
  border-radius: 50%;
  font-size: 0;
}

.homeAbout__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ff9ca4;
}

@media only screen and (max-width: 767px) {
  .homeAbout__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.homeAbout__main__image,
.homeAbout__main__content {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .homeAbout__main__image,
  .homeAbout__main__content {
    width: 100%;
  }
}
.homeAbout__main__image img {
  width: 100%;
}

.homeAbout__main__content {
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .homeAbout__main__content {
    padding: 10vw 0;
  }
}
.homeAbout__main__content__inner {
  width: 470px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .homeAbout__main__content__inner {
    width: 87.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .homeAbout__main__content__icon img, .homeProduct__icon img {
    width: 20vw;
  }
}
.homeAbout__main__content__title, .homeProduct__title {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}

@media only screen and (max-width: 767px) {
  .homeAbout__main__content__title, .homeProduct__title {
    font-size: 1.3rem;
  }
}
.homeAbout__images {
  height: 190px;
  background: url("../images/home_about_slider.png") center left repeat-x;
  -webkit-animation: homeAbout__images__animation 24s infinite linear;
  animation: homeAbout__images__animation 24s infinite linear;
}

@-webkit-keyframes homeAbout__images__animation {
  0% {
    background-position: center left 0;
  }
  100% {
    background-position: center left -2381px;
  }
}
@keyframes homeAbout__images__animation {
  0% {
    background-position: center left 0;
  }
  100% {
    background-position: center left -2381px;
  }
}
.homeProduct__upper {
  text-align: center;
}

.homeProduct__title {
  color: #2f539b;
}

.homeProduct__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.homeProduct__links__link {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  height: 620px;
  padding-top: 510px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .homeProduct__links__link {
    width: 100%;
    height: 80vw;
    padding-top: 65vw;
    background-size: 140% auto;
  }
}
.homeFooterLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.homeFooterLinks .footlinks__smallbanner {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .homeFooterLinks .footlinks__smallbanner {
    margin-bottom: 5vw;
  }
}
.aboutPhilosophy {
  background-color: #eff3fb;
  text-align: center;
}

.aboutPhilosophy__inner {
  margin-right: auto;
  margin-left: auto;
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  .aboutPhilosophy__inner {
    padding: 8vw 0;
  }
}
.shoplistTitle {
  font-size: 1.2rem;
}

.newsList__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.newsList__header__title {
  color: #2f539b;
  font-weight: bold;
  font-size: 1.4rem;
}

.newsList__header__link {
  display: inline-block;
  color: #2f539b;
  line-height: 1;
}

.newsList__header__link img {
  margin-left: 1em;
  vertical-align: -0.15em;
}

.newsList {
  border-top: 1px dotted #e3e3e3;
}

.newsList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dotted #e3e3e3;
}

.newsList__item__date {
  width: 10em;
}

.newsList__item__title {
  display: inline-block;
  width: calc(100% - 12em);
  padding-left: 1.5em;
  background-position: left 0.9em;
  color: #6998d2;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAGCAYAAAAPDoR2AAAAO0lEQVQYV2OMrdz4P9JTm8HLToWRAQ0w6gfP/g8S01MTYwApMtWVYhAV5AIrhEsia4IpJE4Sq7H4HAQAS4wWrdbLO30AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
}

.newsArchive {
  padding: 20px 40px;
  border-radius: 10px;
  background-color: #eff3fb;
}

.newsArchive__title {
  font-weight: bold;
  font-size: 1.2rem;
}

.newsArchive__list li {
  display: inline;
  margin-right: 1em;
}

.newsArchive__list li.current a {
  color: #000;
  cursor: default;
}

.newsArchive__list li.current a:hover {
  pointer-events: none;
  cursor: default;
}

.newsArchive__list li a {
  color: #6998d2;
}

.newsArchive__pagination {
  margin-top: 72px;
}

.newsArchive__pagination > ul {
  text-align: center;
  list-style: none;
}

.newsArchive__pagination > ul > li {
  display: inline-block;
}

.newsArchive__pagination > ul > li > a,
.newsArchive__pagination > ul > li > span {
  display: inline-block;
  padding-top: 0.5rem;
  padding-right: 1.2rem;
  padding-bottom: 0.5rem;
  padding-left: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
}

.newsArchive__pagination > ul > li > a.is-active, .newsArchive__pagination > ul > li > a:hover,
.newsArchive__pagination > ul > li > span.is-active,
.newsArchive__pagination > ul > li > span:hover {
  border-color: #2f539b;
  background: #2f539b;
  color: #fff;
}

.newsArchive__pagination > ul > li.is-active a,
.newsArchive__pagination > ul > li.is-active span {
  border-color: #2f539b;
  background: #2f539b;
  color: #fff;
}

.newsArchive__pagination__next a, .newsArchive__pagination__prev a {
  display: inline-block;
  padding-right: 8px;
  padding-left: 8px;
  border: none;
  background: #2f539b;
  color: #fff;
  text-decoration: none;
}

.newsArchive__pagination__prev {
  margin-right: 1rem;
}

.newsArchive__pagination__next {
  margin-left: 1rem;
}

.newsContent h2 {
  margin-top: 1.4em;
  text-align: left;
}

.newsContent ul {
  list-style-type: disc;
}

.newsContent ul li {
  list-style-type: disc;
  list-style-position: inside;
}

.newsContent ul li ul {
  padding-left: 32px;
}

.newsContent ol {
  list-style: decimal;
}

.newsContent ol li {
  list-style: decimal;
  list-style-position: inside;
}

.newsContent ol li ol {
  padding-left: 32px;
}

.newsContent blockquote {
  padding: 16px 24px;
  border-radius: 10px;
  background: #eff3fb;
}

.newsNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.newsNav__prev,
.newsNav__next {
  display: inline-block;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .newsNav__prev,
  .newsNav__next {
    display: block;
    width: 50%;
  }
}
.newsNav__prev:hover,
.newsNav__next:hover {
  text-decoration: none;
}

.newsNav__next {
  text-align: right;
}

.newsNav__index {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  .newsNav__index {
    position: static;
    margin-top: 5vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.recruitSeeking {
  padding: 60px 0;
  background-color: #eff3fb;
  font-weight: bold;
  font-size: 1.2rem;
}

.recruitSeeking ol {
  margin-right: auto;
  margin-left: auto;
}

.recruitSeeking ol li {
  margin-bottom: 1.5em;
  line-height: 1.8;
  list-style-type: decimal;
  list-style-position: inside;
}

.recruitSeeking ol li:last-child {
  margin-bottom: 0;
}

.recruitPageLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.recruitPageLinks__link {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px 20px 20px;
  border: solid 2px #2f539b;
  border-radius: 6px;
  margin-bottom: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .recruitPageLinks__link {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitPageLinks__link {
    margin-bottom: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .recruitPageLinks__link {
    padding: 4vw;
  }
}
.recruitPageLinks__link::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #2f539b;
  border-bottom: 2px solid #2f539b;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .recruitPageLinks__link::after {
    right: 4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .recruitPageLinks__link__icon {
    width: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitPageLinks__link__icon {
    width: 10vw;
  }
}
.recruitPageLinks__link__text {
  padding-left: 20px;
}

.recruitPageLinks__link__name {
  font-size: 1.4rem;
}

.senior-voice {
  margin-bottom: 200px;
}

@media only screen and (max-width: 767px) {
  .senior-voice {
    margin-bottom: 18vw;
  }
}
.senior-voice__header {
  margin-bottom: 70px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .senior-voice__header {
    margin-bottom: 7vw;
  }
}
.senior-voice__image {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .senior-voice__image {
    margin-bottom: 7vw;
  }
}
.voice__image__inner {
  display: inline-block;
  overflow: hidden;
  border-radius: 100px;
}

.senior-voice__name {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 20px;
  color: #2f539b;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .senior-voice__name {
    margin-bottom: 5vw;
    padding-bottom: 5vw;
  }
}
.senior-voice__name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2f539b;
}

.senior-voice__year {
  margin-bottom: 10px;
  color: #2f539b;
  font-weight: bold;
  font-size: 1.1rem;
}

@media only screen and (max-width: 767px) {
  .senior-voice__year {
    margin-bottom: 2vw;
  }
}
.senior-voice__university {
  margin-bottom: 70px;
  color: #2f539b;
  font-weight: bold;
  font-size: 0.8rem;
}

@media only screen and (max-width: 767px) {
  .senior-voice__university {
    margin-bottom: 7vw;
  }
}
.senior-voice__lead {
  font-weight: bold;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .senior-voice__lead {
    font-size: 1.3rem;
  }
}
.senior-voice__body {
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .senior-voice__body {
    margin-bottom: 7vw;
  }
}
.senior-voice__message, .senior-voice__message--navy, .senior-voice__message--pink {
  padding: 70px 0;
  border-radius: 10px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .senior-voice__message, .senior-voice__message--navy, .senior-voice__message--pink {
    padding: 10vw 0;
  }
}
.senior-voice__message--navy {
  background-color: #2f539b;
}

.senior-voice__message--pink {
  background-color: #ff9ca4;
}

.senior-voice__message__inner {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.senior-voice__message__titleEnglish {
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 0.8rem;
  line-height: 1;
  font-family: "Lato", serif;
  letter-spacing: 0.3em;
}

@media only screen and (max-width: 767px) {
  .senior-voice__message__titleEnglish {
    margin-bottom: 4vw;
    padding-bottom: 2vw;
  }
}
.senior-voice__message__titleEnglish::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 0.3em);
  height: 2px;
  background-color: #fff;
}

.senior-voice__message__titleJapanese {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .senior-voice__message__titleJapanese {
    margin-bottom: 5vw;
    font-size: 1.2rem;
  }
}
.senior-voice__message__body {
  text-align: left;
}

.faq__title {
  font-size: 1.2rem;
}

.faq__title span {
  padding-right: 0.4em;
  font-size: 1.6rem;
  font-family: "Lato", serif;
}

.formWrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 10px;
  background-color: #eff3fb;
}

.shoplistTitle {
  font-size: 1.2rem;
}

.contactForm dt span {
  margin-right: 1em;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #ccc;
  color: #fff;
  font-size: 0.6em;
}

.contactForm dt span.required {
  background-color: #ff9d11;
}

.contactForm dd {
  margin: 0 0 20px;
}

.contactForm dd input.text,
.contactForm dd textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #e3e3e3;
  background-color: #fff;
  outline: none;
}

.contactForm dd input.btn, .contactForm dd input.btn--white, .contactForm dd input.homeAbout__main__content__btn, .contactForm dd input.btn--black, .contactForm dd input.newsNav__index {
  border: none;
  outline: none;
}

.contactForm dd .error_blank {
  color: #ff9d11;
  font-weight: bold;
  font-size: 0.8rem;
}

.contactForm dd .checkboxList li {
  display: inline-block;
  margin-right: 0.8em;
}

.contactForm dd .checkboxList li input.checkbox {
  margin-right: 0.2em;
}

.sitemapListWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .sitemapListWrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .sitemapList {
    width: 100%;
  }
}
.sitemapList a:hover {
  text-decoration: underline;
}

.sitemapList > li {
  margin-bottom: 0.7em;
}

.sitemapList ul li {
  margin-left: 2em;
}

.sitemapList ul li a {
  font-size: 0.9em;
}

/*message*/
.messsage_page_flex_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}

.messsage_page_flex_box .mb--m {
  width: 37%;
}

.messsage_page_flex_box .text_area {
  width: 60%;
}

.messsage_page_flex_box .hidden-pc {
  display: none;
}

@media screen and (max-width: 767px) {
  .messsage_page_flex_box {
    flex-direction: column;
  }
  .messsage_page_flex_box .mb--m {
    width: 100%;
  }
  .messsage_page_flex_box .text_area {
    width: 100%;
  }
  .messsage_page_flex_box .hidden-pc {
    display: block;
  }
}

.toplink_container {
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 32px auto;
  margin-bottom: 0 !important;
  display: grid;
  grid-template-columns: repeat(6, 0.5fr);
  grid-gap: 10px;
  display: flex;
  justify-content: space-around;
}
.toplink_container .box {
  width: 40%;
  display: block;
}
.toplink_container .box a {
  width: 100%;
  width: 24vw;
  display: block;
  margin: 16px auto;
}
.toplink_container .box:nth-of-type(n+3) {
  width: 30%;
}
@media screen and (max-width: 970px) {
  .toplink_container .box:nth-of-type(n+3) {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .toplink_container .box {
    width: 100%;
  }
  .toplink_container .box:nth-of-type(n+3) {
    width: 100%;
  }
}
@media screen and (max-width: 970px) {
  .toplink_container .box a {
    width: 33vw;
  }
}
@media screen and (max-width: 767px) {
  .toplink_container .box a {
    width: 100%;
  }
}

.recruitGuide {
  color: red;
  font-weight: bold;
  width: max-content;
  margin: 0 auto;
}
.recruitGuide .arrows {
  display: flex;
  justify-content: space-between;
}

.branchFlex {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
}
.branchFlex .shop {
  display: flex;
  justify-content: space-between;
}
.branchFlex .shop .pageSection__titleSub02 {
  width: 40%;
  font-size: clamp(10px, 2.4vw, 20px);
  padding-left: 1em;
}
.branchFlex .shop .mb--s {
  width: 60%;
}

.searchPulldownBtn .buttons {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.searchPulldownBtn .buttons .searchButton {
  grid-column: auto/span 3;
  margin: 10px 10px 20px;
  position: relative;
  max-width: 200px;
  animation: test 1s forwards;
}
.searchPulldownBtn .buttons .searchButton.tohkai p {
  background: #9dde40;
}
.searchPulldownBtn .buttons .searchButton.tohkai .searchPulldown {
  background: #e0f5c2;
}
.searchPulldownBtn .buttons .searchButton.tohkai .searchPulldown a {
  color: #3c5c10;
  background: #e0f5c2;
}
.searchPulldownBtn .buttons .searchButton.tohkai .searchPulldown a:hover {
  filter: brightness(1.05);
}
.searchPulldownBtn .buttons .searchButton.hokuriku p {
  background: #ffbf70;
}
.searchPulldownBtn .buttons .searchButton.hokuriku .searchPulldown {
  background: #fff1e0;
}
.searchPulldownBtn .buttons .searchButton.hokuriku .searchPulldown a {
  color: #ff8d00;
  background: #ffedd6;
}
.searchPulldownBtn .buttons .searchButton.hokuriku .searchPulldown a:hover {
  filter: brightness(1.02);
}
.searchPulldownBtn .buttons .searchButton.kantoh p {
  background: #8fdaf1;
}
.searchPulldownBtn .buttons .searchButton.kantoh .searchPulldown {
  background: #bce9f7;
}
.searchPulldownBtn .buttons .searchButton.kantoh .searchPulldown a {
  color: #62cbeb;
  background: #eaf8fc;
}
.searchPulldownBtn .buttons .searchButton.kantoh .searchPulldown a:hover {
  filter: brightness(1.02);
}
.searchPulldownBtn .buttons .searchButton p {
  user-select: none;
  pointer-events: none;
  display: block;
  width: 100%;
  padding: 16px 0;
  height: 1.5rem;
  text-align: center;
  font-family: "BIZ UDGothic";
  border-radius: 10px;
  color: white;
  font-size: 28px;
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}
.searchPulldownBtn .buttons .searchButton:hover p {
  filter: brightness(1.04);
}
.searchPulldownBtn .buttons .searchButton:has(.show) p {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.searchPulldownBtn .buttons .searchButton:has(.show) .searchPulldown {
  padding-top: 10px;
  height: var(--height);
  overflow: scroll;
}
.searchPulldownBtn .buttons .searchButton:has(.show) .searchPulldown::-webkit-scrollbar {
  display: none;
}
@keyframes index-show {
  to {
    z-index: 11;
  }
}
.searchPulldownBtn .buttons .searchButton .searchPulldown {
  transition: 0.2s;
  background: #9dde40;
  height: 0px;
  max-height: 60vw;
  overflow: hidden;
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  width: 100%;
  max-height: 60vh;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown > a {
  line-height: 1.7em;
  user-select: none;
  text-align: center;
  display: block;
  font-size: 24px;
  font-size: clamp(12px, 2vw, 24px);
  width: 100%;
  border-bottom: 1px dashed rgb(214, 214, 214);
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .areas {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted green;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .area,
.searchPulldownBtn .buttons .searchButton .searchPulldown .areaName a {
  display: block;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .area {
  min-width: 4.5em;
  text-align: center;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .areaName {
  flex-grow: 1;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .areaName a {
  text-align: center;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .innerPulldown {
  user-select: none;
  line-height: 1.7em;
  font-size: clamp(12px, 2vw, 24px);
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .innerPulldown span {
  padding: 8px;
  pointer-events: none;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .innerPulldown .areaName {
  height: 0;
  overflow: hidden;
  display: block;
  padding-left: 8px;
}
.searchPulldownBtn .buttons .searchButton .searchPulldown .innerPulldown.show .areaName {
  height: 100%;
}
@keyframes test {
  from {
    z-index: 10;
  }
  to {
    z-index: 0;
  }
}
.searchPulldownBtn .buttons .searchButton:has(.searchPulldown.show) {
  animation: index-show 0.1s forwards;
}
@keyframes index-show {
  0% {
    z-index: 0;
  }
  100% {
    z-index: 10;
  }
}
@media screen and (max-width: 570px) {
  .searchPulldownBtn .buttons .searchButton {
    grid-column: auto/span 6;
  }
}
.searchPulldownBtn form {
  display: flex;
  justify-content: space-between;
  max-width: 50vw;
}
@media screen and (max-width: 960px) {
  .searchPulldownBtn form {
    max-width: 100%;
  }
}
.searchPulldownBtn form input {
  margin-left: 10px;
  font-size: 40px;
  font-size: clamp(16px, 5vw, 40px);
  width: 68%;
}
.searchPulldownBtn form a.searchFormBtn {
  width: 30%;
  background: rgb(174, 174, 174);
  border: 2px solid black;
  border-radius: 10px;
  font-size: 30px;
  font-size: clamp(16px, 4.6vw, 30px);
  text-decoration: none;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

*:has(> .copyrightImage) {
  position: relative;
}
*:has(> .copyrightImage)::after {
  content: "画像提供：ダイアテックジャパン株式会社（画像所有：Interacoustics社）";
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
}/*# sourceMappingURL=screen.css.map */