@charset "UTF-8";
/* ==========================================================================
   Rest
   ========================================================================== */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 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 */
}

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * 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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

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

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

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 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"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/* ==========================================================================
   Foundation
   ========================================================================== */
/*================================================
 *  一般・共通設定
 ================================================*/
.for_pc {
  display: none !important;
}

@media screen and (min-width: 992px) {
  .for_pc {
    display: block !important;
  }
}

.for_tb {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .for_tb {
    display: block !important;
  }
}

.for_mb {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .for_mb {
    display: none !important;
  }
}

.only_tb {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .only_tb {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .only_tb {
    display: none !important;
  }
}

.alignR {
  text-align: right;
}

.alignL {
  text-align: left;
}

.alignC {
  text-align: center;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.small {
  font-size: 85%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: -webkit-linear-gradient(white 143px, #fafafa 1100px);
  background: linear-gradient(white 143px, #fafafa 1100px);
}

a, img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a {
  color: #00447e;
  text-decoration: none;
  word-break: break-all;
}

a:hover {
  text-decoration: underline;
}

p, dt, dd, h1, h3 {
  color: #6b6b6b;
  line-height: 1.75;
}

.underline {
  text-decoration: underline;
}

/* ==========================================================================
   Layout
   ========================================================================== */
/* ==========================================================================
   Object
   ========================================================================== */
/* Component
   ----------------------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  margin-bottom: -65px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 99;
}

.header.open {
  height: 100vh;
}

@media screen and (min-width: 768px) {
  .header {
    background-color: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    height: 65px;
  }
}

.header__wrap {
  z-index: 0;
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .header__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: rgba(255, 255, 255, 0);
    padding: 0 20px;
  }
}

.header__left {
  margin: 0 auto;
  padding-left: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

.open .header__left {
  background-color: rgba(255, 255, 255, 0.95);
}

@media screen and (min-width: 768px) {
  .header__left {
    padding-left: 0;
    width: auto;
    background-color: rgba(255, 255, 255, 0);
  }
}

.header__nav {
  display: none;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(255, 255, 255, 0);
    height: 100%;
    align-items: center;
  }
}

.header__item, .header__item--thick {
  padding: 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .header__item, .header__item--thick {
    padding-left: 1em;
    border-top: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

.header__item--thick {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .header__item--thick {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.header__link, .header__link--current, body.single-post .header__link.header_blog, body.blog .header__link.header_blog {
  color: #00447e;
  text-decoration: none;
  font-size: 81.25%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .header__link, .header__link--current, body.single-post .header__link.header_blog, body.blog .header__link.header_blog {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 0;
  }
  .header__link:after, .header__link--current:after, body.single-post .header__link.header_blog:after, body.blog .header__link.header_blog:after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #00447e;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .header__link:hover, .header__link--current:hover, body.single-post .header__link.header_blog:hover, body.blog .header__link.header_blog:hover {
    text-decoration: none;
  }
  .header__link:hover:after, .header__link--current:hover:after, body.single-post .header__link.header_blog:hover:after, body.blog .header__link.header_blog:hover:after {
    height: 8px;
  }
}

.header__link--current:after {
  height: 8px;
}

.header__bt {
  display: block;
  border: rgba(0, 68, 126, 0.47) 1px solid;
  border-radius: 35.5px;
  color: #00447e;
  text-decoration: none;
  font-weight: 600;
  font-size: 68.75%;
  line-height: 1.75;
  padding: 0.7em 0em;
  margin: 10px auto;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .header__bt {
    padding: 2px 18px;
    margin: 0;
    width: auto;
  }
}

.header__bt:hover {
  background-color: rgba(0, 68, 126, 0.8);
  border-color: rgba(0, 68, 126, 0);
  color: white;
  text-decoration: none;
}

.header__logo {
  width: 121px;
  height: auto;
}

body.single-post .header_blog.header__link--current:after, body.single-post .header_blog.header__link:after, body.blog .header_blog.header__link--current:after, body.blog .header_blog.header__link:after {
  height: 8px;
}

.navbtn {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 300;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .navbtn {
    display: none;
  }
}

.navbtn__inner {
  position: relative;
}

.navbtn__bar {
  display: block;
  height: 3px;
  background: #000;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

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

.navbtn__bar:nth-child(2) {
  top: 10px;
}

.navbtn__bar:nth-child(3) {
  top: 20px;
}

.open .navbtn__bar:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.open .navbtn__bar:nth-child(2) {
  width: 0;
  left: 50%;
}

.open .navbtn__bar:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.hero {
  background: url(../img/bg_hero.png) no-repeat bottom center;
  background-size: cover;
  text-align: center;
  padding-top: 65px;
  min-height: calc(252px - 65px);
  position: absolute;
  width: 100%;
  z-index: -2;
}

body.personal .hero {
  background: url(../img/bg_hero_personal.png) no-repeat bottom center;
  background-size: cover;
}

body.profile .hero {
  background: url(../img/bg_hero_profile.png) no-repeat bottom center;
  background-size: cover;
}

body.about .hero {
  background: url(../img/bg_hero_about.png) no-repeat bottom center;
  background-size: cover;
}

body.privacy .hero {
  background: url(../img/bg_hero_privacy.png) no-repeat bottom center;
  background-size: cover;
}

body.contact .hero {
  background: url(../img/bg_hero_privacy.png) no-repeat bottom center;
  background-size: cover;
}

body.page-contact .hero {
  background: url(../img/bg_hero_privacy.png) no-repeat bottom center;
  background-size: cover;
}

body.recruit .hero {
  background: url(../img/bg_hero_privacy.png) no-repeat bottom center;
  background-size: cover;
}

body.blog .hero {
  background: url(../img/bg_hero_profile.png) no-repeat bottom center;
  background-size: cover;
}

.hero__title {
  color: white;
  font-size: 225%;
  font-weight: 900;
  line-height: 0.8;
  margin: 48px 0 0 0;
}

body.page-contact .hero__title {
  text-transform: capitalize;
}

.hero__title:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 25px auto 15px;
}

.hero__subtitle {
  color: white;
  font-size: 81.25%;
  margin: 0;
  font-weight: 300;
}

.main {
  background: url(../img/bg_contents.png) repeat-x center -16px;
  background-size: 100%;
  padding-top: 252px;
}

.summary {
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  .summary {
    margin: 30px auto;
  }
}

.summary__title {
  color: #00447e;
  font-size: 137.5%;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}

.summary__list {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  margin: 0 auto;
  max-width: 620px;
  width: 80%;
  padding: 40px 60px;
  list-style: none;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .summary__list {
    padding: 20px 5% 20px 10%;
    width: 75%;
  }
}

.summary__item {
  color: #00447e;
  font-size: 100%;
  font-weight: 400;
}

.summary__item .fa-check {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .summary__item {
    text-indent: -10px;
  }
}

.content {
  max-width: 890px;
  margin: 0 auto 100px;
  color: #6b6b6b;
}

@media screen and (max-width: 768px) {
  .content {
    margin: 50px auto 0;
  }
}

.content__title {
  color: #6b6b6b;
  font-size: 137.5%;
  font-weight: 400;
  text-align: center;
}

.content__paragraph {
  margin: 2rem 0;
  font-size: 87.5%;
}

@media screen and (max-width: 768px) {
  .content__paragraph {
    padding: 0 5%;
  }
}

.content__table {
  font-size: 87.5%;
  margin: 0 auto;
  text-align: center;
  border-collapse: collapse;
  empty-cells: show;
  width: 100%;
  line-height: 1.3;
  background: white;
}

body.about .content__table {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .content__table {
    width: 96%;
  }
}

.content__caption {
  color: white;
  font-weight: 600;
  background: #c4c4c4;
  padding: 10px 20px;
  letter-spacing: 1em;
}

.content__th {
  padding: 10px 20px;
  font-weight: normal;
  border: 1px solid #c4c4c4;
}

@media screen and (max-width: 768px) {
  .content__th {
    padding: 5px;
  }
  body.about .content__th {
    width: 20%;
  }
}

.content__td {
  padding: 20px;
  border: 1px solid #c4c4c4;
}

@media screen and (max-width: 768px) {
  .content__td {
    padding: 5px;
  }
}

.content__list {
  margin: 0 auto;
  max-width: 620px;
  width: 80%;
  padding: 0px 60px 40px 60px;
  list-style: none;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .content__list {
    width: 90%;
    padding: 20px 5%;
  }
}

.content__item {
  font-size: 100%;
  font-weight: 400;
  position: relative;
  padding: 0 0 1rem 1.5rem;
  margin: 0;
}

.content__item:before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
}

.content__box_w {
  background: white;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 770px;
  padding: 20px 60px;
  list-style: none;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .content__box_w {
    width: 80%;
    padding: 10px 5%;
  }
}

.bg_th {
  background-color: #fafafa;
}

.bg_th_cyan {
  background-color: #e6faff;
}

h4.h4 {
  margin: 10px 0;
}

.mt00 {
  margin-top: 0;
}

.bottomnav {
  padding: 1em 0;
  margin: 0;
  background: #e7eef1;
}

@media screen and (min-width: 768px) {
  .bottomnav {
    margin: 10px 0 0 0;
    padding: 30px 0;
  }
}

.header .bottomnav {
  padding: 0.5em 0;
}

@media screen and (min-width: 768px) {
  .header .bottomnav {
    display: none;
  }
}

.bottomnav__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  .bottomnav__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.bottomnav__item {
  padding: 0 0.5em;
}

.bottomnav__link {
  color: #666666;
  text-decoration: none;
  font-size: 87.5%;
  padding: 1em 0;
  display: block;
  font-size: 81.25%;
}

@media screen and (min-width: 768px) {
  .bottomnav__link {
    padding: 0;
    font-size: 87.5%;
  }
}

.bottomnav__copy {
  color: #999999;
  font-size: 75%;
  text-align: center;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .bottomnav__copy {
    margin: 1rem 0 0 0;
  }
}

.totop {
  position: relative;
  bottom: 0;
  right: 0;
  width: 100vw;
  max-width: 890px;
  margin: 100px auto 0;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .totop {
    margin: 50px auto 0;
  }
}

.totop__link {
  opacity: 0.47;
}

.totop__link:hover {
  opacity: 0.8;
}

.totop__icon {
  width: 38px;
  height: auto;
}

.profile_area {
  width: 890px;
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  .profile_area {
    width: 90%;
    margin: 30px auto;
  }
}

.profile_area__title {
  color: #00447e;
  font-size: 137.5%;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

.profile_area__title span {
  font-weight: 400;
  font-size: 16px;
}

.profile_area img {
  margin: 50px auto;
  display: block;
  width: 100%;
  max-width: 406px;
}

.about_area {
  width: 890px;
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  .about_area {
    width: 90%;
    margin: 30px auto;
  }
}

.about_area__title {
  color: #00447e;
  font-size: 137.5%;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.4;
}

.about_area__title2 {
  color: #00447e;
  font-size: 100%;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.4;
}

.privacy_area {
  width: 890px;
  margin: 80px auto;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .privacy_area {
    width: 90%;
    margin: 30px auto;
  }
}

.privacy_area__title {
  color: #6b6b6b;
  font-size: 137.5%;
  font-weight: 400;
  margin: 50px 0 20px 0px;
  line-height: 1.4;
}

.privacy_area .content__paragraph {
  margin: 0 0 30px 0;
}

.contact_area {
  width: 890px;
  margin: 80px auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact_area {
    width: 90%;
    margin: 30px auto;
  }
}

.contact_area__title {
  color: #6b6b6b;
  font-size: 137.5%;
  font-weight: 400;
  margin: 50px 0 20px 0px;
  line-height: 1.4;
}

.contact_area .content__paragraph {
  margin: 0 0 30px 0;
}

.mw_wp_form .content__table {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .content__table {
    width: 90%;
    margin: 20px auto;
  }
}

.mw_wp_form .content__th {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .content__th {
    width: 96%;
    display: block;
  }
}

.mw_wp_form .content__th span {
  border-radius: 3px;
  background-color: #c33;
  color: #fff;
  font-size: 13px;
  padding: 1px 3px;
  margin: 0 0 0 5px;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .content__td {
    width: 96%;
    display: block;
  }
}

.mw_wp_form .content__td input {
  line-height: 1.6;
  margin: 5px 0;
  width: 400px;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .content__td input {
    width: 80%;
  }
}

.mw_wp_form .content__td textarea {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .content__td textarea {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .mw_wp_form p {
    width: 90%;
    margin: 0px auto;
    line-height: 1.8;
  }
}

.mw_wp_form p button {
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .mw_wp_form p button {
    line-height: 1.8;
  }
}

.recruit_area {
  width: 890px;
  margin: 80px auto;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .recruit_area {
    width: 90%;
    margin: 30px auto;
  }
}

.recruit_area__title {
  color: #00447e;
  font-size: 113%;
  font-weight: 400;
  margin: 50px 0 10px 0px;
  line-height: 1.4;
}

.recruit_area__btn {
  display: inline-block;
  border: rgba(0, 68, 126, 0.47) 1px solid;
  border-radius: 35.5px;
  color: #00447e;
  text-decoration: none;
  font-weight: 600;
  font-size: 87.5%;
  line-height: 1.75;
  padding: 0.7em 0em;
  margin: 0 auto 30px auto;
  width: 200px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recruit_area__btn {
    display: block;
  }
}

.recruit_area__btn:hover {
  background-color: rgba(0, 68, 126, 0.8);
  border-color: rgba(0, 68, 126, 0);
  color: white;
  text-decoration: none;
}

.recruit_area .content__paragraph {
  margin: 0 0 20px 0;
}

.voice {
  max-width: 890px;
  margin: 0 auto 20px;
  color: #6b6b6b;
  /* レイアウト:横2つ  */
}

.voice h3.voice_title {
  color: #6b6b6b;
  font-size: 113%;
  font-weight: bold;
  text-align: center;
  margin: 50px 0 0 0;
}

@media screen and (max-width: 768px) {
  .voice {
    margin: 50px auto 0;
  }
}

.voice .cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: initial;
  text-align: center;
  overflow: hidden;
}

.voice .cols .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.voice .cols .col:after {
  content: "";
  display: table;
  clear: both;
}

.voice .cols2 {
  margin-right: -50px;
  width: calc(100% + 50px);
  padding: 30px 0 0 0;
}

.voice .cols2 .col {
  width: calc(50% - 50px);
}

.voice .cols2 .col {
  margin: 0 50px 30px 0;
}

.voice .cols2 .col .inner {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
}

.voice .cols2 .col .inner img.face {
  border-radius: 50%;
}

.voice .cols2 .col .inner h3.name1 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #00447E;
  line-height: 1.5;
}

.voice .cols2 .col .inner h3.name1 span {
  font-size: 14px;
  display: block;
}

.voice .cols2 .col .inner h4.name2 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 300;
  color: #00447E;
}

.voice .cols2 .col .inner h4.name2 span {
  font-size: 16px;
  padding-left: 2px;
}

.voice .cols2 .col .inner p {
  margin: 0;
  font-size: 87.5%;
  text-align: left;
  line-height: 1.8;
}

.voice .cols2 .col .inner.h468 {
  height: 468px;
}

@media screen and (max-width: 768px) {
  .voice .cols2 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .voice .cols.cols2 .col {
    width: 100%;
    margin: 0 auto 10px;
  }
  .voice .cols2 {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .voice .cols2 .col .inner.h468 {
    height: auto;
  }
}

a.btn_contact {
  text-align: center;
  width: 200px;
  font-size: 0.9em;
  margin: 20px auto 50px auto;
  padding: 15px 0;
  background-color: #00447E;
  color: #fff;
  min-width: 100px;
  -webkit-transition: .2s;
  transition: .2s;
  display: block;
  text-decoration: none;
}

a.btn_contact:hover {
  background-color: #069;
}

a.btn_contact::after {
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  margin-left: .5em;
  -webkit-transition: .2s;
  transition: .2s;
  display: inline-block;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

a.btn_contact:hover::after {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.ffs-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/* project
   ----------------------------------------------------------------- */
/*# sourceMappingURL=styles.css.map */