@charset "UTF-8";
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../../bower_components/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../../bower_components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1429em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1429em;
  width: 2.1429em;
  top: 0.1429em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.8571em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.p-post-item.is-horizon, .p-post-item.is-line, .p-profile-box {
  zoom: 1;
}

.p-post-item.is-horizon:before, .p-post-item.is-line:before, .p-profile-box:before, .p-post-item.is-horizon:after, .p-post-item.is-line:after, .p-profile-box:after {
  content: " ";
  display: table;
}

.p-post-item.is-horizon:after, .p-post-item.is-line:after, .p-profile-box:after {
  clear: both;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-size: 15px;
  font-family: Noto Sans JP, Noto Sans Japanese, Noto Sans, sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  html {
    font-family: sans-serif;
  }
}

* {
  box-sizing: border-box;
}

/**
 * Remove default margin.
 */
body {
  color: #333;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 1.5px;
  line-height: 2;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  body {
    font-size: 0.8rem;
    line-height: 1.2;
    line-height: 1.5;
  }
}

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

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

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

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

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.6rem;
  margin-top: 1.7rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-top: 1.7rem;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.4rem;
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

/* dl
   ========================================================================== */
/**
 * Remove most spacing between dl, dd.
 */
dl, dd {
  margin: 0;
}

/* ul
   ========================================================================== */
/**
 * Remove most spacing between ul, li.
 */
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
}

.heading, .c-features-card__title, .c-image-content__title, .c-opening__title, .c-other-content__head, .c-post-content-page-head__title, .c-special-landing__title, .l-post-content h2, #tinymce.post-type-post h2, #tinymce.post-type-page h2, #tinymce.mce-content-body.acf_content h2, #tinymce.mce-content-body.acf_content.post-type-page h2, #tinymce.post-type-tinymcetemplates h2, .l-post-content h3, #tinymce.post-type-post h3, #tinymce.post-type-page h3, #tinymce.mce-content-body.acf_content h3, #tinymce.mce-content-body.acf_content.post-type-page h3, #tinymce.post-type-tinymcetemplates h3, .l-post-content h4, #tinymce.post-type-post h4, #tinymce.post-type-page h4, #tinymce.mce-content-body.acf_content h4, #tinymce.mce-content-body.acf_content.post-type-page h4, #tinymce.post-type-tinymcetemplates h4, .l-post-content h5, #tinymce.post-type-post h5, #tinymce.post-type-page h5, #tinymce.mce-content-body.acf_content h5, #tinymce.mce-content-body.acf_content.post-type-page h5, #tinymce.post-type-tinymcetemplates h5, .l-post-content h6, #tinymce.post-type-post h6, #tinymce.post-type-page h6, #tinymce.mce-content-body.acf_content h6, #tinymce.mce-content-body.acf_content.post-type-page h6, #tinymce.post-type-tinymcetemplates h6 {
  margin-top: 0em;
  margin-bottom: 0em;
  font-weight: 600;
  line-height: 1.45;
}

.heading small, .c-features-card__title small, .c-image-content__title small, .c-opening__title small, .c-other-content__head small, .c-post-content-page-head__title small, .c-special-landing__title small, .l-post-content h2 small, #tinymce.post-type-post h2 small, #tinymce.post-type-page h2 small, #tinymce.mce-content-body.acf_content h2 small, #tinymce.mce-content-body.acf_content.post-type-page h2 small, #tinymce.post-type-tinymcetemplates h2 small, .l-post-content h3 small, #tinymce.post-type-post h3 small, #tinymce.post-type-page h3 small, #tinymce.mce-content-body.acf_content h3 small, #tinymce.mce-content-body.acf_content.post-type-page h3 small, #tinymce.post-type-tinymcetemplates h3 small, .l-post-content h4 small, #tinymce.post-type-post h4 small, #tinymce.post-type-page h4 small, #tinymce.mce-content-body.acf_content h4 small, #tinymce.mce-content-body.acf_content.post-type-page h4 small, #tinymce.post-type-tinymcetemplates h4 small, .l-post-content h5 small, #tinymce.post-type-post h5 small, #tinymce.post-type-page h5 small, #tinymce.mce-content-body.acf_content h5 small, #tinymce.mce-content-body.acf_content.post-type-page h5 small, #tinymce.post-type-tinymcetemplates h5 small, .l-post-content h6 small, #tinymce.post-type-post h6 small, #tinymce.post-type-page h6 small, #tinymce.mce-content-body.acf_content h6 small, #tinymce.mce-content-body.acf_content.post-type-page h6 small, #tinymce.post-type-tinymcetemplates h6 small, .heading .c-dropdown__list li a, .c-dropdown__list li .heading a, .c-features-card__title .c-dropdown__list li a, .c-dropdown__list li .c-features-card__title a, .c-image-content__title .c-dropdown__list li a, .c-dropdown__list li .c-image-content__title a, .c-opening__title .c-dropdown__list li a, .c-dropdown__list li .c-opening__title a, .c-other-content__head .c-dropdown__list li a, .c-dropdown__list li .c-other-content__head a, .c-post-content-page-head__title .c-dropdown__list li a, .c-dropdown__list li .c-post-content-page-head__title a, .c-special-landing__title .c-dropdown__list li a, .c-dropdown__list li .c-special-landing__title a, .l-post-content h2 .c-dropdown__list li a, .c-dropdown__list li .l-post-content h2 a, #tinymce.post-type-post h2 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-post h2 a, #tinymce.post-type-page h2 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-page h2 a, #tinymce.mce-content-body.acf_content h2 .c-dropdown__list li a, .c-dropdown__list li #tinymce.mce-content-body.acf_content h2 a, #tinymce.post-type-tinymcetemplates h2 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-tinymcetemplates h2 a, .l-post-content h3 .c-dropdown__list li a, .c-dropdown__list li .l-post-content h3 a, #tinymce.post-type-post h3 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-post h3 a, #tinymce.post-type-page h3 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-page h3 a, #tinymce.mce-content-body.acf_content h3 .c-dropdown__list li a, .c-dropdown__list li #tinymce.mce-content-body.acf_content h3 a, #tinymce.post-type-tinymcetemplates h3 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-tinymcetemplates h3 a, .l-post-content h4 .c-dropdown__list li a, .c-dropdown__list li .l-post-content h4 a, #tinymce.post-type-post h4 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-post h4 a, #tinymce.post-type-page h4 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-page h4 a, #tinymce.mce-content-body.acf_content h4 .c-dropdown__list li a, .c-dropdown__list li #tinymce.mce-content-body.acf_content h4 a, #tinymce.post-type-tinymcetemplates h4 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-tinymcetemplates h4 a, .l-post-content h5 .c-dropdown__list li a, .c-dropdown__list li .l-post-content h5 a, #tinymce.post-type-post h5 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-post h5 a, #tinymce.post-type-page h5 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-page h5 a, #tinymce.mce-content-body.acf_content h5 .c-dropdown__list li a, .c-dropdown__list li #tinymce.mce-content-body.acf_content h5 a, #tinymce.post-type-tinymcetemplates h5 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-tinymcetemplates h5 a, .l-post-content h6 .c-dropdown__list li a, .c-dropdown__list li .l-post-content h6 a, #tinymce.post-type-post h6 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-post h6 a, #tinymce.post-type-page h6 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-page h6 a, #tinymce.mce-content-body.acf_content h6 .c-dropdown__list li a, .c-dropdown__list li #tinymce.mce-content-body.acf_content h6 a, #tinymce.post-type-tinymcetemplates h6 .c-dropdown__list li a, .c-dropdown__list li #tinymce.post-type-tinymcetemplates h6 a {
  font-size: 0.65em;
}

.heading.is-pageheader, .is-pageheader.c-features-card__title, .is-pageheader.c-image-content__title, .is-pageheader.c-opening__title, .is-pageheader.c-other-content__head, .is-pageheader.c-post-content-page-head__title, .is-pageheader.c-special-landing__title, .l-post-content h2.is-pageheader, #tinymce.post-type-post h2.is-pageheader, #tinymce.post-type-page h2.is-pageheader, #tinymce.mce-content-body.acf_content h2.is-pageheader, #tinymce.post-type-tinymcetemplates h2.is-pageheader, .l-post-content h3.is-pageheader, #tinymce.post-type-post h3.is-pageheader, #tinymce.post-type-page h3.is-pageheader, #tinymce.mce-content-body.acf_content h3.is-pageheader, #tinymce.post-type-tinymcetemplates h3.is-pageheader, .l-post-content h4.is-pageheader, #tinymce.post-type-post h4.is-pageheader, #tinymce.post-type-page h4.is-pageheader, #tinymce.mce-content-body.acf_content h4.is-pageheader, #tinymce.post-type-tinymcetemplates h4.is-pageheader, .l-post-content h5.is-pageheader, #tinymce.post-type-post h5.is-pageheader, #tinymce.post-type-page h5.is-pageheader, #tinymce.mce-content-body.acf_content h5.is-pageheader, #tinymce.post-type-tinymcetemplates h5.is-pageheader, .l-post-content h6.is-pageheader, #tinymce.post-type-post h6.is-pageheader, #tinymce.post-type-page h6.is-pageheader, #tinymce.mce-content-body.acf_content h6.is-pageheader, #tinymce.post-type-tinymcetemplates h6.is-pageheader {
  font-size: 2rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-pageheader, .is-pageheader.c-features-card__title, .is-pageheader.c-image-content__title, .is-pageheader.c-opening__title, .is-pageheader.c-other-content__head, .is-pageheader.c-post-content-page-head__title, .is-pageheader.c-special-landing__title, .l-post-content h2.is-pageheader, #tinymce.post-type-post h2.is-pageheader, #tinymce.post-type-page h2.is-pageheader, #tinymce.mce-content-body.acf_content h2.is-pageheader, #tinymce.post-type-tinymcetemplates h2.is-pageheader, .l-post-content h3.is-pageheader, #tinymce.post-type-post h3.is-pageheader, #tinymce.post-type-page h3.is-pageheader, #tinymce.mce-content-body.acf_content h3.is-pageheader, #tinymce.post-type-tinymcetemplates h3.is-pageheader, .l-post-content h4.is-pageheader, #tinymce.post-type-post h4.is-pageheader, #tinymce.post-type-page h4.is-pageheader, #tinymce.mce-content-body.acf_content h4.is-pageheader, #tinymce.post-type-tinymcetemplates h4.is-pageheader, .l-post-content h5.is-pageheader, #tinymce.post-type-post h5.is-pageheader, #tinymce.post-type-page h5.is-pageheader, #tinymce.mce-content-body.acf_content h5.is-pageheader, #tinymce.post-type-tinymcetemplates h5.is-pageheader, .l-post-content h6.is-pageheader, #tinymce.post-type-post h6.is-pageheader, #tinymce.post-type-page h6.is-pageheader, #tinymce.mce-content-body.acf_content h6.is-pageheader, #tinymce.post-type-tinymcetemplates h6.is-pageheader {
    font-size: 1.6rem;
  }
}

.heading.is-xlg, .heading.is-lg, .is-lg.c-features-card__title, .is-lg.c-image-content__title, .is-lg.c-opening__title, .is-lg.c-other-content__head, .is-lg.c-post-content-page-head__title, .is-lg.c-special-landing__title, .l-post-content h2.is-lg, #tinymce.post-type-post h2.is-lg, #tinymce.post-type-page h2.is-lg, #tinymce.mce-content-body.acf_content h2.is-lg, #tinymce.post-type-tinymcetemplates h2.is-lg, .l-post-content h3.is-lg, #tinymce.post-type-post h3.is-lg, #tinymce.post-type-page h3.is-lg, #tinymce.mce-content-body.acf_content h3.is-lg, #tinymce.post-type-tinymcetemplates h3.is-lg, .l-post-content h4.is-lg, #tinymce.post-type-post h4.is-lg, #tinymce.post-type-page h4.is-lg, #tinymce.mce-content-body.acf_content h4.is-lg, #tinymce.post-type-tinymcetemplates h4.is-lg, .l-post-content h5.is-lg, #tinymce.post-type-post h5.is-lg, #tinymce.post-type-page h5.is-lg, #tinymce.mce-content-body.acf_content h5.is-lg, #tinymce.post-type-tinymcetemplates h5.is-lg, .l-post-content h6.is-lg, #tinymce.post-type-post h6.is-lg, #tinymce.post-type-page h6.is-lg, #tinymce.mce-content-body.acf_content h6.is-lg, #tinymce.post-type-tinymcetemplates h6.is-lg, .is-xlg.c-features-card__title, .is-xlg.c-image-content__title, .is-xlg.c-opening__title, .is-xlg.c-other-content__head, .is-xlg.c-post-content-page-head__title, .is-xlg.c-special-landing__title, .l-post-content h2.is-xlg, #tinymce.post-type-post h2.is-xlg, #tinymce.post-type-page h2.is-xlg, #tinymce.mce-content-body.acf_content h2.is-xlg, #tinymce.post-type-tinymcetemplates h2.is-xlg, .l-post-content h3.is-xlg, #tinymce.post-type-post h3.is-xlg, #tinymce.post-type-page h3.is-xlg, #tinymce.mce-content-body.acf_content h3.is-xlg, #tinymce.post-type-tinymcetemplates h3.is-xlg, .l-post-content h4.is-xlg, #tinymce.post-type-post h4.is-xlg, #tinymce.post-type-page h4.is-xlg, #tinymce.mce-content-body.acf_content h4.is-xlg, #tinymce.post-type-tinymcetemplates h4.is-xlg, .l-post-content h5.is-xlg, #tinymce.post-type-post h5.is-xlg, #tinymce.post-type-page h5.is-xlg, #tinymce.mce-content-body.acf_content h5.is-xlg, #tinymce.post-type-tinymcetemplates h5.is-xlg, .l-post-content h6.is-xlg, #tinymce.post-type-post h6.is-xlg, #tinymce.post-type-page h6.is-xlg, #tinymce.mce-content-body.acf_content h6.is-xlg, #tinymce.post-type-tinymcetemplates h6.is-xlg {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 72px;
  letter-spacing: 2.8px;
  color: #342f65;
  line-height: 1;
  padding-bottom: 30px;
  margin-bottom: 24px;
  position: relative;
}

.heading.is-xlg:first-letter, .heading.is-lg:first-letter, .is-lg.c-features-card__title:first-letter, .is-lg.c-image-content__title:first-letter, .is-lg.c-opening__title:first-letter, .is-lg.c-other-content__head:first-letter, .is-lg.c-post-content-page-head__title:first-letter, .is-lg.c-special-landing__title:first-letter, .l-post-content h2.is-lg:first-letter, #tinymce.post-type-post h2.is-lg:first-letter, #tinymce.post-type-page h2.is-lg:first-letter, #tinymce.mce-content-body.acf_content h2.is-lg:first-letter, #tinymce.post-type-tinymcetemplates h2.is-lg:first-letter, .l-post-content h3.is-lg:first-letter, #tinymce.post-type-post h3.is-lg:first-letter, #tinymce.post-type-page h3.is-lg:first-letter, #tinymce.mce-content-body.acf_content h3.is-lg:first-letter, #tinymce.post-type-tinymcetemplates h3.is-lg:first-letter, .l-post-content h4.is-lg:first-letter, #tinymce.post-type-post h4.is-lg:first-letter, #tinymce.post-type-page h4.is-lg:first-letter, #tinymce.mce-content-body.acf_content h4.is-lg:first-letter, #tinymce.post-type-tinymcetemplates h4.is-lg:first-letter, .l-post-content h5.is-lg:first-letter, #tinymce.post-type-post h5.is-lg:first-letter, #tinymce.post-type-page h5.is-lg:first-letter, #tinymce.mce-content-body.acf_content h5.is-lg:first-letter, #tinymce.post-type-tinymcetemplates h5.is-lg:first-letter, .l-post-content h6.is-lg:first-letter, #tinymce.post-type-post h6.is-lg:first-letter, #tinymce.post-type-page h6.is-lg:first-letter, #tinymce.mce-content-body.acf_content h6.is-lg:first-letter, #tinymce.post-type-tinymcetemplates h6.is-lg:first-letter, .is-xlg.c-features-card__title:first-letter, .is-xlg.c-image-content__title:first-letter, .is-xlg.c-opening__title:first-letter, .is-xlg.c-other-content__head:first-letter, .is-xlg.c-post-content-page-head__title:first-letter, .is-xlg.c-special-landing__title:first-letter, .l-post-content h2.is-xlg:first-letter, #tinymce.post-type-post h2.is-xlg:first-letter, #tinymce.post-type-page h2.is-xlg:first-letter, #tinymce.mce-content-body.acf_content h2.is-xlg:first-letter, #tinymce.post-type-tinymcetemplates h2.is-xlg:first-letter, .l-post-content h3.is-xlg:first-letter, #tinymce.post-type-post h3.is-xlg:first-letter, #tinymce.post-type-page h3.is-xlg:first-letter, #tinymce.mce-content-body.acf_content h3.is-xlg:first-letter, #tinymce.post-type-tinymcetemplates h3.is-xlg:first-letter, .l-post-content h4.is-xlg:first-letter, #tinymce.post-type-post h4.is-xlg:first-letter, #tinymce.post-type-page h4.is-xlg:first-letter, #tinymce.mce-content-body.acf_content h4.is-xlg:first-letter, #tinymce.post-type-tinymcetemplates h4.is-xlg:first-letter, .l-post-content h5.is-xlg:first-letter, #tinymce.post-type-post h5.is-xlg:first-letter, #tinymce.post-type-page h5.is-xlg:first-letter, #tinymce.mce-content-body.acf_content h5.is-xlg:first-letter, #tinymce.post-type-tinymcetemplates h5.is-xlg:first-letter, .l-post-content h6.is-xlg:first-letter, #tinymce.post-type-post h6.is-xlg:first-letter, #tinymce.post-type-page h6.is-xlg:first-letter, #tinymce.mce-content-body.acf_content h6.is-xlg:first-letter, #tinymce.post-type-tinymcetemplates h6.is-xlg:first-letter {
  color: #664494;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-xlg, .heading.is-lg, .is-lg.c-features-card__title, .is-lg.c-image-content__title, .is-lg.c-opening__title, .is-lg.c-other-content__head, .is-lg.c-post-content-page-head__title, .is-lg.c-special-landing__title, .l-post-content h2.is-lg, #tinymce.post-type-post h2.is-lg, #tinymce.post-type-page h2.is-lg, #tinymce.mce-content-body.acf_content h2.is-lg, #tinymce.post-type-tinymcetemplates h2.is-lg, .l-post-content h3.is-lg, #tinymce.post-type-post h3.is-lg, #tinymce.post-type-page h3.is-lg, #tinymce.mce-content-body.acf_content h3.is-lg, #tinymce.post-type-tinymcetemplates h3.is-lg, .l-post-content h4.is-lg, #tinymce.post-type-post h4.is-lg, #tinymce.post-type-page h4.is-lg, #tinymce.mce-content-body.acf_content h4.is-lg, #tinymce.post-type-tinymcetemplates h4.is-lg, .l-post-content h5.is-lg, #tinymce.post-type-post h5.is-lg, #tinymce.post-type-page h5.is-lg, #tinymce.mce-content-body.acf_content h5.is-lg, #tinymce.post-type-tinymcetemplates h5.is-lg, .l-post-content h6.is-lg, #tinymce.post-type-post h6.is-lg, #tinymce.post-type-page h6.is-lg, #tinymce.mce-content-body.acf_content h6.is-lg, #tinymce.post-type-tinymcetemplates h6.is-lg, .is-xlg.c-features-card__title, .is-xlg.c-image-content__title, .is-xlg.c-opening__title, .is-xlg.c-other-content__head, .is-xlg.c-post-content-page-head__title, .is-xlg.c-special-landing__title, .l-post-content h2.is-xlg, #tinymce.post-type-post h2.is-xlg, #tinymce.post-type-page h2.is-xlg, #tinymce.mce-content-body.acf_content h2.is-xlg, #tinymce.post-type-tinymcetemplates h2.is-xlg, .l-post-content h3.is-xlg, #tinymce.post-type-post h3.is-xlg, #tinymce.post-type-page h3.is-xlg, #tinymce.mce-content-body.acf_content h3.is-xlg, #tinymce.post-type-tinymcetemplates h3.is-xlg, .l-post-content h4.is-xlg, #tinymce.post-type-post h4.is-xlg, #tinymce.post-type-page h4.is-xlg, #tinymce.mce-content-body.acf_content h4.is-xlg, #tinymce.post-type-tinymcetemplates h4.is-xlg, .l-post-content h5.is-xlg, #tinymce.post-type-post h5.is-xlg, #tinymce.post-type-page h5.is-xlg, #tinymce.mce-content-body.acf_content h5.is-xlg, #tinymce.post-type-tinymcetemplates h5.is-xlg, .l-post-content h6.is-xlg, #tinymce.post-type-post h6.is-xlg, #tinymce.post-type-page h6.is-xlg, #tinymce.mce-content-body.acf_content h6.is-xlg, #tinymce.post-type-tinymcetemplates h6.is-xlg {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: 1.8px;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
}

.heading.is-xlg span, .heading.is-lg span, .is-lg.c-features-card__title span, .is-lg.c-image-content__title span, .is-lg.c-opening__title span, .is-lg.c-other-content__head span, .is-lg.c-post-content-page-head__title span, .is-lg.c-special-landing__title span, .l-post-content h2.is-lg span, #tinymce.post-type-post h2.is-lg span, #tinymce.post-type-page h2.is-lg span, #tinymce.mce-content-body.acf_content h2.is-lg span, #tinymce.post-type-tinymcetemplates h2.is-lg span, .l-post-content h3.is-lg span, #tinymce.post-type-post h3.is-lg span, #tinymce.post-type-page h3.is-lg span, #tinymce.mce-content-body.acf_content h3.is-lg span, #tinymce.post-type-tinymcetemplates h3.is-lg span, .l-post-content h4.is-lg span, #tinymce.post-type-post h4.is-lg span, #tinymce.post-type-page h4.is-lg span, #tinymce.mce-content-body.acf_content h4.is-lg span, #tinymce.post-type-tinymcetemplates h4.is-lg span, .l-post-content h5.is-lg span, #tinymce.post-type-post h5.is-lg span, #tinymce.post-type-page h5.is-lg span, #tinymce.mce-content-body.acf_content h5.is-lg span, #tinymce.post-type-tinymcetemplates h5.is-lg span, .l-post-content h6.is-lg span, #tinymce.post-type-post h6.is-lg span, #tinymce.post-type-page h6.is-lg span, #tinymce.mce-content-body.acf_content h6.is-lg span, #tinymce.post-type-tinymcetemplates h6.is-lg span, .is-xlg.c-features-card__title span, .is-xlg.c-image-content__title span, .is-xlg.c-opening__title span, .is-xlg.c-other-content__head span, .is-xlg.c-post-content-page-head__title span, .is-xlg.c-special-landing__title span, .l-post-content h2.is-xlg span, #tinymce.post-type-post h2.is-xlg span, #tinymce.post-type-page h2.is-xlg span, #tinymce.mce-content-body.acf_content h2.is-xlg span, #tinymce.post-type-tinymcetemplates h2.is-xlg span, .l-post-content h3.is-xlg span, #tinymce.post-type-post h3.is-xlg span, #tinymce.post-type-page h3.is-xlg span, #tinymce.mce-content-body.acf_content h3.is-xlg span, #tinymce.post-type-tinymcetemplates h3.is-xlg span, .l-post-content h4.is-xlg span, #tinymce.post-type-post h4.is-xlg span, #tinymce.post-type-page h4.is-xlg span, #tinymce.mce-content-body.acf_content h4.is-xlg span, #tinymce.post-type-tinymcetemplates h4.is-xlg span, .l-post-content h5.is-xlg span, #tinymce.post-type-post h5.is-xlg span, #tinymce.post-type-page h5.is-xlg span, #tinymce.mce-content-body.acf_content h5.is-xlg span, #tinymce.post-type-tinymcetemplates h5.is-xlg span, .l-post-content h6.is-xlg span, #tinymce.post-type-post h6.is-xlg span, #tinymce.post-type-page h6.is-xlg span, #tinymce.mce-content-body.acf_content h6.is-xlg span, #tinymce.post-type-tinymcetemplates h6.is-xlg span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 3.6px;
  color: #333;
  line-height: 1;
  margin-top: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-xlg span, .heading.is-lg span, .is-lg.c-features-card__title span, .is-lg.c-image-content__title span, .is-lg.c-opening__title span, .is-lg.c-other-content__head span, .is-lg.c-post-content-page-head__title span, .is-lg.c-special-landing__title span, .l-post-content h2.is-lg span, #tinymce.post-type-post h2.is-lg span, #tinymce.post-type-page h2.is-lg span, #tinymce.mce-content-body.acf_content h2.is-lg span, #tinymce.post-type-tinymcetemplates h2.is-lg span, .l-post-content h3.is-lg span, #tinymce.post-type-post h3.is-lg span, #tinymce.post-type-page h3.is-lg span, #tinymce.mce-content-body.acf_content h3.is-lg span, #tinymce.post-type-tinymcetemplates h3.is-lg span, .l-post-content h4.is-lg span, #tinymce.post-type-post h4.is-lg span, #tinymce.post-type-page h4.is-lg span, #tinymce.mce-content-body.acf_content h4.is-lg span, #tinymce.post-type-tinymcetemplates h4.is-lg span, .l-post-content h5.is-lg span, #tinymce.post-type-post h5.is-lg span, #tinymce.post-type-page h5.is-lg span, #tinymce.mce-content-body.acf_content h5.is-lg span, #tinymce.post-type-tinymcetemplates h5.is-lg span, .l-post-content h6.is-lg span, #tinymce.post-type-post h6.is-lg span, #tinymce.post-type-page h6.is-lg span, #tinymce.mce-content-body.acf_content h6.is-lg span, #tinymce.post-type-tinymcetemplates h6.is-lg span, .is-xlg.c-features-card__title span, .is-xlg.c-image-content__title span, .is-xlg.c-opening__title span, .is-xlg.c-other-content__head span, .is-xlg.c-post-content-page-head__title span, .is-xlg.c-special-landing__title span, .l-post-content h2.is-xlg span, #tinymce.post-type-post h2.is-xlg span, #tinymce.post-type-page h2.is-xlg span, #tinymce.mce-content-body.acf_content h2.is-xlg span, #tinymce.post-type-tinymcetemplates h2.is-xlg span, .l-post-content h3.is-xlg span, #tinymce.post-type-post h3.is-xlg span, #tinymce.post-type-page h3.is-xlg span, #tinymce.mce-content-body.acf_content h3.is-xlg span, #tinymce.post-type-tinymcetemplates h3.is-xlg span, .l-post-content h4.is-xlg span, #tinymce.post-type-post h4.is-xlg span, #tinymce.post-type-page h4.is-xlg span, #tinymce.mce-content-body.acf_content h4.is-xlg span, #tinymce.post-type-tinymcetemplates h4.is-xlg span, .l-post-content h5.is-xlg span, #tinymce.post-type-post h5.is-xlg span, #tinymce.post-type-page h5.is-xlg span, #tinymce.mce-content-body.acf_content h5.is-xlg span, #tinymce.post-type-tinymcetemplates h5.is-xlg span, .l-post-content h6.is-xlg span, #tinymce.post-type-post h6.is-xlg span, #tinymce.post-type-page h6.is-xlg span, #tinymce.mce-content-body.acf_content h6.is-xlg span, #tinymce.post-type-tinymcetemplates h6.is-xlg span {
    font-size: 13.5px;
    margin-top: 12px;
  }
}

.heading.is-xlg:after, .heading.is-lg:after, .is-lg.c-features-card__title:after, .is-lg.c-image-content__title:after, .is-lg.c-opening__title:after, .is-lg.c-other-content__head:after, .is-lg.c-post-content-page-head__title:after, .is-lg.c-special-landing__title:after, .l-post-content h2.is-lg:after, #tinymce.post-type-post h2.is-lg:after, #tinymce.post-type-page h2.is-lg:after, #tinymce.mce-content-body.acf_content h2.is-lg:after, #tinymce.post-type-tinymcetemplates h2.is-lg:after, .l-post-content h3.is-lg:after, #tinymce.post-type-post h3.is-lg:after, #tinymce.post-type-page h3.is-lg:after, #tinymce.mce-content-body.acf_content h3.is-lg:after, #tinymce.post-type-tinymcetemplates h3.is-lg:after, .l-post-content h4.is-lg:after, #tinymce.post-type-post h4.is-lg:after, #tinymce.post-type-page h4.is-lg:after, #tinymce.mce-content-body.acf_content h4.is-lg:after, #tinymce.post-type-tinymcetemplates h4.is-lg:after, .l-post-content h5.is-lg:after, #tinymce.post-type-post h5.is-lg:after, #tinymce.post-type-page h5.is-lg:after, #tinymce.mce-content-body.acf_content h5.is-lg:after, #tinymce.post-type-tinymcetemplates h5.is-lg:after, .l-post-content h6.is-lg:after, #tinymce.post-type-post h6.is-lg:after, #tinymce.post-type-page h6.is-lg:after, #tinymce.mce-content-body.acf_content h6.is-lg:after, #tinymce.post-type-tinymcetemplates h6.is-lg:after, .is-xlg.c-features-card__title:after, .is-xlg.c-image-content__title:after, .is-xlg.c-opening__title:after, .is-xlg.c-other-content__head:after, .is-xlg.c-post-content-page-head__title:after, .is-xlg.c-special-landing__title:after, .l-post-content h2.is-xlg:after, #tinymce.post-type-post h2.is-xlg:after, #tinymce.post-type-page h2.is-xlg:after, #tinymce.mce-content-body.acf_content h2.is-xlg:after, #tinymce.post-type-tinymcetemplates h2.is-xlg:after, .l-post-content h3.is-xlg:after, #tinymce.post-type-post h3.is-xlg:after, #tinymce.post-type-page h3.is-xlg:after, #tinymce.mce-content-body.acf_content h3.is-xlg:after, #tinymce.post-type-tinymcetemplates h3.is-xlg:after, .l-post-content h4.is-xlg:after, #tinymce.post-type-post h4.is-xlg:after, #tinymce.post-type-page h4.is-xlg:after, #tinymce.mce-content-body.acf_content h4.is-xlg:after, #tinymce.post-type-tinymcetemplates h4.is-xlg:after, .l-post-content h5.is-xlg:after, #tinymce.post-type-post h5.is-xlg:after, #tinymce.post-type-page h5.is-xlg:after, #tinymce.mce-content-body.acf_content h5.is-xlg:after, #tinymce.post-type-tinymcetemplates h5.is-xlg:after, .l-post-content h6.is-xlg:after, #tinymce.post-type-post h6.is-xlg:after, #tinymce.post-type-page h6.is-xlg:after, #tinymce.mce-content-body.acf_content h6.is-xlg:after, #tinymce.post-type-tinymcetemplates h6.is-xlg:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #342f65;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-xlg:after, .heading.is-lg:after, .is-lg.c-features-card__title:after, .is-lg.c-image-content__title:after, .is-lg.c-opening__title:after, .is-lg.c-other-content__head:after, .is-lg.c-post-content-page-head__title:after, .is-lg.c-special-landing__title:after, .l-post-content h2.is-lg:after, #tinymce.post-type-post h2.is-lg:after, #tinymce.post-type-page h2.is-lg:after, #tinymce.mce-content-body.acf_content h2.is-lg:after, #tinymce.post-type-tinymcetemplates h2.is-lg:after, .l-post-content h3.is-lg:after, #tinymce.post-type-post h3.is-lg:after, #tinymce.post-type-page h3.is-lg:after, #tinymce.mce-content-body.acf_content h3.is-lg:after, #tinymce.post-type-tinymcetemplates h3.is-lg:after, .l-post-content h4.is-lg:after, #tinymce.post-type-post h4.is-lg:after, #tinymce.post-type-page h4.is-lg:after, #tinymce.mce-content-body.acf_content h4.is-lg:after, #tinymce.post-type-tinymcetemplates h4.is-lg:after, .l-post-content h5.is-lg:after, #tinymce.post-type-post h5.is-lg:after, #tinymce.post-type-page h5.is-lg:after, #tinymce.mce-content-body.acf_content h5.is-lg:after, #tinymce.post-type-tinymcetemplates h5.is-lg:after, .l-post-content h6.is-lg:after, #tinymce.post-type-post h6.is-lg:after, #tinymce.post-type-page h6.is-lg:after, #tinymce.mce-content-body.acf_content h6.is-lg:after, #tinymce.post-type-tinymcetemplates h6.is-lg:after, .is-xlg.c-features-card__title:after, .is-xlg.c-image-content__title:after, .is-xlg.c-opening__title:after, .is-xlg.c-other-content__head:after, .is-xlg.c-post-content-page-head__title:after, .is-xlg.c-special-landing__title:after, .l-post-content h2.is-xlg:after, #tinymce.post-type-post h2.is-xlg:after, #tinymce.post-type-page h2.is-xlg:after, #tinymce.mce-content-body.acf_content h2.is-xlg:after, #tinymce.post-type-tinymcetemplates h2.is-xlg:after, .l-post-content h3.is-xlg:after, #tinymce.post-type-post h3.is-xlg:after, #tinymce.post-type-page h3.is-xlg:after, #tinymce.mce-content-body.acf_content h3.is-xlg:after, #tinymce.post-type-tinymcetemplates h3.is-xlg:after, .l-post-content h4.is-xlg:after, #tinymce.post-type-post h4.is-xlg:after, #tinymce.post-type-page h4.is-xlg:after, #tinymce.mce-content-body.acf_content h4.is-xlg:after, #tinymce.post-type-tinymcetemplates h4.is-xlg:after, .l-post-content h5.is-xlg:after, #tinymce.post-type-post h5.is-xlg:after, #tinymce.post-type-page h5.is-xlg:after, #tinymce.mce-content-body.acf_content h5.is-xlg:after, #tinymce.post-type-tinymcetemplates h5.is-xlg:after, .l-post-content h6.is-xlg:after, #tinymce.post-type-post h6.is-xlg:after, #tinymce.post-type-page h6.is-xlg:after, #tinymce.mce-content-body.acf_content h6.is-xlg:after, #tinymce.post-type-tinymcetemplates h6.is-xlg:after {
    width: 60px;
    height: 3px;
  }
}

.heading.is-lg, .is-lg.c-features-card__title, .is-lg.c-image-content__title, .is-lg.c-opening__title, .is-lg.c-other-content__head, .is-lg.c-post-content-page-head__title, .is-lg.c-special-landing__title, .l-post-content h2.is-lg, #tinymce.post-type-post h2.is-lg, #tinymce.post-type-page h2.is-lg, #tinymce.mce-content-body.acf_content h2.is-lg, #tinymce.post-type-tinymcetemplates h2.is-lg, .l-post-content h3.is-lg, #tinymce.post-type-post h3.is-lg, #tinymce.post-type-page h3.is-lg, #tinymce.mce-content-body.acf_content h3.is-lg, #tinymce.post-type-tinymcetemplates h3.is-lg, .l-post-content h4.is-lg, #tinymce.post-type-post h4.is-lg, #tinymce.post-type-page h4.is-lg, #tinymce.mce-content-body.acf_content h4.is-lg, #tinymce.post-type-tinymcetemplates h4.is-lg, .l-post-content h5.is-lg, #tinymce.post-type-post h5.is-lg, #tinymce.post-type-page h5.is-lg, #tinymce.mce-content-body.acf_content h5.is-lg, #tinymce.post-type-tinymcetemplates h5.is-lg, .l-post-content h6.is-lg, #tinymce.post-type-post h6.is-lg, #tinymce.post-type-page h6.is-lg, #tinymce.mce-content-body.acf_content h6.is-lg, #tinymce.post-type-tinymcetemplates h6.is-lg {
  font-size: 56px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-lg, .is-lg.c-features-card__title, .is-lg.c-image-content__title, .is-lg.c-opening__title, .is-lg.c-other-content__head, .is-lg.c-post-content-page-head__title, .is-lg.c-special-landing__title, .l-post-content h2.is-lg, #tinymce.post-type-post h2.is-lg, #tinymce.post-type-page h2.is-lg, #tinymce.mce-content-body.acf_content h2.is-lg, #tinymce.post-type-tinymcetemplates h2.is-lg, .l-post-content h3.is-lg, #tinymce.post-type-post h3.is-lg, #tinymce.post-type-page h3.is-lg, #tinymce.mce-content-body.acf_content h3.is-lg, #tinymce.post-type-tinymcetemplates h3.is-lg, .l-post-content h4.is-lg, #tinymce.post-type-post h4.is-lg, #tinymce.post-type-page h4.is-lg, #tinymce.mce-content-body.acf_content h4.is-lg, #tinymce.post-type-tinymcetemplates h4.is-lg, .l-post-content h5.is-lg, #tinymce.post-type-post h5.is-lg, #tinymce.post-type-page h5.is-lg, #tinymce.mce-content-body.acf_content h5.is-lg, #tinymce.post-type-tinymcetemplates h5.is-lg, .l-post-content h6.is-lg, #tinymce.post-type-post h6.is-lg, #tinymce.post-type-page h6.is-lg, #tinymce.mce-content-body.acf_content h6.is-lg, #tinymce.post-type-tinymcetemplates h6.is-lg {
    font-size: 36px;
  }
}

.heading.is-md, .is-md.c-features-card__title, .is-md.c-image-content__title, .is-md.c-opening__title, .is-md.c-other-content__head, .is-md.c-post-content-page-head__title, .is-md.c-special-landing__title, .l-post-content h2.is-md, #tinymce.post-type-post h2.is-md, #tinymce.post-type-page h2.is-md, #tinymce.mce-content-body.acf_content h2.is-md, #tinymce.post-type-tinymcetemplates h2.is-md, .l-post-content h3.is-md, #tinymce.post-type-post h3.is-md, #tinymce.post-type-page h3.is-md, #tinymce.mce-content-body.acf_content h3.is-md, #tinymce.post-type-tinymcetemplates h3.is-md, .l-post-content h4.is-md, #tinymce.post-type-post h4.is-md, #tinymce.post-type-page h4.is-md, #tinymce.mce-content-body.acf_content h4.is-md, #tinymce.post-type-tinymcetemplates h4.is-md, .l-post-content h5.is-md, #tinymce.post-type-post h5.is-md, #tinymce.post-type-page h5.is-md, #tinymce.mce-content-body.acf_content h5.is-md, #tinymce.post-type-tinymcetemplates h5.is-md, .l-post-content h6.is-md, #tinymce.post-type-post h6.is-md, #tinymce.post-type-page h6.is-md, #tinymce.mce-content-body.acf_content h6.is-md, #tinymce.post-type-tinymcetemplates h6.is-md {
  font-size: 38px;
  letter-spacing: 3.8px;
  margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-md, .is-md.c-features-card__title, .is-md.c-image-content__title, .is-md.c-opening__title, .is-md.c-other-content__head, .is-md.c-post-content-page-head__title, .is-md.c-special-landing__title, .l-post-content h2.is-md, #tinymce.post-type-post h2.is-md, #tinymce.post-type-page h2.is-md, #tinymce.mce-content-body.acf_content h2.is-md, #tinymce.post-type-tinymcetemplates h2.is-md, .l-post-content h3.is-md, #tinymce.post-type-post h3.is-md, #tinymce.post-type-page h3.is-md, #tinymce.mce-content-body.acf_content h3.is-md, #tinymce.post-type-tinymcetemplates h3.is-md, .l-post-content h4.is-md, #tinymce.post-type-post h4.is-md, #tinymce.post-type-page h4.is-md, #tinymce.mce-content-body.acf_content h4.is-md, #tinymce.post-type-tinymcetemplates h4.is-md, .l-post-content h5.is-md, #tinymce.post-type-post h5.is-md, #tinymce.post-type-page h5.is-md, #tinymce.mce-content-body.acf_content h5.is-md, #tinymce.post-type-tinymcetemplates h5.is-md, .l-post-content h6.is-md, #tinymce.post-type-post h6.is-md, #tinymce.post-type-page h6.is-md, #tinymce.mce-content-body.acf_content h6.is-md, #tinymce.post-type-tinymcetemplates h6.is-md {
    font-size: 28px;
  }
}

.heading.is-sm, .is-sm.c-features-card__title, .is-sm.c-image-content__title, .c-opening__title, .c-other-content__head, .c-post-content-page-head__title, .is-sm.c-special-landing__title, .l-post-content h2, #tinymce.post-type-post h2, #tinymce.post-type-page h2, #tinymce.mce-content-body.acf_content h2, #tinymce.mce-content-body.acf_content.post-type-page h2, #tinymce.post-type-tinymcetemplates h2, .l-post-content h3.is-sm, #tinymce.post-type-post h3.is-sm, #tinymce.post-type-page h3.is-sm, #tinymce.mce-content-body.acf_content h3.is-sm, #tinymce.post-type-tinymcetemplates h3.is-sm, .l-post-content h4.is-sm, #tinymce.post-type-post h4.is-sm, #tinymce.post-type-page h4.is-sm, #tinymce.mce-content-body.acf_content h4.is-sm, #tinymce.post-type-tinymcetemplates h4.is-sm, .l-post-content h5.is-sm, #tinymce.post-type-post h5.is-sm, #tinymce.post-type-page h5.is-sm, #tinymce.mce-content-body.acf_content h5.is-sm, #tinymce.post-type-tinymcetemplates h5.is-sm, .l-post-content h6.is-sm, #tinymce.post-type-post h6.is-sm, #tinymce.post-type-page h6.is-sm, #tinymce.mce-content-body.acf_content h6.is-sm, #tinymce.post-type-tinymcetemplates h6.is-sm {
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-sm, .is-sm.c-features-card__title, .is-sm.c-image-content__title, .c-opening__title, .c-other-content__head, .c-post-content-page-head__title, .is-sm.c-special-landing__title, .l-post-content h2, #tinymce.post-type-post h2, #tinymce.post-type-page h2, #tinymce.mce-content-body.acf_content h2, #tinymce.mce-content-body.acf_content.post-type-page h2, #tinymce.post-type-tinymcetemplates h2, .l-post-content h3.is-sm, #tinymce.post-type-post h3.is-sm, #tinymce.post-type-page h3.is-sm, #tinymce.mce-content-body.acf_content h3.is-sm, #tinymce.post-type-tinymcetemplates h3.is-sm, .l-post-content h4.is-sm, #tinymce.post-type-post h4.is-sm, #tinymce.post-type-page h4.is-sm, #tinymce.mce-content-body.acf_content h4.is-sm, #tinymce.post-type-tinymcetemplates h4.is-sm, .l-post-content h5.is-sm, #tinymce.post-type-post h5.is-sm, #tinymce.post-type-page h5.is-sm, #tinymce.mce-content-body.acf_content h5.is-sm, #tinymce.post-type-tinymcetemplates h5.is-sm, .l-post-content h6.is-sm, #tinymce.post-type-post h6.is-sm, #tinymce.post-type-page h6.is-sm, #tinymce.mce-content-body.acf_content h6.is-sm, #tinymce.post-type-tinymcetemplates h6.is-sm {
    font-size: 24px;
    letter-spacing: 2px;
  }
}

.heading.is-xs, .c-features-card__title, .c-image-content__title, .is-xs.c-opening__title, .is-xs.c-other-content__head, .is-xs.c-post-content-page-head__title, .c-special-landing__title, .l-post-content h2.is-xs, #tinymce.post-type-post h2.is-xs, #tinymce.post-type-page h2.is-xs, #tinymce.mce-content-body.acf_content h2.is-xs, #tinymce.post-type-tinymcetemplates h2.is-xs, .l-post-content h3, #tinymce.post-type-post h3, #tinymce.post-type-page h3, #tinymce.mce-content-body.acf_content h3, #tinymce.mce-content-body.acf_content.post-type-page h3, #tinymce.post-type-tinymcetemplates h3, .l-post-content h4, #tinymce.post-type-post h4, #tinymce.post-type-page h4, #tinymce.mce-content-body.acf_content h4, #tinymce.mce-content-body.acf_content.post-type-page h4, #tinymce.post-type-tinymcetemplates h4, .l-post-content h5.is-xs, #tinymce.post-type-post h5.is-xs, #tinymce.post-type-page h5.is-xs, #tinymce.mce-content-body.acf_content h5.is-xs, #tinymce.post-type-tinymcetemplates h5.is-xs, .l-post-content h6.is-xs, #tinymce.post-type-post h6.is-xs, #tinymce.post-type-page h6.is-xs, #tinymce.mce-content-body.acf_content h6.is-xs, #tinymce.post-type-tinymcetemplates h6.is-xs {
  font-size: 24px;
  letter-spacing: 2.4px;
  margin-bottom: 22px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-xs, .c-features-card__title, .c-image-content__title, .is-xs.c-opening__title, .is-xs.c-other-content__head, .is-xs.c-post-content-page-head__title, .c-special-landing__title, .l-post-content h2.is-xs, #tinymce.post-type-post h2.is-xs, #tinymce.post-type-page h2.is-xs, #tinymce.mce-content-body.acf_content h2.is-xs, #tinymce.post-type-tinymcetemplates h2.is-xs, .l-post-content h3, #tinymce.post-type-post h3, #tinymce.post-type-page h3, #tinymce.mce-content-body.acf_content h3, #tinymce.mce-content-body.acf_content.post-type-page h3, #tinymce.post-type-tinymcetemplates h3, .l-post-content h4, #tinymce.post-type-post h4, #tinymce.post-type-page h4, #tinymce.mce-content-body.acf_content h4, #tinymce.mce-content-body.acf_content.post-type-page h4, #tinymce.post-type-tinymcetemplates h4, .l-post-content h5.is-xs, #tinymce.post-type-post h5.is-xs, #tinymce.post-type-page h5.is-xs, #tinymce.mce-content-body.acf_content h5.is-xs, #tinymce.post-type-tinymcetemplates h5.is-xs, .l-post-content h6.is-xs, #tinymce.post-type-post h6.is-xs, #tinymce.post-type-page h6.is-xs, #tinymce.mce-content-body.acf_content h6.is-xs, #tinymce.post-type-tinymcetemplates h6.is-xs {
    font-size: 20px;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
  }
}

.heading.is-xxs, .is-xxs.c-features-card__title, .is-xxs.c-image-content__title, .c-office-list__name, .is-xxs.c-opening__title, .is-xxs.c-other-content__head, .is-xxs.c-post-content-page-head__title, .is-xxs.c-special-landing__title, .l-post-content h2.is-xxs, #tinymce.post-type-post h2.is-xxs, #tinymce.post-type-page h2.is-xxs, #tinymce.mce-content-body.acf_content h2.is-xxs, #tinymce.post-type-tinymcetemplates h2.is-xxs, .l-post-content h3.is-xxs, #tinymce.post-type-post h3.is-xxs, #tinymce.post-type-page h3.is-xxs, #tinymce.mce-content-body.acf_content h3.is-xxs, #tinymce.post-type-tinymcetemplates h3.is-xxs, .l-post-content h4.is-xxs, #tinymce.post-type-post h4.is-xxs, #tinymce.post-type-page h4.is-xxs, #tinymce.mce-content-body.acf_content h4.is-xxs, #tinymce.post-type-tinymcetemplates h4.is-xxs, .l-post-content h5, #tinymce.post-type-post h5, #tinymce.post-type-page h5, #tinymce.mce-content-body.acf_content h5, #tinymce.mce-content-body.acf_content.post-type-page h5, #tinymce.post-type-tinymcetemplates h5, .l-post-content h6.is-xxs, #tinymce.post-type-post h6.is-xxs, #tinymce.post-type-page h6.is-xxs, #tinymce.mce-content-body.acf_content h6.is-xxs, #tinymce.post-type-tinymcetemplates h6.is-xxs {
  font-size: 20px;
  letter-spacing: 2px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-xxs, .is-xxs.c-features-card__title, .is-xxs.c-image-content__title, .c-office-list__name, .is-xxs.c-opening__title, .is-xxs.c-other-content__head, .is-xxs.c-post-content-page-head__title, .is-xxs.c-special-landing__title, .l-post-content h2.is-xxs, #tinymce.post-type-post h2.is-xxs, #tinymce.post-type-page h2.is-xxs, #tinymce.mce-content-body.acf_content h2.is-xxs, #tinymce.post-type-tinymcetemplates h2.is-xxs, .l-post-content h3.is-xxs, #tinymce.post-type-post h3.is-xxs, #tinymce.post-type-page h3.is-xxs, #tinymce.mce-content-body.acf_content h3.is-xxs, #tinymce.post-type-tinymcetemplates h3.is-xxs, .l-post-content h4.is-xxs, #tinymce.post-type-post h4.is-xxs, #tinymce.post-type-page h4.is-xxs, #tinymce.mce-content-body.acf_content h4.is-xxs, #tinymce.post-type-tinymcetemplates h4.is-xxs, .l-post-content h5, #tinymce.post-type-post h5, #tinymce.post-type-page h5, #tinymce.mce-content-body.acf_content h5, #tinymce.mce-content-body.acf_content.post-type-page h5, #tinymce.post-type-tinymcetemplates h5, .l-post-content h6.is-xxs, #tinymce.post-type-post h6.is-xxs, #tinymce.post-type-page h6.is-xxs, #tinymce.mce-content-body.acf_content h6.is-xxs, #tinymce.post-type-tinymcetemplates h6.is-xxs {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}

.heading.is-xxxs, .is-xxxs.c-features-card__title, .is-xxxs.c-image-content__title, .is-xxxs.c-opening__title, .is-xxxs.c-other-content__head, .is-xxxs.c-post-content-page-head__title, .is-xxxs.c-special-landing__title, .l-post-content h2.is-xxxs, #tinymce.post-type-post h2.is-xxxs, #tinymce.post-type-page h2.is-xxxs, #tinymce.mce-content-body.acf_content h2.is-xxxs, #tinymce.post-type-tinymcetemplates h2.is-xxxs, .l-post-content h3.is-xxxs, #tinymce.post-type-post h3.is-xxxs, #tinymce.post-type-page h3.is-xxxs, #tinymce.mce-content-body.acf_content h3.is-xxxs, #tinymce.post-type-tinymcetemplates h3.is-xxxs, .l-post-content h4.is-xxxs, #tinymce.post-type-post h4.is-xxxs, #tinymce.post-type-page h4.is-xxxs, #tinymce.mce-content-body.acf_content h4.is-xxxs, #tinymce.post-type-tinymcetemplates h4.is-xxxs, .l-post-content h5.is-xxxs, #tinymce.post-type-post h5.is-xxxs, #tinymce.post-type-page h5.is-xxxs, #tinymce.mce-content-body.acf_content h5.is-xxxs, #tinymce.post-type-tinymcetemplates h5.is-xxxs, .l-post-content h6, #tinymce.post-type-post h6, #tinymce.post-type-page h6, #tinymce.mce-content-body.acf_content h6, #tinymce.mce-content-body.acf_content.post-type-page h6, #tinymce.post-type-tinymcetemplates h6 {
  font-size: 18px;
  letter-spacing: 1.8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-xxxs, .is-xxxs.c-features-card__title, .is-xxxs.c-image-content__title, .is-xxxs.c-opening__title, .is-xxxs.c-other-content__head, .is-xxxs.c-post-content-page-head__title, .is-xxxs.c-special-landing__title, .l-post-content h2.is-xxxs, #tinymce.post-type-post h2.is-xxxs, #tinymce.post-type-page h2.is-xxxs, #tinymce.mce-content-body.acf_content h2.is-xxxs, #tinymce.post-type-tinymcetemplates h2.is-xxxs, .l-post-content h3.is-xxxs, #tinymce.post-type-post h3.is-xxxs, #tinymce.post-type-page h3.is-xxxs, #tinymce.mce-content-body.acf_content h3.is-xxxs, #tinymce.post-type-tinymcetemplates h3.is-xxxs, .l-post-content h4.is-xxxs, #tinymce.post-type-post h4.is-xxxs, #tinymce.post-type-page h4.is-xxxs, #tinymce.mce-content-body.acf_content h4.is-xxxs, #tinymce.post-type-tinymcetemplates h4.is-xxxs, .l-post-content h5.is-xxxs, #tinymce.post-type-post h5.is-xxxs, #tinymce.post-type-page h5.is-xxxs, #tinymce.mce-content-body.acf_content h5.is-xxxs, #tinymce.post-type-tinymcetemplates h5.is-xxxs, .l-post-content h6, #tinymce.post-type-post h6, #tinymce.post-type-page h6, #tinymce.mce-content-body.acf_content h6, #tinymce.mce-content-body.acf_content.post-type-page h6, #tinymce.post-type-tinymcetemplates h6 {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.heading.is-top, .is-top.c-features-card__title, .is-top.c-image-content__title, .is-top.c-opening__title, .is-top.c-other-content__head, .is-top.c-post-content-page-head__title, .is-top.c-special-landing__title, .l-post-content h2.is-top, #tinymce.post-type-post h2.is-top, #tinymce.post-type-page h2.is-top, #tinymce.mce-content-body.acf_content h2.is-top, #tinymce.post-type-tinymcetemplates h2.is-top, .l-post-content h3.is-top, #tinymce.post-type-post h3.is-top, #tinymce.post-type-page h3.is-top, #tinymce.mce-content-body.acf_content h3.is-top, #tinymce.post-type-tinymcetemplates h3.is-top, .l-post-content h4.is-top, #tinymce.post-type-post h4.is-top, #tinymce.post-type-page h4.is-top, #tinymce.mce-content-body.acf_content h4.is-top, #tinymce.post-type-tinymcetemplates h4.is-top, .l-post-content h5.is-top, #tinymce.post-type-post h5.is-top, #tinymce.post-type-page h5.is-top, #tinymce.mce-content-body.acf_content h5.is-top, #tinymce.post-type-tinymcetemplates h5.is-top, .l-post-content h6.is-top, #tinymce.post-type-post h6.is-top, #tinymce.post-type-page h6.is-top, #tinymce.mce-content-body.acf_content h6.is-top, #tinymce.post-type-tinymcetemplates h6.is-top {
  margin-bottom: 0px;
}

.heading.is-bottom, .is-bottom.c-features-card__title, .is-bottom.c-image-content__title, .is-bottom.c-opening__title, .is-bottom.c-other-content__head, .is-bottom.c-post-content-page-head__title, .is-bottom.c-special-landing__title, .l-post-content h2.is-bottom, #tinymce.post-type-post h2.is-bottom, #tinymce.post-type-page h2.is-bottom, #tinymce.mce-content-body.acf_content h2.is-bottom, #tinymce.post-type-tinymcetemplates h2.is-bottom, .l-post-content h3.is-bottom, #tinymce.post-type-post h3.is-bottom, #tinymce.post-type-page h3.is-bottom, #tinymce.mce-content-body.acf_content h3.is-bottom, #tinymce.post-type-tinymcetemplates h3.is-bottom, .l-post-content h4.is-bottom, #tinymce.post-type-post h4.is-bottom, #tinymce.post-type-page h4.is-bottom, #tinymce.mce-content-body.acf_content h4.is-bottom, #tinymce.post-type-tinymcetemplates h4.is-bottom, .l-post-content h5.is-bottom, #tinymce.post-type-post h5.is-bottom, #tinymce.post-type-page h5.is-bottom, #tinymce.mce-content-body.acf_content h5.is-bottom, #tinymce.post-type-tinymcetemplates h5.is-bottom, .l-post-content h6.is-bottom, #tinymce.post-type-post h6.is-bottom, #tinymce.post-type-page h6.is-bottom, #tinymce.mce-content-body.acf_content h6.is-bottom, #tinymce.post-type-tinymcetemplates h6.is-bottom {
  margin-top: 0px;
}

.heading.is-secondary, .is-secondary.c-features-card__title, .is-secondary.c-image-content__title, .is-secondary.c-opening__title, .is-secondary.c-other-content__head, .is-secondary.c-post-content-page-head__title, .is-secondary.c-special-landing__title, .l-post-content h2.is-secondary, #tinymce.post-type-post h2.is-secondary, #tinymce.post-type-page h2.is-secondary, #tinymce.mce-content-body.acf_content h2.is-secondary, #tinymce.post-type-tinymcetemplates h2.is-secondary, .l-post-content h3.is-secondary, #tinymce.post-type-post h3.is-secondary, #tinymce.post-type-page h3.is-secondary, #tinymce.mce-content-body.acf_content h3.is-secondary, #tinymce.post-type-tinymcetemplates h3.is-secondary, .l-post-content h4.is-secondary, #tinymce.post-type-post h4.is-secondary, #tinymce.post-type-page h4.is-secondary, #tinymce.mce-content-body.acf_content h4.is-secondary, #tinymce.post-type-tinymcetemplates h4.is-secondary, .l-post-content h5.is-secondary, #tinymce.post-type-post h5.is-secondary, #tinymce.post-type-page h5.is-secondary, #tinymce.mce-content-body.acf_content h5.is-secondary, #tinymce.post-type-tinymcetemplates h5.is-secondary, .l-post-content h6.is-secondary, #tinymce.post-type-post h6.is-secondary, #tinymce.post-type-page h6.is-secondary, #tinymce.mce-content-body.acf_content h6.is-secondary, #tinymce.post-type-tinymcetemplates h6.is-secondary {
  color: #342f65;
}

.heading.is-underline, .is-underline.c-features-card__title, .is-underline.c-image-content__title, .c-opening__title, .c-other-content__head, .is-underline.c-post-content-page-head__title, .is-underline.c-special-landing__title, .l-post-content h2.is-underline, #tinymce.post-type-post h2.is-underline, #tinymce.post-type-page h2.is-underline, #tinymce.mce-content-body.acf_content h2.is-underline, #tinymce.post-type-tinymcetemplates h2.is-underline, .l-post-content h3.is-underline, #tinymce.post-type-post h3.is-underline, #tinymce.post-type-page h3.is-underline, #tinymce.mce-content-body.acf_content h3.is-underline, #tinymce.post-type-tinymcetemplates h3.is-underline, .l-post-content h4.is-underline, #tinymce.post-type-post h4.is-underline, #tinymce.post-type-page h4.is-underline, #tinymce.mce-content-body.acf_content h4.is-underline, #tinymce.post-type-tinymcetemplates h4.is-underline, .l-post-content h5.is-underline, #tinymce.post-type-post h5.is-underline, #tinymce.post-type-page h5.is-underline, #tinymce.mce-content-body.acf_content h5.is-underline, #tinymce.post-type-tinymcetemplates h5.is-underline, .l-post-content h6.is-underline, #tinymce.post-type-post h6.is-underline, #tinymce.post-type-page h6.is-underline, #tinymce.mce-content-body.acf_content h6.is-underline, #tinymce.post-type-tinymcetemplates h6.is-underline {
  text-align: center;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 72px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-underline, .is-underline.c-features-card__title, .is-underline.c-image-content__title, .c-opening__title, .c-other-content__head, .is-underline.c-post-content-page-head__title, .is-underline.c-special-landing__title, .l-post-content h2.is-underline, #tinymce.post-type-post h2.is-underline, #tinymce.post-type-page h2.is-underline, #tinymce.mce-content-body.acf_content h2.is-underline, #tinymce.post-type-tinymcetemplates h2.is-underline, .l-post-content h3.is-underline, #tinymce.post-type-post h3.is-underline, #tinymce.post-type-page h3.is-underline, #tinymce.mce-content-body.acf_content h3.is-underline, #tinymce.post-type-tinymcetemplates h3.is-underline, .l-post-content h4.is-underline, #tinymce.post-type-post h4.is-underline, #tinymce.post-type-page h4.is-underline, #tinymce.mce-content-body.acf_content h4.is-underline, #tinymce.post-type-tinymcetemplates h4.is-underline, .l-post-content h5.is-underline, #tinymce.post-type-post h5.is-underline, #tinymce.post-type-page h5.is-underline, #tinymce.mce-content-body.acf_content h5.is-underline, #tinymce.post-type-tinymcetemplates h5.is-underline, .l-post-content h6.is-underline, #tinymce.post-type-post h6.is-underline, #tinymce.post-type-page h6.is-underline, #tinymce.mce-content-body.acf_content h6.is-underline, #tinymce.post-type-tinymcetemplates h6.is-underline {
    margin-bottom: 24px;
  }
}

.heading.is-underline:after, .is-underline.c-features-card__title:after, .is-underline.c-image-content__title:after, .c-opening__title:after, .c-other-content__head:after, .is-underline.c-post-content-page-head__title:after, .is-underline.c-special-landing__title:after, .l-post-content h2.is-underline:after, #tinymce.post-type-post h2.is-underline:after, #tinymce.post-type-page h2.is-underline:after, #tinymce.mce-content-body.acf_content h2.is-underline:after, #tinymce.post-type-tinymcetemplates h2.is-underline:after, .l-post-content h3.is-underline:after, #tinymce.post-type-post h3.is-underline:after, #tinymce.post-type-page h3.is-underline:after, #tinymce.mce-content-body.acf_content h3.is-underline:after, #tinymce.post-type-tinymcetemplates h3.is-underline:after, .l-post-content h4.is-underline:after, #tinymce.post-type-post h4.is-underline:after, #tinymce.post-type-page h4.is-underline:after, #tinymce.mce-content-body.acf_content h4.is-underline:after, #tinymce.post-type-tinymcetemplates h4.is-underline:after, .l-post-content h5.is-underline:after, #tinymce.post-type-post h5.is-underline:after, #tinymce.post-type-page h5.is-underline:after, #tinymce.mce-content-body.acf_content h5.is-underline:after, #tinymce.post-type-tinymcetemplates h5.is-underline:after, .l-post-content h6.is-underline:after, #tinymce.post-type-post h6.is-underline:after, #tinymce.post-type-page h6.is-underline:after, #tinymce.mce-content-body.acf_content h6.is-underline:after, #tinymce.post-type-tinymcetemplates h6.is-underline:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #342f65;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-underline:after, .is-underline.c-features-card__title:after, .is-underline.c-image-content__title:after, .c-opening__title:after, .c-other-content__head:after, .is-underline.c-post-content-page-head__title:after, .is-underline.c-special-landing__title:after, .l-post-content h2.is-underline:after, #tinymce.post-type-post h2.is-underline:after, #tinymce.post-type-page h2.is-underline:after, #tinymce.mce-content-body.acf_content h2.is-underline:after, #tinymce.post-type-tinymcetemplates h2.is-underline:after, .l-post-content h3.is-underline:after, #tinymce.post-type-post h3.is-underline:after, #tinymce.post-type-page h3.is-underline:after, #tinymce.mce-content-body.acf_content h3.is-underline:after, #tinymce.post-type-tinymcetemplates h3.is-underline:after, .l-post-content h4.is-underline:after, #tinymce.post-type-post h4.is-underline:after, #tinymce.post-type-page h4.is-underline:after, #tinymce.mce-content-body.acf_content h4.is-underline:after, #tinymce.post-type-tinymcetemplates h4.is-underline:after, .l-post-content h5.is-underline:after, #tinymce.post-type-post h5.is-underline:after, #tinymce.post-type-page h5.is-underline:after, #tinymce.mce-content-body.acf_content h5.is-underline:after, #tinymce.post-type-tinymcetemplates h5.is-underline:after, .l-post-content h6.is-underline:after, #tinymce.post-type-post h6.is-underline:after, #tinymce.post-type-page h6.is-underline:after, #tinymce.mce-content-body.acf_content h6.is-underline:after, #tinymce.post-type-tinymcetemplates h6.is-underline:after {
    width: 64px;
  }
}

.heading.is-leftline, .is-leftline.c-features-card__title, .is-leftline.c-image-content__title, .is-leftline.c-opening__title, .is-leftline.c-other-content__head, .is-leftline.c-post-content-page-head__title, .is-leftline.c-special-landing__title, .l-post-content h2.is-leftline, #tinymce.post-type-post h2.is-leftline, #tinymce.post-type-page h2.is-leftline, #tinymce.mce-content-body.acf_content h2.is-leftline, #tinymce.post-type-tinymcetemplates h2.is-leftline, .l-post-content h3, #tinymce.post-type-post h3, #tinymce.post-type-page h3, #tinymce.mce-content-body.acf_content h3, #tinymce.mce-content-body.acf_content.post-type-page h3, #tinymce.post-type-tinymcetemplates h3, .l-post-content h4.is-leftline, #tinymce.post-type-post h4.is-leftline, #tinymce.post-type-page h4.is-leftline, #tinymce.mce-content-body.acf_content h4.is-leftline, #tinymce.post-type-tinymcetemplates h4.is-leftline, .l-post-content h5.is-leftline, #tinymce.post-type-post h5.is-leftline, #tinymce.post-type-page h5.is-leftline, #tinymce.mce-content-body.acf_content h5.is-leftline, #tinymce.post-type-tinymcetemplates h5.is-leftline, .l-post-content h6.is-leftline, #tinymce.post-type-post h6.is-leftline, #tinymce.post-type-page h6.is-leftline, #tinymce.mce-content-body.acf_content h6.is-leftline, #tinymce.post-type-tinymcetemplates h6.is-leftline {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 40px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-leftline, .is-leftline.c-features-card__title, .is-leftline.c-image-content__title, .is-leftline.c-opening__title, .is-leftline.c-other-content__head, .is-leftline.c-post-content-page-head__title, .is-leftline.c-special-landing__title, .l-post-content h2.is-leftline, #tinymce.post-type-post h2.is-leftline, #tinymce.post-type-page h2.is-leftline, #tinymce.mce-content-body.acf_content h2.is-leftline, #tinymce.post-type-tinymcetemplates h2.is-leftline, .l-post-content h3, #tinymce.post-type-post h3, #tinymce.post-type-page h3, #tinymce.mce-content-body.acf_content h3, #tinymce.mce-content-body.acf_content.post-type-page h3, #tinymce.post-type-tinymcetemplates h3, .l-post-content h4.is-leftline, #tinymce.post-type-post h4.is-leftline, #tinymce.post-type-page h4.is-leftline, #tinymce.mce-content-body.acf_content h4.is-leftline, #tinymce.post-type-tinymcetemplates h4.is-leftline, .l-post-content h5.is-leftline, #tinymce.post-type-post h5.is-leftline, #tinymce.post-type-page h5.is-leftline, #tinymce.mce-content-body.acf_content h5.is-leftline, #tinymce.post-type-tinymcetemplates h5.is-leftline, .l-post-content h6.is-leftline, #tinymce.post-type-post h6.is-leftline, #tinymce.post-type-page h6.is-leftline, #tinymce.mce-content-body.acf_content h6.is-leftline, #tinymce.post-type-tinymcetemplates h6.is-leftline {
    margin-bottom: 24px;
  }
}

.heading.is-leftline:after, .is-leftline.c-features-card__title:after, .is-leftline.c-image-content__title:after, .is-leftline.c-opening__title:after, .is-leftline.c-other-content__head:after, .is-leftline.c-post-content-page-head__title:after, .is-leftline.c-special-landing__title:after, .l-post-content h2.is-leftline:after, #tinymce.post-type-post h2.is-leftline:after, #tinymce.post-type-page h2.is-leftline:after, #tinymce.mce-content-body.acf_content h2.is-leftline:after, #tinymce.post-type-tinymcetemplates h2.is-leftline:after, .l-post-content h3:after, #tinymce.post-type-post h3:after, #tinymce.post-type-page h3:after, #tinymce.mce-content-body.acf_content h3:after, #tinymce.mce-content-body.acf_content.post-type-page h3:after, #tinymce.post-type-tinymcetemplates h3:after, .l-post-content h4.is-leftline:after, #tinymce.post-type-post h4.is-leftline:after, #tinymce.post-type-page h4.is-leftline:after, #tinymce.mce-content-body.acf_content h4.is-leftline:after, #tinymce.post-type-tinymcetemplates h4.is-leftline:after, .l-post-content h5.is-leftline:after, #tinymce.post-type-post h5.is-leftline:after, #tinymce.post-type-page h5.is-leftline:after, #tinymce.mce-content-body.acf_content h5.is-leftline:after, #tinymce.post-type-tinymcetemplates h5.is-leftline:after, .l-post-content h6.is-leftline:after, #tinymce.post-type-post h6.is-leftline:after, #tinymce.post-type-page h6.is-leftline:after, #tinymce.mce-content-body.acf_content h6.is-leftline:after, #tinymce.post-type-tinymcetemplates h6.is-leftline:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #342f65;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-leftline:after, .is-leftline.c-features-card__title:after, .is-leftline.c-image-content__title:after, .is-leftline.c-opening__title:after, .is-leftline.c-other-content__head:after, .is-leftline.c-post-content-page-head__title:after, .is-leftline.c-special-landing__title:after, .l-post-content h2.is-leftline:after, #tinymce.post-type-post h2.is-leftline:after, #tinymce.post-type-page h2.is-leftline:after, #tinymce.mce-content-body.acf_content h2.is-leftline:after, #tinymce.post-type-tinymcetemplates h2.is-leftline:after, .l-post-content h3:after, #tinymce.post-type-post h3:after, #tinymce.post-type-page h3:after, #tinymce.mce-content-body.acf_content h3:after, #tinymce.mce-content-body.acf_content.post-type-page h3:after, #tinymce.post-type-tinymcetemplates h3:after, .l-post-content h4.is-leftline:after, #tinymce.post-type-post h4.is-leftline:after, #tinymce.post-type-page h4.is-leftline:after, #tinymce.mce-content-body.acf_content h4.is-leftline:after, #tinymce.post-type-tinymcetemplates h4.is-leftline:after, .l-post-content h5.is-leftline:after, #tinymce.post-type-post h5.is-leftline:after, #tinymce.post-type-page h5.is-leftline:after, #tinymce.mce-content-body.acf_content h5.is-leftline:after, #tinymce.post-type-tinymcetemplates h5.is-leftline:after, .l-post-content h6.is-leftline:after, #tinymce.post-type-post h6.is-leftline:after, #tinymce.post-type-page h6.is-leftline:after, #tinymce.mce-content-body.acf_content h6.is-leftline:after, #tinymce.post-type-tinymcetemplates h6.is-leftline:after {
    width: 64px;
  }
}

.heading.is-bg, .is-bg.c-features-card__title, .is-bg.c-image-content__title, .is-bg.c-opening__title, .is-bg.c-other-content__head, .is-bg.c-post-content-page-head__title, .is-bg.c-special-landing__title, .l-post-content h2.is-bg, #tinymce.post-type-post h2.is-bg, #tinymce.post-type-page h2.is-bg, #tinymce.mce-content-body.acf_content h2.is-bg, #tinymce.post-type-tinymcetemplates h2.is-bg, .l-post-content h3.is-bg, #tinymce.post-type-post h3.is-bg, #tinymce.post-type-page h3.is-bg, #tinymce.mce-content-body.acf_content h3.is-bg, #tinymce.post-type-tinymcetemplates h3.is-bg, .l-post-content h4.is-bg, #tinymce.post-type-post h4.is-bg, #tinymce.post-type-page h4.is-bg, #tinymce.mce-content-body.acf_content h4.is-bg, #tinymce.post-type-tinymcetemplates h4.is-bg, .l-post-content h5, #tinymce.post-type-post h5, #tinymce.post-type-page h5, #tinymce.mce-content-body.acf_content h5, #tinymce.mce-content-body.acf_content.post-type-page h5, #tinymce.post-type-tinymcetemplates h5, .l-post-content h6.is-bg, #tinymce.post-type-post h6.is-bg, #tinymce.post-type-page h6.is-bg, #tinymce.mce-content-body.acf_content h6.is-bg, #tinymce.post-type-tinymcetemplates h6.is-bg {
  background-color: #edf1fa;
  padding: 8px 16px;
  border-left: 4px solid #342f65;
  margin-bottom: 40px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .heading.is-bg, .is-bg.c-features-card__title, .is-bg.c-image-content__title, .is-bg.c-opening__title, .is-bg.c-other-content__head, .is-bg.c-post-content-page-head__title, .is-bg.c-special-landing__title, .l-post-content h2.is-bg, #tinymce.post-type-post h2.is-bg, #tinymce.post-type-page h2.is-bg, #tinymce.mce-content-body.acf_content h2.is-bg, #tinymce.post-type-tinymcetemplates h2.is-bg, .l-post-content h3.is-bg, #tinymce.post-type-post h3.is-bg, #tinymce.post-type-page h3.is-bg, #tinymce.mce-content-body.acf_content h3.is-bg, #tinymce.post-type-tinymcetemplates h3.is-bg, .l-post-content h4.is-bg, #tinymce.post-type-post h4.is-bg, #tinymce.post-type-page h4.is-bg, #tinymce.mce-content-body.acf_content h4.is-bg, #tinymce.post-type-tinymcetemplates h4.is-bg, .l-post-content h5, #tinymce.post-type-post h5, #tinymce.post-type-page h5, #tinymce.mce-content-body.acf_content h5, #tinymce.mce-content-body.acf_content.post-type-page h5, #tinymce.post-type-tinymcetemplates h5, .l-post-content h6.is-bg, #tinymce.post-type-post h6.is-bg, #tinymce.post-type-page h6.is-bg, #tinymce.mce-content-body.acf_content h6.is-bg, #tinymce.post-type-tinymcetemplates h6.is-bg {
    margin-bottom: 24px;
  }
}

.heading.is-right-text, .is-right-text.c-features-card__title, .is-right-text.c-image-content__title, .is-right-text.c-opening__title, .is-right-text.c-other-content__head, .is-right-text.c-post-content-page-head__title, .is-right-text.c-special-landing__title, .l-post-content h2.is-right-text, #tinymce.post-type-post h2.is-right-text, #tinymce.post-type-page h2.is-right-text, #tinymce.mce-content-body.acf_content h2.is-right-text, #tinymce.post-type-tinymcetemplates h2.is-right-text, .l-post-content h3.is-right-text, #tinymce.post-type-post h3.is-right-text, #tinymce.post-type-page h3.is-right-text, #tinymce.mce-content-body.acf_content h3.is-right-text, #tinymce.post-type-tinymcetemplates h3.is-right-text, .l-post-content h4.is-right-text, #tinymce.post-type-post h4.is-right-text, #tinymce.post-type-page h4.is-right-text, #tinymce.mce-content-body.acf_content h4.is-right-text, #tinymce.post-type-tinymcetemplates h4.is-right-text, .l-post-content h5.is-right-text, #tinymce.post-type-post h5.is-right-text, #tinymce.post-type-page h5.is-right-text, #tinymce.mce-content-body.acf_content h5.is-right-text, #tinymce.post-type-tinymcetemplates h5.is-right-text, .l-post-content h6.is-right-text, #tinymce.post-type-post h6.is-right-text, #tinymce.post-type-page h6.is-right-text, #tinymce.mce-content-body.acf_content h6.is-right-text, #tinymce.post-type-tinymcetemplates h6.is-right-text {
  position: relative;
}

.heading.is-right-text span, .is-right-text.c-features-card__title span, .is-right-text.c-image-content__title span, .is-right-text.c-opening__title span, .is-right-text.c-other-content__head span, .is-right-text.c-post-content-page-head__title span, .is-right-text.c-special-landing__title span, .l-post-content h2.is-right-text span, #tinymce.post-type-post h2.is-right-text span, #tinymce.post-type-page h2.is-right-text span, #tinymce.mce-content-body.acf_content h2.is-right-text span, #tinymce.post-type-tinymcetemplates h2.is-right-text span, .l-post-content h3.is-right-text span, #tinymce.post-type-post h3.is-right-text span, #tinymce.post-type-page h3.is-right-text span, #tinymce.mce-content-body.acf_content h3.is-right-text span, #tinymce.post-type-tinymcetemplates h3.is-right-text span, .l-post-content h4.is-right-text span, #tinymce.post-type-post h4.is-right-text span, #tinymce.post-type-page h4.is-right-text span, #tinymce.mce-content-body.acf_content h4.is-right-text span, #tinymce.post-type-tinymcetemplates h4.is-right-text span, .l-post-content h5.is-right-text span, #tinymce.post-type-post h5.is-right-text span, #tinymce.post-type-page h5.is-right-text span, #tinymce.mce-content-body.acf_content h5.is-right-text span, #tinymce.post-type-tinymcetemplates h5.is-right-text span, .l-post-content h6.is-right-text span, #tinymce.post-type-post h6.is-right-text span, #tinymce.post-type-page h6.is-right-text span, #tinymce.mce-content-body.acf_content h6.is-right-text span, #tinymce.post-type-tinymcetemplates h6.is-right-text span {
  position: absolute;
  right: 20px;
  top: 50%;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type="text"],
input[type="url"],
input[type="search"],
input[type="email"],
input[type="tel"] {
  font-size: 15px;
  line-height: 1.8;
  border: 2px solid rgba(51, 51, 51, 0.3);
  padding: 7px 12px;
  max-width: 100%;
  width: 100%;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  background-color: #fff;
}

input[type="text"]:focus, input[type="text"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="tel"]:focus,
input[type="tel"]:active {
  outline: none;
  border-color: #342f65;
  box-shadow: inset 0 0 0px 1px #342f65;
}

textarea {
  border: 2px solid rgba(51, 51, 51, 0.3);
  font-size: 15px;
  width: 100%;
  padding: 16px 8px;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  background-color: #fff;
  padding: 7px 12px;
}

textarea:focus, textarea:active {
  outline: none;
  border-color: #342f65;
  box-shadow: inset 0 0 0px 1px #342f65;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

select {
  text-transform: none;
  display: block;
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
  background-image: none;
  border: 2px solid rgba(51, 51, 51, 0.3);
  border-radius: 0 !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  select {
    width: 100%;
  }
}

/*  プレイスホルダーの色変更 */
:placeholder-shown {
  color: rgba(51, 51, 51, 0.5);
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

/* Firefox 18- */
:-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

/* Firefox 19+ */
::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #9FA0A0;
}

p,
.text-normal {
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  letter-spacing: 1.5px;
  line-height: 2;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  p,
  .text-normal {
    font-size: 0.8rem;
    line-height: 1.2;
    line-height: 1.5;
  }
}

small, .c-dropdown__list li a,
.text-small {
  font-size: 0.85em;
}

strong,
.text-strong {
  font-weight: bold;
}

del,
.text-del {
  text-decoration: line-through;
}

a,
.text-link {
  color: #342f65;
  font-weight: 400;
}

a:hover,
.text-link.text-link--hover {
  opacity: 0.7;
}

a:active,
.text-link.text-link--active {
  opacity: 0.7;
}

hr, .hr {
  border: 4px solid #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.ul-list li {
  position: relative;
  padding-left: 20px;
}

.ul-list li:before {
  content: "\f111";
  font-family: "FontAwesome";
  position: absolute;
  top: 1px;
  left: 0;
  color: #342f65;
}

.ul-list li ul li {
  padding-left: 18px;
}

.ul-list li ul li:before {
  content: "・";
  color: #333;
}

.ol-list {
  margin: 0;
}

.ol-list li {
  position: relative;
  list-style: decimal;
  margin-left: -16px;
}

.ol-list li ul li {
  margin-left: 24px;
}

.inline-list {
  list-style: none;
  padding-left: 0;
}

.inline-list li {
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
}

blockquote {
  border-left: 2px solid #342f65;
  margin-top: 32px;
  margin-bottom: 32px;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px 45px;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  blockquote {
    margin-left: 0;
    margin-right: 0;
    padding: 16px 24px 16px 40px;
  }
}

blockquote:before {
  content: "\f10d";
  display: block;
  font-family: "FontAwesome";
  font-size: 20px;
  color: #342f65;
  position: absolute;
  left: 12px;
  top: 8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  blockquote:before {
    font-size: 16px;
    top: 6px;
  }
}

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

.c-about-us-button {
  margin-top: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-about-us-button {
    margin-top: 32px;
  }
}

.c-about-us-button .c-button.is-md, .c-about-us-button .c-password-form input.is-md[type=submit], .c-password-form .c-about-us-button input.is-md[type=submit], .c-about-us-button .c-social-share > a.is-md {
  margin-right: 64px;
}

.c-about-us-button .c-button.is-md:last-child, .c-about-us-button .c-password-form input.is-md:last-child[type=submit], .c-password-form .c-about-us-button input.is-md:last-child[type=submit], .c-about-us-button .c-social-share > a.is-md:last-child {
  margin-right: 0px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-about-us-button .c-button.is-md, .c-about-us-button .c-password-form input.is-md[type=submit], .c-password-form .c-about-us-button input.is-md[type=submit], .c-about-us-button .c-social-share > a.is-md {
    display: block;
    margin: 0 auto 24px;
  }
  .c-about-us-button .c-button.is-md:last-child, .c-about-us-button .c-password-form input.is-md:last-child[type=submit], .c-password-form .c-about-us-button input.is-md:last-child[type=submit], .c-about-us-button .c-social-share > a.is-md:last-child {
    margin: 0 auto 0;
  }
}

.c-accordion__title {
  background: #fff;
  color: #fff;
  padding: 32px 64px;
  margin-bottom: 0;
  font-size: 1.2rem;
  border-radius: 3px 3px 0 0;
}

.c-accordion__content {
  padding: 32px 64px;
  border: 1px solid #efefef;
  border-radius: 0 0 3px 3px;
}

.c-accordion.is-danger .c-accordion__title {
  background: #cc2919;
}

.c-accordion.is-warning .c-accordion__title {
  background: #cc9e12;
}

.c-accordion.is-success .c-accordion__title {
  background: #13a83a;
}

.c-accordion.is-info .c-accordion__title {
  background: #378da3;
}

.c-accordion.is-faq .c-accordion__title {
  position: relative;
  padding-left: 4.5333rem;
}

.c-accordion.is-faq .c-accordion__title:before {
  content: "Q";
  left: 1.6rem;
  top: 0.9333rem;
  font-size: 1.2rem;
  background: #b8b8b8;
  text-align: center;
  border-radius: 66.6667rem;
  display: block;
  width: 2.1333rem;
  height: 2.1333rem;
  box-sizing: border-box;
  padding-top: 0.1333rem;
  margin-right: 0.5333rem;
  position: absolute;
}

.c-archive-head {
  margin-top: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head {
    margin-top: 32px;
  }
}

.c-archive-head__block {
  border: 1px solid #ccc;
  padding: 20px 32px;
  position: relative;
  margin-bottom: 8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head__block {
    padding: 16px 20px 12px;
  }
}

.c-archive-head__block.is-mb-top {
  margin-top: 1.0667rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head__block.is-mb-top {
    margin-top: 0.8rem;
  }
}

.c-archive-head__title {
  margin-bottom: 10px;
  font-size: 1.3333rem;
  line-height: 1.5;
  margin-top: 0;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head__title {
    font-size: 1.0667rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
}

.c-archive-head ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head ul {
    display: block;
  }
}

.c-archive-head ul li {
  margin-right: 40px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head ul li {
    margin-right: 32px;
  }
}

.c-archive-head ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  color: #342f65;
  padding-right: 5px;
}

.c-archive-head ul li a {
  color: #333;
  text-decoration: none;
  padding-bottom: 4px;
  font-size: 0.9333rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-archive-head ul li a:hover {
  opacity: 1;
  color: #342f65;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head ul li a {
    font-size: 0.8rem;
  }
}

.c-archive-head__button {
  display: inline-block;
  min-width: 13.8667rem;
  text-align: center;
  color: #333;
  text-decoration: none;
  position: absolute;
  bottom: 23px;
  right: 56px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-archive-head__button {
    position: static;
    width: 100%;
    margin: 8px auto 0px;
  }
  .c-archive-head__button .c-button.is-md, .c-archive-head__button .c-password-form input.is-md[type=submit], .c-password-form .c-archive-head__button input.is-md[type=submit], .c-archive-head__button .c-social-share > a.is-md {
    text-align: center;
    margin: 0px auto 0px;
  }
}

.c-badge {
  background: #fff;
  color: #fff;
  font-size: 12px;
  border-radius: 1000px;
  display: inline-block;
  padding-top: 1.0667rem;
  padding-bottom: 1.0667rem;
  padding-left: 0.5333rem;
  padding-right: 0.5333rem;
  vertical-align: middle;
}

.c-badge.is-lg {
  font-size: 1rem;
}

.c-badge.is-sm {
  font-size: 0.64rem;
}

.c-badge.is-secondary {
  background: #342f65;
}

.c-badge.is-tertiary {
  background: #efefef;
}

.c-badge.is-danger {
  background: #cc2919;
}

.c-badge.is-warning {
  background: #cc9e12;
}

.c-badge.is-info {
  background: #378da3;
}

.c-badge.is-success {
  background: #13a83a;
}

.c-bnr-content__inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1204px) {
  .c-bnr-content__inner {
    padding: 0 40px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-bnr-content__inner {
    padding: 0;
  }
}

.c-bnr-content__block {
  display: block;
  width: 25%;
  height: 252px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.c-bnr-content__block1 {
  display: block;
  width: 33.3333%;
  height: 252px;
  text-decoration: none;
  color: #fff;
  position: relative;
}

@media (max-width: 1204px) {
  .c-bnr-content__block {
    width: 50%;
  }
   .c-bnr-content__block1 {
    width: 50%;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-bnr-content__block {
    width: 100%;
    height: 200px;
  }
   .c-bnr-content__block1 {
    width: 100%;
    height: 200px;
  }
}

.c-bnr-content__block span {
  display: block;
}
.c-bnr-content__block1 span {
  display: block;
}

.c-bnr-content__block:hover {
  opacity: 1;
}
.c-bnr-content__block1:hover {
  opacity: 1;
}

.c-bnr-content__block:hover:after {
  opacity: 1;
}
.c-bnr-content__block:hover1:after {
  opacity: 1;
}

.c-bnr-content__block:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 34px 34px;
  border-color: transparent transparent #342f65 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 101;
}
.c-bnr-content__block1:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 34px 34px;
  border-color: transparent transparent #342f65 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 101;
}


.c-bnr-content__block:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 62, 184, 0.6);
  position: absolute;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.c-bnr-content__block1:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 62, 184, 0.6);
  position: absolute;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.c-bnr-content__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.c-bnr-content__image:before {
  content: "";
  display: block;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 8px;
  left: 8px;
}

.c-bnr-content__item {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 48px;
  margin-top: 5px;
  width: calc(100% - 96px);
  z-index: 110;
}

.c-bnr-content__title {
  font-size: 24px;
  letter-spacing: 2.4px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 3px;
}

.c-bnr-content__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2.4px;
  opacity: 0.5;
  font-weight: 300;
}

.c-boueki-image {
  margin-bottom: 48px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-boueki-image {
    margin-bottom: 24px;
  }
}

.c-boueki-image__title {
  padding: 4px 10px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: #342f65;
}

.c-boueki-image__title .small {
  font-size: 15px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-boueki-image__title {
    padding: 2px 10px;
    font-size: 16.8px;
  }
  .c-boueki-image__title .small {
    font-size: 10.5px;
  }
}

.c-boueki-image__image {
  border: solid 2px #342f65;
  padding: 16px 24px;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-boueki-image__image {
    padding: 8px 12px;
  }
}

.c-boueki-image__image:before {
  content: "";
  bottom: 0px;
  right: 0px;
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #342f65 transparent;
}

.c-breadcrumb {
  width: 100%;
  font-size: 15px;
  padding: 12px 0;
}

@media (max-width: 1204px) {
  .c-breadcrumb {
    padding: 0 32px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-breadcrumb {
    padding: 8px 0;
    font-size: 13px;
  }
}

.c-breadcrumb span,
.c-breadcrumb a {
  font-size: 13px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-breadcrumb span,
  .c-breadcrumb a {
    font-size: 11px;
  }
}

.c-breadcrumb span {
  margin-right: 5px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-breadcrumb span {
    margin-right: 4px;
  }
}

.c-breadcrumb a {
  text-decoration: underline;
  color: #333;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-breadcrumb a:hover {
  color: #342f65;
  opacity: 1;
}

.c-breadcrumb.is-subtitle .c-breadcrumb__list {
  top: -58px;
}

.c-button, .c-password-form input[type=submit], .c-social-share > a {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

.c-button:hover, .c-password-form input:hover[type=submit], .c-social-share > a:hover {
  opacity: 1;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-button, .c-password-form input[type=submit], .c-social-share > a {
    max-width: none;
  }
}

.c-button.is-xlg, .c-password-form input.is-xlg[type=submit], .c-social-share > a.is-xlg {
  position: relative;
  max-width: 430px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.6px;
  padding: 15px 10px;
  z-index: 100;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-button.is-xlg, .c-password-form input.is-xlg[type=submit], .c-social-share > a.is-xlg {
    font-size: 12px;
    letter-spacing: 1.2px;
    padding: 14px 10px;
  }
}

.c-button.is-xlg span, .c-password-form input.is-xlg[type=submit] span, .c-social-share > a.is-xlg span {
  position: relative;
  z-index: 1000;
}

.c-button.is-xlg i, .c-password-form input.is-xlg[type=submit] i, .c-social-share > a.is-xlg i {
  margin-right: 4px;
}

.c-button.is-lg, .c-password-form input.is-lg[type=submit], .c-social-share > a.is-lg {
  position: relative;
  max-width: 330px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.6px;
  padding: 15px 10px;
  z-index: 100;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-button.is-lg, .c-password-form input.is-lg[type=submit], .c-social-share > a.is-lg {
    font-size: 12px;
    letter-spacing: 1.2px;
    padding: 14px 10px;
  }
}

.c-button.is-lg span, .c-password-form input.is-lg[type=submit] span, .c-social-share > a.is-lg span {
  position: relative;
  z-index: 1000;
}

.c-button.is-lg i, .c-password-form input.is-lg[type=submit] i, .c-social-share > a.is-lg i {
  margin-right: 4px;
}

.c-button.is-md, .c-password-form input.is-md[type=submit], .c-social-share > a.is-md {
  position: relative;
  max-width: 280px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.6px;
  padding: 15px 10px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-button.is-md, .c-password-form input.is-md[type=submit], .c-social-share > a.is-md {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: 1.2px;
    padding: 14px 10px;
  }
}

.c-button.is-md span, .c-password-form input.is-md[type=submit] span, .c-social-share > a.is-md span {
  position: relative;
  z-index: 1000;
}

.c-button.is-sm, .c-password-form input.is-sm[type=submit], .c-social-share > a.is-sm {
  max-width: 110px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.6px;
  color: #342f65;
  display: inline-block;
  position: relative;
  padding-right: 70px;
  text-decoration: underline;
}

.c-button.is-sm:after, .c-password-form input.is-sm[type=submit]:after, .c-social-share > a.is-sm:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  width: 51px;
  height: 11px;
  -webkit-transform: translateY(-20%);
      -ms-transform: translateY(-20%);
          transform: translateY(-20%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2000;
  background-image: url("icon-arrow-sm.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-button.is-sm:hover:after, .c-password-form input.is-sm[type=submit]:hover:after, .c-social-share > a.is-sm:hover:after {
  right: -10px;
}

.c-button.is-white, .c-password-form input.is-white[type=submit], .c-social-share > a.is-white {
  border: solid 1px #fff;
  color: #342f65;
}

.c-button.is-white:before, .c-password-form input.is-white[type=submit]:before, .c-social-share > a.is-white:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #fff;
  z-index: 0;
}

.c-button.is-white:hover, .c-password-form input.is-white:hover[type=submit], .c-social-share > a.is-white:hover {
  color: #fff;
}

.c-button.is-white:hover:before, .c-password-form input.is-white[type=submit]:hover:before, .c-social-share > a.is-white:hover:before {
  width: 0%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-button.is-white:hover, .c-password-form input.is-white:hover[type=submit], .c-social-share > a.is-white:hover {
    color: #342f65;
  }
  .c-button.is-white:hover:before, .c-password-form input.is-white[type=submit]:hover:before, .c-social-share > a.is-white:hover:before {
    width: 100%;
  }
}

.c-button.is-blue, .c-password-form input.is-blue[type=submit], .c-social-share > a.is-blue {
  border: solid 1px #fff;
  color: #fff;
  background: #342f65;
  position: relative;
}

.c-button.is-blue:before, .c-password-form input.is-blue[type=submit]:before, .c-social-share > a.is-blue:before {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #fff;
  z-index: 0;
}

.c-button.is-blue:hover, .c-password-form input.is-blue:hover[type=submit], .c-social-share > a.is-blue:hover {
  border: solid 1px #342f65;
  color: #342f65;
}

.c-button.is-blue:hover:before, .c-password-form input.is-blue[type=submit]:hover:before, .c-social-share > a.is-blue:hover:before {
  width: 100%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-button.is-blue:hover, .c-password-form input.is-blue:hover[type=submit], .c-social-share > a.is-blue:hover {
    border: solid 1px #fff;
    color: #fff;
  }
  .c-button.is-blue:hover:before, .c-password-form input.is-blue[type=submit]:hover:before, .c-social-share > a.is-blue:hover:before {
    width: 0%;
  }
}

.c-button.is-arrow:after, .c-password-form input.is-arrow[type=submit]:after, .c-social-share > a.is-arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 31px;
  height: 11px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2000;
  background-image: url("icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-button.is-arrow:hover:after, .c-password-form input.is-arrow[type=submit]:hover:after, .c-social-share > a.is-arrow:hover:after {
  right: 10px;
  background-image: url("icon-arrow-hover.png");
}

.c-button.is-arrow-lg:after, .c-password-form input.is-arrow-lg[type=submit]:after, .c-social-share > a.is-arrow-lg:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -35px;
  width: 70px;
  height: 11px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2000;
  background-image: url("icon-arrow-lg.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-button.is-arrow-lg:hover:after, .c-password-form input.is-arrow-lg[type=submit]:hover:after, .c-social-share > a.is-arrow-lg:hover:after {
  right: -45px;
  background-image: url("icon-arrow-lg-hover.png");
}

.c-button.is-tertiary, .c-password-form input.is-tertiary[type=submit], .c-social-share > a.is-tertiary {
  background: #efefef;
}

.c-button.is-danger, .c-password-form input.is-danger[type=submit], .c-social-share > a.is-danger {
  background: #cc2919;
}

.c-button.is-warning, .c-password-form input.is-warning[type=submit], .c-social-share > a.is-warning {
  background: #cc9e12;
}

.c-button.is-info, .c-password-form input.is-info[type=submit], .c-social-share > a.is-info {
  background: #378da3;
}

.c-button.is-success, .c-password-form input.is-success[type=submit], .c-social-share > a.is-success {
  background: #13a83a;
}

.c-button.is-round, .c-password-form input.is-round[type=submit], .c-social-share > a.is-round {
  border-radius: 1000px;
}

.c-button.is-outline, .c-password-form input.is-outline[type=submit], .c-social-share > a.is-outline {
  background: transparent;
  border: 3px solid #333;
  color: #333;
  font-weight: bold;
}

.c-button.is-expand, .c-password-form input.is-expand[type=submit], .c-social-share > a.is-expand {
  width: 100%;
  text-align: center;
}

.c-button.is-form, .c-password-form input.is-form[type=submit], .c-social-share > a.is-form {
  font-size: 1.0667rem;
  max-width: 10.6667rem;
  background-color: rgba(51, 51, 51, 0.3);
  padding: 0.6rem;
  border-radius: 0;
  vertical-align: top;
  border: none;
}

.c-button.is-form:after, .c-password-form input.is-form[type=submit]:after, .c-social-share > a.is-form:after {
  display: none;
}

.c-button.is-form:hover, .c-password-form input.is-form:hover[type=submit], .c-social-share > a.is-form:hover {
  background-color: #333;
  color: #fff;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-button.is-form, .c-password-form input.is-form[type=submit], .c-social-share > a.is-form {
    min-width: 47%;
  }
}

.c-capsule-nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-capsule-nav ul li {
    width: 50%;
  }
}

.c-capsule-nav ul li a {
  position: relative;
  display: block;
  background-color: #fff;
  color: #342f65;
  font-weight: bold;
  text-decoration: none;
  width: 264px;
  text-align: center;
  border: 2px solid #342f65;
  padding: 8px 16px;
  letter-spacing: 1px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-capsule-nav ul li a {
    width: 100%;
  }
}

.c-capsule-nav ul li a.is-active {
  background-color: #342f65;
  color: #fff;
}

.c-capsule-nav ul li a:hover {
  opacity: 1;
}

.c-capsule-nav ul li a:after {
  font-size: 24px;
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-capsule-nav ul li a:after {
    font-size: 18px;
    margin-top: -16px;
    right: 12px;
  }
}

.c-capsule-nav.is-contact ul li a:after {
  right: 12px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-capsule-nav.is-contact ul li a {
    padding: 8px 2px;
    letter-spacing: 0px;
    font-size: 14px;
  }
  .c-capsule-nav.is-contact ul li a:after {
    display: none;
  }
}

.c-card-lg {
  margin-top: 48px;
}

.c-card-lg__card-list {
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-card-lg__card-list {
    display: block;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

.c-card-lg__box {
  width: 31.22%;
  margin-bottom: 48px;
  margin-right: 3.1%;
  text-decoration: none;
}

.c-card-lg__box:nth-child(n+3) {
  margin-right: 0%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-card-lg__box {
    width: 80%;
    margin: 0 auto 32px;
  }
}

.c-card-lg__image-block {
  width: 100%;
  display: block;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-card-lg__image-block {
    min-height: 200px;
  }
}

.c-card-lg__image {
  height: auto;
  width: 100%;
  background-size: cover;
  background-position: top center;
  margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-card-lg__image {
    margin-bottom: 12px;
    min-height: 200px;
  }
}

.c-card-lg__text-block {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #333;
  text-decoration: none;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-card-lg__text-block {
    font-size: 14px;
  }
}

.c-card-lg__detail {
  color: #333;
  margin-top: 8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-card-lg__detail {
    margin-top: 6px;
  }
}

.c-card {
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 2.1333rem;
}

.c-card__image {
  width: 100%;
  max-width: 100%;
  min-height: 160px;
  background-position: center center;
  background-size: cover;
  margin-bottom: 1.0667rem;
}

.c-card__title {
  color: #333;
  font-size: 1.6rem;
  margin-bottom: 1.0667rem;
}

.c-card__text {
  position: relative;
  color: #333;
  z-index: 1;
}

.c-contact-head {
  text-align: center;
  padding-bottom: 36px;
  /*
  &__arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 22px 0 22px;
    border-color: $color-secondary transparent transparent transparent;
    margin: 10px auto 18px;
    @include breakpoint(small only) {
      border-width: 16px 18px 0 18px;
    }
  }
  */
}

.c-contact-head__text {
  margin-bottom: 32px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-contact-head__text {
    margin-bottom: 24px;
  }
}

.c-contact-head__tel {
  padding-bottom: 2.1333rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-contact-head__tel {
    padding-bottom: 1.6rem;
  }
}

.c-contact-head__tel a {
  text-decoration: none;
  font-size: 2.6667rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  position: relative;
  line-height: 0.8;
  display: inline-block;
  padding-left: 3.3333rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-contact-head__tel a {
    font-size: 2.5333rem;
    padding-left: 2.3333rem;
  }
}

.c-contact-head__tel a i {
  font-size: 2.6667rem;
  position: absolute;
  left: 0;
  top: -3px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-contact-head__tel a i {
    font-size: 2.2667rem;
    top: -1px;
  }
}

.c-dropdown {
  position: relative;
  text-align: center;
}

.c-dropdown__list {
  padding-left: 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  list-style: none;
  max-width: 240px;
  border-radius: 1.5px;
  position: absolute;
  left: 50%;
  margin-top: 16px;
  margin-bottom: 0;
  margin-left: -102px;
  display: none;
  opacity: 0;
  z-index: 10000000;
}

.c-dropdown__list li {
  border-bottom: 1px solid #ccc;
}

.c-dropdown__list li:last-child {
  border-radius: 0 0 1.5px 1.5px;
}

.c-dropdown__list li a {
  text-decoration: none;
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 32px;
  padding-right: 32px;
}

.c-dropdown__list li a:hover {
  background: #fff;
  color: #fff;
}

.c-dropdown__trigger:hover {
  cursor: pointer;
}

.c-dropdown__trigger:hover .c-dropdown__list {
  display: block;
  opacity: 1;
}

.c-eizoukiki-button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 120px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-eizoukiki-button {
    margin-bottom: 64px;
  }
}

@media (max-width: 900px) {
  .c-eizoukiki-button {
    display: block;
  }
}

.c-eizoukiki-button:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: calc(63.8% + 64px);
  background-color: #333;
}

@media (max-width: 900px) {
  .c-eizoukiki-button:before {
    display: none;
  }
}

.c-eizoukiki-button__block.left {
  width: 63.8%;
}

@media (max-width: 900px) {
  .c-eizoukiki-button__block.left {
    width: 100%;
    margin-bottom: 48px;
  }
}

.c-eizoukiki-button__block.right {
  width: 24.5%;
}

@media (max-width: 900px) {
  .c-eizoukiki-button__block.right {
    width: 100%;
  }
}

.c-eizoukiki-button__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 2.4px;
  margin-bottom: 8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-eizoukiki-button__title {
    font-size: 16.8px;
    line-height: 1.2;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
  }
}

.c-eizoukiki-button__lead {
  margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-eizoukiki-button__lead {
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-eizoukiki-button__button-block a {
    display: block;
    width: 100%;
    max-width: 100% !important;
  }
}

.c-eizoukiki-button__block.left .c-eizoukiki-button__button-block a:first-child {
  margin-right: 2%;
  width: 39%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-eizoukiki-button__block.left .c-eizoukiki-button__button-block a:first-child {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
}

.c-eizoukiki-button__block.left .c-eizoukiki-button__button-block a:last-child {
  width: 59%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-eizoukiki-button__block.left .c-eizoukiki-button__button-block a:last-child {
    width: 100%;
    max-width: 100%;
  }
}

.c-faqbox {
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 23px 30px 5px;
  margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-faqbox {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.c-faqbox.is-open .c-faqbox__title:after {
  content: "\f106";
}

.c-faqbox__title {
  font-weight: bold;
  color: #000;
  font-size: 1.2rem;
  padding-bottom: 18px;
  position: relative;
  padding-left: 68px;
  position: relative;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-faqbox__title {
    padding-left: 48px;
    font-size: 1.0667rem;
  }
}

.c-faqbox__title:after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  right: 4px;
  top: 50%;
  color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-81%);
      transform: translateY(-81%);
}

.c-faqbox__title:before {
  content: "Q";
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 5000px;
  background: #fff;
  position: absolute;
  text-align: center;
  padding-top: 3px;
  color: #fff;
  top: -3px;
  left: 0px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-faqbox__title:before {
    padding-top: 1px;
    width: 30px;
    height: 30px;
  }
}

.c-faqbox__content {
  border-top: 1px solid #ccc;
  padding-top: 16px;
  padding-left: 68px;
  margin-bottom: 12px;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-faqbox__content {
    padding-left: 48px;
  }
}

.c-faqbox__content:after {
  content: "A";
  box-sizing: border-box;
  font-weight: bold;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 5000px;
  color: #fff;
  position: absolute;
  text-align: center;
  padding-top: 3px;
  background: #f2f2f2;
  top: 15px;
  left: 0px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-faqbox__content:after {
    padding-top: 1px;
    width: 30px;
    height: 30px;
  }
}

.c-features-card {
  margin-bottom: 88px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-features-card {
    margin-bottom: 40px;
  }
}

.c-features-card__inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.c-features-card__block {
  width: calc(33.3333% - 24px);
  margin-right: 36px;
  background-color: #edf1fa;
  position: relative;
}

@media (max-width: 900px) {
  .c-features-card__block {
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 32px;
  }
  .c-features-card__block:nth-child(2n) {
    margin-right: 0;
  }
}

@media (min-width: 901px) {
  .c-features-card__block:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-features-card__block {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}

.c-features-card__overflow {
  width: 100%;
  padding-top: 70.2247%;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-features-card__overflow {
    padding-top: 56.1798%;
  }
}

.c-features-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #CCC;
}

.c-features-card__content {
  background-color: #edf1fa;
  padding: 24px 32px;
  position: relative;
}

.c-features-card__title {
  margin-top: 0;
  margin-bottom: 8px;
  position: relative;
  z-index: 99;
}

.c-features-card__text {
  position: relative;
  z-index: 99;
}

.c-features-card__number {
  position: absolute;
  right: 0;
  bottom: 4px;
}

.c-flow__inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.c-flow__block {
  background-color: #edf1fa;
  width: 23.1579%;
  margin-right: 2.2807%;
  position: relative;
  border-top: 2px solid #342f65;
  padding: 16px 24px 16px;
  margin-top: 41px;
}

.c-flow__block:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-flow__block {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}

.c-flow__block:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 18px;
  border-color: transparent transparent transparent #342f65;
  position: absolute;
  right: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-flow__block:before {
    border-width: 18px 16px 0 16px;
    border-color: #342f65 transparent transparent transparent;
    right: 50%;
    top: auto;
    bottom: -18px;
    -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}

.c-flow__block:last-child:before {
  display: none;
}

.c-flow__number {
  font-size: 40px;
  line-height: 1;
  color: #342f65;
  position: absolute;
  top: -41px;
  left: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.c-flow__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.5;
}

.c-flow__text {
  line-height: 1.75;
}

.c-form-block {
  width: 100%;
  padding-top: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block {
    padding-top: 24px;
  }
}

.c-form-block__block {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #ccc;
  padding: 24px 0;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block__block {
    display: block;
    padding: 16px 0;
  }
}

.c-form-block__title {
  width: 226px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-top: 10px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block__title {
    font-size: 14px;
    width: 100%;
    padding-bottom: 8px;
    padding-top: 0;
  }
}

.c-form-block__title span {
  font-weight: 500;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block__title span {
    font-weight: 600;
  }
}

.c-form-block__label {
  margin-left: auto;
}

.c-form-block__content {
  margin-left: auto;
  width: calc(100% - 226px - 32px);
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block__content {
    width: 100%;
  }
}

.c-form-block__flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.c-form-block__button {
  display: block;
  background-color: #333;
  color: #fff;
  max-width: 160px;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 0;
  margin-left: 8px;
  width: calc(40% - 8px);
}

.c-form-block__button:hover {
  opacity: 0.7;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block__button {
    font-size: 13px;
    padding: 12px 0;
  }
  .c-form-block__button:before {
    padding-right: 6px;
  }
}

.c-form-block__input.is-sm {
  width: 60%;
  max-width: 300px;
}

.c-form-block__textarea {
  height: 200px;
}

.c-form-block__checkbox {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block__checkbox {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

.c-form-block__submit__button {
  background-color: #342f65;
  color: #fff;
  outline: none;
  letter-spacing: 1.6px;
  border: 1px solid #342f65;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  display: block;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-form-block__submit__button {
    font-size: 15px;
    padding: 14px 16px;
  }
}

.c-form-block__submit__button:hover {
  background-color: #fff;
  color: #342f65;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mw_wp_form.mw_wp_form_confirm .c-form-block .c-label.is-required, .mw_wp_form.mw_wp_form_confirm .c-form-block .c-form-block__label {
  display: none;
}

.mw_wp_form.mw_wp_form_confirm .c-form-block__submit__button {
  margin-top: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .mw_wp_form.mw_wp_form_confirm .c-form-block__submit__button {
    margin-top: 32px;
  }
}

.mw_wp_form.mw_wp_form_confirm .c-form-block__checkbox {
  display: none;
}

.mw_wp_form.mw_wp_form_confirm .c-button.is-form, .mw_wp_form.mw_wp_form_confirm .c-password-form input.is-form[type=submit], .c-password-form .mw_wp_form.mw_wp_form_confirm input.is-form[type=submit], .mw_wp_form.mw_wp_form_confirm .c-social-share > a.is-form, .mw_wp_form.mw_wp_form_confirm .is-form.c-page-opening__button, .mw_wp_form.mw_wp_form_confirm .c-post-navs__archive a.is-form, .c-post-navs__archive .mw_wp_form.mw_wp_form_confirm a.is-form, .mw_wp_form.mw_wp_form_confirm .c-social-share > a.is-form {
  display: none;
}

.c-google-map {
  margin-top: 30px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-google-map {
    margin-top: 16px;
  }
}

.c-google-map > iframe {
  width: 100%;
  height: auto;
  min-height: 400px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-google-map > iframe {
    min-height: 240px;
  }
}

.c-greeting__image-block {
  margin-bottom: 40px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-greeting__image-block {
    margin-bottom: 24px;
  }
}

.c-greeting__text-block {
  margin-bottom: 32px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-greeting__text-block {
    margin-bottom: 24px;
  }
}

.c-greeting__text-block.is-list p {
  text-indent: -2.2rem;
  padding-left: 2.2rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-greeting__text-block.is-list p {
    text-indent: -1.8rem;
    padding-left: 1.8rem;
  }
}

.c-greeting__date {
  text-align: right;
  font-size: 18px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-greeting__date {
    font-size: 14px;
  }
}

.c-greeting__position {
  text-align: right;
  font-size: 18px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-greeting__position {
    font-size: 14px;
  }
}

.c-greeting__name {
  font-weight: bold;
  font-size: 24px;
  text-align: right;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-greeting__name {
    font-size: 18px;
  }
}

.container, .l-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .row {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.small-1 {
  width: 8.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-1 {
  margin-left: 8.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-2 {
  width: 16.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-2 {
  margin-left: 16.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-3 {
  width: 25%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-3 {
  margin-left: 25%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-4 {
  width: 33.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-4 {
  margin-left: 33.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-5 {
  width: 41.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-5 {
  margin-left: 41.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-6 {
  width: 50%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-6 {
  margin-left: 50%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-7 {
  width: 58.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-7 {
  margin-left: 58.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-8 {
  width: 66.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-8 {
  margin-left: 66.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-9 {
  width: 75%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-9 {
  margin-left: 75%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-10 {
  width: 83.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-10 {
  margin-left: 83.3333%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-11 {
  width: 91.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-11 {
  margin-left: 91.6667%;
  padding-left: 12px;
  padding-right: 12px;
}

.small-12 {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.is-push-sm-12 {
  margin-left: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

@media screen and (min-width: 46.875em) and (max-width: 71.1875em) {
  .medium-1 {
    width: 8.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-1 {
    margin-left: 8.3333%;
  }
  .medium-2 {
    width: 16.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-2 {
    margin-left: 16.6667%;
  }
  .medium-3 {
    width: 25%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-3 {
    margin-left: 25%;
  }
  .medium-4 {
    width: 33.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-4 {
    margin-left: 33.3333%;
  }
  .medium-5 {
    width: 41.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-5 {
    margin-left: 41.6667%;
  }
  .medium-6 {
    width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-6 {
    margin-left: 50%;
  }
  .medium-7 {
    width: 58.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-7 {
    margin-left: 58.3333%;
  }
  .medium-8 {
    width: 66.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-8 {
    margin-left: 66.6667%;
  }
  .medium-9 {
    width: 75%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-9 {
    margin-left: 75%;
  }
  .medium-10 {
    width: 83.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-10 {
    margin-left: 83.3333%;
  }
  .medium-11 {
    width: 91.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-11 {
    margin-left: 91.6667%;
  }
  .medium-12 {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-md-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 71.25em) {
  .large-1 {
    width: 8.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-1 {
    margin-left: 8.3333%;
  }
  .large-2 {
    width: 16.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-2 {
    margin-left: 16.6667%;
  }
  .large-3 {
    width: 25%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-3 {
    margin-left: 25%;
  }
  .large-4 {
    width: 33.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-4 {
    margin-left: 33.3333%;
  }
  .large-5 {
    width: 41.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-5 {
    margin-left: 41.6667%;
  }
  .large-6 {
    width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-6 {
    margin-left: 50%;
  }
  .large-7 {
    width: 58.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-7 {
    margin-left: 58.3333%;
  }
  .large-8 {
    width: 66.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-8 {
    margin-left: 66.6667%;
  }
  .large-9 {
    width: 75%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-9 {
    margin-left: 75%;
  }
  .large-10 {
    width: 83.3333%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-10 {
    margin-left: 83.3333%;
  }
  .large-11 {
    width: 91.6667%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-11 {
    margin-left: 91.6667%;
  }
  .large-12 {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .is-push-lg-12 {
    margin-left: 100%;
  }
}

.c-history__timeline-block {
  padding-bottom: 3.0667rem;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-history__timeline-block {
    padding-bottom: 1.5333rem;
  }
}

.c-history__timeline-block:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #EDF1FA;
  position: absolute;
  top: 0px;
  left: 151px;
  border-radius: 5px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-history__timeline-block:before {
    left: 130px;
  }
}

.c-history__timeline-list {
  display: table;
  padding-bottom: 1.6rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-history__timeline-list {
    padding-bottom: 1.0667rem;
  }
}

.c-history__timeline-list:last-child {
  padding-bottom: 0;
}

.c-history__timeline-date {
  display: table-cell;
  width: 10.6667rem;
  max-width: 10.6667rem;
  position: relative;
  line-height: 1;
  text-align: left;
  font-weight: bold;
  padding-top: 8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-history__timeline-date {
    width: 9.3333rem;
    max-width: 9.3333rem;
    padding-top: 4px;
  }
}

.c-history__timeline-date:after {
  content: "";
  display: block;
  width: 1.1333rem;
  height: 1.1333rem;
  background-image: url("icon-history-circle.png");
  background-size: contain;
  position: absolute;
  top: 7px;
  right: 0px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-history__timeline-date:after {
    width: 1.0667rem;
    height: 1.0667rem;
    top: 2px;
  }
}

.c-history__timeline-content {
  display: table-cell;
  vertical-align: top;
  padding-left: 2.6667rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-history__timeline-content {
    padding-left: 1.6rem;
  }
}

.c-image-content {
  margin-bottom: 88px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-image-content {
    margin-bottom: 40px;
  }
}

.c-image-content__block {
  position: relative;
  min-height: 470px;
  padding-top: 48px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-image-content__block {
    min-height: inherit;
    padding-top: 0;
  }
}

.c-image-content__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 68.4211%;
  height: 470px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-image-content__image {
    position: static;
    width: 100%;
    height: 220px;
  }
}

.c-image-content__content {
  position: relative;
  z-index: 99;
  width: 49.8246%;
  background-color: #fff;
  border: 1px solid #342f65;
  padding: 62px 66px;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-image-content__content {
    width: 96%;
    margin: -24px auto 0;
    padding: 32px 24px 24px;
  }
}

.c-image-content__content:after {
  content: "";
  display: block;
  width: 3.0667rem;
  height: 2.2667rem;
  background: url("icon-blockquote.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 24px;
  right: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-image-content__content:after {
    width: 1.5333rem;
    height: 1.1333rem;
    top: 12px;
    right: 12px;
  }
}

.c-image-content__title {
  color: #342f65;
}

.c-inline-list {
  list-style: disc;
  margin-left: 0;
  padding-left: 0;
  overflow: hidden;
  list-style-position: outside;
}

.c-inline-list li {
  float: left;
  margin-left: 4.2667rem;
  margin-right: 0.5333rem;
}

.c-iso {
  display: -webkit-box;
  display: flex;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-iso {
    display: block;
  }
}

.c-iso__image-block {
  width: 29.4%;
  margin-right: 32px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-iso__image-block {
    width: 60%;
    margin-right: 0px;
    margin: 0 auto 32px;
  }
}

.c-iso__text-block p.circle {
  display: -webkit-box;
  display: flex;
  overflow: hidden;
}

.c-iso__text-block p.circle:before {
  content: "●";
  display: block;
  color: #342f65;
  margin-right: 6px;
  float: left;
}

.c-konpou-image {
  margin-bottom: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-konpou-image {
    margin-bottom: 32px;
  }
}

.c-konpou-image__block {
  width: 100%;
  margin-right: 36px;
  background-color: #fff;
  border-left: 2px solid #342f65;
  border-top: 1px solid #edf1fa;
  border-right: 1px solid #edf1fa;
  border-bottom: 1px solid #edf1fa;
  padding: 32px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: flex;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-konpou-image__block {
    display: block;
    width: 100%;
    margin-right: 0;
    padding: 24px;
    margin-bottom: 8px;
  }
}

.c-konpou-image__image-block {
  width: 35%;
  margin-right: 3%;
  min-width: 258px;
  max-width: 258px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-konpou-image__image-block {
    min-width: 206.4px;
    margin: 0 auto 24px;
  }
}

.c-konpou-image__title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2.4px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-konpou-image__title {
    font-size: 16.8px;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
  }
}

.c-label, .c-form-block__label {
  background-color: #342f65;
  color: #fff;
  display: inline-block;
  text-align: center;
  min-width: 100px;
  border-radius: 4px;
  font-size: 13px;
  padding: 1px 4px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-label, .c-form-block__label {
    font-size: 12px;
    min-width: 88px;
    border-radius: 2px;
  }
}

.c-label > a, .c-form-block__label > a {
  color: #fff;
  text-decoration: none;
}

.c-label.is-required, .c-form-block__label {
  font-size: 12px;
  min-width: 54px;
  text-align: center;
  border-radius: 0;
  padding: 1px 8px 1px;
  background-color: #342f65;
}

.c-label.is-lg, .is-lg.c-form-block__label {
  font-size: 1rem;
}

.c-label.is-sm, .is-sm.c-form-block__label {
  font-size: 0.64rem;
}

.c-label.is-secondary, .is-secondary.c-form-block__label {
  background: #342f65;
}

.c-label.is-tertiary, .is-tertiary.c-form-block__label {
  background: #efefef;
}

.c-label.is-danger, .is-danger.c-form-block__label {
  background: #cc2919;
}

.c-label.is-warning, .is-warning.c-form-block__label {
  background: #cc9e12;
}

.c-label.is-info, .is-info.c-form-block__label {
  background: #378da3;
}

.c-label.is-success, .is-success.c-form-block__label {
  background: #13a83a;
}

@media (max-width: 950px) {
  .c-landing {
    max-width: 700px;
    margin: 0 auto;
  }
}

.c-landing__block {
  padding: 72px 0 80px;
  border-bottom: 1px solid #342f65;
}

@media (max-width: 950px) {
  .c-landing__block {
    padding: 48px 0 56px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-landing__block {
    padding: 32px 0 40px;
  }
  .c-landing__block:first-child {
    padding-top: 0;
  }
}

.c-landing__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.c-landing__inner {
  display: -webkit-box;
  display: flex;
}

@media (max-width: 950px) {
  .c-landing__inner {
    display: block;
  }
}

.c-landing__image {
  width: 100%;
  max-width: 368px;
  margin-left: auto;
}

@media (max-width: 950px) {
  .c-landing__image {
    -webkit-box-ordinal-group: 3 !important;
            order: 2 !important;
    margin-top: 16px;
  }
}

.c-landing__text {
  width: calc(100% - 368px - 64px);
}

@media (max-width: 950px) {
  .c-landing__text {
    width: 100%;
    -webkit-box-ordinal-group: 2 !important;
            order: 1 !important;
  }
}

.c-landing__block.is-image-hidden .c-landing__text {
  width: 100%;
}

.c-landing__block:nth-child(2n) .c-landing__text {
  -webkit-box-ordinal-group: 3;
          order: 2;
  margin-left: auto;
}

.c-landing__block:nth-child(2n) .c-landing__image {
  -webkit-box-ordinal-group: 2;
          order: 1;
  margin-left: 0;
}

.c-lead {
  font-size: 1.2rem;
}

.c-link-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block {
    display: block;
  }
}

.c-link-block .block {
  position: relative;
}

.c-link-block .block span, .c-link-block .block small, .c-link-block .block .c-dropdown__list li a, .c-dropdown__list li .c-link-block .block a {
  display: block;
}

.c-link-block .block a {
  text-decoration: none;
  color: red;
  position: relative;
  display: block;
}

.c-link-block .block a:hover {
  opacity: 1;
}

.c-link-block .block a:hover:before {
  opacity: 1;
}

.c-link-block .block .c-link-block__inner {
  position: absolute;
  top: 12px;
  left: 12px;
  border: solid 1px rgba(245, 247, 249, 0.3);
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block .block .c-link-block__inner {
    top: 6px;
    left: 6px;
  }
}

.c-link-block .block .c-link-block__image {
  background-size: cover;
  background-position: top center;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block .block .c-link-block__image {
    background-position: top 40% center;
  }
}

.c-link-block .block .c-link-block__text-block {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 40px;
}

.c-link-block .c-link-block__link-box {
  position: relative;
}

.c-link-block .c-link-block__link-box:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 62, 184, 0.7);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-link-block .c-link-block__link-box:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 48px;
  border-color: transparent transparent #342f65 transparent;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block .c-link-block__link-box:after {
    border-width: 0 0 25px 25px;
  }
}

.c-link-block__text-block .title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 2.4px;
  color: #F5F7F9;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__text-block .title {
    font-size: 13px;
  }
}

.c-link-block__text-block .subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2.4px;
  color: rgba(245, 247, 249, 0.5);
  margin-top: 16px;
  font-weight: 300;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__text-block .subtitle {
    font-size: 11px;
    margin-top: 12px;
  }
}

.c-link-block__large-block {
  width: 39.8%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__large-block {
    width: 100%;
  }
}

.c-link-block__large-block .c-link-block__image {
  min-height: 456px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__large-block .c-link-block__image {
    min-height: 150px;
  }
}

.c-link-block__large-block .c-link-block__inner {
  min-height: calc(456px - 24px);
  width: calc(100% - 24px);
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__large-block .c-link-block__inner {
    min-height: calc(150px - 12px);
    width: calc(100% - 12px);
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__large-block {
    width: 100%;
  }
}

.c-link-block__small-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  width: 60.2%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__small-block {
    width: 100%;
  }
}

.c-link-block__small-block .c-link-block__link-box {
  width: 50%;
}

.c-link-block__small-block .c-link-block__image {
  min-height: 228px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__small-block .c-link-block__image {
    min-height: 122px;
  }
}

.c-link-block__small-block .c-link-block__inner {
  min-height: calc(228px - 24px);
  width: calc(100% - 24px);
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-link-block__small-block .c-link-block__inner {
    min-height: calc(122px - 12px);
    width: calc(100% - 12px);
  }
}

.c-lower-hedding .heading.is-sm, .c-lower-hedding .is-sm.c-features-card__title, .c-lower-hedding .is-sm.c-image-content__title, .c-lower-hedding .c-opening__title, .c-lower-hedding .c-other-content__head, .c-lower-hedding .c-post-content-page-head__title, .c-lower-hedding .is-sm.c-special-landing__title, .c-lower-hedding .l-post-content h2, .l-post-content .c-lower-hedding h2, .c-lower-hedding #tinymce.post-type-post h2, #tinymce.post-type-post .c-lower-hedding h2, .c-lower-hedding #tinymce.post-type-page h2, #tinymce.post-type-page .c-lower-hedding h2, .c-lower-hedding #tinymce.mce-content-body.acf_content h2, #tinymce.mce-content-body.acf_content .c-lower-hedding h2, .c-lower-hedding #tinymce.post-type-tinymcetemplates h2, #tinymce.post-type-tinymcetemplates .c-lower-hedding h2, .c-lower-hedding .l-post-content h3.is-sm, .l-post-content .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.post-type-post h3.is-sm, #tinymce.post-type-post .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.post-type-page h3.is-sm, #tinymce.post-type-page .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h3.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h3.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h3.is-sm, .c-lower-hedding .l-post-content h4.is-sm, .l-post-content .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.post-type-post h4.is-sm, #tinymce.post-type-post .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.post-type-page h4.is-sm, #tinymce.post-type-page .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h4.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h4.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h4.is-sm, .c-lower-hedding .l-post-content h5.is-sm, .l-post-content .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.post-type-post h5.is-sm, #tinymce.post-type-post .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.post-type-page h5.is-sm, #tinymce.post-type-page .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h5.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h5.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h5.is-sm, .c-lower-hedding .l-post-content h6.is-sm, .l-post-content .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.post-type-post h6.is-sm, #tinymce.post-type-post .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.post-type-page h6.is-sm, #tinymce.post-type-page .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h6.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h6.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h6.is-sm {
  margin-bottom: 32px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-lower-hedding .heading.is-sm, .c-lower-hedding .is-sm.c-features-card__title, .c-lower-hedding .is-sm.c-image-content__title, .c-lower-hedding .c-opening__title, .c-lower-hedding .c-other-content__head, .c-lower-hedding .c-post-content-page-head__title, .c-lower-hedding .is-sm.c-special-landing__title, .c-lower-hedding .l-post-content h2, .l-post-content .c-lower-hedding h2, .c-lower-hedding #tinymce.post-type-post h2, #tinymce.post-type-post .c-lower-hedding h2, .c-lower-hedding #tinymce.post-type-page h2, #tinymce.post-type-page .c-lower-hedding h2, .c-lower-hedding #tinymce.mce-content-body.acf_content h2, #tinymce.mce-content-body.acf_content .c-lower-hedding h2, .c-lower-hedding #tinymce.post-type-tinymcetemplates h2, #tinymce.post-type-tinymcetemplates .c-lower-hedding h2, .c-lower-hedding .l-post-content h3.is-sm, .l-post-content .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.post-type-post h3.is-sm, #tinymce.post-type-post .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.post-type-page h3.is-sm, #tinymce.post-type-page .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h3.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h3.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h3.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h3.is-sm, .c-lower-hedding .l-post-content h4.is-sm, .l-post-content .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.post-type-post h4.is-sm, #tinymce.post-type-post .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.post-type-page h4.is-sm, #tinymce.post-type-page .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h4.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h4.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h4.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h4.is-sm, .c-lower-hedding .l-post-content h5.is-sm, .l-post-content .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.post-type-post h5.is-sm, #tinymce.post-type-post .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.post-type-page h5.is-sm, #tinymce.post-type-page .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h5.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h5.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h5.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h5.is-sm, .c-lower-hedding .l-post-content h6.is-sm, .l-post-content .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.post-type-post h6.is-sm, #tinymce.post-type-post .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.post-type-page h6.is-sm, #tinymce.post-type-page .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.mce-content-body.acf_content h6.is-sm, #tinymce.mce-content-body.acf_content .c-lower-hedding h6.is-sm, .c-lower-hedding #tinymce.post-type-tinymcetemplates h6.is-sm, #tinymce.post-type-tinymcetemplates .c-lower-hedding h6.is-sm {
    margin-bottom: 24px;
  }
}

.c-lower-hedding__lead {
  margin-bottom: 72px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-lower-hedding__lead {
    margin-bottom: 36px;
  }
}

.c-mainvisual {
  position: relative;
}

.c-mainvisual__slider {
  max-width: 100%;
  width: 100%;
  min-height: 766px;
  height: 766px;
  max-width: 1208px;
  width: 100%;
  margin-left: auto;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-mainvisual__slider {
    min-height: 384px;
    height: 384px;
    margin-top: 60px;
    width: 90%;
  }
}

.c-mainvisual__image {
  max-width: 1208px;
  width: 100%;
  min-height: 766px;
  margin-left: auto;
  background-size: cover;
  background-position: top center;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-mainvisual__image {
    min-height: 384px;
    background-position: center center;
  }
}

.c-mainvisual__visual-text {
  position: absolute;
  min-width: 592px;
  max-width: 592px;
  bottom: -3px;
  right: 0px;
  z-index: 1001;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-mainvisual__visual-text {
    max-width: 296px;
    min-width: 296px;
  }
}

.c-mainvisual__visual-text img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-mainvisual__visual-text img {
    max-width: 296px;
  }
}

.c-mainvisual__content {
  position: absolute;
  top: 330px;
  left: 90px;
  z-index: 1001;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-mainvisual__content {
    top: 120px;
    left: 20px;
  }
}

.c-mainvisual__text {
  max-width: 566px;
  margin-bottom: 34px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-mainvisual__text {
    max-width: 278px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-mainvisual__button .c-button.is-md, .c-mainvisual__button .c-password-form input.is-md[type=submit], .c-password-form .c-mainvisual__button input.is-md[type=submit], .c-mainvisual__button .c-social-share > a.is-md {
    max-width: 210px;
  }
}

#tinymce {
  min-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  font-family: Noto Sans JP, Noto Sans Japanese, Noto Sans, sans-serif !important;
  overflow: scroll;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  #tinymce {
    min-width: inherit !important;
    width: 100%;
  }
}

#tinymce.post-type-post {
  max-width: 49.0667rem;
  margin-left: 0;
}

#tinymce.post-type-page {
  max-width: 100%;
}

#tinymce.mce-content-body.acf_content {
  max-width: 72rem;
}

#tinymce.mce-content-body.acf_content.post-type-page {
  max-width: 100%;
}

#tinymce.post-type-tinymcetemplates {
  max-width: 72rem;
}

/* パスワード保護フォーム */
.c-password-form {
  text-align: center;
  padding-top: 1.6rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-password-form input[type=password] {
    display: block;
    width: 100%;
  }
}

.c-password-form input[type=submit] {
  margin-bottom: 1.6rem;
}

.c-password-form input[type=submit]:hover {
  color: white;
  opacity: 0.8;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-password-form input[type=submit] {
    width: 100%;
    max-width: 100%;
    margin-top: 1.0667rem;
  }
}

/* ログイン画面 */
#login {
  width: 260px !important;
}

#login h1 a {
  background-size: cover !important;
  height: 98px !important;
  width: 260px !important;
}

.c-media > img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.c-media > figcaption {
  margin-top: 0;
  background: #efefef;
  text-align: center;
  padding: 0.5333rem 2.1333rem;
}

.c-menu {
  padding-left: 0;
  margin-left: 0;
  border-top: 1px solid #efefef;
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

.c-menu > li {
  list-style: none;
}

.c-menu > li > a {
  display: block;
  border-bottom: 1px solid #efefef;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 32px;
  padding-right: 32px;
  text-decoration: none;
}

.c-menu > li > a:hover, .c-menu > li > a.is-active {
  background: #fff;
  color: #fff;
}

.c-message {
  padding: 1.0667rem;
  background: #efefef;
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  margin-bottom: 32px;
}

.c-message .c-message__icon {
  margin-right: 0.4rem;
}

.c-message .c-message__icon.is-right {
  float: right;
  margin-top: 0.2667rem;
}

.c-message > p {
  margin-bottom: 0;
}

.c-message.is-primary {
  background: #fff;
  border: 1px solid #f7f7f7;
}

.c-message.is-primary > p {
  color: #fff;
}

.c-message.is-secondary {
  background: #342f65;
  border: 1px solid #0039a9;
}

.c-message.is-secondary > p {
  color: #fff;
}

.c-message.is-danger {
  background: #cc2919;
  border: 1px solid #be2617;
}

.c-message.is-danger > * {
  color: #fff;
}

.c-message.is-warning {
  background: #cc9e12;
  border: 1px solid #be9311;
}

.c-message.is-warning > p {
  color: #fff;
}

.c-message.is-info {
  background: #378da3;
  border: 1px solid #338398;
}

.c-message.is-info > p {
  color: #fff;
}

.c-message.is-success {
  background: #13a83a;
  border: 1px solid #119a35;
}

.c-message.is-success > p {
  color: #fff;
}

.c-navs-list > li {
  display: inline-block;
}

.c-navs-list > li > a {
  display: inline-block;
  padding: 0.5333rem 2.1333rem;
  background: #efefef;
  text-decoration: none;
  border-radius: 3px;
}

.c-navs-list > li > a:hover, .c-navs-list > li > a.is-active {
  background: #fff;
  color: #fff;
}

.c-navs-list.is-expand > li > a {
  padding: 0.5333rem 4.2667rem;
}

.c-offer {
  border-top: 2px solid #664494;
  background: url("bg-offer.jpg");
  background-size: cover;
  background-position: top center;
  padding-top: 4.8rem;
  padding-bottom: 6rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-offer {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    background: url("bg-offer-sp.jpg");
    background-size: 100% 100%;
  }
}

.c-offer__title {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1;
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-offer__title {
    font-size: 18px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }
}

.c-offer__title:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
}

.c-offer__lead {
  color: #fff;
}

.c-offer__utility-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 0 8.4211%;
  margin-top: 1.8667rem;
}

@media (max-width: 850px) {
  .c-offer__utility-content {
    display: block;
    padding: 0%;
  }
}

.c-offer__tel-box, .c-offer__mail-box {
  width: 47.8903%;
  padding: 48px 4.386% 38px;
  text-align: center;
  border: solid 2px rgba(255, 255, 255, 0.3);
}

@media (max-width: 850px) {
  .c-offer__tel-box, .c-offer__mail-box {
    width: 100%;
    padding: 32px 2.6316% 32px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-offer__tel-box, .c-offer__mail-box {
    padding: 32px 12%;
  }
}

@media (max-width: 850px) {
  .c-offer__tel-box {
    margin-bottom: 2.1333rem;
  }
}

@media screen and (max-width: 850px) and (min-width: 0em) and (max-width: 46.8125em) {
  .c-offer__tel-box {
    margin-bottom: 0.6667rem;
  }
}

.c-offer__box-title {
  font-weight: 500;
  font-size: 1.3333rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-offer__box-title {
    font-size: 1.0667rem;
    letter-spacing: 1.6px;
    margin-bottom: 0.8rem;
  }
}

.c-offer__tel {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 2.6667rem;
  line-height: 30px;
  margin-bottom: 1.6rem;
  letter-spacing: 2px;
}

.c-offer__tel i {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 6px;
}

.c-offer__tel a {
  text-decoration: none;
  color: #fff;
}

.c-offer__tel a:hover {
  color: #fff;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-offer__tel {
    font-size: 2rem;
  }
}

.c-offer__button .c-button.is-md, .c-offer__button .c-password-form input.is-md[type=submit], .c-password-form .c-offer__button input.is-md[type=submit], .c-offer__button .c-social-share > a.is-md {
  font-size: 1.0667rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-offer__button .c-button.is-md, .c-offer__button .c-password-form input.is-md[type=submit], .c-password-form .c-offer__button input.is-md[type=submit], .c-offer__button .c-social-share > a.is-md {
    font-size: 0.9333rem;
  }
}

.c-office-list ul {
  display: -webkit-box;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}

.c-office-list li {
  width: 33%;
  margin-bottom: 52px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-office-list li {
    width: 100%;
    margin-bottom: 24px;
  }
}

.c-office-list__name {
  font-weight: bold;
}

.c-office__inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.c-office__block {
  width: calc(50% - 18px);
  margin-right: 36px;
  background-color: #fff;
  border-left: 2px solid #342f65;
  border-top: 1px solid #edf1fa;
  border-right: 1px solid #edf1fa;
  border-bottom: 1px solid #edf1fa;
  padding: 32px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: flex;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-office__block {
    width: 100%;
    margin-right: 0;
    padding: 24px;
    margin-bottom: 16px;
  }
}

.c-office__block:nth-child(2n) {
  margin-right: 0;
}

.c-office__image-block {
  max-width: 31%;
  min-width: 150px;
  margin-right: 5.3%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-office__image-block {
    max-width: 33%;
  }
}

.c-office__title {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 8px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-office__title {
    font-size: 16px;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
  }
}

.c-office__text {
  line-height: 1.6;
  letter-spacing: 1.2px;
}

.c-opening {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-opening {
    margin-bottom: 32px;
  }
}

.c-opening__title {
  margin-top: 0;
}

.c-opening.is-left {
  text-align: left;
}

.c-opening.is-left .c-opening__title {
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.c-opening.is-left .c-opening__title:after {
  display: none;
}

.c-other-content {
  margin-bottom: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-other-content {
    margin-bottom: 32px;
  }
}

.c-other-content__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 1000px) {
  .c-other-content__inner {
    flex-wrap: wrap;
  }
}

.c-other-content__block {
  text-decoration: none;
  color: #fff;
  width: calc(100% - 6.4px);
  margin-right: 8px;
  position: relative;
}

@media (max-width: 1000px) {
  .c-other-content__block {
    width: calc(33.333% - 16px);
    margin-bottom: 8px;
  }
  .c-other-content__block:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-other-content__block {
    width: 100%;
    margin-right: 0;
  }
}

.c-other-content__block span {
  display: block;
}

.c-other-content__block:last-child {
  margin-right: 0;
}

.c-other-content__block:hover {
  opacity: 1;
}

.c-other-content__block:hover:before {
  opacity: 1;
}

.c-other-content__block:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 34px 34px;
  border-color: transparent transparent #342f65 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 101;
}

.c-other-content__block:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 62, 184, 0.6);
  position: absolute;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.c-other-content__block.is-current {
  opacity: 1;
}

.c-other-content__block.is-current:before {
  opacity: 1;
}

.c-other-content__overflow {
  width: 100%;
  padding-top: 67.6471%;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-other-content__overflow {
    padding-top: 33.0882%;
  }
}

.c-other-content__overflow:after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  top: 6px;
  left: 6px;
  position: absolute;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.c-other-content__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-other-content__image {
    background-position: center 70%;
  }
}

.c-other-content__title {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.5;
  z-index: 101;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  font-weight: 600;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
}

.c-overview {
  position: relative;
  zoom: 1;
  min-height: 414px;
  margin-bottom: 20px;
  padding-top: 30px;
}

.c-overview:before, .c-overview:after {
  content: " ";
  display: table;
}

.c-overview:after {
  clear: both;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-overview {
    min-height: 100%;
    margin-bottom: 40px;
    padding-top: 0px;
  }
}

.c-overview__image {
  position: absolute;
  top: 0px;
  left: 0px;
  min-height: 414px;
  width: 52%;
  height: 100%;
  background-size: cover;
  background-position: top center;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-overview__image {
    min-height: 240px;
    width: 100%;
    position: static;
  }
}

.c-overview .l-container {
  position: relative;
  z-index: 4000;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  min-height: 414px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-overview .l-container {
    position: static;
    display: block;
    min-height: auto;
    width: 100%;
    margin: -32px auto 0;
  }
}

.c-overview__content {
  position: relative;
  width: 50.70%;
  margin-left: auto;
  border: 2px solid #342f65;
  padding: 64px 7% 48px 7%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-overview__content {
    width: 100%;
    background-color: #fff;
    padding: 32px 6% 48px 6%;
  }
}

.c-overview__content:before {
  content: "";
  bottom: 0px;
  right: 0px;
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #342f65 transparent;
}

.c-overview__number {
  position: absolute;
  padding: 0 16px;
  top: -36px;
  left: 70px;
  background-color: #fff;
  font-size: 72px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 3.6px;
  color: #342f65;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-overview__number {
    display: inline-block;
    font-size: 50.4px;
    letter-spacing: 1.8px;
    top: 30px;
    left: 0px;
    background: none;
  }
}

.c-overview__number:first-letter {
  color: #664494;
}

.c-overview__title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.c-overview__title h3 {
  margin: 0px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-overview__title {
    font-size: 16.8px;
  }
  .c-overview__title.is-number {
    padding-left: 60px;
  }
}

.c-overview.is-rev .c-overview__image {
  top: 0px;
  right: 0px;
  left: auto;
}

.c-overview.is-rev .c-overview__content {
  margin-left: 0;
  margin-right: auto;
}

.c-overview.is-last {
  margin-bottom: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-overview.is-last {
    margin-bottom: 54px;
  }
}

.c-overview.is-voice .c-overview__sup {
  display: -webkit-box;
  display: flex;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 12px;
}

.c-overview.is-voice .c-overview__post {
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
}

.c-overview.is-voice .c-overview__post:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #333;
  position: absolute;
  top: 2px;
  right: 0;
}

.c-page-header {
  position: relative;
  height: 616px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header {
    height: auto;
    margin-top: 60px;
  }
}

.c-page-header__image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 58.2857%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #CCC;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__image {
    position: relative;
    width: 68%;
    height: 190px;
    margin-left: auto;
  }
}

.c-page-header__inner {
  position: relative;
  height: 616px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__inner {
    height: inherit;
  }
}

.c-page-header__item {
  position: absolute;
  width: 100%;
  bottom: 50%;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  padding-top: 176px;
  left: 0;
  z-index: 999;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__item {
    padding-top: 0 !important;
    position: static;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    margin-top: -136px;
  }
}

.c-page-header__box {
  border: 2px solid #342f65;
  width: 100%;
  max-width: 491px;
  padding: 64px 64px 72px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__box {
    padding: 40px 38px 40px !important;
    max-width: 72%;
    margin-right: auto;
  }
}

.c-page-header__title {
  margin: 0;
  position: relative;
  padding-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__title {
    padding-bottom: 14px;
  }
}

.c-page-header__title span {
  display: block;
  font-size: 72px;
  letter-spacing: 3.6px;
  color: #342f65;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__title span {
    font-size: 36px;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
  }
}

.c-page-header__title span:first-letter {
  color: #664494;
}

.c-page-header__title small, .c-page-header__title .c-dropdown__list li a, .c-dropdown__list li .c-page-header__title a {
  display: block;
  font-size: 18px;
  letter-spacing: 3.6px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__title small, .c-page-header__title .c-dropdown__list li a, .c-dropdown__list li .c-page-header__title a {
    font-size: 13px;
  }
}

.c-page-header__title:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #342f65;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__title:after {
    width: 60px;
    height: 2px;
  }
}

.c-page-header__subtitle {
  font-size: 36px;
  letter-spacing: 3.8px;
  color: #342f65;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.2;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-page-header__subtitle {
    font-size: 18px;
    letter-spacing: 1.6px;
    margin-top: 12px;
    background-color: #fff;
    padding: 6px 0px;
  }
}

.c-page-header.is-subtitle .c-page-header__item {
  padding-top: 148px;
}

.c-page-header.is-subtitle .c-page-header__box {
  padding: 70px 64px;
}

.c-pagination {
  margin-top: 32px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-pagination {
    margin-top: 24px;
  }
}

.c-pagination > ul {
  text-align: left;
  list-style: none;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-pagination > ul {
    text-align: center;
  }
}

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

.c-pagination > ul > li > span,
.c-pagination > ul > li > a {
  display: inline-block;
  padding-left: 1.0667rem;
  padding-right: 1.0667rem;
  padding-top: 0.5333rem;
  padding-bottom: 0.5333rem;
  text-decoration: none;
  color: #333;
  border-radius: 2px;
  border: 1px solid #333;
  margin-right: 0.2667rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-pagination > ul > li > span,
  .c-pagination > ul > li > a {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}

.c-pagination > ul > li > span:hover,
.c-pagination > ul > li > a:hover {
  opacity: 1;
  background: #edf1fa;
}

.c-pagination > ul > li > span.is-active,
.c-pagination > ul > li > a.is-active {
  background: #342f65;
  color: #fff;
  border: 1px solid #342f65;
}

.c-pagination > ul > li > .c-pagination__prev,
.c-pagination > ul > li > .c-pagination__next {
  display: inline-block;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  padding-top: 0.5333rem;
  padding-bottom: 0.5333rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-pagination > ul > li > .c-pagination__prev,
  .c-pagination > ul > li > .c-pagination__next {
    padding-left: 0.9333rem;
    padding-right: 0.9333rem;
  }
}

.c-panel__title {
  background: #fff;
  color: #fff;
  padding: 32px 64px;
  margin-bottom: 0;
  font-size: 1.2rem;
  border-radius: 3px 3px 0 0;
}

.c-panel__content {
  padding: 32px 64px;
  border: 1px solid #efefef;
  border-radius: 0 0 3px 3px;
  background: #fff;
}

.c-panel.is-danger .c-panel__title {
  background: #cc2919;
}

.c-panel.is-warning .c-panel__title {
  background: #cc9e12;
}

.c-panel.is-success .c-panel__title {
  background: #13a83a;
}

.c-panel.is-info .c-panel__title {
  background: #378da3;
}

.c-philosophy {
  line-height: 2;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-philosophy {
    font-size: 18px;
  }
}

.c-post-content-page-head__cetegory {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 1.0667rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-content-page-head__cetegory {
    margin-bottom: 0.8rem;
  }
}

.c-post-content-page-head__label {
  display: block;
  background: #333;
  color: #fff;
  margin-right: 1.6rem;
  font-size: 13px;
  min-width: 96px;
  padding: 2px 4px;
  text-align: center;
}

@media (max-width: 800px) {
  .c-post-content-page-head__label {
    margin-right: 0.6667rem;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-content-page-head__label {
    display: inline-block;
    font-size: 0.6rem;
    min-width: 72px;
    padding: 2px 4px;
  }
}

.c-post-content-page-head__date {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.0667rem;
  letter-spacing: 0.8px;
  margin-right: 1.6rem;
}

@media (max-width: 800px) {
  .c-post-content-page-head__date {
    margin-right: 0.6667rem;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-content-page-head__date {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
  }
}

.c-post-content-page-head__title {
  margin-bottom: 20px;
}

.c-post-content {
  max-width: 944px;
  margin: 0 auto;
}

.c-post-content__block {
  text-decoration: none;
  color: #333;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  padding: 1.6rem 0 1.2667rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-post-content__block:hover {
  opacity: 0.7;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-content__block:first-child {
    padding-top: 0px;
  }
}

.c-post-content__cetegory {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.c-post-content__label {
  display: block;
  background: #333;
  color: #fff;
  margin-right: 1.6rem;
  font-size: 0.8rem;
  min-width: 96px;
  padding: 2px 4px;
  text-align: center;
}

@media (max-width: 800px) {
  .c-post-content__label {
    margin-right: 0.6667rem;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-content__label {
    display: inline-block;
    font-size: 0.6rem;
    min-width: 72px;
    padding: 2px 4px;
  }
}

.c-post-content__date {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.0667rem;
  letter-spacing: 0.8px;
  margin-right: 1.6rem;
}

@media (max-width: 800px) {
  .c-post-content__date {
    margin-right: 0.6667rem;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-content__date {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
  }
}

.c-post-content__text {
  margin-top: 8px;
  font-size: 0.9333rem;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-content__text {
    margin-top: 6px;
    font-size: 0.8rem;
  }
}

.c-post-navs {
  border-top: 1px solid #ccc;
  padding-top: 2.5rem;
  width: 100%;
  max-width: 944px;
  margin: 40px auto 0;
}

.c-post-navs ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  position: relative;
  padding: 8px 0;
}

.c-post-navs__archive {
  font-size: 1.5rem;
  position: absolute;
  top: 2px;
  left: 50%;
  margin-left: -0.6875rem;
}

.c-post-navs__archive i {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-post-navs__archive:hover i {
  color: #b8b8b8;
}

.c-post-navs__prev a, .c-post-navs__next a {
  font-size: 0.9333rem;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #333;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-post-navs__prev a, .c-post-navs__next a {
    font-size: 0.8rem;
  }
}

.c-post-navs__prev a:hover, .c-post-navs__next a:hover {
  opacity: 1;
  color: #342f65;
}

.c-post-navs__prev {
  float: left;
}

.c-post-navs__prev:before {
  content: "\f104";
  font-family: "FontAwesome";
  padding-right: 8px;
  color: #342f65;
}

.c-post-navs__next {
  float: right;
}

.c-post-navs__next:after {
  content: "\f105";
  font-family: "FontAwesome";
  padding-left: 8px;
  color: #342f65;
}

.c-recruit-message__name {
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 32px;
  display: -webkit-box;
  display: flex;
}

.c-recruit-message__name small, .c-recruit-message__name .c-dropdown__list li a, .c-dropdown__list li .c-recruit-message__name a {
  font-size: 18px;
  padding-right: 20px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-recruit-message__name small, .c-recruit-message__name .c-dropdown__list li a, .c-dropdown__list li .c-recruit-message__name a {
    font-size: 14px;
  }
}

.c-recruit-message__name span {
  font-size: 24px;
  font-weight: 600;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-recruit-message__name span {
    font-size: 18px;
  }
}

.c-service-card {
  margin-top: 48px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-service-card {
    margin-top: 24px;
  }
}

.c-service-card__card-list {
  overflow: hidden;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-service-card__card-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    flex-wrap: wrap;
  }
}

.c-service-card__box {
  float: left;
  width: 22.63%;
  margin-right: 3.1%;
  margin-bottom: 48px;
}

.c-service-card__box:nth-child(4n) {
  margin-right: 0%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-service-card__box {
    width: 48%;
    float: none;
    margin-right: 0%;
  }
}

.c-service-card__image-block {
  min-height: 180px;
  width: 100%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-service-card__image-block {
    min-height: 108px;
  }
}

.c-service-card__image {
  min-height: 180px;
  background-size: cover;
  background-position: top center;
  margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-service-card__image {
    margin-bottom: 12px;
    min-height: 108px;
  }
}

.c-service-card__text-block {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-service-card__text-block {
    font-size: 14px;
  }
}

@media screen and (min-width: 46.875em) {
  .c-slidebar-button {
    display: none !important;
  }
  .c-slidebar-menu {
    display: none !important;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-slidebar-button {
    position: fixed;
    right: 0px;
    top: 0px;
    text-align: center;
    font-size: 0.8rem;
    z-index: 100000;
    text-decoration: none;
    padding: 4px;
    background: #342f65;
    line-height: 1;
    color: #fff;
    width: 60px;
    height: 60px;
    padding-top: 13px;
  }
  .c-slidebar-button__line > span {
    display: block;
    height: 3px;
    background: #fff;
    width: 100%;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6px;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
  }
  .c-slidebar-button__text {
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
  }
  .c-slidebar-button:hover {
    opacity: 1;
  }
  .c-slidebar-button:hover .c-slidebar-button__text {
    color: #fff;
  }
  .c-slidebar-menu {
    height: calc(100vh - 65px) !important;
    position: fixed;
    z-index: 9980;
    width: 75%;
    -webkit-transform: translateX(100%);
    transform: translate3d(100%, 0px, 0px);
    right: 0;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    overflow-x: scroll;
    top: 0;
    -webkit-overflow-scrolling: touch;
  }
  .c-slidebar-menu.is-top-to-bottom {
    -webkit-transform: translateX(0%);
    -webkit-transform: translateY(-100%);
    transform: translate3d(0px, -100%, 0px);
    height: auto;
    width: 100%;
    opacity: 0;
  }
  .c-slidebar-menu ul {
    background: #2a2a2a;
  }
  .c-slidebar-menu ul li:last-child a {
    border-bottom: none;
  }
  .c-slidebar-menu ul li a {
    font-size: 1rem;
    display: block;
    padding-top: 0.8667rem;
    padding-bottom: 0.8667rem;
    text-decoration: none;
    color: #333;
    background: #2a2a2a;
    color: #fff;
    margin: 0 1rem;
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    position: relative;
  }
  .c-slidebar-menu .c-slidebar-menu__list-parent {
    padding-bottom: 5.6667rem;
  }
  .c-slidebar-menu .c-slidebar-menu__list-parent > li > a {
    font-weight: 500;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .c-slidebar-menu .c-slidebar-menu__list-parent .c-slidebar-menu__link:after {
    content: "\f107";
    display: block;
    font-family: FontAwesome;
    margin-right: 16px;
  }
  .c-slidebar-menu .c-slidebar-menu__list-parent .c-slidebar-menu__link.is-active:after {
    content: "\f106";
  }
  .c-slidebar-menu .c-slidebar-menu__list-child {
    display: none;
    padding: 10px 0 20px;
  }
  .c-slidebar-menu .c-slidebar-menu__list-child > li > a {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding-top: 0.6667rem;
    padding-bottom: 0.6667rem;
  }
  .c-slidebar-container {
    height: 100vh;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
  }
  .c-slidebar-container:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    display: none;
  }
  .is-slidebar-active {
    cursor: pointer;
  }
  .is-slidebar-active .c-slidebar-button__line > span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translateY(9px) translateX(-4px);
        -ms-transform: rotate(-45deg) translateY(9px) translateX(-4px);
            transform: rotate(-45deg) translateY(9px) translateX(-4px);
  }
  .is-slidebar-active .c-slidebar-button__line > span:nth-child(2) {
    -webkit-transform: rotate(45deg) translateY(-2px) translateX(3px);
        -ms-transform: rotate(45deg) translateY(-2px) translateX(3px);
            transform: rotate(45deg) translateY(-2px) translateX(3px);
  }
  .is-slidebar-active .c-slidebar-button__line > span:nth-child(3) {
    display: none;
  }
  .is-slidebar-active .c-slidebar-button__text {
    position: absolute;
    bottom: 6px;
    left: 13px;
    letter-spacing: 0.5px;
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  }
  .is-slidebar-active .c-slidebar-container {
    -webkit-transform: translateX(-75%);
    transform: translate3d(-75%, 0px, 0px);
  }
  .is-slidebar-active .c-slidebar-container:after {
    content: "";
    opacity: 1;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: block;
    top: 0;
    left: 0;
    z-index: 3000;
  }
  .is-slidebar-active .c-slidebar-container.is-top-to-bottom {
    -webkit-transform: translateX(0px);
    transform: translate3d(0px, 0px, 0px);
  }
  .is-slidebar-active .c-slidebar-container.is-top-to-bottom:after {
    top: 60px;
  }
  .is-slidebar-active .c-slidebar-menu {
    -webkit-transform: translateX(0);
    transform: translate3d(0, 0, 0);
  }
  .is-slidebar-active .c-slidebar-menu.is-top-to-bottom {
    -webkit-transform: translateY(60px);
    transform: translate3d(0, 60px, 0);
    opacity: 1;
  }
}

.c-slider {
  overflow: hidden;
  position: relative;
}

.c-slider-outer {
  cursor: pointer;
}

.c-slider-outer > * {
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.c-slider__prev,
.c-slider__next {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  font-size: 30px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1000px;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 8px;
  line-height: 1;
  color: #fff;
}

.c-slider__next {
  right: 10%;
}

.c-slider__prev {
  left: 10%;
}

.c-slider .is-transition {
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}

.c-social-share > a.c-social-share__facebook {
  background: #3b5998;
}

.c-social-share > a.c-social-share__twitter {
  background: #00aced;
}

.c-social-share > a.c-social-share__googleplus {
  background: #d34836;
}

.c-special-landing {
  overflow: hidden;
}

.c-special-landing__button {
  margin-top: 16px;
  text-align: right;
}

.c-special-landing__block {
  position: relative;
  margin-bottom: 24px;
  min-height: 444px;
  padding-top: 58px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-special-landing__block {
    min-height: inherit;
    padding-top: 0;
    display: block;
  }
}

.c-special-landing__block:last-child {
  margin-bottom: 0;
}

.c-special-landing a:hover {
  opacity: 1;
}

.c-special-landing__image {
  width: calc(51% + 206px);
  height: 444px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #edf1fa;
  position: absolute;
  top: 0;
  left: -206px;
}

@media (max-width: 1204px) {
  .c-special-landing__image {
    width: calc(51% + 16px) !important;
    left: -16px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-special-landing__image {
    position: static;
    width: 100% !important;
    height: 220px;
  }
}

.c-special-landing__content {
  width: 50.7018%;
  border: 2px solid #342f65;
  position: relative;
  z-index: 99;
  margin-left: auto;
  padding: 64px 80px 48px;
  margin-right: 8px;
  margin-top: -36px;
}

@media (max-width: 1204px) {
  .c-special-landing__content {
    margin-right: 0 !important;
    padding: 56px 48px 32px;
    margin-top: 0px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-special-landing__content {
    background-color: #fff;
    width: calc(100% - 32px);
    padding: 32px 24px 20px;
    margin-top: -40px;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

.c-special-landing__number {
  font-size: 72px;
  letter-spacing: 3.6px;
  color: #342f65;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  position: absolute;
  line-height: 1;
  top: -36px;
  left: 80px;
}

@media (max-width: 1204px) {
  .c-special-landing__number {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    left: 48px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-special-landing__number {
    font-size: 48px;
    letter-spacing: 2px;
    left: 24px;
    top: -28px;
  }
}

.c-special-landing__number:first-letter {
  color: #664494;
}

.c-special-landing__number:after {
  content: "";
  display: block;
  width: 120px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-special-landing__number:after {
    width: 60px;
    height: 2px;
  }
}

.c-special-landing__title {
  margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-special-landing__title {
    margin-bottom: 12px;
  }
}

.c-special-landing__sup {
  display: -webkit-box;
  display: flex;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-special-landing__sup {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.c-special-landing__post {
  padding-right: 12px;
  margin-right: 12px;
  position: relative;
}

.c-special-landing__post:after {
  display: block;
  content: "";
  width: 2px;
  height: 18px;
  background-color: #333;
  position: absolute;
  top: 0;
  right: 0;
}

.c-special-landing__block:nth-child(even) .c-special-landing__image {
  width: calc(47%+ 254px);
  left: auto;
  right: -254px;
}

@media (max-width: 1204px) {
  .c-special-landing__block:nth-child(even) .c-special-landing__image {
    right: -16px;
  }
}

.c-special-landing__block:nth-child(even) .c-special-landing__content {
  margin-left: 56px;
}

@media (max-width: 1204px) {
  .c-special-landing__block:nth-child(even) .c-special-landing__content {
    margin-left: 0;
  }
}

.c-sub-global-nav {
  display: none;
  position: absolute;
  width: 286px;
  margin: 0 auto;
  position: absolute;
  left: -50%;
  z-index: 4000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-sub-global-nav li a {
  background: #342f65;
  padding-top: 22px;
  padding-bottom: 22px;
  height: auto;
  font-size: 15px;
  color:#fff;
}

.c-sub-global-nav li a:hover {
  background: #664494;
  opacity: 1;
  color:#fff;
}

.c-sub-global-nav:hover {
  display: block;color:#fff;
}

.c-table {
  width: 100%;
  border-top: 1px solid #ccc;
}

.c-table > thead > tr > th,
.c-table > thead > tr > td {
  text-align: left;
  background-color: #EDF1FA;
}

.c-table tbody tr td,
.c-table tbody tr th,
.c-table thead tr td,
.c-table thead tr th {
  padding: 19px 24px;
  border-bottom: 1px solid #ccc;
  text-align: left;
  vertical-align: top;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table tbody tr td,
  .c-table tbody tr th,
  .c-table thead tr td,
  .c-table thead tr th {
    padding: 14px 12px;
  }
}

.c-table tbody tr td,
.c-table thead tr td {
  color: #333;
}

.c-table tbody tr th,
.c-table thead tr th {
  color: #000;
  width: 196px;
  padding-left: 0;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table tbody tr th,
  .c-table thead tr th {
    width: 6.4rem;
  }
}

.c-table.is-border tr td {
  padding-left: 56px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-border tr td {
    padding-left: 24px;
  }
}

.c-table.is-border tr th {
  color: #342f65;
  position: relative;
}

.c-table.is-border tr th:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #342f65;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.c-table.is-large .c-table__flex {
  display: table;
  width: 100%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large .c-table__flex {
    display: block;
    margin-bottom: 16px;
  }
}

.c-table.is-large .c-table__flex span {
  display: table-cell;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.4;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large .c-table__flex span {
    padding-top: 0px;
    padding-bottom: 0px;
    line-height: 1.8;
  }
}

.c-table.is-large .c-table__flex span:nth-child(1) {
  width: 17%;
  vertical-align: top;
}

.c-table.is-large .c-table__flex span:nth-child(2) {
  width: 68%;
  padding-left: 2.5%;
  vertical-align: top;
}

.c-table.is-large .c-table__flex span:nth-child(3) {
  width: 15%;
  padding-left: 2.2%;
  vertical-align: top;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large .c-table__flex span:nth-child(1) {
    width: 100%;
  }
  .c-table.is-large .c-table__flex span:nth-child(2) {
    width: 100%;
    padding-left: 0%;
  }
  .c-table.is-large .c-table__flex span:nth-child(3) {
    width: 100%;
    padding-left: 0%;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large thead {
    display: none;
  }
}

.c-table.is-large thead tr th {
  font-weight: 400;
  padding: 12px 20px;
}

.c-table.is-large thead tr td {
  padding: 12px 20px;
}

.c-table.is-large thead tr td .c-table__flex {
  display: table;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large thead tr td .c-table__flex {
    display: block;
  }
}

.c-table.is-large thead tr td .c-table__flex span {
  text-align: center;
}

.c-table.is-large thead tr td .c-table__flex span:nth-child(1) {
  text-align: left;
}

.c-table.is-large thead tr td .c-table__flex span:last-child {
  padding-right: 42px;
}

.c-table.is-large tbody tr th,
.c-table.is-large tbody th td {
  padding: 20px 20px !important;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr th,
  .c-table.is-large tbody th td {
    padding: 14px 12px !important;
  }
}

.c-table.is-large tbody tr th {
  text-align: center;
  padding: 32px 24px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr th {
    padding: 32px 6px !important;
  }
}

.c-table.is-large tbody tr th img {
  display: block;
  margin: 2px auto 10px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr th img {
    max-width: 80px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr th {
    width: 30%;
  }
}

.c-table.is-large tbody tr td {
  padding: 32px 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr td {
    width: 70%;
  }
}

.c-table.is-large tbody tr td .c-table__flex {
  display: table;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr td .c-table__flex {
    display: block;
  }
}

.c-table.is-large tbody tr td .c-table__flex:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr td .c-table__flex span {
    display: block;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr td .c-table__flex span:first-child:before {
    content: "【";
  }
  .c-table.is-large tbody tr td .c-table__flex span:first-child:after {
    content: "】";
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-table.is-large tbody tr td .c-table__flex span:last-child:before {
    content: "TEL.";
  }
}

.c-tabs__navs {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

.c-tabs__navs li {
  width: calc(25% - 3px);
  margin-right: 4px;
}

.c-tabs__navs li:last-child {
  margin-right: 0;
}

.c-tabs__navs li:last-child a:before {
  display: none;
}

.c-tabs__navs li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: block;
  background-color: #342f65;
  padding: 11px 16px;
  border-radius: 2px 2px 0 0;
  border: 1px solid #342f65;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-tabs__navs li a {
    padding: 11px 12px;
    font-weight: normal;
    font-size: 12px;
  }
}

.c-tabs__navs li a:hover {
  opacity: 1;
  background-color: #00359f;
}

.c-tabs__navs li a:after {
  content: "\f107";
  font-size: 24px;
  position: absolute;
  top: 50%;
  margin-top: -23px;
  right: 28px;
  font-family: "FontAwesome";
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-tabs__navs li a:after {
    font-size: 12px;
    top: 50%;
    margin-top: 0px;
    right: 10px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-tabs__navs li a:before {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  background-color: #342f65;
  position: absolute;
  bottom: -1px;
  right: -5px;
}

.c-tabs__navs li a.is-active {
  background-color: #fff;
  color: #342f65;
  border-bottom-color: #fff;
}

.c-tabs__content {
  display: none;
}

.c-tabs__content.is-active {
  display: block;
}

.c-tabs.is-recruit .c-tabs__content {
  padding-top: 56px;
  padding-bottom: 88px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-tabs.is-recruit .c-tabs__content {
    padding-top: 24px;
    padding-bottom: 56px;
  }
}

.c-tel-banner__number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1em;
}

.c-tel-banner__text {
  font-size: 0.8rem;
}

.c-text-list-block {
  margin-bottom: 48px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-text-list-block {
    margin-bottom: 16px;
  }
}

.c-text-list-block__inner {
  padding: 24px 32px;
  background-color: #EDF1FA;
  display: -webkit-box;
  display: flex;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-text-list-block__inner {
    display: block;
  }
}

.c-text-list-block ul {
  margin-right: 48px;
}

.c-text-list-block ul:last-child {
  margin-right: 0px;
}

.c-text-list-block li {
  letter-spacing: 1.5px;
  display: -webkit-box;
  display: flex;
}

.c-text-list-block li:before {
  content: "●";
  display: inline-block;
  color: #342f65;
  margin-right: 6px;
}

.c-text-list-block.is-around ul {
  width: 33%;
}

.c-top-company {
  padding-top: 305px;
  padding-bottom: 100px;
  background-image: url("bg-top-company.jpg");
  background-position: top center;
  position: relative;
  margin-top: -72px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-company {
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 48px;
    background-position: bottom center;
    background-size: 150%;
  }
}

.c-top-company__image {
  position: absolute;
  background-size: cover;
  background-position: top center;
  min-height: 470px;
  width: 55.7%;
  left: 0px;
  bottom: 88px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-company__image {
    width: 100%;
    min-height: 225px;
    position: static;
  }
}

.c-top-company__title-block {
  width: 47.4%;
  margin-left: auto;
  border: solid 2px #342f65;
  padding: 90px 92px 90px 92px;
  z-index: 100;
  position: relative;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-company__title-block {
    width: 87%;
    margin: 0 auto;
    padding: 54px 24px 32px 24px;
    margin-top: -28px;
  }
}

.c-top-company__lead {
  margin-bottom: 12px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-company__lead {
    margin-bottom: 36px;
  }
}

.c-top-information {
  position: relative;
  background-image: url("bg-top-company.jpg");
  background-size: cover;
  background-position: top center;
  padding-top: 72px;
  padding-bottom: 64px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information {
    padding-top: 40px;
    padding-bottom: 48px;
  }
}

.c-top-information__inner {
  display: -webkit-box;
  display: flex;
  margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__inner {
    display: block;
  }
}

.c-top-information__title-content {
  width: 25.7895%;
  padding-right: 16px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__title-content {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 32px;
  }
  .c-top-information__title-content .heading.is-xlg, .c-top-information__title-content .heading.is-lg, .c-top-information__title-content .is-lg.c-features-card__title, .c-top-information__title-content .is-lg.c-image-content__title, .c-top-information__title-content .is-lg.c-opening__title, .c-top-information__title-content .is-lg.c-other-content__head, .c-top-information__title-content .is-lg.c-post-content-page-head__title, .c-top-information__title-content .is-lg.c-special-landing__title, .c-top-information__title-content .l-post-content h2.is-lg, .l-post-content .c-top-information__title-content h2.is-lg, .c-top-information__title-content #tinymce.post-type-post h2.is-lg, #tinymce.post-type-post .c-top-information__title-content h2.is-lg, .c-top-information__title-content #tinymce.post-type-page h2.is-lg, #tinymce.post-type-page .c-top-information__title-content h2.is-lg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h2.is-lg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h2.is-lg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h2.is-lg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h2.is-lg, .c-top-information__title-content .l-post-content h3.is-lg, .l-post-content .c-top-information__title-content h3.is-lg, .c-top-information__title-content #tinymce.post-type-post h3.is-lg, #tinymce.post-type-post .c-top-information__title-content h3.is-lg, .c-top-information__title-content #tinymce.post-type-page h3.is-lg, #tinymce.post-type-page .c-top-information__title-content h3.is-lg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h3.is-lg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h3.is-lg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h3.is-lg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h3.is-lg, .c-top-information__title-content .l-post-content h4.is-lg, .l-post-content .c-top-information__title-content h4.is-lg, .c-top-information__title-content #tinymce.post-type-post h4.is-lg, #tinymce.post-type-post .c-top-information__title-content h4.is-lg, .c-top-information__title-content #tinymce.post-type-page h4.is-lg, #tinymce.post-type-page .c-top-information__title-content h4.is-lg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h4.is-lg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h4.is-lg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h4.is-lg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h4.is-lg, .c-top-information__title-content .l-post-content h5.is-lg, .l-post-content .c-top-information__title-content h5.is-lg, .c-top-information__title-content #tinymce.post-type-post h5.is-lg, #tinymce.post-type-post .c-top-information__title-content h5.is-lg, .c-top-information__title-content #tinymce.post-type-page h5.is-lg, #tinymce.post-type-page .c-top-information__title-content h5.is-lg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h5.is-lg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h5.is-lg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h5.is-lg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h5.is-lg, .c-top-information__title-content .l-post-content h6.is-lg, .l-post-content .c-top-information__title-content h6.is-lg, .c-top-information__title-content #tinymce.post-type-post h6.is-lg, #tinymce.post-type-post .c-top-information__title-content h6.is-lg, .c-top-information__title-content #tinymce.post-type-page h6.is-lg, #tinymce.post-type-page .c-top-information__title-content h6.is-lg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h6.is-lg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h6.is-lg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h6.is-lg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h6.is-lg, .c-top-information__title-content .is-xlg.c-features-card__title, .c-top-information__title-content .is-xlg.c-image-content__title, .c-top-information__title-content .is-xlg.c-opening__title, .c-top-information__title-content .is-xlg.c-other-content__head, .c-top-information__title-content .is-xlg.c-post-content-page-head__title, .c-top-information__title-content .is-xlg.c-special-landing__title, .c-top-information__title-content .l-post-content h2.is-xlg, .l-post-content .c-top-information__title-content h2.is-xlg, .c-top-information__title-content #tinymce.post-type-post h2.is-xlg, #tinymce.post-type-post .c-top-information__title-content h2.is-xlg, .c-top-information__title-content #tinymce.post-type-page h2.is-xlg, #tinymce.post-type-page .c-top-information__title-content h2.is-xlg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h2.is-xlg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h2.is-xlg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h2.is-xlg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h2.is-xlg, .c-top-information__title-content .l-post-content h3.is-xlg, .l-post-content .c-top-information__title-content h3.is-xlg, .c-top-information__title-content #tinymce.post-type-post h3.is-xlg, #tinymce.post-type-post .c-top-information__title-content h3.is-xlg, .c-top-information__title-content #tinymce.post-type-page h3.is-xlg, #tinymce.post-type-page .c-top-information__title-content h3.is-xlg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h3.is-xlg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h3.is-xlg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h3.is-xlg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h3.is-xlg, .c-top-information__title-content .l-post-content h4.is-xlg, .l-post-content .c-top-information__title-content h4.is-xlg, .c-top-information__title-content #tinymce.post-type-post h4.is-xlg, #tinymce.post-type-post .c-top-information__title-content h4.is-xlg, .c-top-information__title-content #tinymce.post-type-page h4.is-xlg, #tinymce.post-type-page .c-top-information__title-content h4.is-xlg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h4.is-xlg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h4.is-xlg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h4.is-xlg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h4.is-xlg, .c-top-information__title-content .l-post-content h5.is-xlg, .l-post-content .c-top-information__title-content h5.is-xlg, .c-top-information__title-content #tinymce.post-type-post h5.is-xlg, #tinymce.post-type-post .c-top-information__title-content h5.is-xlg, .c-top-information__title-content #tinymce.post-type-page h5.is-xlg, #tinymce.post-type-page .c-top-information__title-content h5.is-xlg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h5.is-xlg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h5.is-xlg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h5.is-xlg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h5.is-xlg, .c-top-information__title-content .l-post-content h6.is-xlg, .l-post-content .c-top-information__title-content h6.is-xlg, .c-top-information__title-content #tinymce.post-type-post h6.is-xlg, #tinymce.post-type-post .c-top-information__title-content h6.is-xlg, .c-top-information__title-content #tinymce.post-type-page h6.is-xlg, #tinymce.post-type-page .c-top-information__title-content h6.is-xlg, .c-top-information__title-content #tinymce.mce-content-body.acf_content h6.is-xlg, #tinymce.mce-content-body.acf_content .c-top-information__title-content h6.is-xlg, .c-top-information__title-content #tinymce.post-type-tinymcetemplates h6.is-xlg, #tinymce.post-type-tinymcetemplates .c-top-information__title-content h6.is-xlg {
    margin-bottom: 0px;
  }
}

.c-top-information__post-content {
  width: 74.2105%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__post-content {
    width: 100%;
  }
}

.c-top-information__post-content ul li:last-child .c-top-information__post {
  border-bottom: 1px solid #ccc;
}

.c-top-information__post {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  text-decoration: none;
  color: #333;
  width: 100%;
  padding: 0.8rem 0;
  border-top: 1px solid #ccc;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-top-information__post:hover {
  opacity: 0.7;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__post {
    display: block;
    padding: 0.8rem 0;
  }
}

.c-top-information__date {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1.5px;
  margin-right: 1.6rem;
}

@media (max-width: 800px) {
  .c-top-information__date {
    margin-right: 0.6667rem;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__date {
    display: inline-block;
    font-size: 0.8667rem;
    letter-spacing: 1.2px;
  }
}

.c-top-information__label {
  background: #333;
  color: #fff;
  margin-right: 1.6rem;
  font-size: 0.8667rem;
  min-width: 96px;
  padding: 0px 0px;
  text-align: center;
}

@media (max-width: 800px) {
  .c-top-information__label {
    margin-right: 0.6667rem;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__label {
    display: inline-block;
    font-size: 0.8rem;
    min-width: 72px;
  }
}

.c-top-information__text {
  vertical-align: top;
  width: 100%;
  line-height: 1.6;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__text {
    display: block;
    margin-top: 0.6667rem;
    font-weight: 500;
    font-size: 0.9333rem;
  }
}

.c-top-information__link {
  text-align: right;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-information__link {
    text-align: left;
  }
}

.c-top-information__link a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.6px;
  color: #342f65;
  display: inline-block;
  position: relative;
  padding-right: 70px;
}

.c-top-information__link a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  width: 51px;
  height: 11px;
  -webkit-transform: translateY(-20%);
      -ms-transform: translateY(-20%);
          transform: translateY(-20%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2000;
  background-image: url("icon-arrow-sm.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-top-information__link a:hover:after {
  right: -10px;
}

.c-top-recruit {
  margin-top: 100px;
  margin-bottom: 144px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-recruit {
    margin-top: 40px;
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-recruit .l-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.c-top-recruit__title-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-recruit__title-block {
    display: block;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin-bottom: 30px;
  }
}

.c-top-recruit .heading.is-lg, .c-top-recruit .is-lg.c-features-card__title, .c-top-recruit .is-lg.c-image-content__title, .c-top-recruit .is-lg.c-opening__title, .c-top-recruit .is-lg.c-other-content__head, .c-top-recruit .is-lg.c-post-content-page-head__title, .c-top-recruit .is-lg.c-special-landing__title, .c-top-recruit .l-post-content h2.is-lg, .l-post-content .c-top-recruit h2.is-lg, .c-top-recruit #tinymce.post-type-post h2.is-lg, #tinymce.post-type-post .c-top-recruit h2.is-lg, .c-top-recruit #tinymce.post-type-page h2.is-lg, #tinymce.post-type-page .c-top-recruit h2.is-lg, .c-top-recruit #tinymce.mce-content-body.acf_content h2.is-lg, #tinymce.mce-content-body.acf_content .c-top-recruit h2.is-lg, .c-top-recruit #tinymce.post-type-tinymcetemplates h2.is-lg, #tinymce.post-type-tinymcetemplates .c-top-recruit h2.is-lg, .c-top-recruit .l-post-content h3.is-lg, .l-post-content .c-top-recruit h3.is-lg, .c-top-recruit #tinymce.post-type-post h3.is-lg, #tinymce.post-type-post .c-top-recruit h3.is-lg, .c-top-recruit #tinymce.post-type-page h3.is-lg, #tinymce.post-type-page .c-top-recruit h3.is-lg, .c-top-recruit #tinymce.mce-content-body.acf_content h3.is-lg, #tinymce.mce-content-body.acf_content .c-top-recruit h3.is-lg, .c-top-recruit #tinymce.post-type-tinymcetemplates h3.is-lg, #tinymce.post-type-tinymcetemplates .c-top-recruit h3.is-lg, .c-top-recruit .l-post-content h4.is-lg, .l-post-content .c-top-recruit h4.is-lg, .c-top-recruit #tinymce.post-type-post h4.is-lg, #tinymce.post-type-post .c-top-recruit h4.is-lg, .c-top-recruit #tinymce.post-type-page h4.is-lg, #tinymce.post-type-page .c-top-recruit h4.is-lg, .c-top-recruit #tinymce.mce-content-body.acf_content h4.is-lg, #tinymce.mce-content-body.acf_content .c-top-recruit h4.is-lg, .c-top-recruit #tinymce.post-type-tinymcetemplates h4.is-lg, #tinymce.post-type-tinymcetemplates .c-top-recruit h4.is-lg, .c-top-recruit .l-post-content h5.is-lg, .l-post-content .c-top-recruit h5.is-lg, .c-top-recruit #tinymce.post-type-post h5.is-lg, #tinymce.post-type-post .c-top-recruit h5.is-lg, .c-top-recruit #tinymce.post-type-page h5.is-lg, #tinymce.post-type-page .c-top-recruit h5.is-lg, .c-top-recruit #tinymce.mce-content-body.acf_content h5.is-lg, #tinymce.mce-content-body.acf_content .c-top-recruit h5.is-lg, .c-top-recruit #tinymce.post-type-tinymcetemplates h5.is-lg, #tinymce.post-type-tinymcetemplates .c-top-recruit h5.is-lg, .c-top-recruit .l-post-content h6.is-lg, .l-post-content .c-top-recruit h6.is-lg, .c-top-recruit #tinymce.post-type-post h6.is-lg, #tinymce.post-type-post .c-top-recruit h6.is-lg, .c-top-recruit #tinymce.post-type-page h6.is-lg, #tinymce.post-type-page .c-top-recruit h6.is-lg, .c-top-recruit #tinymce.mce-content-body.acf_content h6.is-lg, #tinymce.mce-content-body.acf_content .c-top-recruit h6.is-lg, .c-top-recruit #tinymce.post-type-tinymcetemplates h6.is-lg, #tinymce.post-type-tinymcetemplates .c-top-recruit h6.is-lg {
  margin-bottom: 0px;
}

.c-top-service {
  position: relative;
  margin-top: 96px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.c-top-service .l-container {
  padding-left: 0px;
  padding-right: 0px;
}

.c-top-service__title-block {
  width: 52%;
  margin-right: auto;
  border: solid 2px #342f65;
  padding: 140px 210px 140px 92px;
  z-index: 100;
  position: relative;
}

@media (max-width: 950px) {
  .c-top-service__title-block {
    padding: 140px 150px 140px 92px;
  }
}

@media (max-width: 870px) {
  .c-top-service__title-block {
    padding: 140px 120px 140px 30px;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__title-block {
    width: 90%;
    margin-right: auto;
    padding: 40px 30px 40px 30px;
  }
}

.c-top-service__lead {
  margin-bottom: 12px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__lead {
    margin-bottom: 32px;
  }
}

.c-top-service__button-block {
  position: absolute;
  top: 96px;
  right: 0px;
  width: 58.2%;
  z-index: 1000;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__button-block {
    position: static;
    margin-bottom: 24px;
  }
}

.c-top-service__link-box {
  margin-left: auto;
  text-decoration: none;
  position: relative;
  display: block;
  min-height: 152px;
  width: 100%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__link-box {
    min-height: 84px;
  }
}

.c-top-service__link-box:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 62, 184, 0.7);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-top-service__link-box:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 48px;
  border-color: transparent transparent #342f65 transparent;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__link-box:after {
    border-width: 0 0 25px 25px;
  }
}

.c-top-service__link-box:hover {
  opacity: 1;
}

.c-top-service__link-box:hover:before {
  opacity: 1;
}

.c-top-service__link-box .c-top-service__inner {
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  min-height: calc(152px - 10px);
  width: calc(100% - 10px);
  border: solid 1px rgba(245, 247, 249, 0.3);
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__link-box .c-top-service__inner {
    min-height: calc(84px - 6px);
    width: calc(100% - 6px);
    top: 3px;
    left: 3px;
  }
}

.c-top-service__link-box .c-top-service__image {
  background-size: cover;
  background-position: top center;
  min-height: 152px;
  width: 100%;
  display: block;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__link-box .c-top-service__image {
    min-height: 84px;
  }
}

.c-top-service__link-box .c-top-service__text-block {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 40px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__link-box .c-top-service__text-block {
    left: 10px;
  }
}

.c-top-service__text-block {
  display: table;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__text-block {
    width: 90%;
  }
}

.c-top-service__icon {
  display: table-cell;
  vertical-align: middle;
  width: 100px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__icon {
    width: 60px;
  }
}

.c-top-service__button-text {
  display: block;
  padding-left: 48px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__button-text {
    padding-left: 24px;
    width: calc(100% - 60px);
  }
}

.c-top-service__button-text .title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 2.4px;
  color: #F5F7F9;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__button-text .title {
    font-size: 13px;
  }
}

.c-top-service__button-text .subtitle {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 2.4px;
  color: rgba(245, 247, 249, 0.5);
  margin-top: 8px;
  font-weight: 300;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-top-service__button-text .subtitle {
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.3;
    display: inline-block;
  }
}

.c-work__inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.c-work__block {
  width: calc(50% - 18px);
  margin-right: 36px;
  background-color: #fff;
  border-left: 2px solid #342f65;
  border-top: 1px solid #edf1fa;
  border-right: 1px solid #edf1fa;
  border-bottom: 1px solid #edf1fa;
  padding: 32px;
  margin-bottom: 32px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-work__block {
    width: 100%;
    margin-right: 0;
    padding: 24px;
    margin-bottom: 16px;
  }
}

.c-work__block:nth-child(2n) {
  margin-right: 0;
}

.c-work__icon {
  width: 5.8667rem;
  margin: 0 auto;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-work__icon {
    width: 3.9111rem;
  }
}

.c-work__icon img {
  width: 100%;
  height: auto;
}

.c-work__title {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #342f65;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.5;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .c-work__title {
    font-size: 16px;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
  }
}

.p-contact {
  max-width: 680px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
  background: #fff;
  padding-top: 0.5333rem;
  padding-bottom: 2.1333rem;
  box-shadow: 0 4px 24px 4px rgba(0, 0, 0, 0.1);
}

.p-contact__button {
  margin-top: 24px;
}

.p-contact__tel {
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-top: 24px;
}

.p-contact__tel i.fa {
  margin-right: 8px;
}

.p-landing-block {
  display: table;
  margin-bottom: 3.2rem;
}

.p-landing-block__thumbnail {
  display: table-cell;
  width: 50%;
  background-position: center;
  background-repeat: no-repet;
}

.p-landing-block__content {
  display: table-cell;
  padding-left: 4.2667rem;
  padding-right: 4.2667rem;
  padding-top: 4.2667rem;
  padding-bottom: 4.2667rem;
}

.p-post-item.is-horizon {
  border: 1px solid #efefef;
  padding: 32px;
  background: #fff;
}

.p-post-item.is-horizon .p-post-item__thumbnail {
  float: left;
  margin-right: 32px;
  margin-bottom: 0;
}

.p-post-item.is-line {
  border-bottom: 1px solid #efefef;
  padding-top: 32px;
  padding-bottom: 32px;
  display: block;
  margin-bottom: 0;
}

.p-post-item.is-line .p-post-item__thumbnail {
  float: left;
  margin-right: 32px;
  margin-bottom: 0;
}

.p-post-item.is-line .p-post-item__thumbnail > img {
  max-height: 1.6rem;
  width: auto;
}

.p-post-item.is-line .p-post-item__date,
.p-post-item.is-line .p-post-item__category {
  margin-right: 32px;
  float: left;
  color: #333;
}

.p-post-item.is-line .p-post-item__title {
  float: left;
  color: #333;
  margin-right: 32px;
  margin-bottom: 0;
  font-size: 0.9333rem;
  margin-top: 0.2rem;
  margin-right: 32px;
}

.p-post-item {
  margin-bottom: 2.1333rem;
}

.p-post-item__title {
  font-size: 1.2rem;
  margin-top: 0.5333rem;
  margin-bottom: 0.5333rem;
  line-height: 1.3;
}

.p-post-item__title > a {
  color: #000;
  text-decoration: none;
}

.p-post h1,
.p-post h2,
.p-post h3,
.p-post h4,
.p-post h5,
.p-post h6,
.p-post p {
  margin-top: 0;
}

.p-privacy {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 32px;
  background: #EEF1F1;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-privacy h4 {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 16px;
}

.p-profile-box {
  border: 1px solid #efefef;
  padding: 32px;
}

.p-profile-box__thumbnail {
  float: left;
  text-align: center;
  margin-right: 32px;
}

.p-profile-box__authorname {
  margin-top: 0;
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin-bottom: 8px;
}

.p-sitemap {
  margin-bottom: 3.2rem;
}

.p-sitemap__title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.6rem;
}

.p-sitemap > ul > li {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 0.5333rem;
}

.p-sitemap > ul > li a {
  text-decoration: none;
}

.p-sitemap > ul > li a:hover {
  text-decoration: underline;
}

.l-aside {
  width: rem-calc(320);
  margin-left: auto;
}

.l-footer {
  background-color: #333333;
}

.l-footer .l-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-top: 64px;
  padding-bottom: 70px;
}

@media (max-width: 1000px) {
  .l-footer .l-container {
    display: block;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-footer .l-container {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (max-width: 1000px) {
  .l-footer__info {
    margin-bottom: 20px;
  }
}

.l-footer__logo {
  max-width: 178px;
  margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-footer__logo {
    max-width: 133.5px;
  }
}

.l-footer__address {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.4px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-footer__address {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 65.614%;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-footer__nav {
    display: none;
  }
}

@media (max-width: 1000px) {
  .l-footer__nav {
    width: 100%;
  }
}

.l-footer__nav ul.is-child li {
  margin-bottom: 8px;
}

.l-footer__nav ul.is-child li:not(:first-child) {
  margin-bottom: 0px;
}

.l-footer__nav ul.is-child li:not(:first-child) a {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
}

.l-footer__nav li {
  margin-bottom: 16px;
}

.l-footer__nav a {
  font-weight: 600;
  font-size: 14px;
  line-height: 16.8px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
}

.l-footer__bnr {
  padding-bottom: 32px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-footer__bnr {
    padding-bottom: 20px;
  }
}

.l-footer__bnr .l-container {
  padding-top: 0;
  padding-bottom: 0;
}

.l-footer__bnr__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.l-footer__bnr__block {
  display: block;
  margin-right: 12px;
}

.l-footer__copyright .l-container {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-footer__copyright .l-container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.l-footer__privcy-policy a {
  font-size: 14px;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-footer__privcy-policy a {
    font-size: 12px;
  }
}

.l-footer__privcy-policy a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.l-footer__copyright-copyright {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2.4px;
  color: rgba(255, 255, 255, 0.5);
}

.l-global-nav {
  width: 760px;
  margin-left: 10px;
  position: relative;
  z-index: 4000;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-global-nav {
    display: none;
  }
}

.l-global-nav__parent {
  display: table;
  width: 100%;
  height: 96px;
}

.l-global-nav__parent-list {
  display: table-cell;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.l-global-nav__parent-list:last-child {
  width: 174px;
  background: #342f65 !important;
  color: #fff !important;
}

@media (max-width: 950px) {
  .l-global-nav__parent-list:last-child {
    width: 120px;
  }
}

.l-global-nav__parent-list:last-child a {
  color: #fff !important;
  white-space: nowrap;
}

.l-global-nav__parent-list:last-child span {
  color: #fff !important;
}

.l-global-nav__parent-list:last-child:after {
  display: none;
}

.l-global-nav__parent-list:last-child:before {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #664494;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.l-global-nav__parent-list:last-child:hover a {
  color: #fff;
  opacity: 1;
}

.l-global-nav__parent-list:last-child:hover:before {
  width: 100%;
}

.l-global-nav__parent-list:after {
  position: absolute;
  content: "";
  display: block;
  height: 34px;
  width: 1px;
  background: #ccc;
  left: 0px;
  top: 30px;
}

.l-global-nav__parent-list.is-active .c-sub-global-nav {
  display: block;
}

.l-global-nav__parent-list.is-active .c-sub-global-nav li a {
  color: #fff !important;
}

.l-global-nav a {
  width: 100%;
  height: 98px;
  text-decoration: none;
  display: block;
  text-align: center;
  color: #fff;
  position: relative;
  padding-top: 30px;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 3.2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.l-global-nav a > span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  color: #fff;
  line-height: 1;
  margin-top: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  z-index: 1000;
}

@media (max-width: 950px) {
  .l-global-nav a {
    font-size: 0.8rem;
  }
  .l-global-nav a > span {
    font-size: 0.6667rem;
  }
}

.l-global-nav a:hover {
  opacity: 0.7;
}

.l-header {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2000;
}

.l-header.is-fixed {
  background-color: #fff;
  position: fixed;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
}

.l-header.is-fixed .l-global-nav a {
  color: #342f65;
}

.l-header.is-fixed .l-global-nav a > span {
  color: #333;
}

.l-header__inner {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.l-header__logo {
  line-height: 1;
  margin: 0px;
  overflow: hidden;
  min-width: 260px;
  width: 260px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-header__logo {
    width: 100%;
    padding-left: 0px;
    max-width: 159px;
    min-width: auto;
  }
}

.l-header__logo img {
  display: block;
  max-width: 100%;
}

.l-header__mail {
  display: none;
  width: 23.5px;
  height: 18px;
  margin-top: 24px;
  margin-right: 18px;
  color: #342f65;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-header__mail {
    display: block;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 10000;
    padding-left: 0px;
    padding-right: 60px;
  }
}

@media (max-width: 1140px) {
  .l-container {
    padding-right: 1.0667rem;
    padding-left: 1.0667rem;
  }
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-container {
    padding-right: 1.0667rem;
    padding-left: 1.0667rem;
  }
}

.l-main.is-two-columns {
  width: calc(100% - rem-calc(320));
}

.l-post-content h6, #tinymce.post-type-post h6, #tinymce.post-type-page h6, #tinymce.mce-content-body.acf_content h6, #tinymce.mce-content-body.acf_content.post-type-page h6, #tinymce.post-type-tinymcetemplates h6 {
  color: #342f65;
}

@media print {
  html, body {
    min-width: 1140px;
  }
  .slidebar-menu,
  .slidebar-button,
  .u-hidden-lg {
    display: none;
  }
  .large-1 {
    width: 8.3333%;
  }
  .is-push-lg-1 {
    width: push(1);
  }
  .large-2 {
    width: 16.6667%;
  }
  .is-push-lg-2 {
    width: push(2);
  }
  .large-3 {
    width: 25%;
  }
  .is-push-lg-3 {
    width: push(3);
  }
  .large-4 {
    width: 33.3333%;
  }
  .is-push-lg-4 {
    width: push(4);
  }
  .large-5 {
    width: 41.6667%;
  }
  .is-push-lg-5 {
    width: push(5);
  }
  .large-6 {
    width: 50%;
  }
  .is-push-lg-6 {
    width: push(6);
  }
  .large-7 {
    width: 58.3333%;
  }
  .is-push-lg-7 {
    width: push(7);
  }
  .large-8 {
    width: 66.6667%;
  }
  .is-push-lg-8 {
    width: push(8);
  }
  .large-9 {
    width: 75%;
  }
  .is-push-lg-9 {
    width: push(9);
  }
  .large-10 {
    width: 83.3333%;
  }
  .is-push-lg-10 {
    width: push(10);
  }
  .large-11 {
    width: 91.6667%;
  }
  .is-push-lg-11 {
    width: push(11);
  }
  .large-12 {
    width: 100%;
  }
  .is-push-lg-12 {
    width: push(12);
  }
}

.l-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.l-section.is-xlg {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-section.is-xlg {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}

.l-section.is-lg {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-section.is-lg {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

.l-section.is-md {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-section.is-md {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

.l-section.is-sm {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-section.is-sm {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

.l-section.is-page {
  padding-top: 64px;
  padding-bottom: 120px;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .l-section.is-page {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}

.l-section.is-top {
  padding-bottom: 0 !important;
}

.l-section.is-bottom {
  padding-top: 0 !important;
}

.l-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
}

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

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

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

.u-animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.u-animated.is-infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.u-display-block {
  display: block !important;
}

.u-display-none {
  display: none !important;
}

.u-display-inlineblock {
  display: inline-block !important;
}

.u-display-inline {
  display: inline !important;
}

.u-mbs {
  margin-top: 80px;
  margin-bottom: 80px;
}

.u-mbs.is-xlg {
  margin-top: 120px !important;
  margin-bottom: 120px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-mbs.is-xlg {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
}

.u-mbs.is-lg {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-mbs.is-lg {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}

.u-mbs.is-md {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-mbs.is-md {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
}

.u-mbs.is-sm {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-mbs.is-sm {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

.u-mbs.is-xs {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-mbs.is-xs {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

.u-mbs.is-xxs {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-mbs.is-xxs {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}

.u-mbs.is-top {
  margin-bottom: 0 !important;
}

.u-mbs.is-bottom {
  margin-top: 0 !important;
}

.u-f-left {
  float: left !important;
}

.u-f-right {
  float: right !important;
}

.u-f-none {
  float: none !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-hidden-sm {
    display: none !important;
  }
}

@media screen and (min-width: 46.875em) {
  .u-hidden-lg {
    display: none !important;
  }
}

.u-visible-sm,
.u-visible-md,
.u-visible-lg {
  display: none !important;
}

@media screen and (min-width: 0em) and (max-width: 46.8125em) {
  .u-visible-sm {
    display: block !important;
  }
  .u-visible-sm.is-inlineblock {
    display: inline-block !important;
  }
}

@media screen and (min-width: 46.875em) {
  .u-visible-lg {
    display: block !important;
  }
  .u-visible-lg.is-inlineblock {
    display: inline-block !important;
  }
}

.u-text-danger {
  color: #cc2919;
}

.u-text-info {
  color: #378da3;
}

.u-text-success {
  color: #378da3;
}
